/* ==========================================================================
   MINISTRY OF EARTH SCIENCES — BLUE ECONOMY PORTAL
   CORE STYLESHEET (GOI GIGW & WCAG 2.1 COMPLIANT)
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    --gov-navy-dark: #011b3d;
    --gov-navy: #022a5e;
    --gov-navy-light: #0a3a78;
    --gov-saffron: #ff9933;
    --gov-saffron-warm: #f38616;
    --gov-saffron-light: #fff5eb;
    --ocean-blue: #0077b6;
    --ocean-cerulean: #0096c7;
    --ocean-sky: #00b4d8;
    --ocean-pale: #f0f7fd;
    --ocean-tint: #e3f2fd;
    --text-dark: #0f2744;
    --text-main: #243b53;
    --text-muted: #486581;
    --text-subtle: #627d98;
    --surface-white: #ffffff;
    --surface-card: #ffffff;
    --border-light: #dce7f3;
    --border-accent: #c8daf0;
    --border-focus: #0077b6;
    --shadow-subtle: 0 2px 8px rgba(2, 42, 94, 0.04);
    --shadow-card: 0 4px 16px rgba(2, 42, 94, 0.07);
    --shadow-hover: 0 8px 24px rgba(2, 42, 94, 0.12);
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Core Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f7fafc;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--ocean-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gov-navy);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   1. GOVERNMENT OF INDIA HEADER RIBBON SYSTEM (PRESERVED)
   ========================================================================== */

.top-bar {
    background-color: var(--gov-navy-dark);
    color: #ffffff;
    font-size: 12px;
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gov-saffron);
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: var(--font-body);
}

.top-bar .gov-identity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.top-bar .top-utilities {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar .utility-link,
.top-bar .utility-button {
    color: #ffffff;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    transition: color 0.2s ease;
    font-family: var(--font-body);
}

.top-bar .utility-link:hover,
.top-bar .utility-button:hover {
    color: var(--gov-saffron);
    text-decoration: underline;
}

.top-bar .utility-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
}

.contrast-toggle,
.language-toggle {
    display: flex;
    gap: 6px;
    align-items: center;
}

.contrast-toggle button,
.language-toggle button {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 10.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: var(--font-body);
}

.contrast-toggle button:hover,
.contrast-toggle button.active,
.language-toggle button:hover,
.language-toggle button.active {
    background: var(--gov-saffron);
    border-color: var(--gov-saffron);
    color: var(--gov-navy-dark);
    font-weight: 700;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
}

.skip-link:focus {
    position: fixed;
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--gov-saffron);
    color: var(--gov-navy-dark);
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.35);
    z-index: 10001;
    font-weight: 700;
}

/* ==========================================================================
   2. MAIN HEADER BANNER (PRESERVED)
   ========================================================================== */

.main-header {
    background: linear-gradient(to right, #ffffff, #f9fbfd);
    padding: 14px 10%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 3px solid var(--gov-navy);
    box-shadow: 0 2px 6px rgba(2, 42, 94, 0.06);
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
}

.emblem-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    width: 82px;
    height: 82px;
    border-radius: 6px;
    border: none;
    background: transparent;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 26px;
    color: var(--gov-navy);
    font-weight: 800;
    letter-spacing: 0.2px;
    margin: 0;
    line-height: 1.15;
}

.logo-text h2 {
    font-size: 18px;
    color: var(--gov-saffron-warm);
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 2px 0 3px 0;
    line-height: 1.15;
}

.logo-text p {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.2px;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   3. PRIMARY NAVIGATION BAR (PRESERVED)
   ========================================================================== */

.navbar {
    background: linear-gradient(90deg, var(--gov-navy-dark) 0%, var(--gov-navy) 100%);
    padding: 0 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(2, 42, 94, 0.16);
    border-bottom: 3px solid var(--gov-saffron);
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    display: block;
    padding: 15px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    font-family: var(--font-display);
}

.navbar ul li a:hover,
.navbar ul li a.active {
    background-color: var(--gov-saffron);
    color: var(--gov-navy-dark);
}

.navbar ul li > a.has-dropdown::after {
    content: " ▾";
    font-size: 10px;
    opacity: 0.85;
}

.navbar ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    border-top: 3px solid var(--gov-saffron);
    border-bottom: 2px solid var(--gov-navy);
    box-shadow: 0 6px 20px rgba(2, 42, 94, 0.16);
    z-index: 1100;
    list-style: none;
    padding: 6px 0;
    border-radius: 0 0 6px 6px;
}

.navbar ul li:hover > .dropdown,
.navbar ul li:focus-within > .dropdown {
    display: block;
}

.navbar ul li .dropdown li {
    width: 100%;
}

.navbar ul li .dropdown li a {
    display: block;
    padding: 10px 18px;
    color: var(--gov-navy);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    background: transparent;
}

.navbar ul li .dropdown li a:hover,
.navbar ul li .dropdown li a.active {
    background-color: #f0f7fd;
    color: var(--gov-saffron-warm);
    border-left-color: var(--gov-saffron);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    padding: 12px 0;
}

/* ==========================================================================
   STANDARDIZED PORTAL GLOBAL HEADER & NAVIGATION SYSTEM
   ========================================================================== */
.gov-top-bar {
    background-color: var(--gov-navy-dark, #011B3D);
    color: #FFFFFF;
    font-size: 12px;
    border-bottom: 2px solid var(--gov-saffron, #FF9933);
    width: 100%;
}

.gov-top-bar-inner {
    max-width: var(--gov-container-max, 1540px);
    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, inherit);
    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, #FF9933);
}

.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, #FF9933);
    color: var(--gov-navy-dark, #011B3D);
}

.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, #011B3D);
    color: #FFFFFF;
}

.portal-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light, #DCE7F3);
    width: 100%;
    box-shadow: 0 1px 3px rgba(6, 59, 115, 0.06);
}

.portal-header-inner {
    max-width: var(--gov-container-max, 1540px);
    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(--border-light, #DCE7F3);
    padding-left: 18px;
}

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

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

.gov-sub-dept {
    font-size: 11.5px;
    color: var(--text-muted, #486581);
    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, #022A5E);
    letter-spacing: -0.3px;
    line-height: 1.2;
    font-family: var(--font-display);
}

.portal-main-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-blue, #0077B6);
    margin-top: 3px;
}

.header-search-wrap {
    display: flex;
    align-items: center;
    background: #F1F5F9;
    border: 1.5px solid #CBD5E1;
    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, #022A5E);
    box-shadow: 0 0 0 3px rgba(6, 59, 115, 0.12);
}

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

.header-search-btn {
    background: transparent;
    border: none;
    color: var(--gov-navy, #022A5E);
    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, #F38616);
}

.portal-navbar {
    background: var(--gov-navy, #022A5E);
    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, 1540px);
    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;
    font-family: var(--font-display);
}

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

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

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

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 230px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 28px rgba(6, 59, 115, 0.15);
    border: 1px solid var(--border-light, #DCE7F3);
    border-top: 3px solid var(--gov-saffron, #FF9933);
    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(--text-dark, #0F2744);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #EAF6FB;
    color: var(--gov-navy, #022A5E);
    border-left-color: var(--gov-navy, #022A5E);
    padding-left: 22px;
}

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

/* ==========================================================================
   4. HERO CAROUSEL VIEWPORT (PRESERVED)
   ========================================================================== */

.carousel-viewport {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--gov-saffron);
    background: #021a38;
}

.carousel-slider {
    display: flex;
    width: 500%; 
    height: 100%;
    animation: slidingCarousel 28s infinite ease-in-out;
}

.carousel-viewport:hover .carousel-slider {
    animation-play-state: paused;
}

.slide-pane {
    width: 20%; 
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.slide-pane::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 27, 61, 0.92) 0%, rgba(2, 42, 94, 0.45) 55%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.slide-caption {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 10% 32px;
    background: linear-gradient(to top, rgba(1, 27, 61, 0.95) 0%, rgba(1, 27, 61, 0.7) 70%, transparent 100%);
    backdrop-filter: blur(2px);
}

.slide-caption h3 {
    font-size: 27px;
    color: #ffb056;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.slide-caption p {
    font-size: 15px;
    max-width: 780px;
    color: #f0f7ff;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

@keyframes slidingCarousel {
    0%, 16%   { transform: translateX(0%); }
    20%, 36%  { transform: translateX(-20%); }
    40%, 56%  { transform: translateX(-40%); }
    60%, 76%  { transform: translateX(-60%); }
    80%, 96%  { transform: translateX(-80%); }
    100%      { transform: translateX(0%); }
}

/* ==========================================================================
   5. REFINED MIDDLE CONTENT AREA (LAYOUT, TYPOGRAPHY, CARDS, TABLES, FORMS)
   ========================================================================== */

/* Breadcrumbs Navigation */
nav[aria-label="Breadcrumb"],
.breadcrumb-strip {
    font-size: 13px;
    color: var(--text-muted);
    padding: 12px 10%;
    background: #f0f6fc;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-weight: 500;
}

nav[aria-label="Breadcrumb"] a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
}

nav[aria-label="Breadcrumb"] a:hover {
    color: var(--gov-navy);
    text-decoration: underline;
}

nav[aria-label="Breadcrumb"] span {
    color: var(--gov-navy);
    font-weight: 700;
}

/* Page Hero Banner for Subpages */
.page-hero-banner {
    position: relative;
    background-color: var(--gov-navy);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 56px 10% 48px;
    overflow: hidden;
    border-bottom: 3px solid var(--gov-saffron);
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 27, 61, 0.94) 0%, rgba(2, 42, 94, 0.82) 100%);
    pointer-events: none;
}

.page-hero-banner .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.page-hero-banner .hero-eyebrow {
    display: inline-block;
    background: var(--gov-saffron);
    color: var(--gov-navy-dark);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-xs);
    margin-bottom: 14px;
}

.page-hero-banner h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.page-hero-banner p.hero-tagline {
    color: #e1effc;
    font-size: 15.5px;
    margin-top: 12px;
    max-width: 820px;
    line-height: 1.65;
}

/* Main Two-Column Container Grid */
.container {
    max-width: 1280px;
    margin: 36px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2.75fr 1.25fr;
    gap: 32px;
    align-items: start;
}

/* Single-Column Full Width Wrapper */
main#main-content:not(.main-content) {
    max-width: 1280px;
    margin: 36px auto;
    padding: 0 24px;
}

/* Main Content Card Frame */
.main-content {
    background: #ffffff;
    padding: 38px 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--gov-saffron);
    box-shadow: var(--shadow-card);
}

/* Intro Section */
.intro-hero {
    margin-bottom: 30px;
}

.intro-hero h2 {
    font-size: 28px;
    color: var(--gov-navy);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.blue-chakra-divider {
    font-size: 24px;
    color: var(--gov-saffron-warm);
    margin: 6px 0 10px;
    line-height: 1;
}

.hero-subheadline {
    font-size: 17px;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 14px;
    line-height: 1.4;
}

.hero-tagline {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Definition Callout Box */
.definition-block {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fe 100%);
    border: 1px solid #c8e1fa;
    border-left: 5px solid var(--gov-navy);
    padding: 22px 26px;
    margin-bottom: 32px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-subtle);
}

.definition-block h4 {
    font-size: 13.5px;
    text-transform: uppercase;
    color: var(--gov-navy);
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.definition-block p,
.definition-block blockquote {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
}

.definition-block blockquote {
    font-style: italic;
}

/* Vital Statistics Section */
.vital-statistics {
    margin-bottom: 38px;
    background: #ffffff;
    padding: 26px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
}

.vital-statistics h3,
.sectors-section h3,
.interventions-section h3,
.international-cooperation-section h3,
.timeline-section h3,
.downloads-section h3,
.related-links-section h3 {
    color: var(--gov-navy);
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gov-saffron);
}

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

.metric-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%);
    padding: 20px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #d4e5f7;
    border-top: 3px solid var(--ocean-blue);
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(2, 42, 94, 0.04);
}

.metric-card:hover {
    transform: translateY(-3px);
    border-top-color: var(--gov-saffron);
    box-shadow: var(--shadow-card);
    background: #ffffff;
}

.m-val {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--gov-navy);
    font-family: var(--font-display);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.m-lbl {
    display: block;
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.35;
}

/* Sectors & Interventions Grids */
.sectors-section,
.interventions-section {
    margin-bottom: 38px;
}

.sectors-grid,
.interventions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sector-card,
.intervention-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.03);
}

.sector-card:hover,
.intervention-card:hover {
    border-color: var(--ocean-blue);
    background: #f8fbfe;
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.sector-card .card-summary,
.intervention-card .card-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sector-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.sector-card .card-summary h3,
.intervention-card .card-summary h3 {
    font-size: 15.5px;
    color: var(--gov-navy);
    font-weight: 700;
    margin: 0;
    border: none;
    padding: 0;
    flex: 1;
}

.expand-pill {
    font-size: 11px;
    font-weight: 700;
    color: var(--ocean-blue);
    background: var(--ocean-pale);
    padding: 3px 9px;
    border-radius: 12px;
    border: 1px solid #cce4f8;
    margin-left: auto;
    transition: all 0.2s ease;
}

.sector-card.expanded .expand-pill,
.intervention-card.expanded .expand-pill {
    background: var(--gov-navy);
    color: #ffffff;
    border-color: var(--gov-navy);
}

.card-details {
    max-height: 0;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sector-card.expanded,
.intervention-card.expanded {
    grid-column: span 2;
    border-color: var(--ocean-blue);
    background: #ffffff;
    box-shadow: var(--shadow-hover);
    border-left: 4px solid var(--gov-saffron);
}

.sector-card.expanded .card-details,
.intervention-card.expanded .card-details {
    max-height: 700px;
    opacity: 1;
    padding-top: 16px;
    border-top: 1px dashed var(--border-light);
    margin-top: 14px;
}

.card-details p {
    font-size: 13.5px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.card-details p strong {
    color: var(--gov-navy);
    font-weight: 700;
}

/* Scheme Metadata */
.scheme-metadata {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nodal-body-tag {
    display: inline-block;
    background: var(--ocean-pale);
    border: 1px solid #cce4f8;
    color: var(--gov-navy);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hidden-scheme {
    display: none;
}

.toggle-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 26px;
    margin-bottom: 10px;
}

.action-toggle-btn {
    background: linear-gradient(135deg, var(--gov-navy), #0a468d);
    color: #ffffff;
    border: 1px solid var(--gov-saffron);
    padding: 12px 32px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.2);
    font-family: var(--font-display);
}

.action-toggle-btn:hover {
    background: linear-gradient(135deg, var(--gov-saffron-warm), var(--gov-navy));
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 153, 51, 0.35);
}

.button-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
}

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

/* International Cooperation */
.international-cooperation-section {
    margin-bottom: 38px;
}

.international-coop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.coop-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--ocean-blue);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.04);
    transition: all 0.25s ease;
}

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

.coop-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--gov-navy);
    font-weight: 700;
}

.coop-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-dark);
}

/* Timeline */
.timeline-section {
    margin-bottom: 38px;
}

.timeline-container {
    border-left: 3px solid var(--gov-navy);
    margin-left: 14px;
    padding-left: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.timeline-node {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.04);
    transition: all 0.25s ease;
}

.timeline-node:hover {
    border-color: var(--gov-saffron);
    box-shadow: var(--shadow-card);
}

.timeline-node::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 22px;
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border: 3px solid var(--gov-saffron);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

.node-year {
    font-size: 19px;
    font-weight: 800;
    color: var(--gov-saffron-warm);
    font-family: var(--font-display);
    margin-bottom: 6px;
}

.node-desc {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.65;
}

/* Downloads Section */
.downloads-section {
    margin: 38px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--ocean-blue);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    text-decoration: none;
    transition: all 0.22s ease;
    box-shadow: 0 2px 6px rgba(2, 42, 94, 0.03);
}

.download-card:hover {
    background-color: #f5f9ff;
    border-left-color: var(--gov-saffron);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.download-icon {
    font-size: 24px;
    color: var(--ocean-blue);
    flex-shrink: 0;
}

.download-meta strong {
    display: block;
    font-size: 14px;
    color: var(--gov-navy);
    font-weight: 700;
    line-height: 1.35;
}

.download-meta span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 500;
}

/* Related Links Section */
.related-links-section {
    margin: 38px 0 20px;
    border-top: 2px solid var(--gov-saffron);
    padding-top: 24px;
}

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

.related-link-card {
    display: block;
    background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    text-decoration: none;
    color: var(--gov-navy);
    transition: all 0.22s ease;
    box-shadow: 0 2px 6px rgba(2, 42, 94, 0.03);
}

.related-link-card:hover {
    border-color: var(--ocean-blue);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    background: #ffffff;
}

.related-link-card strong {
    display: block;
    font-size: 14.5px;
    margin-bottom: 4px;
    color: var(--gov-navy);
    font-weight: 700;
}

.related-link-card span {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Call to Action Banner */
.cta-section {
    margin: 42px 0 24px;
    background: linear-gradient(135deg, var(--gov-navy-dark) 0%, var(--gov-navy) 60%, #063c7d 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(2, 42, 94, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-section h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.cta-section p {
    color: #dce8f7;
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.more-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ocean-blue);
    color: #ffffff !important;
    padding: 9px 18px;
    border-radius: var(--radius-xs);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.22s ease;
    box-shadow: 0 2px 6px rgba(0, 119, 182, 0.25);
    font-family: var(--font-display);
}

.more-info-link:hover {
    background: var(--gov-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 42, 94, 0.3);
}

.cta-buttons .cta-secondary {
    background: transparent;
    border: 2px solid #ffffff;
}

.cta-buttons .cta-secondary:hover {
    background: #ffffff;
    color: var(--gov-navy) !important;
}

/* Infographic Container */
.infographic-section {
    margin: 32px 0;
    background: #f7fafe;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.infographic-section img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.06);
}

.infographic-caption {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--text-dark);
    font-weight: 600;
}

.source-note {
    font-size: 12px;
    color: var(--text-subtle);
    margin-top: 6px;
    font-style: italic;
}

/* FAQ Accordion */
.faq-accordion-section {
    margin-bottom: 38px;
}

.faq-item-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(2, 42, 94, 0.03);
    transition: border-color 0.2s ease;
}

.faq-item-card:hover {
    border-color: var(--ocean-blue);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fbfe;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14.5px;
    color: var(--gov-navy);
    font-weight: 700;
    font-family: var(--font-display);
    gap: 14px;
}

.faq-question:hover {
    background: #eff6fc;
}

.faq-arrow {
    transition: transform 0.25s ease;
    font-size: 14px;
    color: var(--gov-saffron-warm);
    font-weight: 800;
}

.faq-answer {
    padding: 16px 20px 20px;
    display: none;
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 14px;
    border-top: 1px solid #edf2f9;
}

.faq-item-card.active-faq .faq-answer {
    display: block;
}

.faq-item-card.active-faq .faq-arrow {
    transform: rotate(180deg);
}

/* Directory, Table & Resource Grid Layouts */
.directory-panel,
.resource-section {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    margin-bottom: 32px;
}

.directory-tools,
.resource-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.directory-search,
.resource-search {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    flex: 1;
}

.directory-search input,
.resource-search input {
    min-width: 260px;
    flex: 1;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-xs);
    padding: 9px 14px;
    font-size: 13.5px;
    color: var(--text-dark);
    background: #fdfdfd;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.directory-search input:focus,
.resource-search input:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.directory-search button,
.resource-search button {
    background: var(--ocean-blue);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-xs);
    padding: 9px 18px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13.5px;
    transition: background 0.2s ease;
    font-family: var(--font-display);
}

.directory-search button:hover,
.resource-search button:hover {
    background: var(--gov-navy);
}

.alpha-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.alpha-bar button {
    min-width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    background: #f5f9ff;
    color: var(--gov-navy);
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alpha-bar button.active,
.alpha-bar button:hover {
    background: var(--gov-navy);
    color: #ffffff;
    border-color: var(--gov-saffron);
}

.directory-category {
    margin-bottom: 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.accordion-toggle {
    width: 100%;
    text-align: left;
    background: #f5f9ff;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gov-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
}

.accordion-toggle span {
    transition: transform 0.2s ease;
}

.accordion-toggle.active span {
    transform: rotate(180deg);
}

.directory-grid {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.directory-grid.open {
    max-height: 2500px;
}

.directory-row {
    display: grid;
    grid-template-columns: 1.4fr 1.3fr 1fr 1.3fr 0.9fr;
    gap: 12px;
    align-items: center;
    padding: 13px 18px;
    border-top: 1px solid #edf3f9;
    color: var(--text-dark);
    font-size: 13px;
    transition: background-color 0.2s ease;
}

.directory-row.header {
    background: #edf5fc;
    font-weight: 700;
    border-top: none;
    color: var(--gov-navy);
    font-family: var(--font-display);
}

.directory-row:not(.header):hover {
    background-color: #f7fbff;
}

.directory-row .dir-name {
    font-weight: 700;
    color: var(--gov-navy);
}

/* Resource Table / Matrix */
.resource-matrix-grid {
    display: grid;
    gap: 12px;
}

.resource-row-header,
.resource-row {
    display: grid;
    grid-template-columns: 200px minmax(1fr, 2fr) 130px 120px;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

.resource-row-header {
    background: #edf5fc;
    color: var(--gov-navy);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-display);
}

.resource-row {
    background: #ffffff;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.resource-row:hover {
    box-shadow: var(--shadow-card);
    background-color: #f8fbfe;
    border-color: #cce2f7;
    transform: translateY(-1px);
}

.resource-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ocean-pale);
    color: var(--ocean-blue);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 5px 12px;
    border: 1px solid #cce4f8;
    width: fit-content;
}

.resource-data h4 {
    margin: 0 0 4px;
    font-size: 14.5px;
    color: var(--gov-navy);
    font-weight: 700;
}

.resource-data p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.resource-download-link {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.resource-download-link:hover {
    color: var(--gov-navy);
    text-decoration: underline;
}

/* Gallery & Photo Albums */
.gallery-intro {
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gov-saffron);
    margin-bottom: 28px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 20px;
}

.album-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(2, 42, 94, 0.05);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--ocean-blue);
}

.album-cover {
    background: #eef6fc;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-light);
}

.album-icon {
    font-size: 44px;
    color: var(--gov-navy);
    line-height: 1;
}

.album-info {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.album-info h4 {
    color: var(--gov-navy);
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.album-meta {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.album-photo-count {
    color: var(--ocean-blue);
    font-weight: 700;
    font-size: 12.5px;
    margin-top: auto;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(1, 27, 61, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.gallery-modal[hidden] {
    display: none;
}

.gallery-modal-content {
    position: relative;
    width: min(1100px, 100%);
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.gallery-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f0f6fc;
    color: var(--gov-navy);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gallery-close:hover {
    background: var(--gov-saffron);
    color: var(--gov-navy-dark);
}

.gallery-slider-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
}

.gallery-nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--ocean-pale);
    color: var(--ocean-blue);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-btn:hover {
    background: var(--ocean-blue);
    color: #ffffff;
    transform: scale(1.05);
}

.gallery-slide-display {
    background: #f8fcff;
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: var(--radius-xs);
}

.gallery-image-caption {
    margin-top: 12px;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    font-weight: 500;
}

.gallery-counter {
    margin-top: 14px;
    color: var(--ocean-blue);
    font-weight: 700;
    text-align: center;
    font-size: 13px;
}

/* Sidebar Components */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pm-panel {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--gov-navy);
    box-shadow: var(--shadow-card);
    padding: 22px;
}

.pm-photo-container {
    width: 100%;
    height: 260px;
    background-color: #eef5fb;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid #d0e2f4;
}

.pm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.pm-quotes h3 {
    font-size: 15.5px;
    color: var(--gov-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.pm-quotes .quote {
    font-size: 13px;
    color: var(--text-dark);
    font-style: italic;
    background-color: #f7fafe;
    padding: 13px 15px;
    border-left: 3px solid var(--gov-saffron);
    margin-bottom: 12px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 1.6;
}

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

/* News Ticker Widget */
.news-ticker-widget {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--gov-saffron);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

.ticker-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.ticker-tab {
    background: #f4f8fc;
    color: var(--gov-navy);
    border: 1px solid #dce8f5;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
    text-align: left;
    transition: all 0.2s ease;
    font-family: var(--font-display);
}

.ticker-tab:hover {
    background: var(--ocean-tint);
    border-color: var(--ocean-blue);
}

.ticker-tab.active {
    background: var(--gov-navy);
    color: #ffffff;
    border-color: var(--gov-navy);
    box-shadow: 0 2px 6px rgba(2, 42, 94, 0.15);
}

.ticker-panescroll {
    height: 290px;
    overflow-y: hidden;
    position: relative;
}

.ticker-panescroll:hover {
    overflow-y: auto;
}

.ticker-item {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-light);
    transition: background 0.15s ease;
}

.ticker-item:hover {
    background: #f8fbfe;
}

.ticker-item:last-child {
    border-bottom: none;
}

.ticker-item a {
    color: var(--gov-navy) !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.45;
    display: inline;
}

.ticker-item a:hover {
    color: var(--ocean-blue) !important;
    text-decoration: underline;
}

.ticker-item .document-badge {
    display: inline-block;
    background: var(--gov-navy);
    color: #ffffff;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 6px;
    margin-left: 6px;
    vertical-align: middle;
}

.ticker-item .news-meta {
    display: block;
    font-size: 11px;
    color: var(--text-subtle);
    margin-top: 5px;
    font-weight: 500;
}

/* ==========================================================================
   6. MASTER GOVERNMENT FOOTER (MATCHING EXACT SCREENSHOT)
   ========================================================================== */

footer.gov-master-footer {
    background-color: #0f274a !important;
    color: #ffffff !important;
    padding: 38px 8% 28px 8% !important;
    margin-top: 50px !important;
    border-top: none !important;
    font-family: var(--font-body);
    position: relative;
    box-sizing: border-box;
    text-align: left !important;
}

.footer-inner-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-useful-links {
    flex: 1;
    min-width: 320px;
}

.footer-section-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.useful-links-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 44px;
}

.useful-link-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 130px;
}

.useful-link {
    color: #e6effa;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.useful-link .link-arrow {
    color: #9cbde5;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.useful-link:hover {
    color: var(--gov-saffron);
    transform: translateX(3px);
}

.useful-link:hover .link-arrow {
    color: var(--gov-saffron);
}

.footer-subscribe-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icon-btn {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.95;
    text-decoration: none;
}

.social-icon-btn:hover {
    color: var(--gov-saffron);
    transform: translateY(-2px);
    opacity: 1;
}

.footer-gov-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.gov-badge-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 38px;
    box-sizing: border-box;
}

.gov-badge-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.gov-badge-box img {
    height: 28px;
    width: auto;
    display: block;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    color: #c7d8ed;
}

.footer-ownership-text {
    font-size: 13px;
    color: #dbe7f6;
    font-weight: 500;
}

.footer-last-updated {
    font-size: 12.5px;
    color: #a8c4e6;
    font-weight: 500;
}

.scroll-to-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background-color: #0b2548;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
    z-index: 999;
}

.scroll-to-top-btn:hover {
    background-color: var(--ocean-blue);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 119, 182, 0.4);
}

/* ==========================================================================
   7. ACCESSIBILITY MODES & RESPONSIVE RULES
   ========================================================================== */

body.high-contrast-mode {
    background-color: #ffffff;
    color: #000000;
}

body.high-contrast-mode .top-bar {
    background-color: #000000;
    color: #ffffff;
    border-bottom: 3px solid #ffff00;
}

body.high-contrast-mode .main-header {
    background-color: #ffffff;
    color: #000000;
    border-bottom: 4px solid #000000;
}

body.high-contrast-mode .navbar {
    background: #000000;
    border-bottom: 3px solid #ffff00;
}

body.high-contrast-mode .navbar ul li a {
    color: #ffffff;
}

body.high-contrast-mode .navbar ul li a:hover,
body.high-contrast-mode .navbar ul li a.active {
    background-color: #ffff00;
    color: #000000;
}

body.high-contrast-mode .main-content,
body.high-contrast-mode .sector-card,
body.high-contrast-mode .intervention-card,
body.high-contrast-mode .metric-card {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

body.screen-reader-mode *:focus {
    outline: 3px solid var(--gov-saffron) !important;
    outline-offset: 2px !important;
}

/* Media Queries for Comprehensive Responsiveness */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }
    .main-header {
        padding: 14px 6%;
    }
    .navbar {
        padding: 0 6%;
    }
    nav[aria-label="Breadcrumb"],
    .breadcrumb-strip {
        padding: 12px 6%;
    }
    .page-hero-banner {
        padding: 44px 6% 36px;
    }
    .resource-row-header,
    .resource-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .resource-row-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar {
        padding: 0 5%;
        position: relative;
    }
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--gov-navy);
    }
    .navbar ul.mobile-open {
        display: flex;
    }
    .navbar ul li .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: #011d42;
        display: none;
    }
    .navbar ul li.dropdown-open > .dropdown {
        display: block;
    }
    .navbar ul li .dropdown li a {
        color: #ffffff;
        padding-left: 28px;
    }
    .main-content {
        padding: 24px 20px;
    }
    .stats-subgrid,
    .sectors-grid,
    .interventions-grid,
    .international-coop-grid,
    .downloads-grid,
    .related-links-grid,
    .album-grid {
        grid-template-columns: 1fr;
    }
    .sector-card.expanded,
    .intervention-card.expanded {
        grid-column: span 1;
    }
    .directory-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .directory-row.header {
        display: none;
    }
    .carousel-viewport {
        height: 320px;
    }
    .slide-caption h3 {
        font-size: 20px;
    }
    .slide-caption p {
        font-size: 13.5px;
    }
    .footer-top-grid {
        flex-direction: column;
        gap: 30px;
    }
    .useful-links-columns {
        gap: 18px 30px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding: 8px 5%;
    }
    .header-logo-container {
        gap: 14px;
    }
    .site-logo {
        width: 60px;
        height: 60px;
    }
    .logo-text h1 {
        font-size: 20px;
    }
    .logo-text h2 {
        font-size: 15px;
    }
    .logo-text p {
        font-size: 11px;
    }
}

/* ==========================================================================
   ABOUT BLUE ECONOMY — FLAGSHIP PAGE MODERN UI & UX ENHANCEMENTS
   ========================================================================== */

.about-page-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Sticky In-Page Chapter Navigator */
.about-sticky-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid #dfe9f5;
    padding: 12px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.05);
}

.about-sticky-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 4px 0;
}

.about-sticky-nav::-webkit-scrollbar {
    height: 4px;
}

.about-sticky-nav::-webkit-scrollbar-thumb {
    background: #c2d8ee;
    border-radius: 4px;
}

.about-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    background: #f0f6fc;
    border: 1px solid #d0e2f4;
    color: var(--gov-navy);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.about-nav-pill:hover,
.about-nav-pill:focus-visible {
    background: var(--gov-navy);
    color: #ffffff;
    border-color: var(--gov-navy);
    transform: translateY(-1px);
}

/* Chapter Section Containers */
.about-chapter-card {
    background: #ffffff;
    border: 1px solid #dce7f3;
    border-radius: 12px;
    padding: 36px 32px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(2, 42, 94, 0.04);
    position: relative;
    scroll-margin-top: 70px;
}

.about-chapter-header {
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-chapter-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-chapter-badge {
    background: linear-gradient(135deg, var(--gov-navy), #0077b6);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 153, 51, 0.4);
}

.about-chapter-header h2 {
    color: var(--gov-navy);
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* Executive Callout Blocks */
.executive-callout {
    background: #f8fbfe;
    border-left: 4px solid var(--gov-navy);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 24px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #1e3a5f;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.03);
}

.executive-callout h4 {
    color: var(--gov-navy);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.executive-callout h4::before {
    content: '✦';
    color: var(--gov-saffron);
    font-size: 12px;
}

/* Modernized Vital Statistics Grid */
.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.modern-stat-box {
    background: linear-gradient(145deg, #ffffff, #f4f8fc);
    border: 1px solid #dce8f5;
    border-radius: 10px;
    padding: 20px 18px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(2, 42, 94, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modern-stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 42, 94, 0.08);
    border-color: #0077b6;
}

.modern-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gov-saffron), var(--gov-navy));
}

.modern-stat-box .m-val {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--gov-navy);
    font-family: var(--font-heading);
    margin-bottom: 6px;
    line-height: 1.15;
}

.modern-stat-box .m-lbl {
    display: block;
    font-size: 12.5px;
    color: #486581;
    font-weight: 600;
    line-height: 1.35;
}

/* Enhanced Milestone Timeline */
.timeline-visual-flow {
    position: relative;
    margin: 28px 0;
    padding-left: 28px;
    border-left: 3px solid #cfe2f3;
}

.timeline-flow-item {
    position: relative;
    margin-bottom: 22px;
    padding-left: 10px;
}

.timeline-flow-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gov-navy);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px var(--gov-saffron);
}

.timeline-flow-item .node-year {
    display: inline-block;
    background: var(--gov-navy);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 6px;
}

.timeline-flow-item p {
    font-size: 14px;
    color: #1e3a5f;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Ministry Accordions */
.ministry-accordion-enhanced {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #dce7f3;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--gov-navy);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.ministry-accordion-enhanced:hover,
.ministry-accordion-enhanced.active {
    background: #f0f6fc;
    border-color: #0077b6;
    color: var(--gov-navy);
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.08);
}

.ministry-panel-enhanced {
    background: #ffffff;
    border: 1px solid #dce7f3;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 18px 20px;
    margin-top: -10px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(2, 42, 94, 0.04);
}

/* Navigation Back-to-Top Pill */
.section-nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eef3f8;
}

.section-nav-footer .back-to-nav-btn {
    background: #eef5fc;
    color: var(--gov-navy);
    border: 1px solid #cde2f5;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.section-nav-footer .back-to-nav-btn:hover {
    background: var(--gov-navy);
    color: #ffffff;
}

@media (max-width: 768px) {
    .about-chapter-card {
        padding: 24px 18px;
    }
    .about-chapter-header h2 {
        font-size: 20px;
    }
    .modern-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .modern-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PORTAL-WIDE UNIFIED DESIGN SYSTEM & LAYOUT COMPONENTS
   ========================================================================== */

/* 1. Global Container System */
.container,
.wide-container,
.portal-container,
.main-content {
    max-width: var(--gov-container-max, 1540px);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-spacing {
    margin-top: 48px;
    margin-bottom: 48px;
}

/* 2. Standardized Breadcrumb Strip */
.breadcrumb-strip {
    background: #F0F6FB;
    border-bottom: 1px solid #DCE7F3;
    padding: 10px 0;
    font-size: 13px;
    color: #486581;
    width: 100%;
}

.breadcrumb-inner {
    max-width: var(--gov-container-max, 1540px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--gov-navy, #022A5E);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb-inner a:hover {
    color: var(--gov-saffron-warm, #F38616);
    text-decoration: underline;
}

.breadcrumb-inner .sep {
    color: #94A3B8;
    user-select: none;
}

.breadcrumb-inner .current {
    color: #1E293B;
    font-weight: 700;
}

/* 3. Universal Inner Page Hero Banner */
.page-hero-banner {
    background: 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') center/cover no-repeat;
    color: #FFFFFF;
    padding: 44px 0 40px;
    border-bottom: 3px solid var(--gov-saffron, #FF9933);
    margin-bottom: 36px;
    position: relative;
    box-shadow: 0 4px 20px rgba(1, 27, 61, 0.15);
}

.hero-banner-inner {
    position: relative;
    z-index: 2;
    max-width: var(--gov-container-max, 1540px);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 153, 51, 0.22) !important;
    border: 1px solid rgba(255, 153, 51, 0.6) !important;
    color: #FFD166 !important;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
}

.page-hero-banner h1,
.hero-banner-title {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF !important;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: var(--font-display);
    letter-spacing: -0.3px;
}

.hero-banner-tagline {
    font-size: 15.5px;
    color: #E2E8F0 !important;
    max-width: 100%;
    line-height: 1.6;
    margin: 0;
}

/* 4. Universal Document Repository Component */
.docs-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #DCE7F3;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.04);
}

.docs-search-input {
    padding: 8px 14px;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    font-size: 13.5px;
    min-width: 260px;
    outline: none;
    font-family: var(--font-body);
}

.docs-search-input:focus {
    border-color: var(--gov-navy);
    box-shadow: 0 0 0 3px rgba(2, 42, 94, 0.1);
}

.doc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.doc-item-card {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 3px 12px rgba(2, 42, 94, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    border-top: 3px solid var(--ocean-blue, #0077B6);
}

.doc-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 42, 94, 0.09);
    border-color: var(--gov-navy);
}

.doc-header-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.doc-format-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #FEE2E2;
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

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

.doc-card-desc {
    font-size: 13.5px;
    color: #486581;
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.doc-meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #EDF2F7;
}

.doc-meta-info {
    font-size: 12px;
    color: #64748B;
    font-weight: 600;
}

.doc-btn-download {
    background: var(--gov-navy);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s ease;
}

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

/* 5. Team & Stakeholder Directory Component */
.team-spotlight-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F8FC 100%);
    border: 2px solid var(--border-light, #DCE7F3);
    border-left: 5px solid var(--gov-navy);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 36px;
    box-shadow: 0 4px 16px rgba(2, 42, 94, 0.05);
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.leadership-avatar-wrap {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--gov-navy);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 42, 94, 0.15);
    border: 3px solid #FFFFFF;
}

.team-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.team-member-card {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.04);
    transition: all 0.2s ease;
    border-top: 3px solid var(--gov-saffron, #FF9933);
}

.team-member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 42, 94, 0.08);
    border-color: var(--gov-navy);
}

.team-member-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--gov-navy);
    margin-bottom: 4px;
}

.team-member-desig {
    font-size: 13px;
    font-weight: 700;
    color: var(--gov-saffron-warm, #F38616);
    margin-bottom: 12px;
}

.team-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12.5px;
    color: #486581;
}

.team-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 6. Universal FAQ Accordion Component */
.faq-search-box {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    border: 2px solid #CBD5E1;
    border-radius: 8px;
    margin-bottom: 24px;
    outline: none;
    font-family: var(--font-body);
}

.faq-search-box:focus {
    border-color: var(--gov-navy);
    box-shadow: 0 0 0 4px rgba(2, 42, 94, 0.1);
}

.faq-category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.faq-cat-pill {
    background: #EDF2F7;
    border: 1px solid #CBD5E1;
    color: var(--gov-navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.faq-cat-pill:hover,
.faq-cat-pill.active {
    background: var(--gov-navy);
    color: #FFFFFF;
    border-color: var(--gov-navy);
}

.faq-accordion-item {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(2, 42, 94, 0.03);
}

.faq-accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: #FFFFFF;
    border: none;
    text-align: left;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--gov-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.15s ease;
}

.faq-accordion-header:hover {
    background: #F8FBFE;
}

.faq-accordion-header.active {
    background: #F0F7FD;
    border-bottom: 1px solid #DCE7F3;
}

.faq-accordion-body {
    padding: 18px 20px;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.7;
    display: none;
}

.faq-accordion-body.open {
    display: block;
}

/* 7. Universal Photo Gallery & Video Grid */
.gallery-category-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.gallery-tab-btn {
    background: #EDF2F7;
    border: 1px solid #CBD5E1;
    color: var(--gov-navy);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
    background: var(--gov-navy);
    color: #FFFFFF;
    border-color: var(--gov-navy);
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-photo-card {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(2, 42, 94, 0.04);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2, 42, 94, 0.1);
}

.gallery-photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-card-caption {
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gov-navy);
    line-height: 1.35;
}

/* Video Showcase */
.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.video-showcase-card {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.05);
}

.video-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000000;
}

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

.video-card-body {
    padding: 16px 18px;
}

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

.video-card-meta {
    font-size: 12px;
    color: #64748B;
}

/* 8. Contact Us Consolidated Components */
.contact-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-info-panel {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04);
}

.contact-form-panel {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04);
}

.gov-form-group {
    margin-bottom: 18px;
}

.gov-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gov-navy);
    margin-bottom: 6px;
}

.gov-form-input,
.gov-form-select,
.gov-form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    font-family: var(--font-body);
}

.gov-form-input:focus,
.gov-form-select:focus,
.gov-form-textarea:focus {
    border-color: var(--gov-navy);
    box-shadow: 0 0 0 3px rgba(2, 42, 94, 0.1);
}

.gov-btn-submit {
    background: var(--gov-navy);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease;
}

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

/* 9. Master Government Footer */
.master-gov-footer {
    background: var(--gov-navy-dark, #011B3D);
    color: #FFFFFF;
    border-top: 4px solid var(--gov-saffron, #FF9933);
    margin-top: 60px;
    font-size: 13px;
    width: 100%;
}

.footer-columns-container {
    max-width: var(--gov-container-max, 1540px);
    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, #FF9933);
    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, #FF9933);
    color: var(--gov-navy-dark, #011B3D);
    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:hover {
    color: var(--gov-saffron, #FF9933);
    padding-left: 4px;
}

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

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

.visitor-counter-box {
    display: inline-flex;
    gap: 3px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
}

.counter-digit {
    background: var(--gov-navy, #022A5E);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 2px;
    border: 1px solid var(--gov-saffron, #FF9933);
    font-family: monospace;
}

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

.footer-bottom-legal-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 24px;
    font-size: 12px;
    color: #94A3B8;
}

.footer-legal-inner {
    max-width: var(--gov-container-max, 1540px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.footer-legal-links a:hover {
    color: var(--gov-saffron, #FF9933);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-columns-container {
        grid-template-columns: 1fr 1fr;
    }
    .contact-hub-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-columns-container {
        grid-template-columns: 1fr;
    }
    .footer-legal-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Lightbox Modal */
.lightbox-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(1, 27, 61, 0.88);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}

.lightbox-modal-backdrop.active {
    display: flex;
}

.lightbox-dialog {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    max-width: 900px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close-btn {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gov-saffron, #FF9933);
    color: var(--gov-navy-dark, #011B3D);
    border: 2px solid #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lightbox-image {
    max-height: 75vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption-text {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gov-navy, #022A5E);
    text-align: center;
}

/* ==================================================
   STANDARDIZED INNER PAGE TWO-COLUMN & COMPONENT STYLES
   ================================================== */

/* Two-column layout grid for Inner Pages */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.two-col-layout.reverse-sidebar {
    grid-template-columns: 320px 1fr;
}

.main-content-col {
    min-width: 0;
}

.sidebar-col {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Side Navigation Card */
.side-nav-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light, #DCE7F3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04);
}

.side-nav-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--gov-navy, #022A5E);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gov-saffron, #FF9933);
    padding-bottom: 8px;
    margin-bottom: 14px;
    font-family: var(--font-display);
}

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

.side-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 15px;
    color: #334155;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.side-nav-link:hover {
    background: #F0F6FC;
    color: #0077B6;
    border-left-color: #0077B6;
    padding-left: 17px;
}

.side-nav-link.active {
    background: #EAF4FC !important;
    color: #022A5E !important;
    border-left-color: #FF9933 !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.08);
}

.side-nav-badge {
    background: #E2E8F0;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    padding: 2.5px 8px;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
}

.side-nav-link:hover .side-nav-badge {
    background: #DCEAFE;
    color: #022A5E;
}

.side-nav-link.active .side-nav-badge {
    background: #022A5E !important;
    color: #FFFFFF !important;
}

/* About Page Content Chapters */
.about-chapter-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light, #DCE7F3);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04);
    margin-bottom: 28px;
}

.about-chapter-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gov-navy, #022A5E);
    margin: 0 0 16px 0;
    line-height: 1.3;
    font-family: var(--font-display);
}

.about-chapter-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gov-navy, #022A5E);
    margin: 20px 0 10px 0;
}

.about-chapter-badge {
    display: inline-block;
    background: #F0F7FF;
    color: var(--ocean-blue, #0077B6);
    border: 1px solid #BAE6FD;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.executive-callout {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-left: 4px solid var(--gov-saffron, #FF9933);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.executive-callout h4,
.definition-block h4 {
    color: var(--gov-navy, #022A5E);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.executive-callout p,
.definition-block p {
    color: #334155;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.definition-block {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-left: 4px solid var(--ocean-blue, #0077B6);
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

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

.modern-stat-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-top: 3px solid var(--ocean-blue, #0077B6);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modern-stat-box .m-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--gov-navy, #022A5E);
}

.modern-stat-box .m-lbl {
    font-size: 12.5px;
    color: #64748B;
    font-weight: 600;
    line-height: 1.35;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.sector-card {
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.sector-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 42, 94, 0.08);
    border-color: var(--ocean-blue, #0077B6);
}

.sector-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.sector-card h3 {
    margin: 0;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--gov-navy, #022A5E);
}

.sector-card .card-details {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
}

.resource-download-link {
    color: var(--ocean-blue, #0077B6);
    font-weight: 700;
    text-decoration: none;
    font-size: 12.5px;
    margin-top: 8px;
    display: inline-block;
}

.source-note {
    font-size: 11.5px;
    color: #94A3B8;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
}

.infographic-section {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.infographic-section img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.infographic-caption {
    font-size: 13px;
    font-weight: 600;
    color: var(--gov-navy, #022A5E);
    margin-top: 10px;
}

/* FAQ Component Styles */
.faq-page-main {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

.faq-search-filter-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light, #DCE7F3);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(2, 42, 94, 0.04);
    margin-bottom: 32px;
}

.faq-search-input-wrap {
    position: relative;
    margin-bottom: 20px;
}

.faq-search-box {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px 14px 44px;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    color: #1E293B;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-body);
    background: #FFFFFF;
}

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

.faq-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #64748B;
    pointer-events: none;
}

.faq-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.faq-cat-pill {
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #334155;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-cat-pill:hover,
.faq-cat-pill.active {
    background: var(--gov-navy, #022A5E);
    color: #FFFFFF;
    border-color: var(--gov-navy, #022A5E);
}

.faq-cat-pill.active .side-nav-badge {
    background: var(--gov-saffron, #FF9933);
    color: var(--gov-navy-dark, #011B3D);
}

.faq-item-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light, #DCE7F3);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(2, 42, 94, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid #CBD5E1;
}

.faq-item-card:hover {
    border-left-color: var(--ocean-blue, #0077B6);
    box-shadow: 0 6px 18px rgba(2, 42, 94, 0.06);
}

.faq-item-card.active,
.faq-item-card.active-faq {
    border-left-color: var(--gov-saffron, #FF9933);
    border-color: #BAE6FD;
    box-shadow: 0 6px 20px rgba(2, 42, 94, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    outline: none;
}

.faq-question h2,
.faq-question h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--gov-navy, #022A5E);
    margin: 0;
    line-height: 1.45;
    font-family: var(--font-display);
}

.faq-toggle-icon {
    font-size: 18px;
    color: var(--gov-navy, #022A5E);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.faq-item-card.active .faq-toggle-icon,
.faq-item-card.active-faq .faq-toggle-icon {
    background: var(--gov-navy, #022A5E);
    color: #FFFFFF;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    border-top: 1px solid #F1F5F9;
    margin-top: 4px;
    padding-top: 16px;
}

.faq-answer p {
    color: #334155;
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0;
}

.faq-help-banner {
    background: #F0F7FF;
    border: 1px solid #BAE6FD;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Document / Report Cards */
.doc-item-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light, #DCE7F3);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.04);
    margin-bottom: 16px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.doc-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 42, 94, 0.08);
    border-color: #BAE6FD;
}

.doc-header-wrap {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.doc-format-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.doc-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gov-navy, #022A5E);
    margin: 0 0 4px 0;
    line-height: 1.35;
    font-family: var(--font-display);
}

.doc-card-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 12px 0 16px 0;
}

.doc-meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
}

.doc-meta-info {
    font-size: 12px;
    color: #64748B;
    font-weight: 600;
}

.doc-btn-download {
    background: var(--ocean-blue, #0077B6);
    color: #FFFFFF;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.doc-btn-download:hover {
    background: var(--gov-navy, #022A5E);
    transform: translateY(-1px);
}

.docs-toolbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.docs-search-field {
    flex: 1;
    min-width: 220px;
    padding: 10px 16px;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    font-size: 13.5px;
    outline: none;
}

.docs-search-field:focus {
    border-color: var(--gov-navy, #022A5E);
}

.docs-select-field {
    padding: 10px 14px;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    font-size: 13.5px;
    background: #FFFFFF;
    color: #1E293B;
    outline: none;
}

/* Responsive adjustments for 2-column layout */
@media (max-width: 1024px) {
    .two-col-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-col {
        position: static;
    }
}

/* Priority Investment Sectors Grid */
.priority-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.priority-sector-card {
    text-decoration: none;
    display: block;
    background: #FFFFFF;
    border: 1px solid #DCE7F3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.priority-sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2, 42, 94, 0.12);
    border-color: #0077B6;
}

.priority-sector-img-wrap {
    height: 155px;
    width: 100%;
    overflow: hidden;
    background: #F1F5F9;
}

.priority-sector-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.priority-sector-card:hover .priority-sector-img-wrap img {
    transform: scale(1.04);
}

.priority-sector-content {
    padding: 12px 14px 14px;
}

.priority-sector-title {
    font-size: 15px;
    font-weight: 700;
    color: #022A5E;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.priority-sector-potential {
    font-size: 12.5px;
    color: #034078;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1200px) {
    .priority-sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .priority-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .priority-sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SDG ALIGNMENT ENHANCED STYLING & ICON CARDS
   ========================================================================== */

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 28px 0;
}

.sdg-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(2, 42, 94, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(2, 42, 94, 0.15);
}

/* Individual SDG Poster Background Colors & Themes */
.sdg-card.sdg-14 { background-color: #0A97D9; --sdg-theme-color: #0A97D9; }
.sdg-card.sdg-8  { background-color: #A21942; --sdg-theme-color: #A21942; }
.sdg-card.sdg-9  { background-color: #FD6925; --sdg-theme-color: #FD6925; }
.sdg-card.sdg-13 { background-color: #3F7E44; --sdg-theme-color: #3F7E44; }
.sdg-card.sdg-12 { background-color: #BF8B2E; --sdg-theme-color: #BF8B2E; }
.sdg-card.sdg-7  { background-color: #FCC30B; --sdg-theme-color: #FCC30B; }
.sdg-card.sdg-17 { background-color: #19486A; --sdg-theme-color: #19486A; }
.sdg-card.sdg-11 { background-color: #FD9D24; --sdg-theme-color: #FD9D24; }
.sdg-card.sdg-2  { background-color: #DDA63A; --sdg-theme-color: #DDA63A; }

/* Poster Front View */
.sdg-poster {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    box-sizing: border-box;
}

.sdg-poster-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sdg-poster-number {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.95);
}

.sdg-poster-title {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.sdg-poster-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55%;
    width: 100%;
}

.sdg-poster-icon svg {
    width: 68px;
    height: 68px;
    fill: #ffffff;
}

/* Detail Slide-Up Overlay */
.sdg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 2px solid var(--sdg-theme-color);
    box-sizing: border-box;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(102%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.sdg-card:hover .sdg-overlay {
    transform: translateY(0);
}

.sdg-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--sdg-theme-color);
    padding-bottom: 6px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.sdg-overlay-number {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--sdg-theme-color);
    text-transform: uppercase;
}

.sdg-overlay-title {
    font-size: 14px;
    font-weight: 700;
    color: #022a5e;
    margin: 0;
}

.sdg-overlay-body {
    flex: 1;
    font-size: 11.5px;
    line-height: 1.45;
    color: #334155;
    overflow-y: auto;
    margin-bottom: 8px;
    padding-right: 2px;
}

/* Scrollbar styling for overlay body */
.sdg-overlay-body::-webkit-scrollbar {
    width: 4px;
}
.sdg-overlay-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.sdg-overlay-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.sdg-overlay-target {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.35;
}

.sdg-overlay-focus {
    margin-bottom: 4px;
}

.sdg-overlay-focus strong {
    color: var(--sdg-theme-color);
}

.sdg-overlay-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 8px;
    flex-shrink: 0;
}

.sdg-overlay-initiatives {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.sdg-init-badge {
    background-color: #f8fafc;
    color: #334155;
    font-size: 9.5px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    border-left: 2px solid var(--sdg-theme-color);
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 992px) {
    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .sdg-poster {
        padding: 10px;
    }
    .sdg-poster-number {
        font-size: 40px;
    }
    .sdg-poster-title {
        font-size: 10.5px;
    }
    .sdg-poster-icon svg {
        width: 48px;
        height: 48px;
    }
    .sdg-overlay {
        padding: 10px;
    }
    .sdg-overlay-title {
        font-size: 12.5px;
    }
    .sdg-overlay-body {
        font-size: 10.5px;
    }
    .sdg-init-badge {
        font-size: 8.5px;
    }
}

/* ==========================================================================
   SIDEBAR COASTAL STATES & UTs MAP WIDGET
   ========================================================================== */

.sidebar-coastal-map-card {
    background: #ffffff;
    border: 1px solid #dce7f3;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(2, 42, 94, 0.05);
    border-left: 4px solid var(--gov-navy);
}

.sidebar-coastal-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid #edf2f7;
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.sidebar-coastal-map-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--gov-navy);
    display: flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
}

.sidebar-coastal-map-badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Realistic Map Interactive Container */
.sidebar-coastal-map-interactive {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #c8daf0;
    box-shadow: 0 4px 14px rgba(2, 42, 94, 0.08);
    background: #0284c7;
    margin-bottom: 10px;
}

.sidebar-map-base-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

/* Map Pins */
.coastal-map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 8.5px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(2, 42, 94, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 1.5px 5px;
    border-radius: 3px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
    z-index: 5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    text-decoration: none;
}

.coastal-map-pin:hover {
    background: #ff9933;
    color: #022a5e;
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-shadow: none;
}

.coastal-map-pin.pin-ut {
    background: rgba(217, 119, 6, 0.95);
    border-color: #fef3c7;
    color: #ffffff;
}

.coastal-map-pin.pin-ut:hover {
    background: #022a5e;
    color: #ff9933;
}

/* Pin Positions on the Real India Map */
.pin-gujarat { left: 16%; top: 40%; }
.pin-maharashtra { left: 28%; top: 52%; }
.pin-goa { left: 27%; top: 63%; }
.pin-karnataka { left: 32%; top: 71%; }
.pin-kerala { left: 34%; top: 82%; }
.pin-tamilnadu { left: 45%; top: 82%; }
.pin-andhra { left: 52%; top: 64%; }
.pin-odisha { left: 63%; top: 48%; }
.pin-westbengal { left: 74%; top: 38%; }

.pin-dnh { left: 22%; top: 46%; }
.pin-puducherry { left: 52%; top: 75%; }
.pin-lakshadweep { left: 16%; top: 84%; }
.pin-andaman { left: 82%; top: 76%; }

/* Map Legend */
.sidebar-map-legend-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 10px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #334155;
    font-weight: 600;
}

.sidebar-map-legend-row .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.state-dot { background: #022a5e; }
.legend-dot.ut-dot { background: #d97706; }

.coastal-group-title {
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 8px 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coastal-group-title::before {
    content: '•';
    color: var(--gov-saffron-warm);
    font-size: 14px;
}

.coastal-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 6px;
}

.coastal-state-pill {
    font-size: 11px;
    background: #f1f5f9;
    color: #1e3a5f;
    padding: 3px 7px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.coastal-state-pill:hover {
    background: var(--gov-navy);
    color: #ffffff;
    border-color: var(--gov-navy);
}

.coastal-ut-pill {
    font-size: 11px;
    background: #fff7ed;
    color: #c2410c;
    padding: 3px 7px;
    border-radius: 4px;
    border: 1px solid #fed7aa;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.coastal-ut-pill:hover {
    background: #c2410c;
    color: #ffffff;
    border-color: #c2410c;
}

.coastal-atlas-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: linear-gradient(135deg, var(--gov-navy), #0077b6);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 12px;
    box-sizing: border-box;
    transition: background 0.2s ease, transform 0.2s ease;
}

.coastal-atlas-cta-btn:hover {
    background: linear-gradient(135deg, #011b3d, #005f94);
    color: #ffffff;
    transform: translateY(-1px);
}


