
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
/* WebKit-based browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
    width: 12px; /* Adjust the width of the scrollbar */
}

::-webkit-scrollbar-track {
    background-color: #2b2f38; /* Color for the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #d3bc85; /* Color for the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b7a576; /* Slight color change on hover */
}

/* Firefox */
* {
    scrollbar-width: thin; /* Adjust the width of the scrollbar */
    scrollbar-color: #d3bc85 #2b2f38; /* Color for thumb and track */
}

/* Internet Explorer */
.scrollbar {
    scrollbar-face-color: #d3bc85;
    scrollbar-track-color: #2b2f38;
}

body {
    background-color: #1d2029;
    color: #b7a576;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    padding-top: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #b7a576;
    font-weight: 600;
}

.card {
    background-color: #2b2f38;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.card-title {
    color: #b7a576;
    font-weight: 500;
}

.card-text {
    color: #b7a576;
}

.btn-primary, .btn-warning, .btn-success {
    background-color: #b7a576;
    border: none;
    color: #1d2029;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover, .btn-warning:hover, .btn-success:hover {
    background-color: #d3bc85;
    color: #1d2029;
}
  /* Scroll to Top Button */
        #scrollToTopBtn {
            display: none;
            bottom: 30px;
            right: 30px;
            background-color: #b7a576;
            color: #1d2029;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        #scrollToTopBtn:hover {
            background-color: #d3bc85;
        }

        /* Footer Styles */
        .footer {
            background-color: #2b2f38;
            padding: 20px 5px;
            color: #b7a576;
            text-align: center;
			margin-top:30px;ar
        }

        .footer a {
            color: #b7a576;
            margin: 0 10px;
            font-size: 18px;
        }

        .footer a:hover {
            color: #d3bc85;
        }

        .footer p {
            margin: 10px 0;
        }
/* Header Styling */
header {
    background: linear-gradient(45deg, #1d2029, #2b2f38);
    padding: 10px 20px;
    color: #b7a576;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

header img {
    height: 60px;
}

header h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
}

        .top-bar .left-content {
            color: #b7a576;
            font-size: 16px;
        }
/* Hero Banner */
.hero {
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b7a576;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

/* Form Inputs */
input[type="text"], input[type="tel"], input[type="date"], input[type="time"], input[type="email"] {
    background-color: #2b2f38;
    border: 1px solid #b7a576;
    color: #b7a576;
    padding: 10px;
    border-radius: 5px;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="date"]:focus, input[type="time"]:focus, input[type="email"]:focus {
    border-color: #d3bc85;
    background-color: #2b2f38;
    color: #b7a576;
    outline: none;
}

.hero h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Layout Enhancements */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    padding: 0 15px;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    margin-bottom: 30px;
}

.top-bar .right-content a {
    color: #b7a576;
    margin-left: 15px;
    font-size: 16px;
}
.top-bar .right-content a:hover i {
    color:#fff;  /* Hover color */
}
.top-bar {
    background-color: #2b2f38;
    padding: 16px 0;
    font-size: 13px;
}
.navbar-toggler {
    background-color: #b7a576;
    border: none;
}
.category-card{
    margin: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .cart-summary, .booking-form{
        width: 100% !important;
        max-width: 100% !important;
    }
    select {
        width: inherit;
        padding: 10px;
        background: #1d2029;
        color: #fff;
    }
    .hero {
        font-size: 28px;
        height: 200px;
    }

    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    header h1 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    header h1 {
        font-size: 20px;
    }

    .hero {
        font-size: 24px;
        height: 150px;
    }
}
 
    
        /* Service Categories Section */
        .categories-section {
            padding: 50px 0;
            background-color: #1d2029;
        }

        .categories-section h2 {
            color: #b7a576;
            text-align: center;
            margin-bottom: 40px;
        }

        .category-card {
            background-color: #2b2f38;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-card img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
            height: 200px;
            object-fit: cover;
        }

        .category-card h5 {
            color: #b7a576;
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0;
        }

      
		 /* Slider Styles */
        .slider-container {
            position: relative;
            width: 100%;
            height:650px;
            overflow: hidden;
        }
        .slider-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slider-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
        }        /* Google Map */
        #googleMap {
            width: 100%;
            height: 400px;
        }

        /* Contact Section */
        .contact-section {
            padding: 50px 0;
        }

        .contact-details {
            font-size: 18px;
            color: #d3bc85;
            padding: 10px 20px;
        }

        .contact-details h5 {
            color: #b7a576;
        }

        .contact-form {
            background-color: #2b2f38;
            padding: 20px;
            border-radius: 8px;
        }

        .contact-form input,
        .contact-form textarea {
            background-color: #1d2029;
            color: #fff;
            border: 1px solid #444;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #b7a576;
            box-shadow: none;
        }

        .contact-form button {
            background-color: #b7a576;
            color: #1d2029;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
        }

        .contact-form button:hover {
            background-color: #d3bc85;
        }
		/* Scroll to Top Button */
        #scrollToTopBtn {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #b7a576;
            color: #1d2029;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        #scrollToTopBtn:hover {
            background-color: #d3bc85;
        }

        /* Mobile view adjustments */
        @media (max-width: 768px) {
            .navbar-brand {
                text-align: center;
                margin: auto;
                display: block;
            }

            .navbar-collapse {
                justify-content: center;
            }
        }
		.whatsapp-contact {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 1000;
        }

        .whatsapp-contact .btn {
            background-color: #25D366;
            color: white;
            font-size: 16px;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            margin-bottom: 10px;
            text-decoration: none;
        }

        .whatsapp-contact .btn-light {
            background-color: #ffffff;
            color: #25D366;
        }

        .whatsapp-contact .btn:hover {
            background-color: #1ebe5a;
            text-decoration: none;
            color: white;
        }

        .whatsapp-contact i {
            font-size: 24px;
        }

        /* Responsive Styling */
        @media (max-width: 768px) {
            .footer .text-right {
                text-align: left;
                margin-top: 20px;
            }
            .whatsapp-contact {
                left: 10px;
                bottom: 10px;
            }

        }        .booking-container {
            
            justify-content: space-between;
            margin-top: 30px;
        }

        .booking-form {
            background-color: #2b2f38;
            padding: 20px;
            max-width: 45%;
            border-radius: 8px;
            color: #fff;
            margin-left: auto;
        }

        .booking-form input,
        .booking-form select {
            background-color: #1d2029;
            border: 1px solid #b7a576;
            color: #fff;
            margin-bottom: 15px;
            padding: 10px;
            width: 100%;
        }

        .booking-form label {
            font-weight: 500;
            margin-bottom: 5px;
        }

        .cart-summary {
            background-color: #2b2f38;
            padding: 20px;
            max-width: 45%;
            border-radius: 8px;
            color: #d3bc85;
        }

        .cart-summary h4 {
            color: #b7a576;
            margin-bottom: 20px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .cart-item p {
            margin: 0;
        }

        .total-amount {
            font-weight: bold;
            font-size: 20px;
            margin-top: 20px;
            text-align: right;
        }

        .submit-btn {
            background-color: #b7a576;
            color: #1d2029;
            padding: 10px;
            width: 100%;
            font-weight: bold;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            border-radius: 5px;
        }

        .submit-btn:hover {
            background-color: #d3bc85;
        }
        