
        :root {
            --primary-green: #606C38;
            --dark-green: #283618;
            --cream: #FEFAE0;
            --gold: #DDA15E;
            --white: #ffffff;
            --light-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-green);
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--cream);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 5px;
        }

        /* Navbar Styling */
        .navbar {
            background: transparent !important;
            backdrop-filter: blur(10px);
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(254, 250, 224, 0.95) !important;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--dark-green) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            color: var(--gold);
            font-size: 2rem;
        }

        .nav-link {
            color: var(--dark-green) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--white) !important;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(96, 108, 56, 0.3);
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(96, 108, 56, 0.4);
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(40, 54, 24, 0.9), rgba(96, 108, 56, 0.8)), 
                        url('https://wallpapercave.com/wp/wp9223502.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            text-transform: uppercase;
            font-weight: 800;
            color: var(--cream);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: var(--cream);
            margin-bottom: 2.5rem;
            max-width: 600px;
            line-height: 1.8;
        }

        .btn-hero {
            background: var(--gold);
            color: var(--dark-green);
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(221, 161, 94, 0.4);
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(221, 161, 94, 0.5);
            background: var(--cream);
        }

        /* Section Styling */
        section {
            padding: 6rem 0;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--primary-green);
            font-size: 1.2rem;
            margin-bottom: 3rem;
            font-weight: 500;
        }

        /* About Section */
        .about-section {
            background: var(--white);
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid var(--gold);
            border-radius: 20px;
            z-index: -1;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-content h3 {
            font-size: 2.2rem;
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content p {
            color: var(--primary-green);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .btn-read-more {
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-read-more:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            color: var(--cream);
            padding: 5rem 0;
        }

        .counter-item {
            text-align: center;
            padding: 2rem;
        }

        .counter-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--cream);
        }

        .counter-label {
            font-size: 1.2rem;
            color: var(--gold);
            font-weight: 500;
        }

        .nav-item{
            margin-left: 20px;
        }

        /* Vision Mission */
        .vision-mission-section {
        }

        .vm-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
            border-left: 5px solid var(--gold);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--gold);
            font-size: 2rem;
        }

        .vm-card h3 {
            color: var(--dark-green);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .vm-card p {
            color: var(--primary-green);
            line-height: 1.8;
        }

        /* Why Choose Us */
        .why-choose-section {
            background: var(--white);
        }

        .feature-box {
            padding: 2rem;
            background: var(--cream);
            border-radius: 15px;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-box:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .feature-box h4 {
            color: var(--dark-green);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-box p {
            color: var(--primary-green);
            line-height: 1.6;
            margin: 0;
        }

        /* Work Process */
        .process-section {
            background: linear-gradient(135deg, var(--cream), var(--white));
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23606C38' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .process-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: var(--gold);
            color: var(--dark-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .process-card h4 {
            color: var(--dark-green);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .process-card p {
            color: var(--primary-green);
            line-height: 1.6;
        }

        /* Booking Form */
        .booking-section {
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            color: var(--cream);
        }

        .booking-section .section-title {
            color: var(--cream);
        }

        .booking-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .form-control, .form-select {
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(221, 161, 94, 0.25);
        }

        .form-label {
            color: var(--dark-green);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .btn-submit {
            background: var(--gold);
            color: var(--dark-green);
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Services Section */
        .services-section {
            /*background: var(--cream);*/
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(40, 54, 24, 0.8), transparent);
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: var(--light-gray);
        }

        .service-content h3 {
            color: var(--dark-green);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-content p {
            color: var(--primary-green);
            line-height: 1.8;
            flex-grow: 1;
        }

        /* Reviews Section */
        .reviews-section {
            background: var(--white);
        }

        .review-card {
            background: var(--cream);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .review-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .review-card::before {
            content: '\201C';
            font-size: 6rem;
            color: var(--gold);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: serif;
        }

        .review-text {
            color: var(--primary-green);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .reviewer-name {
            color: var(--dark-green);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .reviewer-location {
            color: var(--gold);
            font-size: 0.9rem;
        }

        .stars {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--cream);
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .accordion-button {
            background: var(--white);
            color: var(--dark-green);
            font-weight: 600;
            padding: 1.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-green);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-body {
            background: var(--white);
            color: var(--primary-green);
            line-height: 1.8;
            padding: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--cream);
            text-align: center;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.1;
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .btn-cta-large {
            background: var(--gold);
            color: var(--dark-green);
            padding: 1.2rem 4rem;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(221, 161, 94, 0.4);
        }

        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(221, 161, 94, 0.5);
            background: var(--cream);
            color:black !important;
        }

        /* Contact Section */
        .contact-section {
            background: var(--white);
        }

        .contact-info-card {
            background: var(--cream);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h5 {
            color: var(--dark-green);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .contact-details p {
            color: var(--primary-green);
            margin: 0;
            line-height: 1.6;
        }

        .contact-form {
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 20px;
        }

        /* Footer */
        footer {
            background: var(--dark-green);
            color: var(--cream);
            padding: 5rem 0 2rem;
        }

        .footer-col h4 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-col p {
            color: var(--cream);
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--cream);
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--gold);
            opacity: 1;
            padding-left: 5px;
        }

        .footer-links a i {
            color: var(--gold);
            font-size: 0.8rem;
        }

        .newsletter-form .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--cream);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .newsletter-form .form-control::placeholder {
            color: rgba(254, 250, 224, 0.6);
        }

        .newsletter-form .btn {
            background: var(--gold);
            color: var(--dark-green);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }

        .newsletter-form .btn:hover {
            background: var(--cream);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(254, 250, 224, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            opacity: 0.7;
        }

        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
            margin: 0 0.5rem;
        }

        /* Alert Messages */
        .alert-custom {
            display: none;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .alert-success-custom {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-error-custom {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .navbar-collapse {
                background: var(--cream);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--cream);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
        }

        .loader-icon {
            font-size: 4rem;
            color: var(--gold);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
