:root {
            --yojna-primary: #f57c00; /* saffron-ish */
            --yojna-secondary: #1b5e20; /* deep green */
            --yojna-accent: #1565c0; /* blue accent */
            --light-bg: #f8f9fa;
        }
        body {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        .top-strip { background: linear-gradient(90deg, var(--yojna-primary), var(--yojna-secondary)); color: #fff; font-size: 0.9rem; }
        .yojna-logo-circle { width: 52px; height: 52px; border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; background: rgba(255,255,255,0.1); }
        .nav-link { font-weight: 500; }
        .nav-link.active { color: var(--yojna-secondary) !important; }
        .section-title { border-left: 4px solid var(--yojna-primary); padding-left: 0.75rem; margin-bottom: 1.5rem; }
        .section-title small { display: block; text-transform: uppercase; font-size: 0.75rem; color: #6c757d; letter-spacing: 0.08em; }
        .section-title h2 { margin: 0; font-size: 1.5rem; font-weight: 700; }
        .feature-badge { background-color: #fff; border-radius: 999px; border: 1px solid rgba(0,0,0,0.05); padding: 0.55rem 0.75rem; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.35rem; margin: 0.25rem; }
        .feature-badge span.icon { width: 22px; height: 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background-color: rgba(21, 101, 192, 0.08); font-size: 0.9rem; }
        .tag-pill { display: inline-flex; align-items: center; padding: 0.25rem 0.6rem; border-radius: 999px; font-size: 0.75rem; text-transform: uppercase; border: 1px solid rgba(0,0,0,0.08); color: #6c757d; background-color: #fff; margin-right: 0.35rem; margin-bottom: 0.35rem; }
        .contact-badge { font-size: 0.9rem; border-radius: 999px; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.75rem; background-color: rgba(21, 101, 192, 0.08); color: var(--yojna-accent); }
        .project-pill { border-radius: 0.5rem; border: 1px dashed rgba(0,0,0,0.1); padding: 0.75rem 0.9rem; background-color: #fff; font-size: 0.9rem; }
        .yojna-badge-hindi { font-size: 0.8rem; color: var(--yojna-primary); font-weight: 600; }
        .news-badge { background-color: #d32f2f; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; animation: blink 1.2s linear infinite; }
        .news-scroll-box { height: 110px; overflow: hidden; position: relative; }
        .news-scroll-list { list-style: none; padding-left: 0; margin: 0; animation: verticalScroll 12s linear infinite; }
        .news-scroll-list li { padding: 6px 0; border-bottom: 1px dotted #ccc; font-size: 0.9rem; }
        @keyframes verticalScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.35; } 100% { opacity: 1; } }
        /* Marquee */
        .custom-marquee { overflow: hidden; white-space: nowrap; background: #fff3cd; border-bottom: 1px solid #ffecb5; }
        .marquee-track { display: inline-block; padding-left: 100%; animation: marquee-scroll 35s linear infinite; }
        .marquee-content { display: inline-block; padding-right: 50px; font-weight: 600; color: #664d03; }
        @keyframes marquee-scroll { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } }
        
        /* --- NEW DESIGN CHANGES --- */

        /* 1. New Hero Section with Background Image */
        .hero-section {
            /* Fallback color + Gradient + Image URL */
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('assets/img/hero-bg.jpg'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 5rem 0 8rem 0; /* Extra padding bottom for overlap */
            color: #fff;
            position: relative;
        }
        /* Create a fallback if image is missing */
        .hero-section { background-color: #2c3e50; } 

        .hero-badge {
            background-color: var(--yojna-primary);
            color: #fff;
            font-weight: 600;
            border-radius: 4px;
            padding: 0.35rem 0.9rem;
            font-size: 0.85rem;
            display: inline-block;
        }
        .hero-title span { color: #ffd54f; /* Light Yellow for contrast on dark bg */ }
        .hero-list li { margin-bottom: 8px; font-size: 1.1rem; }
        
        /* 2. Floating Info Bar (Replaces old card) */
        .info-bar-container {
            margin-top: -60px; /* Pull up to overlap hero */
            position: relative;
            z-index: 10;
        }
        .info-bar {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 25px;
            border-top: 4px solid var(--yojna-secondary);
        }
        .stat-item {
            text-align: center;
            border-right: 1px solid #eee;
            padding: 0 15px;
        }
        .stat-item:last-child { border-right: none; }
        .stat-item h6 { font-size: 0.75rem; text-transform: uppercase; color: #888; letter-spacing: 1px; margin-bottom: 5px; }
        .stat-item .value { font-size: 1.2rem; font-weight: 700; color: var(--yojna-secondary); }

        /* 3. Improved Image Cards (Master Plan/Location) */
        .design-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .design-card:hover { transform: translateY(-5px); }
        .design-card img {
            border-radius: 8px;
            width: 100%;
            height: 250px;
            object-fit: cover;
            border: 1px solid #f0f0f0;
        }

        /* 4. Plot Cards Refined */
        .plot-card {
            border-radius: 12px;
            overflow: hidden;
            border: none;
            background-color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .plot-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }
        .plot-card-header {
            background: var(--yojna-secondary); /* Solid green header */
            color: #fff;
            padding: 1rem;
        }
        .plot-card-body { padding: 1.2rem; flex: 1; }
        .plot-size { font-size: 1.6rem; font-weight: 800; color: #fff; }

        /* Mobile tweaks */
        @media (max-width: 768px) {
            .stat-item { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 15px; }
            .stat-item:last-child { border-bottom: none; margin-bottom: 0; }
            .hero-section { padding: 3rem 0; text-align: center; }
            .d-flex.gap-3 { justify-content: center; }
        }
        
        /* --- GALLERY SECTION CSS --- */
.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: 250px; /* Fixed height for uniformity */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    transition: transform 0.5s ease;
}

/* Hover Effect: Zoom Image */
.gallery-card:hover img {
    transform: scale(1.1);
}

/* Overlay Styling (Hidden by default) */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.7); /* Greenish semi-transparent tint */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show Overlay on Hover */
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Slide text up on hover */
.gallery-card:hover .overlay-text {
    transform: translateY(0);
}