/* ==========================================================================
           WIDE DESKTOP GOVERNMENT PORTAL DESIGN SYSTEM & HOMEPAGE STYLES
           ========================================================================== */
        :root {
            --gov-primary: #063B73;
            --gov-navy-dark: #021B3D;
            --gov-navy: #063B73;
            --gov-navy-light: #0A4D96;
            --gov-deep-ocean: #075985;
            --gov-marine-blue: #0EA5E9;
            --gov-light-ocean: #EAF6FB;
            --gov-saffron: #F59E0B;
            --gov-saffron-warm: #D97706;
            --gov-saffron-light: #FFFBEB;
            --gov-white: #FFFFFF;
            --gov-bg-light: #F5F9FC;
            --gov-card-bg: #FFFFFF;
            --gov-text-dark: #17324D;
            --gov-text-muted: #486581;
            --gov-text-subtle: #627D98;
            --gov-border: #DCE7F3;
            --gov-border-light: #E2E8F0;
            --gov-shadow-sm: 0 1px 3px rgba(6, 59, 115, 0.06);
            --gov-shadow-md: 0 4px 16px rgba(6, 59, 115, 0.08);
            --gov-shadow-lg: 0 10px 28px rgba(6, 59, 115, 0.12);
            --gov-radius-sm: 6px;
            --gov-radius-md: 10px;
            --gov-radius-lg: 14px;
            --gov-container-max: 1540px;
            --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        /* Accessibility text zoom classes */
        html.font-size-sm, body.font-size-sm { font-size: 13.5px !important; }
        html.font-size-md, body.font-size-md { font-size: 15px !important; }
        html.font-size-lg, body.font-size-lg { font-size: 17.5px !important; }

        body.font-size-sm p,
        body.font-size-sm span:not(.flag-icon),
        body.font-size-sm a,
        body.font-size-sm li,
        body.font-size-sm td,
        body.font-size-sm th,
        body.font-size-sm button:not(#fontSm):not(#fontMd):not(#fontLg),
        body.font-size-sm input,
        body.font-size-sm select,
        body.font-size-sm textarea,
        body.font-size-sm label,
        body.font-size-sm .hero-banner-tagline,
        body.font-size-sm .team-info-list,
        body.font-size-sm .card-details,
        body.font-size-sm .portal-card {
            font-size: 0.92em;
        }

        body.font-size-lg p,
        body.font-size-lg span:not(.flag-icon),
        body.font-size-lg a,
        body.font-size-lg li,
        body.font-size-lg td,
        body.font-size-lg th,
        body.font-size-lg button:not(#fontSm):not(#fontMd):not(#fontLg),
        body.font-size-lg input,
        body.font-size-lg select,
        body.font-size-lg textarea,
        body.font-size-lg label,
        body.font-size-lg .hero-banner-tagline,
        body.font-size-lg .team-info-list,
        body.font-size-lg .card-details,
        body.font-size-lg .portal-card {
            font-size: 1.12em;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--gov-bg-light);
            color: var(--gov-text-dark);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            color: var(--gov-navy);
            margin: 0;
            font-weight: 700;
        }

        /* Accessibility Skip Link */
        .skip-link {
            position: absolute;
            top: -50px;
            left: 20px;
            background: var(--gov-saffron);
            color: var(--gov-navy-dark);
            padding: 8px 16px;
            font-weight: 700;
            z-index: 99999;
            transition: top 0.2s ease;
            border-radius: 0 0 6px 6px;
            text-decoration: none;
        }
        .skip-link:focus {
            top: 0;
        }

        /* 1. GOVERNMENT UTILITY BAR */
        .gov-top-bar {
            background-color: var(--gov-navy-dark);
            color: #FFFFFF;
            font-size: 12px;
            border-bottom: 2px solid var(--gov-saffron);
            width: 100%;
        }

        .gov-top-bar-inner {
            max-width: var(--gov-container-max);
            margin: 0 auto;
            padding: 6px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .gov-identity-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            letter-spacing: 0.2px;
        }

        .flag-icon {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            object-fit: cover;
            display: inline-block;
        }

        .gov-top-utilities {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .gov-top-utilities a,
        .gov-top-utilities button {
            color: #E2E8F0;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 11.5px;
            font-family: var(--font-body);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 4px;
            transition: color 0.15s ease;
        }

        .gov-top-utilities a:hover,
        .gov-top-utilities button:hover {
            color: var(--gov-saffron);
        }

        .font-sizer-group {
            display: flex;
            gap: 2px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            padding: 2px;
        }

        .font-sizer-group button {
            padding: 1px 7px;
            font-weight: 700;
            border-radius: 3px;
        }

        .font-sizer-group button.active {
            background: var(--gov-saffron);
            color: var(--gov-navy-dark);
        }

        .gov-top-divider {
            color: rgba(255, 255, 255, 0.3);
        }

        .lang-select-dropdown {
            background: rgba(255, 255, 255, 0.15);
            color: #FFFFFF;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 4px;
            padding: 2px 8px;
            font-size: 11.5px;
            cursor: pointer;
            outline: none;
        }

        .lang-select-dropdown option {
            background: var(--gov-navy-dark);
            color: #FFFFFF;
        }

        .topbar-contrast-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #FFD166;
            font-size: 13px;
            cursor: pointer;
            padding: 0;
            transition: all 0.25s ease;
        }

        .topbar-contrast-btn:hover {
            background: var(--gov-saffron);
            color: var(--gov-navy-dark);
            border-color: var(--gov-saffron);
            transform: scale(1.1);
        }

        .topbar-lock-icon {
            color: #FF9933;
            margin-right: 4px;
            font-size: 11.5px;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .admin-login-link:hover .topbar-lock-icon {
            color: #FFD166;
            transform: scale(1.2);
        }

        /* 2. MINISTRY / PORTAL HEADER */
        .portal-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--gov-border);
            width: 100%;
            box-shadow: var(--gov-shadow-sm);
        }

        .portal-header-inner {
            max-width: var(--gov-container-max);
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .header-branding-left {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .emblem-img {
            height: 68px;
            width: auto;
            object-fit: contain;
        }

        .ministry-title-box {
            border-left: 2px solid var(--gov-border);
            padding-left: 18px;
        }

        .hindi-dept {
            font-size: 19px;
            font-weight: 800;
            color: var(--gov-navy);
            line-height: 1.2;
            letter-spacing: -0.2px;
        }

        .english-dept {
            font-size: 14px;
            font-weight: 700;
            color: var(--gov-saffron-warm);
            line-height: 1.25;
            margin: 1px 0;
        }

        .gov-sub-dept {
            font-size: 11.5px;
            color: var(--gov-text-muted);
            font-weight: 500;
        }

        .header-portal-title {
            flex: 1;
            text-align: center;
            padding: 0 10px;
        }

        .portal-main-heading {
            font-size: 24px;
            font-weight: 800;
            color: var(--gov-navy);
            letter-spacing: -0.3px;
            line-height: 1.2;
        }

        .portal-main-subtitle {
            font-size: 13px;
            font-weight: 600;
            color: var(--gov-deep-ocean);
            margin-top: 3px;
        }

        .header-search-wrap {
            display: flex;
            align-items: center;
            background: #FFF;
            border: 1.5px solid #FFF;
            border-radius: 30px;
            padding: 4px 6px 4px 16px;
            width: 280px;
            transition: all 0.2s ease;
        }

        .header-search-wrap:focus-within {
            background: #FFFFFF;
            border-color: var(--gov-navy);
            box-shadow: 0 0 0 3px rgba(6, 59, 115, 0.12);
        }

        .header-search-input {
            border: none;
            background: transparent;
            font-size: 13px;
            color: var(--gov-text-dark);
            width: 100%;
            outline: none;
            font-family: var(--font-body);
        }

        .header-search-btn {
            background: transparent;
            border: none;
            color: var(--gov-navy);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
            border-radius: 50%;
            transition: color 0.15s ease;
        }

        .header-search-btn:hover {
            color: var(--gov-saffron-warm);
        }

        /* 3. PRIMARY NAVIGATION BAR */
        .portal-navbar {
            background: var(--gov-navy);
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(6, 59, 115, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .portal-navbar-inner {
            max-width: var(--gov-container-max);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #FFFFFF;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding: 14px 18px;
            transition: all 0.2s ease;
            border-bottom: 3px solid transparent;
            white-space: nowrap;
        }

        .nav-link:hover,
        .nav-link.active,
        .nav-item:hover > .nav-link {
            background: rgba(255, 255, 255, 0.1);
            color: var(--gov-saffron);
            border-bottom-color: var(--gov-saffron);
        }

        .nav-arrow {
            font-size: 10px;
            transition: transform 0.2s ease;
        }

        .nav-item:hover .nav-arrow {
            transform: rotate(180deg);
        }

        /* Navigation Dropdowns */
        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #FFFFFF;
            min-width: 230px;
            border-radius: 0 0 8px 8px;
            box-shadow: var(--gov-shadow-lg);
            border: 1px solid var(--gov-border);
            border-top: 3px solid var(--gov-saffron);
            list-style: none;
            padding: 8px 0;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
        }

        .nav-item:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 9px 18px;
            color: var(--gov-text-dark);
            text-decoration: none;
            font-size: 13.5px;
            font-weight: 600;
            transition: all 0.15s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-link:hover {
            background: var(--gov-light-ocean);
            color: var(--gov-navy);
            border-left-color: var(--gov-navy);
            padding-left: 22px;
        }

        .mobile-hamburger-btn {
            display: none;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }

        /* ==========================================================================
           4. FULL-WIDTH HERO SECTION WITH BACKGROUND IMAGE SLIDER (MATCHING REFERENCE)
           ========================================================================== */
        .hero-slider-section {
            position: relative;
            width: 100%;
            min-height: 520px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 2px solid var(--gov-border);
            background: #021B3D;
        }

        /* Background Slider Container */
        .hero-bg-slider-track {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-bg-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            opacity: 0;
            transform: scale(1);
            transition: opacity 1.2s ease-in-out, transform 7s ease-out;
            pointer-events: none;
        }

        .hero-bg-slide.active {
            opacity: 1;
            transform: scale(1.04);
        }

        /* Subtle Gradient & Dark Blue Transparent Overlay for High Text Readability */
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(2, 27, 61, 0.48) 0%, rgba(6, 59, 115, 0.20) 45%, rgba(2, 27, 61, 0.42) 100%),
                        linear-gradient(to bottom, rgba(2, 27, 61, 0.15) 0%, rgba(2, 27, 61, 0.35) 100%);
            z-index: 2;
            pointer-events: none;
        }

        /* Foreground Content Container */
        .hero-foreground-container {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: var(--gov-container-max);
            margin: 0 auto;
            padding: 50px 70px;
            display: grid;
            grid-template-columns: 1.45fr 1fr;
            gap: 48px;
            align-items: center;
        }

        /* Left Column: Heading + Semi-Transparent White Frosted Content Box */
        .hero-left-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-white-title {
            font-size: 38px;
            font-weight: 800;
            color: #FFFFFF;
            line-height: 1.25;
            letter-spacing: -0.4px;
            margin: 0;
            text-shadow: 0 3px 12px rgba(2, 27, 61, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
            font-family: var(--font-display);
        }

        .hero-frosted-panel {
            background: rgba(255, 255, 255, 0.90);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: var(--gov-radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.85);
            padding: 22px 26px;
            box-shadow: 0 10px 30px rgba(2, 27, 61, 0.25);
        }

        .hero-frosted-panel p {
            font-size: 14.5px;
            color: var(--gov-text-dark);
            line-height: 1.7;
            margin: 0;
            text-align: justify;
        }

        .hero-frosted-panel strong {
            color: var(--gov-navy);
            font-weight: 700;
        }

        /* Right Column: Prime Minister's Vision Card (Exact Reference Styling) */
        .pm-vision-card {
            background: #FFFFFF;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 14px 40px rgba(2, 27, 61, 0.3);
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .pm-vision-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 48px rgba(2, 27, 61, 0.35);
        }

        .pm-photo-header-frame {
            position: relative;
            background: linear-gradient(180deg, #F0F6FC 0%, #E2EEF9 100%);
            padding: 22px 20px;
            text-align: center;
            overflow: hidden;
            border-bottom: 1px solid #E2E8F0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Decorative radial aura behind PM photo */
        .pm-photo-header-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(14, 165, 233, 0.22) 0%, transparent 68%);
            pointer-events: none;
        }

        .pm-photo-circle-wrap {
            position: relative;
            z-index: 2;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            padding: 4.5px;
            background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
            box-shadow: 0 8px 24px rgba(2, 42, 94, 0.22), 0 2px 6px rgba(0, 0, 0, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: 0 auto;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pm-photo-circle-wrap:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 32px rgba(2, 42, 94, 0.30);
        }

        .pm-portrait-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            object-position: center 10%;
            transform: scale(1.18);
            transform-origin: center 25%;
            background: #FFFFFF;
            display: block;
            border: 3.5px solid #FFFFFF;
        }

        .pm-vision-card-body {
            padding: 20px 24px 22px;
        }

        .pm-vision-card-heading {
            font-size: 15px;
            font-weight: 800;
            color: var(--gov-navy);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pm-vision-quote-item {
            font-size: 13.5px;
            color: #1e3a5f;
            line-height: 1.65;
            margin-bottom: 14px;
            background: #f0f7fd;
            border-left: 3.5px solid var(--gov-saffron-warm);
            padding: 14px 16px;
            border-radius: 4px;
            font-style: italic;
        }

        .pm-vision-quote-item:last-child {
            margin-bottom: 0;
        }

        /* Slider Controls: Left / Right Navigation Arrows */
        .hero-slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(2, 27, 61, 0.72);
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
        }

        .hero-slider-nav-btn:hover {
            background: var(--gov-navy);
            border-color: var(--gov-saffron);
            transform: translateY(-50%) scale(1.1);
        }

        .hero-slider-nav-btn.prev-btn {
            left: 24px;
        }

        .hero-slider-nav-btn.next-btn {
            right: 24px;
        }

        .hero-slider-nav-btn svg {
            width: 22px;
            height: 22px;
            stroke-width: 2.5;
        }

        /* Slider Controls: Bottom Indicator Dots */
        .hero-slider-dots-wrap {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(2, 27, 61, 0.45);
            padding: 6px 14px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
        }

        .hero-indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .hero-indicator-dot:hover {
            background: #FFFFFF;
            transform: scale(1.2);
        }

        .hero-indicator-dot.active {
            background: var(--gov-saffron);
            width: 24px;
            border-radius: 10px;
            box-shadow: 0 0 8px rgba(245, 158, 11, 0.8);
        }

        /* 5. MAIN TWO-COLUMN PORTAL CONTAINER */
        .portal-main-container {
            max-width: var(--gov-container-max);
            margin: 36px auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: minmax(0, 2.45fr) minmax(0, 1.05fr);
            gap: 32px;
            align-items: start;
        }

        .primary-column-flow {
            display: flex;
            flex-direction: column;
            gap: 36px;
            min-width: 0;
            width: 100%;
        }

        /* Standard Section Headers */
        .gov-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid var(--gov-saffron);
            padding-bottom: 8px;
            margin-bottom: 20px;
        }

        .gov-section-header h3 {
            font-size: 21px;
            font-weight: 800;
            color: var(--gov-navy);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.2px;
        }

        .gov-section-header .section-badge {
            font-size: 11.5px;
            font-weight: 700;
            color: var(--gov-navy);
            background: var(--gov-light-ocean);
            padding: 3px 10px;
            border-radius: 12px;
            border: 1px solid #CCE4F8;
        }

        /* SECTION: KEY FACTS (STATISTICS GRID) */
        .stats-section-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 24px 26px;
            box-shadow: var(--gov-shadow-sm);
        }

        .stats-responsive-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .fact-card {
            background: #FFFFFF;
            border: 1px solid var(--gov-border);
            border-radius: var(--gov-radius-sm);
            padding: 16px 14px;
            text-align: center;
            transition: all 0.22s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(6, 59, 115, 0.03);
        }

        .fact-card:hover {
            transform: translateY(-3px);
            border-color: var(--gov-marine-blue);
            box-shadow: var(--gov-shadow-md);
        }

        .fact-icon-badge {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gov-light-ocean);
            border: 1px solid #D0E4F5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gov-navy);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .fact-stat-number {
            font-size: 20px;
            font-weight: 800;
            color: var(--gov-navy);
            font-family: var(--font-display);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .fact-stat-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--gov-text-muted);
            line-height: 1.35;
        }

        /* SECTION: MAJOR SECTORS */
        .sectors-section-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 24px 26px;
            box-shadow: var(--gov-shadow-sm);
        }

        .sectors-modern-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .sector-tile-card {
            background: #FFFFFF;
            border: 1px solid var(--gov-border);
            border-radius: var(--gov-radius-sm);
            padding: 16px;
            transition: all 0.25s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
        }

        .sector-tile-card:hover {
            border-color: var(--gov-marine-blue);
            background: #F8FBFE;
            transform: translateY(-2px);
            box-shadow: var(--gov-shadow-md);
        }

        .sector-tile-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sector-icon-box {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: var(--gov-light-ocean);
            border: 1px solid #CCE4F8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            color: var(--gov-navy);
        }

        .sector-tile-name {
            font-size: 14.5px;
            font-weight: 700;
            color: var(--gov-navy);
            line-height: 1.3;
            margin: 0;
            flex: 1;
        }

        .sector-tile-desc {
            font-size: 12.5px;
            color: var(--gov-text-muted);
            line-height: 1.5;
            margin: 0;
        }

        .sector-view-pill {
            font-size: 11px;
            font-weight: 700;
            color: var(--gov-navy);
            background: var(--gov-light-ocean);
            border: 1px solid #CCE4F8;
            padding: 3px 8px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            width: fit-content;
            margin-top: 4px;
            transition: all 0.2s ease;
        }

        .sector-tile-card:hover .sector-view-pill {
            background: var(--gov-navy);
            color: #FFFFFF;
            border-color: var(--gov-navy);
        }

        /* Sector Expanded Details Modal/Accordion */
        .sector-details-pane {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 12.5px;
            color: var(--gov-text-dark);
            border-top: 1px dashed var(--gov-border);
            margin-top: 0;
            padding-top: 0;
        }

        .sector-tile-card.expanded {
            grid-column: span 3;
            border-color: var(--gov-navy);
            border-left: 4px solid var(--gov-saffron);
            background: #FFFFFF;
        }

        .sector-tile-card.expanded .sector-details-pane {
            max-height: 500px;
            opacity: 1;
            margin-top: 10px;
            padding-top: 10px;
        }

        /* SECTION: KEY NATIONAL INITIATIVES */
        .initiatives-section-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 24px 26px;
            box-shadow: var(--gov-shadow-sm);
        }

        .initiatives-clean-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .initiative-box {
            background: #FFFFFF;
            border: 1px solid var(--gov-border);
            border-radius: var(--gov-radius-sm);
            padding: 16px 18px;
            transition: all 0.22s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .initiative-box:hover {
            border-color: var(--gov-navy);
            background: #F8FBFE;
            transform: translateY(-2px);
            box-shadow: var(--gov-shadow-md);
        }

        .initiative-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 8px;
        }

        .initiative-title {
            font-size: 14.5px;
            font-weight: 700;
            color: var(--gov-navy);
            margin: 0;
        }

        .initiative-arrow-icon {
            color: var(--gov-marine-blue);
            font-size: 14px;
            font-weight: 800;
        }

        .initiative-nodal-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--gov-deep-ocean);
            background: var(--gov-light-ocean);
            padding: 3px 6px;
            border-radius: 3px;
            width: fit-content;
            margin-bottom: 8px;
        }

        .initiative-details-pane {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 12.5px;
            color: var(--gov-text-dark);
            border-top: 1px dashed var(--gov-border);
            margin-top: 0;
            padding-top: 0;
        }

        .initiative-box.expanded {
            grid-column: span 3;
            border-color: var(--gov-navy);
            border-left: 4px solid var(--gov-saffron);
            background: #FFFFFF;
        }

        .initiative-box.expanded .initiative-details-pane {
            max-height: 600px;
            opacity: 1;
            margin-top: 10px;
            padding-top: 10px;
        }

        .initiative-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--gov-navy);
            font-weight: 700;
            font-size: 11.5px;
            margin-top: 8px;
            text-decoration: none;
        }

        .initiative-link-btn:hover {
            color: var(--gov-saffron-warm);
            text-decoration: underline;
        }

        /* SECTION: INTERNATIONAL COOPERATION */
        .cooperation-section-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 24px 26px;
            box-shadow: var(--gov-shadow-sm);
        }

        .cooperation-clean-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 18px;
        }

        .coop-entry-card {
            background: linear-gradient(145deg, #FFFFFF 0%, #F8FBFE 100%);
            border: 1px solid var(--gov-border);
            border-left: 3px solid var(--gov-navy);
            border-radius: var(--gov-radius-sm);
            padding: 16px;
            transition: all 0.22s ease;
        }

        .coop-entry-card:hover {
            transform: translateY(-2px);
            border-left-color: var(--gov-saffron);
            box-shadow: var(--gov-shadow-md);
        }

        .coop-entry-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--gov-navy);
            margin-bottom: 6px;
        }

        .coop-entry-desc {
            font-size: 12.5px;
            color: var(--gov-text-dark);
            line-height: 1.55;
            margin: 0;
        }

        .section-footer-action {
            display: flex;
            justify-content: center;
            margin-top: 8px;
        }

        .gov-btn-primary {
            background: var(--gov-navy);
            color: #FFFFFF;
            border: none;
            padding: 9px 24px;
            font-size: 13px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .gov-btn-primary:hover {
            background: var(--gov-navy-light);
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(6, 59, 115, 0.25);
        }

        /* SECTION: NATIONAL BLUE ECONOMY TARGETS */
        .targets-section-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 24px 26px;
            box-shadow: var(--gov-shadow-sm);
        }

        .timeline-horizontal-wrap {
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            padding-left: 28px;
            border-left: 3px solid var(--gov-navy);
            margin: 10px 0 6px 14px;
        }

        .timeline-target-item {
            position: relative;
            background: #F8FBFE;
            border: 1px solid var(--gov-border);
            border-radius: var(--gov-radius-sm);
            padding: 16px 18px;
            transition: all 0.2s ease;
        }

        .timeline-target-item:hover {
            border-color: var(--gov-saffron);
            box-shadow: var(--gov-shadow-sm);
            background: #FFFFFF;
        }

        .timeline-target-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 20px;
            width: 13px;
            height: 13px;
            background: #FFFFFF;
            border: 3px solid var(--gov-saffron);
            border-radius: 50%;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
        }

        .target-year-badge {
            font-size: 20px;
            font-weight: 800;
            color: var(--gov-saffron-warm);
            font-family: var(--font-display);
            margin-bottom: 4px;
            display: inline-block;
        }

        .target-text {
            font-size: 13.5px;
            color: var(--gov-text-dark);
            line-height: 1.6;
            margin: 0;
        }

        /* SECTION: MORE ON BLUE ECONOMY (MULTIMEDIA SHOWCASE) */
        .media-showcase-panel {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 24px 26px;
            box-shadow: var(--gov-shadow-sm);
        }

        .media-panel-grid {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 22px;
            align-items: stretch;
        }

        .featured-video-stage {
            position: relative;
            border-radius: var(--gov-radius-md, 8px);
            overflow: hidden;
            background: #000000;
            border: 1px solid var(--gov-border);
            box-shadow: 0 4px 16px rgba(2, 42, 94, 0.12);
            display: flex;
            flex-direction: column;
        }

        .video-aspect-frame {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            background: #000;
        }

        .video-aspect-frame iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-caption-bar {
            background: linear-gradient(135deg, #011B3D 0%, #022A5E 100%);
            color: #FFFFFF;
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 2.5px solid var(--gov-saffron, #FF9933);
            gap: 12px;
        }

        .video-caption-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
            overflow: hidden;
        }

        .video-caption-title {
            font-size: 13.5px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0;
            line-height: 1.35;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .video-caption-subtitle {
            font-size: 11.5px;
            color: #90CAF9;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .video-time-tag {
            font-size: 11px;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: #FFFFFF;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 700;
            letter-spacing: 0.4px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Right Column: Latest Videos Vertical Slider Playlist */
        .video-playlist-wrapper {
            display: flex;
            flex-direction: column;
            background: #FFFFFF;
            border: 1px solid var(--gov-border);
            border-radius: var(--gov-radius-md, 8px);
            box-shadow: 0 4px 16px rgba(2, 42, 94, 0.08);
            overflow: hidden;
            height: 100%;
        }

        .video-playlist-header {
            padding: 10px 14px;
            background: #F0F6FC;
            border-bottom: 1px solid #DCE7F3;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .video-playlist-title {
            font-size: 14px;
            font-weight: 800;
            color: var(--gov-navy);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .video-playlist-title svg {
            color: var(--gov-saffron, #FF9933);
        }

        .video-slider-controls {
            display: flex;
            gap: 6px;
        }

        .video-slider-btn {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1px solid #CBD5E1;
            color: var(--gov-navy);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 10px;
            font-weight: 700;
            transition: all 0.2s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            padding: 0;
        }

        .video-slider-btn:hover {
            background: var(--gov-navy);
            color: #FFFFFF;
            border-color: var(--gov-navy);
            transform: scale(1.08);
        }

        .video-vertical-slider {
            flex: 1;
            overflow-y: auto;
            max-height: 280px;
            padding: 8px 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            scroll-behavior: smooth;
        }

        .video-vertical-slider::-webkit-scrollbar {
            width: 4px;
        }

        .video-vertical-slider::-webkit-scrollbar-track {
            background: #F1F5F9;
        }

        .video-vertical-slider::-webkit-scrollbar-thumb {
            background: #94A3B8;
            border-radius: 4px;
        }

        .video-playlist-card {
            padding: 10px 12px;
            background: #F8FBFE;
            border: 1px solid #E2E8F0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.18s ease;
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: relative;
        }

        .video-playlist-card:hover {
            background: #FFFFFF;
            border-color: var(--gov-blue, #0077B6);
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(2, 42, 94, 0.09);
        }

        .video-playlist-card.active {
            background: #FFFFFF;
            border-color: var(--gov-navy);
            border-left: 3.5px solid var(--gov-saffron, #FF9933);
            box-shadow: 0 4px 14px rgba(2, 42, 94, 0.12);
        }

        .video-card-top-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 8px;
        }

        .video-card-title {
            font-size: 12.8px;
            font-weight: 700;
            color: var(--gov-navy);
            margin: 0;
            line-height: 1.35;
        }

        .video-card-subtitle {
            font-size: 11.5px;
            color: #64748B;
            line-height: 1.35;
            margin: 0;
        }

        .video-card-action-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 3px;
            padding-top: 5px;
            border-top: 1px dashed #E2E8F0;
        }

        .video-card-date {
            font-size: 10.5px;
            color: #94A3B8;
            font-weight: 600;
        }

        .watch-video-btn {
            font-size: 11px;
            font-weight: 700;
            color: #0077B6;
            background: rgba(0, 119, 182, 0.08);
            padding: 2.5px 9px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.2s ease;
        }

        .video-playlist-card:hover .watch-video-btn,
        .video-playlist-card.active .watch-video-btn {
            background: var(--gov-navy);
            color: #FFFFFF;
        }

        .video-playlist-footer {
            padding: 8px 12px;
            background: #FAFCFF;
            border-top: 1px solid #E2E8F0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* 6. RIGHT SIDEBAR MODULES */
        .portal-sidebar-flow {
            display: flex;
            flex-direction: column;
            gap: 26px;
            min-width: 0;
            width: 100%;
        }

        /* MODULE: WHAT'S NEW / ANNOUNCEMENTS */
        .sidebar-announcements-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            box-shadow: var(--gov-shadow-sm);
            overflow: hidden;
        }

        .announcements-header {
            background: var(--gov-navy);
            color: #FFFFFF;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 700;
        }

        .announcements-header svg {
            color: var(--gov-saffron);
        }

        .announcements-body {
            padding: 16px 18px;
        }

        .announcements-list {
            list-style: none;
            padding: 0;
            margin: 0 0 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .announcement-item {
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--gov-border);
        }

        .announcement-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .announcement-link {
            color: var(--gov-navy);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.45;
            text-decoration: none;
            display: block;
            margin-bottom: 4px;
            transition: color 0.15s ease;
        }

        .announcement-link:hover {
            color: var(--gov-saffron-warm);
            text-decoration: underline;
        }

        .announcement-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: var(--gov-text-subtle);
        }

        .read-more-pill {
            color: var(--gov-marine-blue);
            font-weight: 700;
            text-decoration: none;
            font-size: 11px;
        }

        .read-more-pill:hover {
            text-decoration: underline;
        }

        .view-all-sidebar-btn {
            display: block;
            width: 100%;
            text-align: center;
            background: var(--gov-navy);
            color: #FFFFFF;
            padding: 8px;
            border-radius: var(--gov-radius-sm);
            font-size: 12.5px;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.15s ease;
        }

        .view-all-sidebar-btn:hover {
            background: var(--gov-navy-light);
            color: #FFFFFF;
        }

        /* MODULE: KEY DOCUMENTS */
        .sidebar-documents-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 18px;
            box-shadow: var(--gov-shadow-sm);
        }

        .sidebar-module-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--gov-navy);
            border-bottom: 2px solid var(--gov-saffron);
            padding-bottom: 6px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .documents-download-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .doc-item-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            background: #F8FBFE;
            border: 1px solid var(--gov-border);
            border-radius: var(--gov-radius-sm);
            transition: all 0.18s ease;
        }

        .doc-item-row:hover {
            background: #FFFFFF;
            border-color: var(--gov-navy);
            box-shadow: var(--gov-shadow-sm);
        }

        .doc-info-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pdf-icon-badge {
            color: #DC2626;
            font-size: 20px;
            display: flex;
            align-items: center;
        }

        .doc-title-text {
            font-size: 13px;
            font-weight: 700;
            color: var(--gov-navy);
            line-height: 1.25;
            margin-bottom: 2px;
        }

        .doc-size-tag {
            font-size: 11px;
            color: var(--gov-text-subtle);
            font-weight: 500;
        }

        .doc-download-btn {
            color: var(--gov-navy);
            font-size: 11.5px;
            font-weight: 700;
            text-decoration: none;
            background: #E2E8F0;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.15s ease;
            white-space: nowrap;
        }

        .doc-download-btn:hover {
            background: var(--gov-navy);
            color: #FFFFFF;
        }

        /* MODULE: QUICK LINKS */
        .sidebar-links-card {
            background: #FFFFFF;
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            padding: 18px;
            box-shadow: var(--gov-shadow-sm);
        }

        .quick-links-pill-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .quick-link-item a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 12px;
            background: #F8FBFE;
            border: 1px solid var(--gov-border);
            border-radius: var(--gov-radius-sm);
            color: var(--gov-navy);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.15s ease;
        }

        .quick-link-item a:hover {
            background: var(--gov-navy);
            color: #FFFFFF;
            border-color: var(--gov-navy);
            padding-left: 16px;
        }

        /* MODULE: SUBSCRIBE FOR UPDATES */
        .sidebar-subscribe-card {
            background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FD 100%);
            border-radius: var(--gov-radius-md);
            border: 1px solid var(--gov-border);
            border-top: 3px solid var(--gov-navy);
            padding: 18px;
            box-shadow: var(--gov-shadow-sm);
        }

        .subscribe-lead-text {
            font-size: 12.5px;
            color: var(--gov-text-muted);
            margin-bottom: 12px;
            line-height: 1.45;
        }

        .subscribe-form-group {
            display: flex;
            gap: 6px;
        }

        .subscribe-email-input {
            flex: 1;
            padding: 8px 12px;
            border: 1.5px solid var(--gov-border);
            border-radius: var(--gov-radius-sm);
            font-size: 13px;
            outline: none;
            font-family: var(--font-body);
        }

        .subscribe-email-input:focus {
            border-color: var(--gov-navy);
        }

        .subscribe-send-btn {
            background: var(--gov-navy);
            color: #FFFFFF;
            border: none;
            padding: 8px 14px;
            border-radius: var(--gov-radius-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.15s ease;
        }

        .subscribe-send-btn:hover {
            background: var(--gov-saffron-warm);
        }

        /* 7. FULL-WIDTH MASTER GOVERNMENT FOOTER */
        .master-gov-footer {
            background: var(--gov-navy-dark);
            color: #FFFFFF;
            border-top: 4px solid var(--gov-saffron);
            margin-top: 50px;
            font-size: 13px;
        }

        .footer-columns-container {
            max-width: var(--gov-container-max);
            margin: 0 auto;
            padding: 44px 24px 32px;
            display: grid;
            grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 1.2fr;
            gap: 28px;
        }

        .footer-col-heading {
            font-size: 14.5px;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border-bottom: 2px solid var(--gov-saffron);
            padding-bottom: 6px;
            display: inline-block;
        }

        .footer-about-text {
            color: #CBD5E1;
            font-size: 12.5px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .footer-social-strip {
            display: flex;
            gap: 10px;
        }

        .social-circle-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .social-circle-btn:hover {
            background: var(--gov-saffron);
            color: var(--gov-navy-dark);
            transform: translateY(-2px);
        }

        .footer-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-nav-list li a {
            color: #E2E8F0;
            text-decoration: none;
            font-size: 12.5px;
            transition: all 0.15s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-nav-list li a::before {
            content: '›';
            font-size: 14px;
            color: var(--gov-saffron);
        }

        .footer-nav-list li a:hover {
            color: var(--gov-saffron);
            padding-left: 4px;
        }

        .footer-contact-details {
            color: #CBD5E1;
            font-size: 12.5px;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-info-row {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .contact-info-row svg {
            flex-shrink: 0;
            margin-top: 3px;
            color: var(--gov-saffron);
        }

        .visitor-counter-box {
            display: flex;
            gap: 4px;
            margin: 12px 0 10px;
            align-items: center;
        }

        .counter-digit {
            background: #01142B;
            color: #FF9933;
            font-weight: 900;
            font-family: 'Courier New', monospace;
            font-size: 15px;
            padding: 4px 7px;
            border-radius: 4px;
            border: 1px solid rgba(255, 153, 51, 0.35);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(255, 255, 255, 0.05);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 22px;
            min-height: 28px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
        }

        .counter-digit.digit-flip {
            transform: translateY(-2px) scale(1.12);
            color: #FFD166;
            border-color: #FF9933;
        }

        .last-updated-text {
            font-size: 11.5px;
            color: #94A3B8;
        }

        .footer-bottom-legal-bar {
            background: #01142B;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 14px 24px;
        }

        .footer-legal-inner {
            max-width: var(--gov-container-max);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #94A3B8;
        }

        .footer-legal-links {
            display: flex;
            gap: 16px;
        }

        .footer-legal-links a {
            color: #CBD5E1;
            text-decoration: none;
            transition: color 0.15s ease;
        }

        .footer-legal-links a:hover {
            color: var(--gov-saffron);
        }

        /* Floating Scroll-to-Top Button */
        .floating-top-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gov-navy);
            color: #FFFFFF;
            border: 2px solid var(--gov-saffron);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999;
            transition: all 0.2s ease;
        }

        .floating-top-btn:hover {
            background: var(--gov-saffron-warm);
            transform: translateY(-3px);
        }

        /* ==========================================================================
           RESPONSIVE BREAKPOINTS (LARGE DESKTOP -> LAPTOP -> TABLET -> MOBILE)
           ========================================================================== */
        @media (max-width: 1440px) {
            .portal-main-container {
                max-width: 1320px;
            }
            .hero-white-title {
                font-size: 32px;
            }
            .hero-foreground-container {
                padding: 40px 60px;
                gap: 36px;
            }
        }

        @media (max-width: 1200px) {
            .portal-main-container {
                grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
                gap: 24px;
            }
            .stats-responsive-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .sectors-modern-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .sector-tile-card.expanded {
                grid-column: span 2;
            }
            .cooperation-clean-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-columns-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .portal-main-container {
                grid-template-columns: 1fr;
            }
            .hero-foreground-container {
                grid-template-columns: 1fr;
                padding: 36px 30px;
                gap: 28px;
            }
            .media-panel-grid {
                grid-template-columns: 1fr;
            }
            .footer-columns-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .header-portal-title {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .gov-top-bar-inner {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
            .portal-header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .header-search-wrap {
                width: 100%;
            }
            .mobile-hamburger-btn {
                display: block;
            }
            .nav-menu-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--gov-navy);
                padding: 10px 0;
            }
            .nav-menu-list.mobile-open {
                display: flex;
            }
            .nav-item {
                width: 100%;
            }
            .nav-link {
                padding: 12px 18px;
            }
            .nav-dropdown {
                position: static;
                visibility: visible;
                opacity: 1;
                transform: none;
                background: #022A5E;
                box-shadow: none;
                border: none;
                border-left: 3px solid var(--gov-saffron);
                margin-left: 18px;
            }
            .dropdown-link {
                color: #FFFFFF;
            }
            .hero-white-title {
                font-size: 26px;
            }
            .hero-slider-nav-btn {
                width: 36px;
                height: 36px;
            }
            .hero-slider-nav-btn.prev-btn { left: 10px; }
            .hero-slider-nav-btn.next-btn { right: 10px; }
            .stats-responsive-grid,
            .sectors-modern-grid,
            .initiatives-clean-grid,
            .cooperation-clean-grid {
                grid-template-columns: 1fr;
            }
            .sector-tile-card.expanded,
            .initiative-box.expanded {
                grid-column: span 1;
            }
            .footer-columns-container {
                grid-template-columns: 1fr;
            }
            .footer-legal-inner {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        /* ==========================================================================
           STANDARDIZED CONTROL DESIGN SYSTEM (MATCHING ORIGINAL HTML SOURCE OF TRUTH)
           ========================================================================== */

        /* 1. BUTTON CONTROLS */
        .gov-btn-primary,
        .btn-gov-primary {
            background: var(--gov-navy, #022A5E);
            color: #FFFFFF !important;
            border: 1.5px solid var(--gov-navy, #022A5E);
            padding: 9px 22px;
            font-size: 13.5px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-body, 'Inter', sans-serif);
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 2px 6px rgba(2, 42, 94, 0.12);
            line-height: 1.4;
        }

        .gov-btn-primary:hover,
        .btn-gov-primary:hover {
            background: var(--gov-saffron-warm, #F38616);
            border-color: var(--gov-saffron-warm, #F38616);
            color: #FFFFFF !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(243, 134, 22, 0.25);
        }

        .gov-btn-primary:active,
        .btn-gov-primary:active {
            transform: translateY(0);
            box-shadow: 0 1px 3px rgba(2, 42, 94, 0.2);
        }

        .gov-btn-primary:disabled,
        .gov-btn-primary.disabled {
            opacity: 0.55;
            cursor: not-allowed;
            pointer-events: none;
            transform: none !important;
            box-shadow: none !important;
        }

        .gov-btn-secondary,
        .btn-gov-secondary,
        .gov-btn-outline {
            background: #FFFFFF;
            color: var(--gov-navy, #022A5E) !important;
            border: 1.5px solid var(--gov-navy, #022A5E);
            padding: 9px 22px;
            font-size: 13.5px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-body, 'Inter', sans-serif);
            transition: all 0.2s ease;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
            line-height: 1.4;
        }

        .gov-btn-secondary:hover,
        .btn-gov-secondary:hover,
        .gov-btn-outline:hover {
            background: var(--gov-navy, #022A5E);
            color: #FFFFFF !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(2, 42, 94, 0.15);
        }

        .gov-btn-sm {
            padding: 6px 14px;
            font-size: 12.5px;
            border-radius: 5px;
        }

        .gov-btn-lg {
            padding: 12px 28px;
            font-size: 15px;
            border-radius: 8px;
        }

        /* Action & Resource Download Buttons */
        .doc-btn-download,
        .doc-download-btn {
            background: var(--ocean-blue, #0077B6);
            color: #FFFFFF !important;
            padding: 7px 16px;
            border-radius: 6px;
            font-size: 12.5px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            cursor: pointer;
            transition: all 0.15s ease;
            box-shadow: 0 2px 6px rgba(0, 119, 182, 0.15);
        }

        .doc-btn-download:hover,
        .doc-download-btn:hover {
            background: var(--gov-saffron-warm, #F38616);
            color: #FFFFFF !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(243, 134, 22, 0.25);
        }

        /* Filter Pills & Category Buttons */
        .gov-filter-pill,
        .doc-tab-button,
        .category-filter-btn,
        .faq-category-pill {
            padding: 8px 18px;
            border-radius: 24px;
            border: 1.5px solid #CBD5E1;
            background: #FFFFFF;
            font-weight: 700;
            font-size: 13px;
            color: #486581;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
            text-decoration: none;
            user-select: none;
        }

        .gov-filter-pill:hover,
        .doc-tab-button:hover,
        .category-filter-btn:hover,
        .faq-category-pill:hover {
            border-color: var(--gov-navy, #022A5E);
            color: var(--gov-navy, #022A5E);
            background: #F0F7FF;
        }

        .gov-filter-pill.active,
        .doc-tab-button.active,
        .category-filter-btn.active,
        .faq-category-pill.active {
            background: var(--gov-navy, #022A5E);
            color: #FFFFFF !important;
            border-color: var(--gov-navy, #022A5E);
            box-shadow: 0 2px 8px rgba(2, 42, 94, 0.2);
        }

        /* 2. FORM CONTROLS */
        .form-label,
        .gov-form-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 700;
            font-size: 13px;
            color: var(--gov-navy, #022A5E);
        }

        .form-control,
        .gov-form-input,
        .doc-search-input-field,
        .faq-search-box,
        .subscribe-email-input {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid #CBD5E1;
            border-radius: 6px;
            font-size: 13.5px;
            color: #1E293B;
            background: #FFFFFF;
            font-family: var(--font-body, 'Inter', sans-serif);
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            box-sizing: border-box;
        }

        .form-control:focus,
        .gov-form-input:focus,
        .doc-search-input-field:focus,
        .faq-search-box:focus,
        .subscribe-email-input:focus {
            border-color: var(--gov-navy, #022A5E);
            box-shadow: 0 0 0 3px rgba(2, 42, 94, 0.12);
        }

        .form-control::placeholder,
        .doc-search-input-field::placeholder,
        .faq-search-box::placeholder,
        .subscribe-email-input::placeholder {
            color: #94A3B8;
            font-size: 13px;
        }

        .form-control.input-validation-error,
        .form-control.is-invalid {
            border-color: #DC2626 !important;
            background-color: #FEF2F2;
        }

        .form-select,
        .doc-control-select,
        .gov-form-select {
            width: 100%;
            padding: 9px 36px 9px 12px;
            border: 1.5px solid #CBD5E1;
            border-radius: 6px;
            font-size: 13px;
            color: #1E293B;
            background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23022A5E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
            appearance: none;
            -webkit-appearance: none;
            font-family: var(--font-body, 'Inter', sans-serif);
            outline: none;
            cursor: pointer;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            box-sizing: border-box;
        }

        .form-select:focus,
        .doc-control-select:focus,
        .gov-form-select:focus {
            border-color: var(--gov-navy, #022A5E);
            box-shadow: 0 0 0 3px rgba(2, 42, 94, 0.12);
        }

        textarea.form-control,
        textarea.gov-form-input {
            min-height: 100px;
            resize: vertical;
        }

        .form-check-input,
        .custom-checkbox {
            accent-color: var(--gov-navy, #022A5E);
            width: 16px;
            height: 16px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 2px;
        }

        .form-error,
        .field-validation-error {
            color: #DC2626;
            font-size: 12px;
            font-weight: 600;
            margin-top: 4px;
            display: block;
        }

        /* 3. CARDS & PANELS */
        .portal-card,
        .gov-card {
            background: #FFFFFF;
            border: 1px solid #DCE7F3;
            border-radius: 10px;
            padding: 24px;
            box-shadow: 0 2px 8px rgba(2, 42, 94, 0.04);
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .portal-card:hover,
        .gov-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(2, 42, 94, 0.08);
            border-color: var(--gov-navy, #022A5E);
        }

        .gov-card-highlight {
            background: linear-gradient(135deg, #FFFFFF 0%, #F4F8FC 100%);
            border: 2px solid #DCE7F3;
            border-left: 5px solid var(--gov-navy, #022A5E);
            border-radius: 12px;
            padding: 28px 32px;
            box-shadow: 0 4px 16px rgba(2, 42, 94, 0.05);
        }

        /* 4. TABLES */
        .portal-table-container {
            width: 100%;
            overflow-x: auto;
            border-radius: 8px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
            margin-bottom: 24px;
        }

        .portal-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13.5px;
            text-align: left;
        }

        .portal-table th {
            background: var(--gov-navy, #022A5E);
            color: #FFFFFF;
            font-weight: 700;
            padding: 13px 18px;
            font-size: 12.5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #011B3D;
        }

        .portal-table td {
            padding: 14px 18px;
            border-bottom: 1px solid #E2E8F0;
            color: #1E293B;
            vertical-align: middle;
        }

        .portal-table tr:hover td {
            background: #F8FBFE;
        }

        /* 5. PAGINATION */
        .doc-pagination-strip,
        .gov-pagination-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-top: 16px;
            border-top: 1px solid #E2E8F0;
            flex-wrap: wrap;
            gap: 12px;
        }

        .doc-page-btn-group,
        .gov-pagination-btns {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .doc-page-btn,
        .gov-page-btn {
            padding: 7px 14px;
            border: 1.5px solid #CBD5E1;
            border-radius: 6px;
            background: #FFFFFF;
            color: var(--gov-navy, #022A5E);
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease;
        }

        .doc-page-btn:hover,
        .gov-page-btn:hover {
            background: #F0F7FF;
            border-color: var(--gov-navy, #022A5E);
        }

        .doc-page-btn.active,
        .gov-page-btn.active {
            background: var(--gov-navy, #022A5E);
            color: #FFFFFF !important;
            border-color: var(--gov-navy, #022A5E);
        }

        .doc-page-btn.disabled,
        .gov-page-btn.disabled {
            opacity: 0.45;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* 6. ALERTS & BADGES */
        .gov-alert,
        .admin-alert {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 500;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }

        .gov-alert-success,
        .admin-alert-success {
            background: #ECFDF5;
            border: 1.5px solid #A7F3D0;
            color: #065F46;
        }

        .gov-alert-danger,
        .admin-alert-danger {
            background: #FEF2F2;
            border: 1.5px solid #FECACA;
            color: #991B1B;
        }

        .gov-alert-warning,
        .admin-alert-warning {
            background: #FFFBEB;
            border: 1.5px solid #FDE68A;
            color: #92400E;
        }

        .gov-alert-info,
        .admin-alert-info {
            background: #EFF6FF;
            border: 1.5px solid #BFDBFE;
            color: #1E40AF;
        }

        .gov-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gov-badge-pill {
            background: rgba(2, 42, 94, 0.1);
            color: var(--gov-navy, #022A5E);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700;
        }

        /* 7. MODALS & DIALOGS */
        .gov-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(2, 42, 94, 0.78);
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .gov-modal-dialog {
            background: #FFFFFF;
            border-radius: 12px;
            width: 100%;
            max-width: 650px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: govModalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes govModalFadeIn {
            from { opacity: 0; transform: scale(0.96) translateY(10px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .gov-modal-header {
            background: var(--gov-navy, #022A5E);
            color: #FFFFFF;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .gov-modal-title {
            font-size: 17px;
            font-weight: 800;
            color: #FFFFFF;
            margin: 0;
        }

        .gov-modal-close-btn {
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            transition: background 0.15s ease;
        }

        .gov-modal-close-btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .gov-modal-body {
            padding: 24px;
            font-size: 14px;
            color: #334155;
            line-height: 1.6;
        }

        .gov-modal-footer {
            padding: 16px 24px;
            background: #F8FAFC;
            border-top: 1px solid #E2E8F0;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        /* =====================================================
           SECURITY AUDIT REFACTORING - COMPONENT UTILITIES
           ===================================================== */
        .admin-panel-link { color: #FF9933 !important; font-weight: 700; text-decoration: none; }
        .admin-login-link { color: #CBD5E1 !important; text-decoration: none; }
        .admin-login-link:hover, .admin-panel-link:hover { text-decoration: underline; }
        .header-search-form { display: flex; width: 100%; }

        .hero-bg-slide-1 { background-image: url('/images/pexels-haberdoedas-33443005.jpg'); }
        .hero-bg-slide-2 { background-image: url('/images/pexels-alexander-bobrov-390088-3277769.jpg'); }
        .hero-bg-slide-3 { background-image: url('/images/pexels-ana-kenk-2159501753-36468248.jpg'); }
        .hero-bg-slide-4 { background-image: url('/images/pexels-mehul-patel-829985-18697894.jpg'); }
        .video-count-info { font-size: 11px; color: #64748B; font-weight: 500; }
        .video-view-all-btn { padding: 5px 14px; font-size: 11.5px; text-decoration: none; }

        /* BETeam Page Components */
        .beteam-main-wrap { background: transparent; border: none; box-shadow: none; padding: 32px 0 48px; margin: 0; }
        .team-spotlight-body { flex: 1; }
        .team-spotlight-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
        .team-spotlight-title { font-size: 22px; font-weight: 800; color: var(--gov-navy, #022A5E); margin: 0; }
        .team-spotlight-badge { background: var(--gov-navy, #022A5E); color: #FFFFFF; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
        .team-spotlight-desig { font-size: 15px; font-weight: 700; color: var(--gov-saffron-warm, #E65100); margin-bottom: 12px; }
        .team-spotlight-info-list { flex-direction: row; flex-wrap: wrap; gap: 20px; }
        .team-spotlight-link { color: var(--gov-navy, #022A5E); font-weight: 600; text-decoration: none; }
        .team-spotlight-link:hover { text-decoration: underline; }

        .team-section-header-strip { margin: 0 0 24px 0; width: 100%; box-sizing: border-box; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; border-bottom: 2px solid #DCE7F3; padding-bottom: 12px; }
        .team-section-header-title { font-size: 20px; font-weight: 800; color: var(--gov-navy, #022A5E); margin: 0; }
        .team-section-header-subtitle { font-size: 13.5px; color: #486581; margin: 4px 0 0; }
        .team-section-header-badge { font-size: 12.5px; font-weight: 700; color: var(--gov-navy, #022A5E); background: #EAF6FB; padding: 4px 12px; border-radius: 20px; }

        .team-assistance-card { margin: 0; width: 100%; box-sizing: border-box; background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%); border: 1.5px solid #CBD5E1; border-radius: 10px; padding: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .team-assistance-title { font-size: 17px; font-weight: 800; color: var(--gov-navy, #022A5E); margin-bottom: 6px; }
        .team-assistance-subtitle { font-size: 13.5px; color: #486581; margin: 0; }
        .team-assistance-contacts-row { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13.5px; }
        .team-assistance-phone { color: var(--gov-navy, #022A5E); font-weight: 700; }
        .team-assistance-link { color: var(--gov-navy, #022A5E); font-weight: 600; text-decoration: none; }
        .team-assistance-link:hover { text-decoration: underline; }

        .faq-pill-count { background: #CBD5E1; color: #022A5E; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 700; }
        .faq-page-main { padding: 0; margin-bottom: 48px; margin-top: 24px; }
        .faq-help-title { font-size: 18px; font-weight: 700; color: var(--gov-navy, #022A5E); margin: 0 0 6px 0; }
        .faq-help-desc { font-size: 14px; color: #475569; margin: 0; line-height: 1.5; }
        .faq-help-actions { display: flex; gap: 12px; flex-wrap: wrap; }
        .faq-btn-navy { background: var(--gov-navy, #022A5E) !important; padding: 10px 20px; text-decoration: none; }
        .faq-btn-blue { background: #0077B6 !important; padding: 10px 20px; text-decoration: none; }

        /* Gallery Layout & Components */
        .gov-filter-pill { padding: 6px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 600; text-decoration: none; color: #486581; background: #F0F4F8; border: 1px solid #DCE7F3; transition: all 0.2s ease; }
        .gov-filter-pill:hover { background: #E2E8F0; color: var(--gov-navy, #022A5E); }
        .gov-filter-pill.active { background: var(--gov-navy, #022A5E); color: #FFFFFF; border-color: var(--gov-navy, #022A5E); }
        .photo-modal-img { max-height: 70vh; max-width: 100%; object-fit: contain; margin: 0 auto; display: block; border-radius: 6px; }

        .gallery-layout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; margin-bottom: 48px; margin-top: 24px; }
        .gallery-main-col { min-width: 0; padding: 0 24px; }
        .gallery-filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; background: #fff; padding: 16px 20px; border-radius: 10px; border: 1px solid #DCE7F3; flex-wrap: wrap; gap: 12px; }
        .gallery-header-title { color: var(--gov-navy, #022A5E); margin: 0; font-size: 18px; font-weight: 700; }
        .gallery-header-count { font-size: 12.5px; color: #64748B; margin-top: 4px; }
        .gallery-cover-img { height: 210px; width: 100%; position: relative; overflow: hidden; background: #eef6fc; display: block; }
        .gallery-card-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
        .album-card:hover .gallery-card-thumb { transform: scale(1.06); }
        .gallery-cat-badge { position: absolute; top: 10px; left: 10px; background: rgba(2, 42, 94, 0.88); color: #FF9933; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px; backdrop-filter: blur(4px); z-index: 2; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
        .gallery-cal-icon { margin-right: 4px; }
        .gallery-empty-box { grid-column: 1/-1; text-align: center; padding: 40px; background: #fff; border-radius: 8px; border: 1px solid #DCE7F3; }
        .gallery-empty-text { color: #64748B; margin: 0; }
        .gallery-pagination-wrap { margin-top: 32px; display: flex; justify-content: center; gap: 8px; }
        .gallery-related-section { margin-top: 36px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 12px; padding: 24px; }
        .gallery-related-title { color: var(--gov-navy, #022A5E); margin-bottom: 16px; font-size: 18px; font-weight: 700; }
        .gallery-sidebar-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 24px; box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04); }
        .gallery-sidebar-title { color: var(--gov-navy, #022A5E); font-size: 17px; font-weight: 700; border-bottom: 2px solid #0077B6; padding-bottom: 8px; margin-bottom: 14px; }
        .gallery-sidebar-desc { font-size: 14px; color: #475569; line-height: 1.6; }
        .gallery-sidebar-list { margin-top: 12px; padding-left: 18px; font-size: 13px; color: #64748B; line-height: 1.7; }
        .gallery-admin-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 24px; box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04); margin-top: 24px; }
        .gallery-admin-title { color: var(--gov-navy, #022A5E); font-size: 16px; font-weight: 700; margin-bottom: 12px; }
        .gallery-admin-desc { font-size: 13px; color: #64748B; line-height: 1.5; margin-bottom: 14px; }
        .gallery-admin-btn { display: block; text-align: center; text-decoration: none; padding: 8px 14px; font-size: 13px; }
        .gallery-admin-icon { margin-right: 6px; }

        .gallery-modal-body { text-align: center; padding: 10px; }
        .gallery-modal-title { color: var(--gov-navy, #022A5E); margin-top: 16px; font-size: 18px; }
        .gallery-modal-caption { color: #475569; font-size: 14px; margin-top: 6px; }
        .gallery-modal-tag { display: inline-block; background: var(--gov-navy, #022A5E); color: #FF9933; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 12px; margin-top: 8px; }
        .gallery-modal.active { display: flex !important; }

        /* Video Showcase Page */
        .video-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 32px; }
        .video-gallery-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(2,42,94,0.04); }
        .video-frame-container { position: relative; padding-top: 56.25%; background: var(--gov-navy, #022A5E); }
        .video-frame-elem { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
        .video-info-box { padding: 18px 20px; }
        .video-cat-tag { display: inline-block; font-size: 11px; font-weight: 700; color: #0077B6; text-transform: uppercase; margin-bottom: 6px; }
        .video-card-heading { font-size: 16px; font-weight: 700; color: var(--gov-navy, #022A5E); margin-bottom: 6px; line-height: 1.4; }
        .video-card-paragraph { font-size: 13px; color: #64748B; margin-bottom: 0; line-height: 1.5; }
        .video-duration-tag { margin-top: 10px; font-size: 12px; color: #94A3B8; }
        .video-duration-icon { margin-right: 4px; }
        .info-definition-block { background: #F8FAFC; border-left: 4px solid #0077B6; padding: 16px 20px; border-radius: 6px; margin-top: 24px; }
        .info-definition-heading { color: var(--gov-navy, #022A5E); margin-bottom: 8px; font-size: 15px; font-weight: 700; }
        .info-definition-quote { margin: 0; color: #475569; font-size: 14px; line-height: 1.6; }
        .media-inquiry-note { color: #64748B; font-size: 13px; margin-top: 16px; }
        .media-inquiry-link { color: #0077B6; font-weight: 700; text-decoration: none; }
        .media-inquiry-link:hover { text-decoration: underline; }

        /* Sitemap Page Components */
        .sitemap-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 28px; }
        .sitemap-card-grid.no-top-margin { margin-top: 0; }
        .sitemap-card { background: #FFFFFF; border: 1.5px solid #E2E8F0; border-radius: 12px; padding: 24px; box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; position: relative; overflow: hidden; }
        .sitemap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #022A5E, #0077B6); }
        .sitemap-card:hover { transform: translateY(-3px); border-color: #0077B6; box-shadow: 0 10px 24px rgba(2, 42, 94, 0.08); }
        .sitemap-card-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1.5px solid #F1F5F9; padding-bottom: 12px; margin-bottom: 16px; }
        .sitemap-card-title { font-size: 18px; font-weight: 800; color: #022A5E; margin: 0; display: flex; align-items: center; gap: 8px; }
        .sitemap-badge { font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 3px 8px; border-radius: 12px; background: #EFF6FF; color: #1D4ED8; letter-spacing: 0.4px; }
        .sitemap-links-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
        .sitemap-links-list li { font-size: 14px; line-height: 1.5; }
        .sitemap-links-list a { color: #334155; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: color 0.15s ease, transform 0.15s ease; }
        .sitemap-links-list a::before { content: '›'; color: #FF9933; font-weight: 900; font-size: 16px; line-height: 1; }
        .sitemap-links-list a:hover { color: #0077B6; transform: translateX(3px); text-decoration: underline; }
        .sitemap-links-list a.primary-link { color: #022A5E; font-weight: 700; }
        .sitemap-section-block { margin-top: 40px; }
        .sitemap-section-title { font-size: 22px; font-weight: 800; color: #022A5E; margin-bottom: 20px; border-bottom: 2px solid #E2E8F0; padding-bottom: 10px; }

        @media (max-width: 1024px) {
            .sitemap-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 640px) {
            .sitemap-card-grid { grid-template-columns: 1fr; }
        }

        /* Event Cards */
        .event-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .event-card-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(2, 42, 94, 0.08); display: flex; align-items: center; justify-content: center; font-size: 22px; }
        .event-card-title { font-size: 16px; font-weight: 800; color: var(--gov-navy, #022A5E); margin: 0; }
        .event-card-body { font-size: 13px; color: #486581; line-height: 1.6; padding-top: 12px; border-top: 1px dashed #DCE7F3; }
        .event-link-card { text-decoration: none; display: block; }
        .event-link-title { color: var(--gov-navy, #022A5E); font-size: 15px; display: block; margin-bottom: 4px; }
        .event-link-desc { color: #64748B; font-size: 13px; }

        /* Resources Repository Page Styles */
        .resources-tab-container { background: #FFFFFF; border: 1px solid #DCE7F3; border-radius: 12px; box-shadow: 0 4px 20px rgba(2, 42, 94, 0.06); overflow: hidden; margin-bottom: 40px; }
        .doc-nav-tab-strip { background: #0B2545; padding: 0 16px; display: flex; align-items: center; gap: 2px; overflow-x: auto; white-space: nowrap; border-bottom: 3.5px solid #FF9933; }
        .doc-nav-tab-strip::-webkit-scrollbar { height: 4px; }
        .doc-nav-tab-strip::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 2px; }
        .doc-tab-button { background: transparent; color: #E2E8F0; border: none; padding: 14px 22px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; font-family: inherit; border-bottom: 3.5px solid transparent; margin-bottom: -3.5px; text-decoration: none; }
        .doc-tab-button:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.08); }
        .doc-tab-button.active { color: #FFFFFF; background: #022A5E; border-bottom-color: #FF9933; }

        .doc-filter-strip { background: #FFFFFF; padding: 16px 20px; border-bottom: 1px solid #E2E8F0; }
        .resources-filter-form { display: flex !important; flex-direction: row !important; width: 100% !important; align-items: center !important; gap: 14px !important; flex-wrap: nowrap !important; }
        .doc-search-box-wrap { position: relative !important; flex: 1 1 auto !important; min-width: 0 !important; display: flex !important; align-items: center !important; }
        .doc-search-box-wrap svg { position: absolute; left: 14px; color: #64748B; pointer-events: none; }
        .doc-search-input-field { width: 100% !important; height: 42px !important; padding: 0 14px 0 38px !important; border: 1.5px solid #CBD5E1 !important; border-radius: 6px !important; font-size: 13.5px !important; outline: none; background: #FFFFFF; transition: border-color 0.2s ease, box-shadow 0.2s ease; box-sizing: border-box !important; }
        .doc-search-input-field:focus { border-color: #022A5E; box-shadow: 0 0 0 3px rgba(2, 42, 94, 0.1); }
        .doc-dropdown-controls { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; gap: 10px !important; align-items: center !important; flex: 0 0 auto !important; }
        .doc-dropdown-controls .doc-control-select { width: auto !important; height: 42px !important; padding: 0 34px 0 14px !important; border: 1.5px solid #CBD5E1 !important; border-radius: 6px !important; font-size: 13.5px !important; font-weight: 600 !important; color: #334155 !important; background-color: #FFFFFF !important; outline: none; min-width: 175px !important; box-sizing: border-box !important; }
        .doc-dropdown-controls .doc-control-select:focus { border-color: #022A5E; }
        .doc-btn-apply { height: 42px !important; padding: 0 20px !important; font-size: 13.5px !important; font-weight: 700 !important; background: #022A5E !important; color: #FFFFFF !important; border: none !important; border-radius: 6px !important; cursor: pointer; display: inline-flex !important; align-items: center !important; gap: 8px !important; white-space: nowrap !important; transition: background-color 0.2s ease; box-sizing: border-box !important; flex-shrink: 0 !important; }
        .doc-btn-apply:hover { background: #0077B6 !important; }
        .doc-btn-clear { height: 42px !important; padding: 0 16px !important; font-size: 13px !important; font-weight: 600 !important; color: #64748B !important; background: #F1F5F9 !important; border: 1px solid #CBD5E1 !important; border-radius: 6px !important; text-decoration: none; display: inline-flex !important; align-items: center !important; white-space: nowrap !important; box-sizing: border-box !important; transition: all 0.2s ease; flex-shrink: 0 !important; }
        .doc-btn-clear:hover { background: #E2E8F0 !important; color: #022A5E !important; }

        .doc-content-body { padding: 24px; background: #FFFFFF; }
        .doc-list-table-header { display: grid; grid-template-columns: minmax(320px, 2.5fr) minmax(200px, 1.3fr) 130px 100px; gap: 20px; padding: 14px 20px; background: #F1F5F9; border-radius: 8px; font-size: 12px; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; align-items: center; }
        .doc-list-table-header .col-header-title { text-align: left; }
        .doc-list-table-header .col-header-issuing { text-align: left; }
        .doc-list-table-header .col-header-date { text-align: left; }
        .doc-list-table-header .col-header-action { text-align: center; }

        .doc-content-body .doc-item-row { display: grid; grid-template-columns: minmax(320px, 2.5fr) minmax(200px, 1.3fr) 130px 100px; gap: 20px; padding: 16px 20px; background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 8px; margin-bottom: 12px; align-items: center; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
        .doc-content-body .doc-item-row:hover { transform: translateY(-2px); border-color: #CBD5E1; box-shadow: 0 4px 14px rgba(2, 42, 94, 0.07); }

        .doc-title-col { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }
        .doc-file-icon { flex-shrink: 0; margin-top: 2px; }
        .doc-icon-red { color: #EF4444; font-size: 26px; }
        .doc-icon-green { color: #10B981; font-size: 26px; }
        .doc-icon-amber { color: #F59E0B; font-size: 26px; }
        .doc-title-desc-wrap { min-width: 0; }
        .doc-title-text { font-size: 14.5px; font-weight: 700; color: #1E293B; line-height: 1.4; margin-bottom: 4px; }
        .doc-meta-info { font-size: 12.5px; color: #64748B; line-height: 1.5; }

        .doc-ministry-col { font-size: 13.5px; color: #334155; font-weight: 500; line-height: 1.45; text-align: left; }
        .doc-date-col { font-size: 13.5px; color: #475569; font-weight: 600; text-align: left; }
        .doc-action-col { text-align: center; }

        .doc-view-btn { background-color: #1f2937; border: 1px solid #1f2937; color: #ffffff !important; border-radius: 6px; padding: 7px 16px; font-size: 12px; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.18s ease; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; white-space: nowrap; }
        .doc-view-btn:hover { background-color: #111827; border-color: #111827; color: #ffffff !important; }

        .doc-empty-state { text-align: center; padding: 48px 20px; background: #FFFFFF; border-radius: 8px; border: 1px solid #E2E8F0; }
        .doc-empty-icon { font-size: 40px; color: #94A3B8; margin-bottom: 12px; }
        .doc-empty-title { color: #022A5E; font-size: 16px; margin: 0; }
        .doc-empty-desc { color: #64748B; font-size: 13.5px; margin-top: 4px; }
        .doc-pagination-wrap { margin-top: 24px; display: flex; justify-content: center; gap: 8px; }

        /* Policy Pages */
        .policy-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 32px; }
        .policy-nav-card { text-decoration: none; background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 24px; box-shadow: 0 4px 12px rgba(2,42,94,0.04); display: flex; flex-direction: column; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
        .policy-nav-card:hover { transform: translateY(-3px); border-color: #0077B6; box-shadow: 0 8px 20px rgba(2,42,94,0.08); }
        .policy-card-title { font-size: 17px; font-weight: 700; color: #022A5E; margin-bottom: 8px; }
        .policy-card-desc { font-size: 14px; color: #64748B; margin-bottom: 12px; flex: 1; }
        .policy-card-link { font-size: 13px; font-weight: 700; color: #0077B6; }
        .policy-detail-card { background: #FFFFFF; border: 1px solid #DCE7F3; border-radius: 12px; padding: 32px; margin-bottom: 32px; box-shadow: 0 4px 16px rgba(2,42,94,0.04); }
        .policy-detail-section { margin-bottom: 24px; }
        .policy-detail-section:last-child { margin-bottom: 0; }
        .policy-section-heading { font-size: 16px; font-weight: 700; color: #022A5E; margin-bottom: 8px; }
        .policy-section-text { font-size: 14px; color: #475569; line-height: 1.6; margin: 0; }
        .policy-meta-bar { display: flex; justify-content: space-between; align-items: center; background: #F8FAFC; padding: 12px 18px; border-radius: 8px; border: 1px solid #E2E8F0; margin-bottom: 24px; font-size: 13px; color: #64748B; flex-wrap: wrap; gap: 8px; }

        /* Error Page Styles */
        .error-page-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 48px 32px; text-align: center; max-width: 640px; margin: 60px auto; box-shadow: 0 10px 30px rgba(2,42,94,0.06); }
        .error-code-title { font-size: 56px; font-weight: 900; color: #022A5E; margin: 0 0 12px 0; }
        .error-heading { font-size: 20px; font-weight: 700; color: #1E293B; margin: 0 0 12px 0; }
        .error-desc { font-size: 14.5px; color: #64748B; line-height: 1.6; margin: 0 0 28px 0; }
        .error-actions-wrap { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
        .gov-btn-outline { background: #F1F5F9; color: #022A5E; padding: 12px 24px; border-radius: 6px; font-weight: 700; text-decoration: none; font-size: 14px; border: 1px solid #CBD5E1; }
        .gov-btn-outline:hover { background: #E2E8F0; }

        /* Contact Page Styles */
        .contact-hub-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; }
        .contact-info-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 32px; box-shadow: 0 4px 16px rgba(2,42,94,0.04); margin-bottom: 24px; }
        .contact-info-card:last-child { margin-bottom: 0; }
        .contact-card-title { color: #022A5E; font-size: 20px; font-weight: 700; margin-top: 0; margin-bottom: 20px; border-bottom: 2px solid #0077B6; padding-bottom: 10px; }
        .contact-item-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
        .contact-item-row:last-child { margin-bottom: 0; }
        .contact-icon-box { width: 40px; height: 40px; background: #F0F7FF; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #0077B6; flex-shrink: 0; }
        .contact-label-title { display: block; color: #022A5E; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
        .contact-label-desc { color: #475569; font-size: 14px; line-height: 1.5; margin: 0; }
        .contact-email-link { color: #0077B6; font-weight: 600; text-decoration: none; }
        .contact-email-link:hover { text-decoration: underline; }
        .contact-sub-text { font-size: 12px; color: #64748B; display: inline-block; margin-top: 2px; }
        .contact-map-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 24px; box-shadow: 0 4px 16px rgba(2,42,94,0.04); margin-bottom: 24px; }
        .contact-map-title { color: #022A5E; font-size: 16px; font-weight: 700; margin-top: 0; margin-bottom: 12px; }
        .contact-map-embed { border-radius: 8px; overflow: hidden; border: 1px solid #E2E8F0; height: 200px; background: #E2E8F0; position: relative; }
        .contact-form-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 32px; box-shadow: 0 4px 16px rgba(2,42,94,0.04); }
        .contact-form-title { color: #022A5E; font-size: 20px; font-weight: 700; margin-top: 0; margin-bottom: 8px; }
        .contact-form-subtitle { color: #64748B; font-size: 14px; margin-bottom: 24px; line-height: 1.5; margin-top: 0; }
        .contact-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0px; }
        .contact-form-group { margin-bottom: 16px; }
        .contact-form-label { display: block; font-size: 13px; font-weight: 700; color: #022A5E; margin-bottom: 6px; }
        .contact-form-input { width: 100%; padding: 10px 12px; border: 1px solid #CBD5E1; border-radius: 6px; font-size: 14px; outline: none; transition: border-color 0.2s ease; box-sizing: border-box; background: #fff; }
        .contact-form-input:focus { border-color: #0077B6; box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1); }
        .contact-form-textarea { width: 100%; min-height: 120px; padding: 10px 12px; border: 1px solid #CBD5E1; border-radius: 6px; font-size: 14px; outline: none; transition: border-color 0.2s ease; box-sizing: border-box; resize: vertical; line-height: 1.5; }
        .contact-form-textarea:focus { border-color: #0077B6; box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1); }
        .contact-submit-btn { background: #022A5E; color: #FFFFFF; border: none; padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.2s ease; display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; }
        .contact-submit-btn:hover { background: #0077B6; }
        .contact-directory-note { margin-top: 16px; background: #F0F7FF; border: 1px solid #BAE6FD; border-radius: 8px; padding: 16px; font-size: 13px; color: #0369A1; }
        .contact-directory-link { color: #0284C7; font-weight: 700; text-decoration: none; }
        .contact-directory-link:hover { text-decoration: underline; }
        .contact-map-frame { width: 100%; height: 450px; border: 0; border-radius: 10px; }

        /* Helpdesk & Map Pages */
        .helpdesk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 32px; }
        .helpdesk-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 28px; box-shadow: 0 4px 12px rgba(2,42,94,0.04); }
        .helpdesk-card-title { color: #022A5E; font-size: 18px; font-weight: 700; margin-top: 0; margin-bottom: 12px; }
        .helpdesk-card-desc { color: #475569; font-size: 14px; line-height: 1.6; margin-bottom: 16px; margin-top: 0; }
        .helpdesk-box-info { background: #F0F7FF; border: 1px solid #BAE6FD; border-radius: 8px; padding: 14px; font-size: 14px; color: #0369A1; line-height: 1.6; }
        .helpdesk-box-info a { color: #0284C7; font-weight: 700; text-decoration: none; }
        .helpdesk-box-info a:hover { text-decoration: underline; }
        .helpdesk-btn-faq { background: #022A5E; color: #FFFFFF; text-align: center; display: block; padding: 12px 24px; border-radius: 6px; font-weight: 700; text-decoration: none; font-size: 14px; transition: background 0.2s ease; }
        .helpdesk-btn-faq:hover { background: #0077B6; }

        .contact-map-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
        .contact-map-info-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; padding: 28px; box-shadow: 0 4px 12px rgba(2,42,94,0.04); }
        .contact-map-info-title { color: #022A5E; font-size: 18px; font-weight: 700; margin-top: 0; margin-bottom: 16px; }
        .contact-map-address-text { font-size: 14px; line-height: 1.8; color: #334155; margin-bottom: 20px; }
        .contact-map-metro-box { background: #F8FAFC; border-left: 4px solid #0077B6; padding: 16px; border-radius: 4px; font-size: 13.5px; color: #475569; margin-bottom: 20px; line-height: 1.6; }
        .contact-map-hours-text { font-size: 13.5px; color: #64748B; }
        .contact-map-embed-card { background: #fff; border: 1px solid #DCE7F3; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(2,42,94,0.04); min-height: 350px; }
        .contact-map-embed-card iframe { border: 0; min-height: 350px; width: 100%; height: 100%; }

        @media (max-width: 900px) {
            .contact-hub-grid { grid-template-columns: 1fr; }
            .doc-list-table-header { display: none; }
            .doc-item-row { grid-template-columns: 1fr; gap: 10px; }
        }

        .page-hero-banner.hero-overview { background-image: linear-gradient(135deg, rgba(1, 27, 61, 0.92) 0%, rgba(2, 42, 94, 0.88) 50%, rgba(0, 119, 182, 0.85) 100%), url('/images/hero-blue-economy-overview.jpg'); }
        .page-hero-banner.hero-investments { background-image: linear-gradient(135deg, rgba(1, 27, 61, 0.92) 0%, rgba(2, 42, 94, 0.88) 50%, rgba(0, 119, 182, 0.85) 100%), url('/images/investments/Container Ports1.jpg'); }
        .page-hero-banner.hero-ppp { background-image: linear-gradient(135deg, rgba(1, 27, 61, 0.92) 0%, rgba(2, 42, 94, 0.88) 50%, rgba(0, 119, 182, 0.85) 100%), url('/images/investments/Container-Ports2.jpg'); }
        .page-hero-banner.hero-facilitation { background-image: linear-gradient(135deg, rgba(1, 27, 61, 0.92) 0%, rgba(2, 42, 94, 0.88) 50%, rgba(0, 119, 182, 0.85) 100%), url('/images/investments/facilitation-team.jpg'); }
        .page-hero-banner.hero-atlas { background-image: linear-gradient(135deg, rgba(1, 27, 61, 0.92) 0%, rgba(2, 42, 94, 0.88) 50%, rgba(0, 119, 182, 0.85) 100%), url('/images/investments/Map.jpg'); }
        .page-hero-banner.hero-resources { background-image: linear-gradient(135deg, rgba(1, 27, 61, 0.92) 0%, rgba(2, 42, 94, 0.88) 50%, rgba(0, 119, 182, 0.85) 100%), url('/images/investments/policy-library.jpg'); }
        
        .breadcrumb-inner.is-center { justify-content: center; }
        
        .wide-container { max-width: var(--gov-container-max, 1540px); margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
        .wide-container.about-wide-container { max-width: 1232px; }
        .wide-container.with-margin-top { margin-top: 36px; }
        .main-content-wrap { max-width: 1280px; margin: 36px auto 48px; padding: 0 24px; box-sizing: border-box; background: transparent; border: none; box-shadow: none; }

        /* Scoped overrides to ensure content containers match reference HTML dimensions */
        main#main-content.main-content-wrap {
            max-width: 1280px;
            margin: 36px auto 48px;
            padding: 0 24px;
        }

        main#main-content.beteam-main-wrap {
            max-width: 100%;
            padding: 0;
            margin: 0 0 48px;
        }

        main#main-content.faq-page-main {
            max-width: 1280px;
            margin: 36px auto 48px;
            padding: 0;
        }

        main#main-content.main-content-col {
            max-width: 100%;
            padding: 0;
            margin: 0;
        }

        main#main-content.invest-main-content {
            max-width: var(--gov-container-max, 1540px);
            margin: 0 auto;
            padding: 36px 24px 60px;
        }

        .content-card-box { background: #FFFFFF; border: 1px solid #DCE7F3; border-radius: 12px; padding: 32px; box-shadow: 0 4px 16px rgba(2,42,94,0.04); margin-bottom: 24px; }
        .content-card-box-intro { background: #FFFFFF; border: 1px solid #DCE7F3; border-left: 4px solid var(--gov-navy, #022A5E); border-radius: 10px; padding: 20px 24px; margin-bottom: 32px; box-shadow: 0 2px 8px rgba(2,42,94,0.04); }
        .content-grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
        .content-grid-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
        .content-bottom-links-bar { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 16px; border-top: 2px solid var(--gov-saffron, #FF9933); margin-top: 32px; }
        .content-card-box-footer { margin-top: 32px; padding-top: 20px; border-top: 1px solid #E2E8F0; display: flex; gap: 12px; }
        
        .hero-actions-wrap { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
        .is-hidden { display: none !important; }
        .modal-open { overflow: hidden !important; }

        /* Floating Top Button Transition */
        .floating-top-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 990;
            background: var(--gov-navy, #022A5E);
            color: #FFFFFF;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #FFFFFF;
            box-shadow: 0 4px 14px rgba(2, 42, 94, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s ease;
        }
        .floating-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }
        .floating-top-btn:hover {
            background: var(--gov-saffron-warm, #E65100);
            transform: translateY(-3px);
        }

        /* ==========================================================================
           8. HIGH CONTRAST & LIGHT MODE SUITE (WCAG 2.1 AAA / GIGW 3.0)
           ========================================================================== */
        body.high-contrast,
        body.high-contrast-mode {
            background-color: #000000 !important;
            color: #FFFFFF !important;
        }

        body.high-contrast .gov-top-bar,
        body.high-contrast-mode .gov-top-bar {
            background-color: #000000 !important;
            border-bottom: 2px solid #FFFF00 !important;
            color: #FFFFFF !important;
        }

        body.high-contrast .master-gov-header,
        body.high-contrast-mode .master-gov-header,
        body.high-contrast .portal-header,
        body.high-contrast-mode .portal-header {
            background-color: #000000 !important;
            border-bottom: 3px solid #FFFF00 !important;
        }

        body.high-contrast .portal-title-en,
        body.high-contrast-mode .portal-title-en,
        body.high-contrast .ministry-title-en,
        body.high-contrast-mode .ministry-title-en,
        body.high-contrast .ministry-title-hi,
        body.high-contrast-mode .ministry-title-hi,
        body.high-contrast .portal-title-hi,
        body.high-contrast-mode .portal-title-hi,
        body.high-contrast .site-title-en,
        body.high-contrast-mode .site-title-en {
            color: #FFFFFF !important;
        }

        body.high-contrast .portal-tagline,
        body.high-contrast-mode .portal-tagline {
            color: #FFFF00 !important;
        }

        body.high-contrast .master-gov-nav,
        body.high-contrast-mode .master-gov-nav,
        body.high-contrast .portal-navbar,
        body.high-contrast-mode .portal-navbar {
            background-color: #050505 !important;
            border-bottom: 3px solid #FFFF00 !important;
        }

        body.high-contrast .nav-link-item,
        body.high-contrast-mode .nav-link-item,
        body.high-contrast .portal-nav-link,
        body.high-contrast-mode .portal-nav-link {
            color: #FFFFFF !important;
        }

        body.high-contrast .nav-link-item:hover,
        body.high-contrast .nav-link-item.active,
        body.high-contrast-mode .nav-link-item:hover,
        body.high-contrast-mode .nav-link-item.active,
        body.high-contrast .portal-nav-link:hover,
        body.high-contrast .portal-nav-link.active,
        body.high-contrast-mode .portal-nav-link:hover,
        body.high-contrast-mode .portal-nav-link.active {
            background-color: #FFFF00 !important;
            color: #000000 !important;
        }

        body.high-contrast .nav-dropdown-menu,
        body.high-contrast-mode .nav-dropdown-menu {
            background-color: #000000 !important;
            border: 2px solid #FFFF00 !important;
        }

        body.high-contrast .nav-dropdown-item,
        body.high-contrast-mode .nav-dropdown-item {
            color: #FFFFFF !important;
        }

        body.high-contrast .nav-dropdown-item:hover,
        body.high-contrast-mode .nav-dropdown-item:hover {
            background-color: #FFFF00 !important;
            color: #000000 !important;
        }

        body.high-contrast .page-hero-banner,
        body.high-contrast-mode .page-hero-banner {
            background: #000000 !important;
            border-bottom: 2px solid #FFFF00 !important;
            color: #FFFFFF !important;
        }

        body.high-contrast .page-hero-banner h1,
        body.high-contrast-mode .page-hero-banner h1 {
            color: #FFFF00 !important;
        }

        body.high-contrast .page-hero-banner p,
        body.high-contrast-mode .page-hero-banner p {
            color: #FFFFFF !important;
        }

        body.high-contrast .breadcrumb-strip,
        body.high-contrast-mode .breadcrumb-strip {
            background-color: #000000 !important;
            border-bottom: 1px solid #FFFF00 !important;
            color: #FFFFFF !important;
        }

        body.high-contrast .breadcrumb-strip a,
        body.high-contrast-mode .breadcrumb-strip a {
            color: #00E5FF !important;
        }

        body.high-contrast .sector-card,
        body.high-contrast-mode .sector-card,
        body.high-contrast .initiative-card,
        body.high-contrast-mode .initiative-card,
        body.high-contrast .video-card,
        body.high-contrast-mode .video-card,
        body.high-contrast .about-chapter-card,
        body.high-contrast-mode .about-chapter-card,
        body.high-contrast .faq-accordion-item,
        body.high-contrast-mode .faq-accordion-item,
        body.high-contrast .photo-album-card,
        body.high-contrast-mode .photo-album-card,
        body.high-contrast .invest-card-standard,
        body.high-contrast-mode .invest-card-standard,
        body.high-contrast .invest-section-box,
        body.high-contrast-mode .invest-section-box,
        body.high-contrast .card,
        body.high-contrast-mode .card,
        body.high-contrast .content-card-box,
        body.high-contrast-mode .content-card-box,
        body.high-contrast .content-card-box-intro,
        body.high-contrast-mode .content-card-box-intro,
        body.high-contrast .policy-document-card,
        body.high-contrast-mode .policy-document-card,
        body.high-contrast .contact-form-card,
        body.high-contrast-mode .contact-form-card,
        body.high-contrast .contact-hub-card,
        body.high-contrast-mode .contact-hub-card,
        body.high-contrast .team-card-gov,
        body.high-contrast-mode .team-card-gov,
        body.high-contrast .nodal-officer-row,
        body.high-contrast-mode .nodal-officer-row {
            background-color: #000000 !important;
            border: 2px solid #FFFFFF !important;
            color: #FFFFFF !important;
        }

        body.high-contrast .sector-card:hover,
        body.high-contrast-mode .sector-card:hover,
        body.high-contrast .initiative-card:hover,
        body.high-contrast-mode .initiative-card:hover,
        body.high-contrast .faq-accordion-item.active,
        body.high-contrast-mode .faq-accordion-item.active {
            border-color: #FFFF00 !important;
            box-shadow: 0 0 10px rgba(255, 255, 0, 0.4) !important;
        }

        body.high-contrast h1, body.high-contrast h2, body.high-contrast h3,
        body.high-contrast h4, body.high-contrast h5, body.high-contrast h6,
        body.high-contrast-mode h1, body.high-contrast-mode h2, body.high-contrast-mode h3,
        body.high-contrast-mode h4, body.high-contrast-mode h5, body.high-contrast-mode h6 {
            color: #FFFF00 !important;
        }

        body.high-contrast p,
        body.high-contrast-mode p,
        body.high-contrast span,
        body.high-contrast-mode span {
            color: #E2E8F0;
        }

        body.high-contrast a,
        body.high-contrast-mode a {
            color: #00E5FF !important;
        }

        body.high-contrast a:hover,
        body.high-contrast-mode a:hover {
            color: #FFFF00 !important;
            text-decoration: underline !important;
        }

        body.high-contrast .master-gov-footer,
        body.high-contrast-mode .master-gov-footer {
            background-color: #000000 !important;
            border-top: 3px solid #FFFF00 !important;
            color: #FFFFFF !important;
        }

        body.high-contrast .footer-bottom-legal-bar,
        body.high-contrast-mode .footer-bottom-legal-bar {
            background-color: #050505 !important;
            border-top: 1px solid #FFFF00 !important;
            color: #FFFFFF !important;
        }

        body.high-contrast .btn-primary,
        body.high-contrast-mode .btn-primary,
        body.high-contrast .gov-btn-primary,
        body.high-contrast-mode .gov-btn-primary {
            background-color: #FFFF00 !important;
            color: #000000 !important;
            border: 2px solid #FFFFFF !important;
            font-weight: 800 !important;
        }

        body.high-contrast .btn-primary:hover,
        body.high-contrast-mode .btn-primary:hover,
        body.high-contrast .gov-btn-primary:hover,
        body.high-contrast-mode .gov-btn-primary:hover {
            background-color: #FFFFFF !important;
            color: #000000 !important;
            border-color: #FFFF00 !important;
        }

        body.high-contrast .counter-digit,
        body.high-contrast-mode .counter-digit {
            background: #000000 !important;
            color: #FFFF00 !important;
            border: 1.5px solid #FFFF00 !important;
        }

        body.high-contrast .topbar-contrast-btn,
        body.high-contrast-mode .topbar-contrast-btn {
            background: #FFFF00 !important;
            color: #000000 !important;
            border-color: #FFFFFF !important;
        }