
        /* --- 1. GREEN THEME & GLOBAL SETTINGS --- */
        :root {
            --colorPrimary: #145026;
            --colorSecondary: #2e7d32;
            --colorAccent: #C5A059;
            --textDark: #2c3e50;
            --bgCream: #F9FBF9;
            --sidebarWidth: 300px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bgCream);
            color: var(--textDark);
            overflow-x: hidden;
            padding-bottom: 60px; /* Space for sticky footer */
        }

        h1, h2, h3, h4, .head, .modal-title, .pro-title {
            font-family: 'Playfair Display', serif;
        }

        /* Prevent Sticky Header from covering Section Titles */
        section {
            scroll-margin-top: 80px;
        }

        /* Buttons */
        .btn {
            font-size: 14px;
            padding: 8px 20px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-green {
            background-color: var(--colorPrimary);
            color: #fff;
            border: 1px solid var(--colorPrimary);
        }

        .btn-green:hover {
            background-color: var(--colorSecondary);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-green {
            border: 1px solid var(--colorPrimary);
            color: var(--colorPrimary);
            background: transparent;
        }

        .btn-outline-green:hover {
            background-color: var(--colorPrimary);
            color: #fff;
        }

        /* --- 2. DESKTOP SIDEBAR --- */
        @media (min-width: 992px) {
            body {
                padding-right: var(--sidebarWidth);
                padding-bottom: 0;
            }

            .micro-side {
                position: fixed;
                top: 0;
                right: 0;
                width: var(--sidebarWidth);
                height: 100vh;
                background: #fff;
                z-index: 1060;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
                display: block;
            }

            .micro-nav {
                width: calc(100% - var(--sidebarWidth));
                right: var(--sidebarWidth);
            }
        }

        @media (max-width: 991px) {
            .micro-side {
                display: none;
            }

            .micro-nav {
                width: 100%;
                right: 0;
            }
        }

        /* Sidebar Header */
        .side-header {
            background: var(--colorPrimary);
            color: #fff;
            padding: 12px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
        }

        .side-icon-box {
            flex: 1;
            text-align: center;
            cursor: pointer;
            padding: 5px;
            border-right: 1px solid #444;
        }

        .side-icon-box:last-child {
            border-right: none;
        }

        .side-icon-box i {
            font-size: 18px;
            color: var(--colorAccent);
            margin-bottom: 5px;
            display: block;
        }

        .side-icon-box a {
            color: #fff;
            text-decoration: none;
            display: block;
        }

        .side-body {
            padding: 20px;
        }

        .call-btn-pulse {
            background: #ff5722;
            color: white;
            width: 100%;
            margin-bottom: 20px;
            padding: 12px;
            border: none;
            font-weight: bold;
            border-radius: 4px;
            animation: pulse-orange 2s infinite;
        }

        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 87, 34, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
        }

        .side-form { padding: 0; }
        .side-input {
            border-radius: 0;
            border: 1px solid #ccc;
            font-size: 13px;
            height: 38px;
            margin-bottom: 10px;
        }

        .side-submit {
            background: var(--colorAccent);
            color: #fff;
            width: 100%;
            border: none;
            padding: 10px;
            font-weight: bold;
            margin-top: 5px;
            cursor: pointer;
        }

        .side-submit:hover { background: #b08d4b; }
/* --- COMPACT SIDEBAR CSS (To Remove Slider) --- */

/* 1. Body Padding Kam ki */
.side-body {
    padding: 10px 15px !important; /* Pehle 20px tha */
}

/* 2. Header Compact */
.side-header {
    padding: 8px 10px !important;
}

/* 3. WhatsApp Button Size */
.call-btn-pulse {
    margin-bottom: 10px !important;
    padding: 8px !important;
    font-size: 12px !important;
}

/* 4. Form Inputs & Labels Compact */
.side-form .mb-3 {
    margin-bottom: 8px !important; /* Bootstrap ka gap kam kiya */
}

.side-form label.form-label {
    font-size: 12px !important;
    margin-bottom: 2px !important;
}

.side-form .form-control {
    height: 32px !important; /* Input box ki height kam ki */
    font-size: 12px !important;
    padding: 4px 8px !important;
}

/* 5. Radio Buttons Gap */
.side-form .d-flex.gap-4 {
    gap: 15px !important; /* Villa aur Plot ke beech ka gap kam kiya */
}

/* 6. Button Size */
.side-form .btn-green {
    padding: 6px !important;
    font-size: 13px !important;
}

/* 7. Logo Size (Bahut jagah leta hai) */
.side-body img.enqModal {
    width: 120px !important; /* 200px se 120px kiya */
    margin-top: 10px !important;
}

/* 8. Highlights Section Compact */
.side-highlights {
    margin-top: 10px !important;
    padding-top: 10px !important;
}

.side-highlights .mb-3 {
    margin-bottom: 5px !important; /* Icons ke beech ka gap */
}

.side-highlights i {
    font-size: 16px !important; /* Icons thode chote */
}

.side-highlights h6 {
    font-size: 12px !important;
}
        /* --- 3. NAVBAR & OFFCANVAS --- */
        .micro-nav {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .nav-link {
            color: var(--textDark) !important;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--colorPrimary) !important;
        }

        /* --- LOGO SIZE FIX --- */
        .logo {
            height: 50px; /* Default desktop size */
        }

        @media (max-width: 991px) {
            .logo {
                height: 35px; /* Smaller size for mobile/tablet */
            }
            
            .navbar .container-fluid {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: nowrap;
            }

            .navbar-brand { margin-right: auto; }
            
            .navbar-toggler {
                border: none;
                padding: 0;
                margin-left: 15px;
            }
            
            .navbar-toggler:focus { box-shadow: none; }

            .offcanvas-body .navbar-nav {
                align-items: flex-start !important;
                text-align: left;
                width: 100%;
            }

            .offcanvas-body .nav-item {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .offcanvas-body .nav-link {
                padding: 15px 0;
                display: block;
            }
        }

        /* --- 4. HERO SECTION --- */
       .carousel {
    position: relative;
    margin-top: 70px;
}
        .carousel-item {
            /*height: 90vh;*/
            /*min-height: 600px;*/
            background-color: #000;
        }

        .micro-main-slider-img {
           
            object-fit: cover;
         
        }

        .info-box-wrapper {
            position: absolute;
            top: 55%;
            left: 5%;
            transform: translateY(-50%);
            z-index: 100;
            width: 90%;
            max-width: 380px;
        }

        .info-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-top: 4px solid var(--colorAccent);
        }

        .offer-header {
            background: var(--colorAccent);
            color: #fff;
            text-align: center;
            padding: 8px;
            font-weight: bold;
        }

        .info-body { padding: 25px; text-align: center; }
        .pro-title { font-size: 26px; color: var(--colorPrimary); font-weight: 700; }
        
        .hero-stats {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
            margin: 15px 0;
        }

        .stat-item h6 { font-size: 11px; color: #777; margin: 0; text-transform: uppercase; }
        .stat-item span { font-size: 14px; font-weight: bold; color: var(--textDark); }

        .offer-dotted {
            border: 2px dashed var(--colorPrimary);
            background: #f1f8f3;
            color: var(--colorPrimary);
            padding: 10px;
            margin-bottom: 15px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 12px;
        }

        .price-tag {
            font-size: 28px;
            font-weight: 700;
            color: var(--textDark);
            display: block;
            margin-bottom: 15px;
        }

        /* --- 5. MASTER PLAN --- */
        .mp-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            height: 300px;
        }

        .mp-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mp-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 80, 38, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mp-btn-anim {
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            color: var(--colorPrimary);
            padding: 10px 25px;
            font-weight: bold;
            border-radius: 30px;
            transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
            white-space: nowrap;
        }

        .mp-card:hover .mp-overlay { bottom: 0; }
        .mp-card:hover .mp-btn-anim { top: 45%; }
        .mp-card:hover img { transform: scale(1.1); }

        /* --- 6. SECTIONS --- */
        .section { padding: 70px 0; }

        .head {
            color: var(--colorPrimary);
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            display: inline-block;
        }

        .head::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--colorAccent);
            margin: 10px auto 0;
        }

        .pricing-table th { background: var(--colorPrimary); color: #fff; padding: 15px; }
        .pricing-table td { vertical-align: middle; padding: 15px; }

        /* --- 7. MOBILE STICKY FOOTER --- */
        .mobile-sticky-footer {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #fff;
            z-index: 9999;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }

        .footer-btn-item {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-call { background-color: #0c2b16; color: #fff; }
        .footer-enquire { background-color: #C5A059; color: #0c2b16; }

        /* --- 8. SWIPER & MAP --- */
        .swiper { width: 100%; height: 100%; padding-bottom: 40px; }
        .swiper-slide {
            text-align: center;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
        }
        
        /* Unified Gallery Height */
        .gallery-slide-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #eee;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        @media (min-width: 992px) {
            .gallery-slide-img { height: 300px; }
        }

        .swiper-pagination-bullet-active { background-color: var(--colorPrimary) !important; }

        .map-outline {
            border: 4px solid var(--colorPrimary);
            border-radius: 8px;
            padding: 4px;
            background: #fff;
        }

        .text-custom-green { color: var(--colorPrimary) !important; }

        /* --- 9. RESPONSIVE --- */
        @media (max-width: 767px) {
            .mobile-sticky-footer { display: flex; }
            #home { display: flex; flex-direction: column; height: auto; }
            .carousel-item { height: 50vh; min-height: auto; }
            .info-box-wrapper {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                width: 100%;
                max-width: 100%;
                margin-top: -20px;
                z-index: 101;
                padding: 0 15px;
            }
            .info-box { padding: 15px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
            .section { padding: 40px 0; }
        }
    
        /* --- 10. FORM ELEMENTS --- */
        .green-input:focus {
            border-color: #145026 !important;
            box-shadow: 0 0 0 0.15rem rgba(20, 80, 38, 0.25) !important;
        }

        .green-radio:checked {
            background-color: #145026 !important;
            border-color: #145026 !important;
        }

        .green-radio:focus {
            box-shadow: 0 0 0 0.15rem rgba(20, 80, 38, 0.25) !important;
        }

        .error-msg {
            font-size: 12px;
        }
    