
        :root {
            --primary-color: #386641;    /* Dark Green */
            --secondary-color: #A7C957;  /* Light Green */
            --bg-light: #F2E8CF;         /* Beige/Cream */
            --accent-color: #BC4749;     /* Red/Rust */
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
            --transition: all 0.3s ease-in-out;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* Typography & Utilities */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .text-primary-custom { color: var(--primary-color); }
        .text-secondary-custom { color: var(--secondary-color); }
        .text-accent { color: var(--accent-color); }

        .btn-primary-custom {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-color);
            color: var(--bg-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(56, 102, 65, 0.3);
        }

        .btn-accent {
            background-color: var(--accent-color);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
        }
        
        .btn-accent:hover {
            background-color: #a33638;
            color: white;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* 1. Navbar */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important; /* Requested: without bg-color initially */
            position: relative;
            z-index: 1000;
        }
        
        /* Ensuring text is visible if the page behind is light/dark */
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--secondary-color) !important;
        }

        /* 2. Hero */
        .hero {
            background: linear-gradient(rgba(56, 102, 65, 0.9), rgba(56, 102, 65, 0.7)), url('https://images.pexels.com/photos/7723528/pexels-photo-7723528.jpeg');
            background-size: cover;
            background-position: center;
            height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            /* 2026 Trend: Organic shape bottom */
  
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* 3. About Us */
        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .about-img:hover img {
            transform: scale(1.05);
        }
        .about-desc {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #555;
            text-align: justify;
        }

        /* 4. Counter */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 2;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .counter-item h3 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        /* 5. Vision & Mission */
        .vm-card {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 15px;
            height: 100%;
            text-align: center;
            border: 1px solid rgba(56, 102, 65, 0.1);
        }
        .vm-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        /* 6. Why Choose Us */
        .feature-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        .feature-icon {
            min-width: 60px;
            height: 60px;
            background-color: rgba(167, 201, 87, 0.2);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            transition: var(--transition);
        }
        .feature-box:hover .feature-icon {
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }

        /* 8. Work Process - Creative */
        .process-step {
            position: relative;
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            z-index: 1;
        }
        .process-step:hover {
            transform: translateY(-10px);
            border-bottom: 5px solid var(--secondary-color);
        }
        .process-number {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(56, 102, 65, 0.05);
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--bg-light);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            border: 2px solid var(--primary-color);
        }

        /* 7. Services */
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            height: 100%;
            background-color: var(--bg-light); /* Requested bg-light */
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(56, 102, 65, 0.15);
        }
        .service-img-wrapper {
            height: 350px;
            overflow: hidden;
        }
        .service-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .service-card:hover .service-img-wrapper img {
            transform: scale(1.1);
        }
        .service-desc {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #555;
            overflow: hidden;
        }

        /* 8. Reviews */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #eee;
            box-shadow: 0 5px 10px rgba(0,0,0,0.03);
            margin-bottom: 20px;
        }
        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        .reviewer-info h5 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0;
        }
        .reviewer-info span {
            font-size: 0.85rem;
            color: #777;
        }

        /* 9. FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--bg-light);
            color: var(--primary-color);
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        .accordion-button {
            font-weight: 600;
        }

        /* 11. Contact */
        .contact-info-box {
            padding: 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 15px;
            height: 100%;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .contact-item i {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* 12. Footer */
        footer {
            background-color: #222;
            color: #ccc;
            padding-top: 80px;
            padding-bottom: 20px;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        footer ul li {
            margin-bottom: 10px;
        }
        footer a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .footer-social a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            color: white;
            text-align: center;
            line-height: 35px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .footer-social a:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }
        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 50px;
            padding-top: 20px;
            font-size: 0.9rem;
        }

        /* Form Validation Message */
        .form-message {
            display: none;
            margin-top: 15px;
            padding: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .form-message.success {
            display: block;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .form-message.error {
            display: block;
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Booking Form */
        .booking-wrapper {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 20px;
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .hero-content h1 { font-size: 2.5rem; }
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
        }
