@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Readex+Pro:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  --unesco-blue: #0169b5;
  --unesco-green: #228e57;
  --diamond-dark: #828282;
  --diamond-light: #bebebe;
  --navy: #072343;
  --blue: #0169b5;
  --paper: #ffffff;
  --ink: #0f243c;
  --muted: #475569;
  --white: #ffffff;
  --line: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Cairo', 'Readex Pro', 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cairo', 'Readex Pro', 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  color: var(--navy);
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

/* ==========================================================================
   TOPBAR & HEADER (Transparent Header with Right Logo & Centered Nav)
   ========================================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  color: var(--ink);
  border-bottom: none;
  box-shadow: none;
  margin-bottom: -82px;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 29, 56, 0.08);
  box-shadow: 0 4px 20px rgba(7, 29, 56, 0.05);
}

.topbar .shell {
  width: min(1680px, calc(100% - 48px));
  max-width: 100%;
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-inline-start: 18px;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.navlinks a {
  color: #15243a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800 !important;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navlinks a:hover {
  color: var(--blue);
  background: rgba(8, 103, 178, 0.08);
}

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline-end: 18px;
}

/* ==========================================================================
   UNESCO 6-LANGUAGES SELECTOR (Globe Icon Only + Clean Language Names)
   ========================================================================== */
.unesco-lang-picker {
  position: relative;
  display: inline-block;
}

.lang-trigger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(1, 105, 181, 0.22);
  color: #0169b5;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(7, 29, 56, 0.06);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-trigger:hover,
.lang-trigger[aria-expanded="true"] {
  background: #ffffff;
  border-color: #0169b5;
  color: #0169b5;
  box-shadow: 0 4px 16px rgba(1, 105, 181, 0.22);
  transform: scale(1.05);
}

.globe-icon {
  width: 21px;
  height: 21px;
  stroke: #0169b5;
  transition: transform 0.3s ease;
}

.lang-trigger:hover .globe-icon {
  transform: rotate(15deg);
}

/* Language Dropdown Menu */
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(1, 105, 181, 0.16);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(7, 29, 56, 0.14), 0 4px 12px rgba(1, 105, 181, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}

.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  color: #1e293b;
  font-family: 'Cairo', 'Readex Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.15s ease;
  text-align: center;
  box-sizing: border-box;
}

.lang-option:hover {
  background: rgba(1, 105, 181, 0.08);
  color: #0169b5;
}

.lang-option.active {
  background: linear-gradient(135deg, rgba(1, 105, 181, 0.12) 0%, rgba(1, 105, 181, 0.06) 100%);
  color: #0169b5;
  font-weight: 800;
}

.lang-option .name {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   HERO SECTION (Smooth Modern Gradient Canvas - Exactly like Image 2 in Blue)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  color: #072343;
  background: linear-gradient(160deg, #ffffff 0%, #f8faff 50%, #f0f6ff 100%);
  padding: 105px 0 32px;
  overflow: hidden;
  box-sizing: border-box;
}

/* REMOVE ALL DOTS AND LINES (ازل النقاط والخطوط) */
.hero::before {
  display: none !important;
}

/* ==========================================================================
   ANIMATED DYNAMIC BLUE AURA (متحرك بانسيابية وتغيير المكان في المنتصف)
   ========================================================================== */
.hero-light-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.light-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Orb 1: Main UNESCO Blue Dynamic Aura (تم نقل مكانه للوسط-الأعلى مع حركة واضحة) */
.orb-1 {
  top: 10%;
  left: 32%;
  width: 460px;
  height: 460px;
  filter: blur(75px);
  -webkit-filter: blur(75px);
  background: radial-gradient(circle, rgba(1, 105, 181, 0.44) 0%, rgba(56, 189, 248, 0.28) 45%, rgba(1, 105, 181, 0.08) 65%, transparent 75%);
  animation: floatBlueMesh 9s ease-in-out infinite;
}

/* Orb 2: Vibrant Cyan / Sky Glow (أعلى اليمين مع حركة انسيابية متناغمة) */
.orb-2 {
  top: 25%;
  right: 14%;
  width: 400px;
  height: 400px;
  filter: blur(70px);
  -webkit-filter: blur(70px);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.42) 0%, rgba(1, 105, 181, 0.22) 50%, transparent 72%);
  animation: floatCyanMesh 11s ease-in-out infinite;
}

/* Orb 3: Soft Central Balance Glow */
.orb-3 {
  display: block;
  bottom: 16%;
  left: 38%;
  width: 360px;
  height: 360px;
  filter: blur(65px);
  -webkit-filter: blur(65px);
  background: radial-gradient(circle, rgba(1, 105, 181, 0.32) 0%, rgba(34, 142, 87, 0.14) 50%, transparent 70%);
  animation: floatBridgeMesh 8s ease-in-out infinite;
}

.light-beam {
  display: none;
}

@keyframes floatBlueMesh {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  25% {
    transform: translate3d(75px, -50px, 0) scale(1.12);
    opacity: 1;
  }
  50% {
    transform: translate3d(-60px, 60px, 0) scale(0.94);
    opacity: 0.8;
  }
  75% {
    transform: translate3d(50px, 70px, 0) scale(1.08);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
}

@keyframes floatCyanMesh {
  0% {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 0.75;
  }
  30% {
    transform: translate3d(-80px, 60px, 0) scale(0.92);
    opacity: 0.95;
  }
  65% {
    transform: translate3d(60px, -45px, 0) scale(1.12);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 0.75;
  }
}

@keyframes floatBridgeMesh {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(-50px, -40px, 0) scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0.7;
  }
}

/* ==========================================================================
   2-COLUMN EXECUTIVE HERO SHOWCASE (Solves empty space, balanced like Image 2)
   ========================================================================== */
.hero-showcase {
  position: relative;
  z-index: 5;
  width: min(1680px, calc(100% - 48px));
  padding-inline-start: 18px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 120px);
  min-height: calc(100dvh - 120px);
  box-sizing: border-box;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow Label (Official UNESCO Blue with Pulsing Dot) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0169b5;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0169b5;
  box-shadow: 0 0 6px rgba(1, 105, 181, 0.4), 0 0 12px rgba(1, 105, 181, 0.3);
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
    box-shadow: 0 0 6px rgba(1, 105, 181, 0.4);
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
    box-shadow: 0 0 10px rgba(1, 105, 181, 0.7), 0 0 18px rgba(1, 105, 181, 0.4);
  }
}

/* Bold Prominent Hero Title (صغر الخط شوي ليتناسق بدقة على سطرين) */
.hero h1,
.hero-text-col h1 {
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  line-height: 1.34;
  font-weight: 800 !important;
  margin: 12px 0 16px;
  max-width: 960px;
  color: #072343;
  letter-spacing: -0.01em;
  font-family: 'Cairo', 'Readex Pro', 'Tajawal', sans-serif !important;
}

.hero h1 .hero-line,
.hero-text-col h1 .hero-line {
  display: block;
  font-weight: 800 !important;
}

.hero p,
.hero-text-col p {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  max-width: 860px;
  color: #334155;
  margin: 0 0 22px;
  font-weight: 600;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
}

/* Hero Date Label (إزالة الدائرة والإطار - نص وأيقونة بدون مستطيل) */
.pill,
.hero-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  background: transparent !important;
  border: none !important;
  color: #0169b5;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: none !important;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
}

.pill svg,
.hero-date-pill svg {
  color: #0169b5;
  stroke: #0169b5;
  width: 17px;
  height: 17px;
}

/* Visual Column & Showcase Card Frame */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero-feature-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(1, 105, 181, 0.14), 0 8px 24px rgba(7, 29, 56, 0.08);
  border: 4px solid #ffffff;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-feature-img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 60px rgba(1, 105, 181, 0.18), 0 12px 30px rgba(7, 29, 56, 0.10);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(1, 105, 181, 0.15);
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: 0 10px 30px rgba(7, 29, 56, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
  transition: transform 0.25s ease;
}

.floating-badge:hover {
  transform: translateY(-2px);
}

.badge-top {
  top: -16px;
  inset-inline-start: -16px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #072343;
}

.badge-bottom {
  bottom: -18px;
  inset-inline-end: -16px;
  padding: 12px 22px;
}

.badge-dot.green {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #228e57;
  box-shadow: 0 0 10px #228e57;
  display: inline-block;
}

.badge-text strong {
  display: block;
  font-size: 0.94rem;
  color: #072343;
  font-weight: 800;
  line-height: 1.35;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
}

.badge-text span {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 3px;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
}

/* Actions Row with Date Pill */
.hero-actions-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-date-pill {
  margin: 0;
}

/* Quick Stats Bar (توسيط الأرقام والنصوص في المنتصف) */
.hero-quick-stats {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(1, 105, 181, 0.12);
}

.q-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.q-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #0169b5;
  line-height: 1.2;
  text-align: center;
  font-family: 'Cairo', 'Plus Jakarta Sans', sans-serif !important;
}

.q-stat span {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
}

@media (max-width: 1040px) {
  .hero {
    padding-top: 115px;
  }

  .hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-inline-start: 0;
    padding-top: 16px;
    padding-bottom: 36px;
    min-height: auto;
  }

  .hero-text-col {
    display: contents;
  }

  .eyebrow {
    order: 1;
    align-self: flex-start;
    text-align: start;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .eyebrow::before {
    margin-top: 6px;
    flex-shrink: 0;
  }

  .hero h1,
  .hero-text-col h1 {
    order: 2;
  }

  .hero p,
  .hero-text-col p {
    order: 3;
    margin-bottom: 20px;
  }

  /* Place visual image column directly above the action buttons */
  .hero-visual-col {
    order: 4;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 32px;
  }

  .hero-actions-row {
    order: 5;
    margin-top: 0;
    margin-bottom: 22px;
  }

  .hero-quick-stats {
    order: 6;
    margin-top: 20px;
  }

  .hero-feature-img {
    height: 320px;
  }

  .hero-card-frame {
    max-width: 100%;
  }

  .badge-top {
    inset-inline-start: 8px;
  }

  .badge-bottom {
    inset-inline-end: 8px;
  }
}

@media (max-width: 580px) {
  .hero {
    padding-top: 125px;
  }

  .hero-showcase {
    padding-top: 12px;
    padding-bottom: 28px;
  }

  .eyebrow {
    margin-top: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
  }

  .hero-visual-col {
    margin-top: 6px;
    margin-bottom: 28px;
  }

  .hero-quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-feature-img {
    height: 250px;
  }

  .badge-top {
    top: -12px;
    inset-inline-start: 4px;
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .badge-bottom {
    bottom: -14px;
    inset-inline-end: 4px;
    padding: 9px 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 12px 24px;
  text-decoration: none;
  font-family: 'Cairo', 'Readex Pro', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.95rem;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn.primary {
  background: linear-gradient(135deg, #0169b5 0%, #015290 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 18px rgba(1, 105, 181, 0.3);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #027cd6 0%, #0161a8 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(1, 105, 181, 0.42);
}

.btn.ghost {
  background: #ffffff;
  border: none !important;
  color: #072343;
  box-shadow: 0 4px 18px rgba(7, 29, 56, 0.08);
}

.btn.ghost:hover {
  background: #ffffff;
  border: none !important;
  color: #0169b5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 105, 181, 0.18);
}

/* ==========================================================================
   SECTIONS, STATS & CONTENT
   ========================================================================== */
.section {
  padding: 70px 0;
  background: #ffffff;
}

.section.white,
#intervention {
  background: #ffffff !important;
}

.kicker {
  color: var(--blue);
  font-weight: 800;
  margin: 0;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.3;
  margin: 5px 0 22px;
  color: var(--navy);
}

.lead {
  font-size: 1.12rem;
  max-width: 950px;
}

.stats,
.cards,
.ministers,
.downloads {
  display: grid;
  gap: 18px;
}

.stats {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}

.stat,
.card,
.minister,
.download {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(7, 29, 56, 0.07);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2.2rem;
  color: var(--blue);
  text-align: center;
  font-family: 'Cairo', 'Plus Jakarta Sans', sans-serif !important;
}

.stat span {
  display: block;
  text-align: center;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card h3,
.minister h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

/* ==========================================================================
   FEATURED QUOTE - SKEWED GRADIENT SHOWCASE CARD (Dr. Fatimah Roais)
   ========================================================================== */
.quote-skew-card {
  position: relative;
  margin: 40px 0 46px;
  display: flex;
  flex-direction: column;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quote {
  position: relative;
  z-index: 20;
  padding: 38px 44px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  background: linear-gradient(135deg, #072343 0%, #014d85 55%, #0169b5 100%);
  border: 1.5px solid rgba(1, 105, 181, 0.5);
  box-shadow: 0 16px 40px rgba(1, 105, 181, 0.25);
  color: #ffffff;
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.85;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.quote .quote-text {
  display: block;
  font-size: 1.32rem;
  line-height: 1.85;
  color: #ffffff;
}

.quote cite {
  display: block;
  font-size: 1.02rem;
  color: #ffffff;
  margin-top: 18px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.quote cite.ar {
  display: block;
}

body.en-mode .quote cite.ar {
  display: none !important;
}

body.en-mode .quote cite.en {
  display: block !important;
}

/* ==========================================================================
   PANEL QUESTIONS - SKEWED GRADIENT SHOWCASE CARDS (Brand Colors)
   ========================================================================== */
@keyframes blobFloat {
  0%, 100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px 6px;
}

.question-skew-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Skewed Gradient Panels (Evenly frames the card without awkward flaps) */
.skew-panel {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 8px;
  right: 8px;
  border-radius: 20px;
  transform: skewX(-6deg);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.skew-blur {
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: 6px;
  right: 6px;
  border-radius: 20px;
  transform: skewX(-6deg);
  filter: blur(24px);
  opacity: 0.55;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

/* In LTR (English / French) */
body.en-mode .skew-panel,
body.en-mode .skew-blur {
  transform: skewX(6deg);
}

/* Gradients using our Brand Colors (No grey):
   Card 1: Vibrant UNESCO Blue
   Card 2: Vibrant Sustainability Green
*/
.skew-gradient-1 {
  background: linear-gradient(135deg, #0099ff 0%, #0169b5 50%, #014d85 100%);
}

.skew-gradient-2 {
  background: linear-gradient(135deg, #10b981 0%, #228e57 50%, #014d85 100%);
}

/* Hover States for Skewed Panels */
.question-skew-card:hover .skew-panel,
.quote-skew-card:hover .skew-panel {
  transform: skewX(0);
  top: -8px;
  bottom: -8px;
  left: 4px;
  right: 4px;
}

.question-skew-card:hover .skew-blur,
.quote-skew-card:hover .skew-blur {
  transform: skewX(0);
  top: -10px;
  bottom: -10px;
  left: 2px;
  right: 2px;
  opacity: 0.85;
  filter: blur(32px);
}

body.en-mode .question-skew-card:hover .skew-panel,
body.en-mode .question-skew-card:hover .skew-blur,
body.en-mode .quote-skew-card:hover .skew-panel,
body.en-mode .quote-skew-card:hover .skew-blur {
  transform: skewX(0);
}

/* Animated Floating Glass Blobs */
.card-blobs {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.card-blob {
  position: absolute;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  width: 0;
  height: 0;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-blob-top {
  top: 0;
  inset-inline-start: 0;
  animation: blobFloat 2.4s ease-in-out infinite;
}

.question-skew-card:hover .card-blob-top,
.quote-skew-card:hover .card-blob-top {
  top: -24px;
  inset-inline-start: 32px;
  width: 68px;
  height: 68px;
  opacity: 1;
}

.card-blob-bottom {
  bottom: 0;
  inset-inline-end: 0;
  animation: blobFloat 2.4s ease-in-out 1.2s infinite;
}

.question-skew-card:hover .card-blob-bottom,
.quote-skew-card:hover .card-blob-bottom {
  bottom: -24px;
  inset-inline-end: 32px;
  width: 68px;
  height: 68px;
  opacity: 1;
}

/* Front Card Content (Rich Brand Colors - Zero Grey) */
.question-content {
  position: relative;
  z-index: 20;
  padding: 32px 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 40px rgba(7, 29, 56, 0.2);
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-card="1"] .question-content {
  background: linear-gradient(135deg, #072343 0%, #014d85 55%, #0169b5 100%);
  border-color: rgba(1, 105, 181, 0.5);
  box-shadow: 0 16px 40px rgba(1, 105, 181, 0.25);
}

[data-card="2"] .question-content {
  background: linear-gradient(135deg, #072343 0%, #0d4a46 55%, #228e57 100%);
  border-color: rgba(34, 142, 87, 0.5);
  box-shadow: 0 16px 40px rgba(34, 142, 87, 0.25);
}

.question-skew-card:hover .question-content,
.quote-skew-card:hover .quote {
  transform: translateY(-6px);
  border-color: #00a8ff;
  box-shadow: 0 24px 50px rgba(1, 105, 181, 0.4);
}

[data-card="2"]:hover .question-content {
  border-color: #10b981;
  box-shadow: 0 24px 50px rgba(34, 142, 87, 0.4);
}

.question-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.question-content p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .questions {
    gap: 28px;
    padding: 20px 0;
  }
  .skew-panel,
  .skew-blur {
    width: 65%;
  }
  .question-content {
    padding: 24px 20px;
  }
  .quote {
    padding: 26px 20px;
    font-size: 1.15rem;
  }
  .quote .quote-text {
    font-size: 1.15rem;
  }
}

.ministers {
  grid-template-columns: repeat(2, 1fr);
}

.minister {
  padding: 0;
  overflow: hidden;
}

.minister img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #dce8ef;
}

.minister .body {
  padding: 22px;
}

.minister ul {
  margin: 8px 0;
}

.country {
  color: var(--blue);
  font-weight: 800;
}

/* ==========================================================================
   PARTICIPATION POSTERS GALLERY (معرض المشاركة - الملصقات التوثيقية الثلاثة)
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 20px;
}

.gallery a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(7, 29, 56, 0.08);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
  text-decoration: none;
}

.gallery a:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(1, 105, 181, 0.18);
  border-color: rgba(1, 105, 181, 0.4);
}

.gallery img {
  width: 100%;
  height: auto;
  min-height: 260px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery a:hover img {
  transform: scale(1.025);
}

.photo-slider-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

@media (max-width: 850px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   PARTICIPATION GALLERY SLIDER & LIGHTBOX (معرض الصور - سلايدر الصور)
   ========================================================================== */
.gallery-slider-wrapper {
  max-width: 960px;
  margin: 32px auto 0;
  position: relative;
}

.gallery-slider-stage {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.gallery-slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #071d38;
  box-shadow: 0 16px 48px rgba(7, 29, 56, 0.16);
  border: 1px solid rgba(7, 29, 56, 0.08);
  position: relative;
}

.gallery-slider-track {
  display: flex;
  direction: ltr !important;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  touch-action: pan-y;
}

.gallery-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  max-height: 540px;
  background: #0a1b30;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.gallery-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.35s ease;
}

.gallery-slide:hover .gallery-slide-img {
  transform: scale(1.02);
}

/* Floating Navigation Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 29, 56, 0.12);
  color: #014d85;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10;
  outline: none;
}

.gallery-arrow:hover {
  background: #0169b5;
  color: #ffffff;
  border-color: #0169b5;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 26px rgba(1, 105, 181, 0.45);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-arrow-left {
  left: 18px;
}

.gallery-arrow-right {
  right: 18px;
}

/* Controls Navigation Footer (Counter & Dots) */
.gallery-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 6px;
}

.gallery-counter {
  font-size: 0.95rem;
  font-weight: 800;
  color: #014d85;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.5px;
  direction: ltr;
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-dot:hover {
  background: #94a3b8;
}

.gallery-dot.active {
  width: 28px;
  border-radius: 9999px;
  background: #0169b5;
  box-shadow: 0 2px 8px rgba(1, 105, 181, 0.35);
}

/* Fullscreen Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 56, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .gallery-arrow {
    width: 40px;
    height: 40px;
  }
  .gallery-arrow-left {
    left: 10px;
  }
  .gallery-arrow-right {
    right: 10px;
  }
  .gallery-slide {
    aspect-ratio: 4 / 3;
    max-height: 380px;
  }
}

/* ==========================================================================
   LATEST NEWS & ANNOUNCEMENTS (Exact Match to Reference Blue Card on Right)
   ========================================================================== */
.news-section {
  padding-top: 55px;
  padding-bottom: 75px;
}

.news-section-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 26px;
  text-align: start;
}

.news-card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.blue-news-card {
  width: 100%;
  max-width: 360px;
  min-height: 290px;
  background: #3c69af;
  border-radius: 16px;
  padding: 26px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(60, 105, 175, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.blue-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(60, 105, 175, 0.35);
}

.blue-news-card .card-tag {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.blue-news-card .card-text {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.75;
  color: #ffffff;
  margin: 0 0 20px;
}

.blue-news-card .card-more-btn {
  align-self: flex-start;
  background: transparent;
  border: none;
  padding: 0;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.blue-news-card .card-more-btn:hover {
  opacity: 0.82;
  text-decoration: underline;
}

/* News Modal Dialog */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-modal.open {
  opacity: 1;
  visibility: visible;
}

.news-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 56, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.news-modal .modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 24px 60px rgba(7, 29, 56, 0.3);
  overflow-y: auto;
  box-sizing: border-box;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-modal.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 20px;
  background: rgba(7, 29, 56, 0.06);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: rgba(7, 29, 56, 0.12);
  transform: scale(1.08);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.modal-badge {
  background: rgba(1, 105, 181, 0.1);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 6px;
}

.modal-date {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.modal-title {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.55;
  font-weight: 800;
}

.modal-subtitle {
  font-size: 0.98rem;
  font-weight: 700;
  color: #3c69af;
  margin: 0 0 20px;
  line-height: 1.6;
}

.modal-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 26px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid rgba(60, 105, 175, 0.15);
}

.modal-body h5 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1e40af;
  margin: 18px 0 8px;
}

.modal-body blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: #f0f7ff;
  border-inline-start: 4px solid #3c69af;
  border-radius: 10px;
  color: #1e3a8a;
  font-size: 0.98rem;
  line-height: 1.8;
}

.modal-body blockquote small {
  display: block;
  margin-top: 8px;
  font-size: 0.84rem;
  color: #64748b;
  font-style: normal;
}

.modal-center-info {
  margin-top: 28px;
  padding: 18px 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.modal-center-info h4 {
  margin: 0 0 8px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  font-size: 1.05rem;
  color: #0f172a;
}

.modal-center-info p {
  margin-bottom: 6px !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
}

.modal-center-info a {
  color: #3c69af;
  font-weight: 700;
  text-decoration: none;
}

.modal-center-info a:hover {
  text-decoration: underline;
}

.modal-body p {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.85;
  margin: 0 0 14px;
}

.modal-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 29, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-btn:hover {
  background: #015494;
  transform: translateY(-1px);
}

/* ==========================================================================
   FOOTER & DOWNLOADABLE MATERIALS
   ========================================================================== */
footer {
  background: linear-gradient(135deg, #828282 0%, #9e9e9e 45%, #bebebe 100%);
  color: #ffffff;
  padding: 50px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-downloads {
  margin-bottom: 28px;
}

.footer-downloads-header h3 {
  color: #ffffff;
  margin: 0 0 4px;
  font-size: 1.18rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-downloads-header p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.footer-downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 380px;
  gap: 10px;
}

.footer-download-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 6px 10px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: none;
  transition: all 0.25s ease;
}

.footer-download-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.fdl-icon {
  width: auto;
  height: auto;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fdl-icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.footer-download-card:hover .fdl-icon {
  background: transparent !important;
  color: #ffffff;
}

.fdl-content strong {
  display: block;
  font-size: 0.78rem;
  color: #ffffff;
  margin-bottom: 1px;
  font-weight: 700;
  line-height: 1.25;
}

.fdl-content span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 32px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-grid strong {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-grid div {
  color: rgba(255, 255, 255, 0.92);
}

footer a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.85;
}

.footer-phone {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-block !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
}

/* ==========================================================================
   LANGUAGE TOGGLING (AR / EN)
   ========================================================================== */
.en,
span.en,
div.en,
p.en,
h1.en,
h2.en,
h3.en,
a.en,
strong.en,
blockquote.en,
small.en,
cite.en {
  display: none !important;
}

body.en-mode {
  direction: ltr;
  font-family: 'Plus Jakarta Sans', "Segoe UI", Arial, sans-serif;
}

body.en-mode .ar {
  display: none !important;
}

body.en-mode .en {
  display: initial !important;
}

body.en-mode div.en,
body.en-mode section.en,
body.en-mode p.en,
body.en-mode h1.en,
body.en-mode h2.en,
body.en-mode h3.en,
body.en-mode strong.en,
body.en-mode blockquote.en,
body.en-mode cite.en {
  display: block !important;
}

body.en-mode a.en {
  display: inline-flex !important;
}

body.en-mode a.card-more-btn.en {
  display: inline-block !important;
}

body.en-mode .card-tag.en {
  display: block !important;
}

body.en-mode .eyebrow.en {
  display: inline-flex !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 880px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }

  .navlinks {
    display: none;
  }

  .brand {
    padding-inline-start: 0;
  }

  .nav-end {
    padding-inline-end: 0;
  }
}

@media (max-width: 850px) {

  .stats,
  .cards,
  .ministers,
  .footer-downloads-grid {
    grid-template-columns: 1fr 1fr;
  }

  .questions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 .hero-line {
    display: inline;
  }

  .footer-downloads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .stats,
  .cards,
  .ministers,
  .footer-downloads-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 17px;
  }
}

/* ==========================================================================
   DEDICATED NEWS ARTICLE PAGE STYLES (news.html)
   ========================================================================== */
body.news-article-page .topbar {
  background: #ffffff !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid rgba(7, 29, 56, 0.08) !important;
  box-shadow: 0 4px 20px rgba(7, 29, 56, 0.04) !important;
}

body.news-article-page .news-nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  min-height: 76px;
}

.news-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-back-btn {
  display: inline-flex;
  align-items: center;
  background: transparent !important;
  color: #014d85 !important;
  padding: 6px 0;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: color 0.2s ease;
}

.news-back-btn:hover {
  background: transparent !important;
  color: #0169b5 !important;
  text-decoration: underline !important;
  box-shadow: none !important;
}

.article-date-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 6px 16px;
  border-radius: 8px;
  margin-top: 10px;
}

body.news-article-page .article-page-section {
  padding-top: 36px !important;
  padding-bottom: 90px !important;
  background: #f8fafc;
}

.article-page-section {
  padding-top: 40px;
  padding-bottom: 90px;
  background: #f8fafc;
}

.article-shell {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3c69af;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(60, 105, 175, 0.1);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.article-back-link:hover {
  background: rgba(60, 105, 175, 0.18);
  transform: translateX(-3px);
}

.article-card-main {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(7, 29, 56, 0.06);
  border: 1px solid rgba(7, 29, 56, 0.06);
  overflow: hidden;
  padding: 44px 50px;
}

@media (max-width: 768px) {
  .article-card-main {
    padding: 26px 20px;
    border-radius: 18px;
  }
}

.article-header {
  margin-bottom: 28px;
}

.article-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.article-badge {
  background: rgba(60, 105, 175, 0.12);
  color: #3c69af;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 999px;
}

.article-date {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.article-main-title {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 16px;
}

.article-lead-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: #475569;
  line-height: 1.7;
  font-weight: 600;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7, 29, 56, 0.08);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 12px 18px;
  background: #f1f5f9;
  border-radius: 12px;
}

.article-publisher {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

.article-share-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: #3c69af;
  color: #ffffff;
  border-color: #3c69af;
}

.article-featured-media {
  margin: 0 0 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 29, 56, 0.08);
}

.article-featured-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.article-media-caption {
  padding: 10px 16px;
  background: #f1f5f9;
  font-size: 0.86rem;
  color: #64748b;
  text-align: center;
}

.article-body-content {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #334155;
}

.article-body-content p {
  margin: 0 0 20px;
}

.article-body-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(60, 105, 175, 0.2);
}

.article-body-content h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e3a8a;
  margin: 26px 0 12px;
}

.article-body-content blockquote {
  margin: 28px 0;
  padding: 22px 28px;
  background: #f0f7ff;
  border-inline-start: 5px solid #3c69af;
  border-radius: 12px;
  color: #1e3a8a;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.85;
}

.article-body-content blockquote small {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
}

.article-bilateral-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-bilateral-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 29, 56, 0.05);
}

.article-bilateral-card h5 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #1e40af;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-bilateral-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #334155;
}

.article-about-box {
  margin: 40px 0 28px;
  padding: 24px 28px;
  background: #f1f5f9;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
}

.article-about-box h4 {
  margin: 0 0 10px !important;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.article-about-box p {
  margin: 0 0 10px !important;
  font-size: 0.96rem !important;
  line-height: 1.75 !important;
}

.article-footer-cta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(7, 29, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.article-footer-cta .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #334155;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-footer-cta .btn-back:hover {
  background: #e2e8f0;
  color: var(--navy);
}

.article-footer-cta .btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3c69af;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-footer-cta .btn-pdf:hover {
  background: #2b4f87;
  transform: translateY(-1px);
}

/* ==========================================================================
   GOOGLE TRANSLATE CUSTOM INTEGRATION & BANNER SUPPRESSION
   Ensures the header stays transparent and flush with the top without intrusive banners
   ========================================================================== */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.VIpgJd-ZVi9I-OR9QNe-ObM0fd,
.VIpgJd-ZVi9I-OR9QNe-ObM0fd,
iframe[id^=":"][id$=".container"],
iframe[src*="translate.google"],
body>.skiptranslate,
body>div[id=":1.container"],
body>div[id=":2.container"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  top: -9999px !important;
}

html,
body {
  top: 0px !important;
  position: static !important;
  margin-top: 0px !important;
  transform: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.VIpgJd-ZVi9I-aZ2wEe-wOHMyf {
  display: none !important;
  visibility: hidden !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.google-translate-hidden,
#google_translate_element {
  position: absolute !important;
  top: -9999px !important;
  inset-inline-start: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}