
        :root {
            --primary-color: #4E342E;
            --secondary-color: #C9A227;
            --light-color: #D7CCC8;
            --dark-color: #3E2723;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            font-family: 'Playfair Display', serif;
        }
        
        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background-color: var(--secondary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-color) 0%, rgba(201, 162, 39, 0.1) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('https://img.freepik.com/premium-photo/tree-growing-pile-coins-business-finance-investment-icons-with-concept-financial-system-development-economic-growth_104677-1448.jpg') center/cover;
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }

        .nav-item{
            margin-left:15px !important;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--dark-color);
        }
        
        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--light-color);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .about-content p {
            color: var(--dark-color);
            margin-bottom: 20px;
            text-align: justify;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-box h4 {
            font-size: 1.2rem;
            font-weight: 400;
        }
        
        /* Vision Mission */
        .vision-mission-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card img {
            width: 100%;
            height:350px;
            object-fit: cover;
        }
        
        .service-card .card-body {
            padding: 25px;
        }
        
        .service-card h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        /* Booking Section */
        .booking-section {
            background-color: var(--light-color);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .booking-form {
            padding: 40px;
        }
        
        .booking-form h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .form-control, .form-select {
            border: 2px solid var(--light-color);
            border-radius: 8px;
            padding: 12px 15px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .stars {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .review-card img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--light-color);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-light:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(5px);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-right: 20px;
            width: 50px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--secondary-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--dark-color);
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .navbar-nav .nav-link {
                margin: 10px 15px;
            }
        }
