        /* System font fallback: renders instantly before custom fonts load (eliminates FOIT) */
        @font-face {
            font-family: 'Noto Sans';
            font-display: swap;
            src: local('Arial');
        }

        @font-face {
            font-family: 'Noto Sans Devanagari';
            font-display: swap;
            src: local('Arial');
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --gov-blue: #003366;
            --gov-blue-mid: #004080;
            --gov-blue-light: #1a5fa8;
            --gov-orange: #FF6600;
            --gov-orange-light: #ff8533;
            --gov-green: #138808;
            --gov-gold: grey;
            --white: #ffffff;
            --off-white: #f4f6f9;
            --light-gray: #e8ecf0;
            --border: #c8d3de;
            --text-dark: #1a1a2e;
            --text-mid: #3a4a5c;
            --text-light: #6b7d8f;
            --shadow: 0 2px 8px rgba(0, 51, 102, 0.12);
            --shadow-md: 0 4px 16px rgba(0, 51, 102, 0.16);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: clip;
            /* prevent horizontal scroll revealing white space on mobile without breaking sticky positioning */
        }

        body {
            /* System fonts render instantly as fallback; custom fonts swap in when loaded */
            font-family: 'Noto Sans', 'Noto Sans Devanagari', Arial, sans-serif;
            background: var(--off-white);
            color: var(--text-dark);
            font-size: 13px;
            line-height: 1.6;
            overflow-x: clip;
            /* prevent horizontal swipe showing white background on mobile without breaking sticky positioning */
        }

        a {
            color: var(--gov-blue-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: white;
            text-decoration: underline;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 16px;
            box-sizing: border-box;
        }

        .hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .bilingual-block {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .bilingual-block .en {
            font-size: 0.85em;
            color: inherit;
            opacity: 0.8;
        }

        .bilingual-block .hi {
            font-size: 1em;
            font-weight: 600;
        }

        .lang-sep {
            color: rgba(255, 255, 255, 0.4);
            margin: 0 4px;
        }

        /* ===== TOP TICKER ===== */
        .top-ticker {
            background: var(--gov-orange);
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 0;
            overflow: hidden;
        }

        .ticker-inner {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .ticker-label {
            background: var(--gov-blue);
            color: var(--white);
            padding: 6px 14px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            white-space: nowrap;
            flex-shrink: 0;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .ticker-wrap {
            overflow: hidden;
            flex: 1;
        }

        .ticker-text {
            white-space: nowrap;
            display: inline-block;
            animation: ticker 30s linear infinite;
            padding-left: 100%;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        @keyframes ticker {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-100%);
            }
        }

        /* ===== GOV HEADER ===== */
        .gov-header {
            background: var(--white);
            border-bottom: 4px solid var(--gov-blue);
            padding: 10px 0;
        }

        .gov-header-inner {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .gov-emblem {
            width: 76px;
            height: 76px;
            flex-shrink: 0;
        }

        .gov-emblem img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .gov-header-text {
            flex: 1;
        }

        .gov-dept {
            font-size: 11.5px;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 1px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .gov-title-en {
            font-size: 17px;
            font-weight: 700;
            color: var(--gov-blue);
            line-height: 1.2;
        }

        .gov-title-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--gov-blue-mid);
            line-height: 1.3;
            margin-top: 2px;
        }

        .gov-subtitle {
            font-size: 13px;
            color: var(--gov-orange);
            font-weight: 600;
            margin-top: 3px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .gov-header-logos {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .gov-header-logos img {
            height: 66px;
            object-fit: contain;
        }
        
        /* ===== STICKY HEADER CONTAINER FOR DESKTOP ===== */
        .sticky-header-container {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* ===== NAVIGATION ===== */
        .main-nav {
            background: var(--gov-blue);
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
        }

        .nav-g4-badge {
            background-color: var(--gov-orange);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Noto Sans Devanagari', sans-serif;
            text-transform: uppercase;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
            animation: pulse-glow 2s infinite ease-in-out;
        }

        @keyframes pulse-glow {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
            }

            70% {
                transform: scale(1.04);
                box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
            }
        }

        .mobile-only {
            display: none !important;
        }

        @media (max-width: 768px) {

            html,
            body {
                overflow-x: visible;
            }

            .mobile-only {
                display: list-item !important;
            }

            .sticky-header-container {
                position: -webkit-sticky !important;
                position: sticky !important;
                top: 0 !important;
                z-index: 9999 !important;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            }

            .gov-header {
                padding: 6px 0;
            }

            .gov-header-inner {
                gap: 10px;
            }

            .gov-emblem {
                width: 48px;
                height: 48px;
            }

            .gov-dept {
                font-size: 9.5px;
                margin-bottom: 0px;
            }

            .gov-title-hi {
                font-size: 13px;
                margin-top: 1px;
            }

            .gov-title-en {
                font-size: 13px;
            }

            .gov-subtitle {
                font-size: 10px;
                margin-top: 1px;
            }

            .nav-g4-badge {
                font-size: 13px;
                padding: 6px 12px;
                gap: 5px;
            }

            .menu-toggle {
                font-size: 13px;
                padding: 6px 12px;
                margin: 0;
            }

            .nav-sidebar-btn {
                font-size: 10px;
                padding: 0 6px;
                gap: 3px;
                height: 30px;
                min-width: unset;
            }

            .nav-inner {
                padding: 4px 2px;
            }

            .nav-inner>div {
                gap: 4px !important;
            }
        }

        @media (max-width: 500px) {

            /* Show full badge text on all screens */
            .nav-g4-badge .badge-text-full {
                display: inline !important;
            }

            .nav-g4-badge .badge-text-short {
                display: none !important;
            }

            /* Nav sidebar buttons: show text on small screens */
            .nav-sidebar-btn span {
                display: inline !important;
            }

            .nav-g4-badge {
                font-size: 12px;
                padding: 5px 10px;
                margin: 10px;
            }

            .menu-toggle {
                font-size: 12px;
                padding: 5px 10px;
            }

            .nav-sidebar-btn {
                font-size: 8.5px;
                padding: 0 8px;
                height: 30px;
                gap: 2px;
                min-width: 32px;
            }

            .nav-inner>div {
                gap: 4px !important;
            }
        }

        /* ===== VERY SMALL MOBILE ≤450px: Hero layout fixes ===== */
        @media (max-width: 450px) {

            /* Stack hero content above the side panel */
            .hero-inner {
                flex-direction: column;
                align-items: stretch;
                min-height: unset;
            }

            .hero-content {
                max-width: 100%;
                margin: 12px 12px 0 12px;
                padding: 16px;
            }

            /* Hero side panel becomes full-width strip below content */
            .hero-side {
                width: 100% !important;
                border-left: none !important;
                border-top: 1px solid rgba(255, 255, 255, 0.14);
                padding: 14px 16px;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
            }

            .hero-stat-card {
                flex: 1 1 calc(50% - 8px);
                border-bottom: none !important;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 6px;
                padding: 8px;
            }

            /* Free Registry box: full width on mobile */
            .hero-side>div:last-child {
                width: 100%;
                max-width: 100% !important;
                margin: 0 !important;
            }
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li a {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 16px;
            color: var(--white);
            font-size: 12.5px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            line-height: 1.3;
        }

        .nav-menu li a .nav-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 12px;
            font-weight: 600;
        }

        .nav-menu li a .nav-en {
            font-size: 10px;
            opacity: 0.7;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: var(--gov-orange);
            text-decoration: none;
            color: var(--white);
        }

        .nav-phone-bar {
            padding: 0 14px;
            color: var(--white);
            font-size: 12.5px;
            white-space: nowrap;
            font-family: 'Noto Sans Devanagari', sans-serif;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-phone-bar a {
            color: white;
            font-weight: 700;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .nav-phone-bar a:hover {
            color: var(--white);
        }

        /* Desktop: hide phone/email text, show icon only */
        @media (min-width: 769px) {
            .contact-label {
                display: none;
            }

            .nav-phone-bar a,
            .contact-icon-link {
                font-size: 18px;
                transition: transform 0.18s, color 0.18s;
            }

            .nav-phone-bar a:hover,
            .contact-icon-link:hover {
                transform: scale(1.18);
                color: var(--white);
            }
        }

        /* Mobile: show full text */
        @media (max-width: 768px) {
            .contact-label {
                display: inline;
            }
        }

        .nav-toggle-badge-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        @media (max-width: 768px) {
            .nav-toggle-badge-wrapper {
                width: 100%;
                justify-content: space-between;
            }
        }

        .menu-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: var(--white);
            font-size: 18px;
            padding: 6px 12px;
            cursor: pointer;
            border-radius: 3px;
            margin: 8px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        /* Nav Sidebar Toggle Buttons */
        .nav-sidebar-toggles {
            display: none;
            gap: 6px;
        }

        .nav-sidebar-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            width: auto;
            min-width: 36px;
            height: 36px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 0 10px;
            transition: background 0.2s;
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 11px;
            font-weight: 700;
            white-space: nowrap;
        }

        .nav-sidebar-btn:hover {
            background: var(--gov-orange);
        }

        .nav-sidebar-btn i {
            font-size: 14px;
        }

        /* ===== HERO ===== */
        .hero-banner {
            background-color: #0d2847; /* Dark blue fallback color */
            background-image: url('../images/banner.png');
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: radial-gradient(circle at 80% 50%, rgba(255, 102, 0, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-inner {
            display: flex;
            align-items: center;
            min-height: 400px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            flex: 1;
            padding: 24px;
            color: var(--white);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            margin: 16px;
            max-width: 680px;
            /* background: rgba(0, 24, 51, 0.85);
            backdrop-filter: blur(10px); */
        }

        .hero-badge {
            display: inline-block;
            background: var(--gov-orange);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .hero-h1-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .hero-h1-en {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 14px;
        }

        .hero-desc-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.8;
            margin-bottom: 6px;
            max-width: 620px;
        }

        .hero-desc-en {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.68);
            line-height: 1.7;
            max-width: 620px;
            margin-bottom: 18px;
        }

        .hero-cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gov-orange);
            color: var(--white);
            padding: 11px 26px;
            font-size: 14px;
            font-weight: 700;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.2s, transform 0.15s;
            box-shadow: 0 3px 10px rgba(255, 102, 0, 0.4);
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .btn-primary:hover {
            background: var(--gov-orange-light);
            transform: translateY(-1px);
            text-decoration: none;
            color: var(--white);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 10px 22px;
            font-size: 13px;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.55);
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--white);
            text-decoration: none;
            color: var(--white);
        }

        .hero-side {
            width: 350px;
            flex-shrink: 0;
            background: rgba(0, 20, 40, 0.6);
            border-left: 1px solid rgba(255, 255, 255, 0.14);
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hero-stat-card {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border: none;
            border-radius: 0;
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: none;
            box-shadow: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-stat-card:last-child {
            border-bottom: none;
        }

        .hero-stat-card:hover {
            background: transparent;
            transform: none;
            box-shadow: none;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .hero-stat-icon {
            font-size: 18px;
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: none;
            margin-top: 2px;
        }

        .hero-stat-card:hover .hero-stat-icon {
            background: rgba(255, 102, 0, 0.2);
            border-color: rgba(255, 102, 0, 0.4);
        }

        .hero-stat-lbl-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.4;
            margin-bottom: 2px;
        }

        .hero-stat-lbl-en {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.3px;
            margin-bottom: 2px;
        }

        .hero-stat-val {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-top: 2px;
        }

        /* ===== SPECIAL OFFER TICKER ===== */
        .special-offer-ticker {
            background: linear-gradient(90deg, #ff9933 0%, #ff8f00 50%, #ff9933 100%);
            overflow: hidden;
            padding: 12px 0;
            border-bottom: 2px solid #e68a00;
        }

        .ticker-content {
            display: flex;
            white-space: nowrap;
            animation: ticker-scroll 15s linear infinite;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            padding-left: 100%;
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .special-offer-logo {
            animation: logo-glow 1.5s ease-in-out infinite alternate;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
        }

        @keyframes logo-glow {
            0% {
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
                transform: scale(1) rotate(0deg);
            }

            25% {
                transform: scale(1.05) rotate(-5deg);
            }

            50% {
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
                transform: scale(1.1) rotate(0deg);
            }

            75% {
                transform: scale(1.05) rotate(5deg);
            }

            100% {
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
                transform: scale(1) rotate(0deg);
            }
        }

        .blink-offer {
            animation: blink-animation 1s ease-in-out infinite;
        }

        @keyframes blink-animation {

            0%,
            100% {
                opacity: 1;
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
            }

            50% {
                opacity: 0.5;
                text-shadow: 0 0 20px rgba(255, 255, 255, 1);
            }
        }

        @keyframes ticker-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            background: var(--white);
            border-bottom: 3px solid var(--gov-orange);
            box-shadow: var(--shadow);
        }

        .stats-bar-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat-item {
            padding: 16px;
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--gov-blue);
            line-height: 1;
        }

        .stat-lbl-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 12px;
            color: var(--text-mid);
            margin-top: 3px;
            font-weight: 600;
        }

        .stat-lbl-en {
            font-size: 11px;
            color: var(--text-light);
        }

        /* ===== MAIN LAYOUT ===== */
        .main-content {
            padding: 24px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 255px 1fr 255px;
            gap: 18px;
            align-items: start;
        }

        .right-sidebar {
            position: sticky;
            top: 70px;
            /* Offset to clear the sticky main navigation bar */
            max-height: calc(100vh - 90px);
            overflow-y: auto;
        }

        .left-sidebar {
            position: sticky;
            top: 70px;
            /* Offset to clear the sticky main navigation bar */
            max-height: calc(100vh - 90px);
            overflow-y: auto;
        }

        /* Middle column always fills its grid cell fully */
        .middle-col {
            width: 100%;
            min-width: 0;
            /* prevents grid blowout on flex/grid children */
            box-sizing: border-box;
        }

        /* ===== MOBILE: Collapse 3-col grid to single column ===== */
        @media (max-width: 768px) {
            .content-grid {
                /* Single column — sidebars are hidden and available via slide-in panels */
                grid-template-columns: 1fr;
                gap: 0;
            }

            /* Hide sidebars on mobile — accessible via ≡ toggle buttons in nav */
            .left-sidebar,
            .right-sidebar {
                display: none;
            }

            .main-content {
                padding: 12px 0;
            }

            .scheme-section {
                padding: 14px 12px;
                margin-bottom: 12px;
            }

            .hindi-block,
            .english-block {
                font-size: 14px;
            }
        }


        /* ===== WIDGETS ===== */
        .widget {
            background: var(--white);
            border: 1px solid var(--border);
            border-top: 3px solid var(--gov-blue);
            border-radius: 2px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 14px;
        }

        .widget-header {
            background: var(--gov-blue);
            color: var(--white);
            padding: 9px 14px;
        }

        .widget-header-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            font-weight: 700;
            display: block;
        }

        .widget-header-en {
            font-size: 10px;
            opacity: 0.7;
            display: block;
        }

        .widget-body {
            padding: 12px 14px;
        }

        .widget-list {
            list-style: none;
        }

        .widget-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border);
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.6;
        }

        .widget-list li:last-child {
            border-bottom: none;
        }

        .widget-list li .hi {
            font-size: 13px;
            font-weight: 600;
            display: block;
        }

        .widget-list li .en {
            font-size: 11.5px;
            color: var(--text-light);
            display: block;
        }

        .status-open {
            display: inline-block;
            background: #d4edda;
            color: #155724;
            font-size: 10px;
            font-weight: 700;
            padding: 1px 7px;
            border-radius: 3px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .status-closed {
            display: inline-block;
            background: #f8d7da;
            color: #721c24;
            font-size: 10px;
            font-weight: 700;
            padding: 1px 7px;
            border-radius: 3px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        /* COUNTDOWN */
        .countdown-widget {
            background: linear-gradient(135deg, var(--gov-blue), #1a5fa8);
            border-radius: 2px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: 14px;
        }

        .countdown-header {
            background: var(--gov-orange);
            padding: 9px 14px;
            text-align: center;
        }

        .countdown-header-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--white);
            display: block;
        }

        .countdown-header-en {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.8);
            display: block;
        }

        .countdown-body {
            padding: 14px;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
            text-align: center;
        }

        .cd-box {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            padding: 8px 4px;
        }

        .cd-num {
            display: block;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
        }

        .cd-lbl-hi {
            display: block;
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 2px;
        }

        .cd-lbl-en {
            display: block;
            font-size: 9px;
            color: rgba(255, 255, 255, 0.45);
        }

        .countdown-deadline {
            text-align: center;
            font-size: 11.5px;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 10px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .countdown-deadline strong {
            color: white;
        }

        .btn-register {
            display: block;
            background: var(--gov-orange);
            color: var(--white);
            text-align: center;
            padding: 10px;
            font-size: 13px;
            font-weight: 700;
            margin-top: 12px;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.2s;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .btn-register:hover {
            background: var(--gov-orange-light);
            text-decoration: none;
            color: var(--white);
        }

        /* ===== SCHEME SECTION ===== */
        .scheme-section {
            background: var(--white);
            border: 1px solid var(--border);
            border-top: 3px solid var(--gov-blue);
            border-radius: 2px;
            padding: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 18px;
        }

        .section-title-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 16px;
            font-weight: 800;
            color: var(--gov-blue);
            display: block;
        }

        .section-title-en {
            font-size: 12px;
            color: var(--text-light);
            font-weight: 500;
            display: block;
            margin-bottom: 14px;
        }

        .section-divider-line {
            width: 48px;
            height: 3px;
            background: var(--gov-orange);
            margin: 6px 0 14px;
            border-radius: 2px;
        }

        .hindi-block {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 16px;
            color: var(--text-mid);
            line-height: 1.85;
            background: #f0f4f8;
            border-left: 3px solid var(--gov-orange);
            padding: 13px 15px;
            border-radius: 0 4px 4px 0;
            margin-bottom: 10px;
        }

        .english-block {
            font-size: 15px;
            color: var(--text-mid);
            line-height: 1.75;
            margin-bottom: 14px;
        }

        /* ===== PROJECT HIGHLIGHT ===== */
        .avenue-highlight {
            background: var(--white);
            border: 1px solid var(--border);
            border-top: 3px solid var(--gov-orange);
            border-radius: 2px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 18px;
        }

        .avenue-highlight-header {
            background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-light));
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .avenue-logo-text {
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 2px;
            line-height: 1;
        }

        .avenue-logo-text span {
            color: var(--gov-gold);
        }

        .avenue-logo-sub {
            font-size: 9px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            margin-top: 3px;
        }

        .avenue-rera {
            font-size: 10px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 10px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .avenue-body {
            padding: 16px;
        }

        .avenue-banner-wrap {
            position: relative;
            margin-bottom: 14px;
            border-radius: 4px;
            overflow: hidden;
        }

        .avenue-banner-wrap img {
            width: 100%;
            display: block;
            border-radius: 4px;
            max-height: 220px;
            object-fit: cover;
        }

        .avenue-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 51, 102, 0.8) 0%, transparent 70%);
            display: flex;
            align-items: flex-end;
            padding: 14px;
        }

        .avenue-banner-tagline {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.25;
            letter-spacing: 0.5px;
        }

        .avenue-banner-tagline em {
            font-style: italic;
            color: var(--gov-gold);
        }

        .avenue-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .avenue-metric {
            background: var(--white);
            padding: 12px 8px;
            text-align: center;
        }

        .avenue-metric-icon {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .avenue-metric-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gov-blue);
            display: block;
            margin-bottom: 3px;
        }

        .avenue-metric-value {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-dark);
            display: block;
            line-height: 1.1;
        }

        .avenue-metric-unit {
            font-size: 9px;
            color: var(--text-light);
            letter-spacing: 1px;
            display: block;
        }

        .avenue-desc {
            font-size: 15px;
            color: var(--text-mid);
            line-height: 1.8;
            margin-bottom: 14px;
            border-left: 3px solid var(--gov-orange);
            background: var(--off-white);
            padding: 12px 12px 12px 14px;
            border-radius: 0 4px 4px 0;
        }

        .avenue-amenities {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 14px;
        }

        .avenue-amenity {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 10px 8px;
            text-align: center;
            transition: all 0.2s;
        }

        .avenue-amenity:hover {
            background: var(--off-white);
            border-color: var(--gov-orange);
            transform: translateY(-1px);
        }

        .avenue-amenity-icon {
            font-size: 20px;
            margin-bottom: 5px;
            display: block;
        }

        .avenue-amenity-name {
            font-size: 10.5px;
            font-weight: 700;
            color: var(--gov-blue);
            letter-spacing: 0.5px;
            display: block;
        }

        .avenue-cta-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn-avenue-primary {
            flex: 1;
            background: var(--gov-orange);
            color: var(--white);
            padding: 10px 14px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .btn-avenue-primary:hover {
            background: var(--gov-orange-light);
            text-decoration: none;
            color: var(--white);
        }

        .btn-avenue-wa {
            background: #25D366;
            color: var(--white);
            padding: 10px 14px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: background 0.2s;
        }

        .btn-avenue-wa:hover {
            background: #1da851;
            text-decoration: none;
            color: var(--white);
        }

        /* Landmarks strip inside middle col */
        .avenue-landmarks {
            margin-bottom: 14px;
        }

        .avenue-landmarks-title {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gov-blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .avenue-landmarks-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .avenue-landmarks-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }

        .landmark-pill {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 7px 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-mid);
        }

        .landmark-pill-icon {
            font-size: 14px;
            flex-shrink: 0;
        }

        .landmark-pill-name {
            font-weight: 600;
            color: var(--text-dark);
            display: block;
            font-size: 11.5px;
        }

        .landmark-pill-dist {
            font-size: 10px;
            color: var(--gov-orange);
            display: block;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* ===== APPLY BOX ===== */
        .apply-box {
            background: #f0f6ff;
            border: 1px solid #b8d0ee;
            border-radius: 4px;
            padding: 16px;
            margin: 16px 0;
        }

        .apply-box-title-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--gov-blue);
            display: block;
        }

        .apply-box-title-en {
            font-size: 12px;
            color: var(--text-light);
            display: block;
            margin-bottom: 12px;
        }

        .steps-list {
            counter-reset: steps;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .steps-list li {
            counter-increment: steps;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
        }

        .steps-list li::before {
            content: counter(steps);
            background: var(--gov-blue);
            color: var(--white);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .step-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            display: block;
        }

        .step-en {
            font-size: 11.5px;
            color: var(--text-light);
            display: block;
        }

        /* INFO CARDS */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 14px 0;
        }

        .info-card {
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 14px;
            text-align: center;
            background: var(--white);
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .info-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .info-card-icon {
            font-size: 28px;
            margin-bottom: 8px;
            display: block;
        }

        .info-card-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: var(--gov-blue);
            display: block;
        }

        .info-card-en {
            font-size: 11px;
            color: var(--text-light);
            display: block;
            line-height: 1.4;
            margin-top: 3px;
        }

        /* DOWNLOAD LIST */
        .download-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .download-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f4f6f9;
            border: 1px solid var(--border);
            border-radius: 3px;
            padding: 8px 10px;
        }

        .download-item:hover {
            background: #e0eaf6;
        }

        .dl-label-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-mid);
            display: block;
        }

        .dl-label-en {
            font-size: 10.5px;
            color: var(--text-light);
            display: block;
        }

        .btn-download {
            background: var(--gov-blue);
            color: var(--white);
            padding: 4px 11px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            font-family: 'Noto Sans Devanagari', sans-serif;
            white-space: nowrap;
            flex-shrink: 0;
            margin-left: 6px;
            transition: background 0.2s;
        }

        .btn-download:hover {
            background: var(--gov-orange);
            color: var(--white);
            text-decoration: none;
        }

        /* ===== CLOSED PROJECTS ===== */
        .projects-section {
            background: var(--off-white);
            padding: 26px 0;
            border-top: 3px solid var(--border);
        }

        .section-heading-wrap {
            margin-bottom: 20px;
        }

        .section-heading-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--gov-blue);
            display: block;
        }

        .section-heading-en {
            font-size: 13px;
            color: var(--text-light);
            display: block;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .project-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: box-shadow 0.25s, transform 0.25s;
        }

        .project-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .project-card-img {
            height: 128px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .card-status {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 3px;
            background: #dc3545;
            color: var(--white);
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .project-card-body {
            padding: 12px;
        }

        .project-title-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--gov-blue);
            display: block;
        }

        .project-title-en {
            font-size: 12px;
            color: var(--text-mid);
            display: block;
        }

        .project-loc {
            font-size: 11.5px;
            color: var(--text-light);
            margin: 4px 0 10px;
        }

        .btn-view {
            display: block;
            background: var(--gov-blue);
            color: var(--white);
            text-align: center;
            padding: 7px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 3px;
            text-decoration: none;
            transition: background 0.2s;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .btn-view:hover {
            background: var(--gov-orange);
            color: var(--white);
            text-decoration: none;
        }

        /* ===== INFO DETAILS ===== */
        .info-details {
            background: var(--white);
            padding: 26px 0;
            border-top: 3px solid var(--border);
        }

        .info-grid-2col {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .info-block {
            border: 1px solid var(--border);
            border-top: 3px solid var(--gov-orange);
            border-radius: 2px;
            padding: 18px;
            background: var(--white);
        }

        .info-block-title-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--gov-blue);
            display: block;
        }

        .info-block-title-en {
            font-size: 11px;
            color: var(--text-light);
            display: block;
            margin-bottom: 12px;
        }

        .info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .info-list li {
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.55;
            padding-left: 18px;
            position: relative;
        }

        .info-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gov-green);
            font-weight: 800;
        }

        .info-list li .hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            font-weight: 600;
            display: block;
            color: var(--text-dark);
        }

        .info-list li .en {
            font-size: 12px;
            color: var(--text-light);
            display: block;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--gov-blue);
            color: rgba(255, 255, 255, 0.85);
            padding: 26px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            padding-bottom: 22px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h3 {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            padding-bottom: 7px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .footer-col h3 span {
            display: block;
            font-size: 10.5px;
            color: rgba(255, 255, 255, 0.5);
            font-family: 'Noto Sans', sans-serif;
            font-weight: 400;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-col ul li {
            font-size: 13px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.78);
        }

        .footer-col ul li a:hover {
            color: var(--gov-gold);
            text-decoration: underline;
        }

        .footer-col ul li .sub {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            display: block;
            font-family: 'Noto Sans', sans-serif;
        }

        .footer-bottom {
            background: #001833;
            padding: 10px 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.45);
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        /* ===== MODAL ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-box {
            background: var(--white);
            width: 92%;
            max-width: 600px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .modal-head {
            background: var(--gov-blue);
            color: var(--white);
            padding: 14px 18px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
        }

        .modal-title-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 15px;
            font-weight: 700;
            display: block;
        }

        .modal-title-en {
            font-size: 12px;
            opacity: 0.75;
            display: block;
            margin-top: 2px;
        }

        .modal-close-btn {
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            opacity: 0.8;
            flex-shrink: 0;
        }

        .modal-close-btn:hover {
            opacity: 1;
        }

        .modal-body {
            padding: 18px;
        }

        .modal-desc-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13px;
            color: var(--text-mid);
            display: block;
            margin-bottom: 4px;
        }

        .modal-desc-en {
            font-size: 12px;
            color: var(--text-light);
            display: block;
            margin-bottom: 14px;
        }

        .modal-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .modal-link-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 3px;
            padding: 9px 12px;
        }

        .modal-link-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-mid);
            display: block;
        }

        .modal-link-en {
            font-size: 11px;
            color: var(--text-light);
            display: block;
        }

        .btn-modal-dl {
            background: var(--gov-orange);
            color: var(--white);
            padding: 5px 13px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            font-family: 'Noto Sans Devanagari', sans-serif;
            flex-shrink: 0;
            white-space: nowrap;
            margin-left: 8px;
        }

        .btn-modal-dl:hover {
            background: var(--gov-orange-light);
            text-decoration: none;
            color: var(--white);
        }

        /* ===== IMAGE MODAL ===== */
        .image-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .image-modal-overlay.active {
            display: flex;
        }

        .image-modal-content {
            max-width: 95%;
            max-height: 95%;
            position: relative;
        }

        .image-modal-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .image-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .image-modal-close:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 230px 1fr;
            }

            .right-sidebar {
                display: none;
            }

            .projects-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Hide mobile sidebar elements on desktop */
        .mobile-sidebar-overlay,
        .mobile-sidebar-panel {
            display: none !important;
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .left-sidebar {
                display: none;
            }

            .right-sidebar {
                display: none;
            }

            /* Show nav sidebar toggles on mobile */
            .nav-sidebar-toggles {
                display: flex;
            }

            /* Hide fixed toggles on mobile */
            .mobile-fixed-toggle {
                display: none;
            }

            /* Show mobile sidebar overlay and panels on mobile */
            .mobile-sidebar-panel {
                display: block !important;
            }

            /* Mobile Sidebar Overlay */
            .mobile-sidebar-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: 10000;
            }

            .mobile-sidebar-overlay.active {
                display: block !important;
            }

            /* Mobile Sidebar Panel */
            .mobile-sidebar-panel {
                position: fixed;
                top: 0;
                bottom: 0;
                width: 280px;
                background: white;
                z-index: 10001;
                overflow-y: auto;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
            }

            .mobile-sidebar-panel.left {
                left: 0;
            }

            .mobile-sidebar-panel.right {
                right: 0;
                transform: translateX(100%);
            }

            .mobile-sidebar-panel.active {
                transform: translateX(0);
            }

            .mobile-sidebar-header {
                background: var(--gov-blue);
                color: white;
                padding: 15px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: sticky;
                top: 0;
            }

            .mobile-sidebar-header h3 {
                font-family: 'Noto Sans Devanagari', sans-serif;
                font-size: 14px;
                font-weight: 700;
                margin: 0;
            }

            .mobile-sidebar-close {
                background: none;
                border: none;
                color: white;
                font-size: 24px;
                cursor: pointer;
            }

            .mobile-sidebar-content {
                padding: 15px;
            }

            .stats-bar-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .info-grid-2col {
                grid-template-columns: 1fr;
            }

            .info-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-banner {
                background: url('../images/banner-mobile.webp') center/cover no-repeat;
            }

            .hero-inner {
                flex-direction: column;
                min-height: auto;
            }

            .hero-content {
                max-width: 100%;
                margin: 0;
                padding: 20px 16px;
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: none;
                border-radius: 0;
            }

            .hero-h1-hi {
                font-size: 22px;
            }

            .hero-side {
                width: 100%;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                background: rgba(0, 20, 40, 0.6);
                padding: 15px;
            }

            .hero-stat-card {
                padding: 10px 0;
            }

            .hero-stat-icon {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }

            .hero-stat-lbl-hi {
                font-size: 14px;
            }

            .hero-stat-lbl-en {
                font-size: 12px;
            }

            .hero-stat-val {
                font-size: 16px;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-menu li a {
                flex-direction: row;
                gap: 6px;
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-inner {
                flex-wrap: wrap;
            }

            .menu-toggle {
                display: block;
            }

            .nav-phone-bar {
                width: 100%;
                padding: 8px 14px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .gov-header-logos {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .avenue-metrics {
                grid-template-columns: repeat(2, 1fr);
            }

            .avenue-amenities {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .info-cards {
                grid-template-columns: 1fr;
            }

            .avenue-amenities {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== PRICING TABLE STYLES ===== */
        .pricing-section {
            background-color: #fcfddf;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            border: 2px solid #e1e4a6;
        }

        .pricing-header-text {
            text-align: center;
            margin-bottom: 20px;
        }

        .pricing-header-text h2 {
            color: #111;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .pricing-header-text h3 {
            color: #00a651;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .pricing-header-text h4 {
            color: #e51c23;
            font-size: 18px;
            font-weight: 700;
        }

        .pricing-table-wrapper {
            border: 2px solid #222;
            background: #fff;
            margin-bottom: 5px;
            overflow-x: auto;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
        }

        .pricing-table th {
            background-color: #222;
            color: #fff;
            padding: 12px 8px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid #444;
        }

        .pricing-table td {
            padding: 12px 8px;
            font-size: 14px;
            font-weight: 700;
            color: #111;
            border: 1px solid #222;
            background-color: #fffde7;
        }

        .pricing-table tr:nth-child(even) td {
            background-color: #fff9c4;
        }

        .pricing-note {
            font-size: 12px;
            font-weight: 700;
            color: #111;
            margin-bottom: 20px;
        }

        .pricing-location-text {
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: #111;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .registration-box {
            background-color: #e51c23;
            color: #fff;
            text-align: center;
            padding: 12px;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .registration-box h3 {
            margin: 0 0 4px 0;
            font-size: 16px;
        }

        .registration-box p {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
        }

        /* Blinking Red NEW Badge */
        .new-badge-red {
            background-color: #ff0000;
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            padding: 2px 6px 1px 6px;
            border-radius: 3px;
            display: inline-block;
            vertical-align: middle;
            margin: 0 6px;
            font-family: 'Noto Sans', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
            animation: new-badge-blink 0.8s infinite steps(2);
        }

        .new-badge-red::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 5px;
            border-width: 3px 3px 0 0;
            border-style: solid;
            border-color: #ff0000 transparent;
        }

        /* Blinking Blue Badge */
        .new-badge-blue {
            background-color: var(--gov-blue);
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            padding: 2px 6px 1px 6px;
            border-radius: 3px;
            display: inline-block;
            vertical-align: middle;
            margin: 0 6px;
            font-family: 'Noto Sans', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
            animation: new-badge-blink 0.8s infinite steps(2);
        }

        .new-badge-blue::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 5px;
            border-width: 3px 3px 0 0;
            border-style: solid;
            border-color: var(--gov-blue) transparent;
        }

        @keyframes new-badge-blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.2;
            }

            100% {
                opacity: 1;
            }
        }

        /* ===== FIXED RIGHT SIDE PANEL ===== */
        .fixed-side-panel {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9998;
            display: flex;
            flex-direction: column;
            gap: 4px;
            align-items: flex-end;
        }

        /* ===== MOBILE ≤768px: Premium Split-Bar Action Dock ===== */
        @media (max-width: 768px) {
            body {
                padding-bottom: 74px;
                padding-right: 0;
            }

            .fixed-side-panel {
                position: fixed;
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                transform: none;
                background: #ffffff;
                border-top: 1px solid #dde4ee;
                box-shadow: 0 -4px 16px rgba(0, 51, 102, 0.08);
                display: flex;
                flex-direction: row;
                align-items: center;
                padding: 10px 16px;
                gap: 12px;
                height: 64px;
                z-index: 9999;
            }

            /* Register Button: Primary Call to Action in the center */
            .side-btn-enquiry {
                order: 2;
                flex: 2;
                border-radius: 8px !important;
                background: var(--gov-blue) !important;
                height: 44px;
                display: flex;
                flex-direction: row !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 8px;
                box-shadow: 0 4px 10px rgba(0, 51, 102, 0.15) !important;
                text-decoration: none;
            }

            .side-btn-enquiry .side-label {
                display: block !important;
                opacity: 1 !important;
                max-width: 100% !important;
                font-size: 13.5px !important;
                font-weight: 700;
                letter-spacing: 0.3px;
                color: #fff !important;
            }

            .side-btn-enquiry .side-icon {
                font-size: 15px;
                color: #fff !important;
                display: block !important;
            }

            /* Quick contact circular buttons on left and right */
            .side-btn-phone {
                order: 1;
                flex: 0 0 44px;
                width: 44px;
                height: 44px;
                border-radius: 50% !important;
                padding: 0 !important;
                display: flex;
                justify-content: center !important;
                align-items: center !important;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
                text-decoration: none;
            }

            .side-btn-whatsapp {
                order: 3;
                flex: 0 0 44px;
                width: 44px;
                height: 44px;
                border-radius: 50% !important;
                padding: 0 !important;
                display: flex;
                justify-content: center !important;
                align-items: center !important;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
                text-decoration: none;
            }

            .side-btn-phone .side-label,
            .side-btn-whatsapp .side-label {
                display: none !important;
            }

            .side-btn-phone .side-icon,
            .side-btn-whatsapp .side-icon {
                font-size: 18px;
                color: #fff !important;
                display: block !important;
            }

            .side-btn+.side-btn {
                border-left: none !important;
            }

            p,
            li,
            h1,
            h2,
            h3,
            h4 {
                word-break: break-word;
                overflow-wrap: break-word;
            }
        }


        .side-btn {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            padding: 12px 14px;
            border: none;
            cursor: pointer;
            font-family: 'Noto Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            border-radius: 8px 0 0 8px;
            box-shadow: -3px 3px 14px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            transition: box-shadow 0.4s ease, background 0.3s ease;
        }

        .side-btn:hover {
            box-shadow: -6px 4px 22px rgba(0, 0, 0, 0.3);
        }

        .side-btn .side-icon {
            font-size: 17px;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }

        .side-btn .side-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.4px;
            opacity: 0;
            max-width: 0;
            overflow: hidden;
            transition: opacity 0.35s 0.12s ease, max-width 0.5s ease-out;
            white-space: nowrap;
        }

        .side-btn:hover .side-label {
            opacity: 1;
            max-width: 130px;
        }

        /* Colours */
        .side-btn-phone {
            background: #FF6600;
        }

        .side-btn-phone:hover {
            background: #003366;
        }

        .side-btn-email {
            background: #1a5fa8;
        }

        .side-btn-email:hover {
            background: #144d8a;
        }

        .side-btn-whatsapp {
            background: #25d366;
        }

        .side-btn-whatsapp:hover {
            background: #20ba59;
        }

        .side-btn-enquiry {
            background: #003366;
        }

        .side-btn-enquiry:hover {
            background: #FF6600;
        }

        .side-btn-disclaimer {
            background: #003366;
        }

        .side-btn-disclaimer:hover {
            background: #FF6600;
        }

        /* Disclaimer Modal Overlay */
        .disclaimer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 30, 60, 0.62);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }

        .disclaimer-overlay.active {
            display: flex;
        }

        /* Disclaimer Box */
        .disclaimer-box {
            background: #fff;
            border-radius: 6px;
            width: 94%;
            max-width: 620px;
            max-height: 88vh;
            overflow-y: auto;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
            animation: disclaimerIn 0.25s ease;
        }

        @keyframes disclaimerIn {
            from {
                opacity: 0;
                transform: scale(0.94) translateY(18px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .disclaimer-head {
            background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-light));
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 6px 6px 0 0;
            position: sticky;
            top: 0;
        }

        .disclaimer-head-title {
            display: flex;
            flex-direction: column;
        }

        .disclaimer-head-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 16px;
            font-weight: 800;
            color: #fff;
        }

        .disclaimer-head-en {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .disclaimer-close {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            flex-shrink: 0;
        }

        .disclaimer-close:hover {
            background: rgba(255, 255, 255, 0.28);
        }

        .disclaimer-body {
            padding: 20px 22px 24px;
        }

        .disclaimer-notice {
            background: #fff8e6;
            border-left: 4px solid var(--gov-orange);
            border-radius: 0 4px 4px 0;
            padding: 10px 14px;
            font-size: 12px;
            font-weight: 700;
            color: #7a4400;
            margin-bottom: 16px;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

        .disclaimer-section-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--gov-blue);
            margin-bottom: 6px;
            margin-top: 14px;
            border-bottom: 1px dashed #c5d4e8;
            padding-bottom: 4px;
        }

        .disclaimer-text-hi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 13.5px;
            color: #444;
            line-height: 1.85;
            margin-bottom: 8px;
        }

        .disclaimer-text-en {
            font-size: 13px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 4px;
        }

        .disclaimer-footer {
            background: #f4f6f9;
            border-top: 1px solid #dde4ee;
            padding: 12px 22px;
            font-size: 11.5px;
            color: #888;
            text-align: center;
        }

        /* ===== RESPONSIVE GRID HELPERS ===== */
        .location-advantages-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .download-buttons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .enquiry-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        @media (max-width: 600px) {

            .location-advantages-grid,
            .download-buttons-grid,
            .enquiry-form-grid {
                grid-template-columns: 1fr;
            }
        }