/* ============================================
   NCA SOMALIA — MAIN STYLESHEET
   Primary: #83d2f3 | Black: #000
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #83d2f3;
  --primary-dark: #5bb8e0;
  --primary-light: #c5eafb;
  --black: #000000;
  --dark: #111111;
  --dark2: #1e2a35;
  --gray: #6b7280;
  --gray-light: #f0f4f8;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --nav-h: 60px;
  --header-h: 80px;
  --topbar-h: 40px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--font-size-base);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(130, 210, 243, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}

/* --- TOPBAR --- */
.topbar {
  background: #0a2a3d;
  color: rgba(255,255,255,0.75);
  height: var(--topbar-h);
  font-size: 0.8rem;
  position: sticky;
  top: 0;
  z-index: 300;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.topbar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-right a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-right a:hover { color: var(--primary); }
.topbar-right .fa-phone,
.topbar-right .fa-envelope { color: var(--primary); font-size: 0.72rem; }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px;
}
.lang-btn {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.2s;
  text-decoration: none !important;
}
.lang-btn.active {
  background: var(--primary);
  color: #0d1117 !important;
}
.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
}

/* --- HEADER --- */
.site-header {
  background: var(--white);
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--topbar-h);
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
/* Logo — image only */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: inherit !important;
}
.logo-full-img {
  height: 90px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
}

/* ISO Badges */
.iso-badges {
  display: flex;
  gap: 14px;
  align-items: center;
}
.iso-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: default;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.22s ease,
              border-color 0.22s ease,
              background 0.22s ease;
  position: relative;
  overflow: hidden;
}
.iso-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(130,210,243,0.08) 0%, rgba(91,189,232,0.04) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: inherit;
}
.iso-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(130,210,243,0.32), 0 2px 8px rgba(0,0,0,0.08);
  border-color: var(--primary);
  background: #fff;
}
.iso-badge:hover::before {
  opacity: 1;
}
.iso-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.iso-badge:hover .iso-icon-wrap {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(130,210,243,0.2);
}
.iso-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.iso-info {
  display: flex;
  flex-direction: column;
}
.iso-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.22s ease;
}
.iso-badge:hover .iso-title {
  color: #0369a1;
}
.iso-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
  transition: color 0.22s ease;
}
.iso-badge:hover .iso-label {
  color: var(--primary);
}

/* --- NAVIGATION --- */
.main-nav {
  background: #0a2a3d;
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h));
  z-index: 190;
  box-shadow: 0 4px 20px rgba(10,42,61,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  position: relative;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  white-space: nowrap;
}
.nav-actions {
  margin-left: auto;
  flex-shrink: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active > .nav-link {
  background: rgba(130, 210, 243, 0.15);
  color: var(--primary);
}
.nav-link i { font-size: 0.65rem; transition: transform var(--transition); }
.nav-item.has-dropdown:hover > .nav-link i { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 300;
  padding: 8px 0;
}
.nav-item.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  font-size: 0.875rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: var(--gray-light);
  color: var(--primary-dark);
  border-left-color: var(--primary);
  padding-left: 22px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.nav-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-search-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-cta {
  padding: 8px 20px;
  font-size: 0.85rem;
  text-transform: none !important;
  letter-spacing: normal;
  font-weight: 600;
  border-radius: 25px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Search bar */
.nav-search-bar {
  display: none;
  background: var(--dark2);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-search-bar.open { display: block; }
.search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: none;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-form button {
  background: var(--primary);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--dark);
  font-size: 0.95rem;
  transition: background var(--transition);
}
.search-form button:hover { background: var(--primary-dark); }

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(10,42,61,0.82) 0%, rgba(14,63,92,0.75) 50%, rgba(15,82,120,0.70) 100%),
    url('/assets/images/Hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Dot-grid pattern overlay on top of image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(131,210,243,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}
/* Brand colour glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,210,243,0.12) 0%, transparent 70%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 90px 0;
}
.hero-centered {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 110px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-centered .hero-badge { margin-bottom: 24px; }
.hero-centered .hero-title { margin-bottom: 20px; }
.hero-centered .hero-subtitle {
  max-width: 640px;
  margin-bottom: 38px;
  text-align: center;
}
.hero-centered .hero-actions { justify-content: center; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(131,210,243,0.15);
  border: 1px solid rgba(131,210,243,0.45);
  color: #83d2f3;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.13;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: #83d2f3; }
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-globe {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(131,210,243,0.22) 0%, rgba(14,63,92,0.6) 60%, transparent 100%);
  border: 2px solid rgba(131,210,243,0.35);
  box-shadow: 0 0 60px rgba(131,210,243,0.15), inset 0 0 60px rgba(131,210,243,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 4s ease-in-out infinite;
  position: relative;
}
.hero-globe::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(131,210,243,0.15);
  animation: pulse 4s ease-in-out infinite 1s;
}
.hero-globe::after {
  content: '';
  position: absolute;
  inset: -48px;
  border-radius: 50%;
  border: 1px solid rgba(131,210,243,0.07);
  animation: pulse 4s ease-in-out infinite 2s;
}
.hero-globe-icon {
  font-size: 8rem;
  color: #83d2f3;
  opacity: 0.75;
  filter: drop-shadow(0 0 24px rgba(131,210,243,0.5));
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

/* --- QUICK ACCESS CARDS --- */
.quick-cards-wrap {
  position: relative;
  z-index: 10;
  margin-top: -52px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 40px;
  background: none;
}
.quick-cards-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 52px;
  background: #f8fbfe;
  z-index: -1;
}
.quick-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.quick-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 20px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(131,210,243,0.15);
  transition:
    transform 0.28s cubic-bezier(.34,1.56,.64,1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
/* Shimmer line on top */
.quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #83d2f3, #0e3f5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
  border-radius: 16px 16px 0 0;
}
.quick-card:hover::before {
  transform: scaleX(1);
}
.quick-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 48px rgba(131,210,243,0.22), 0 6px 16px rgba(0,0,0,0.10);
  border-color: rgba(131,210,243,0.5);
}
.quick-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(131,210,243,0.15) 0%, rgba(131,210,243,0.05) 100%);
  border: 2px solid rgba(131,210,243,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.quick-card:hover .quick-card-icon {
  background: linear-gradient(135deg, #83d2f3 0%, #0e3f5c 100%);
  border-color: #83d2f3;
  transform: rotate(-6deg) scale(1.1);
}
.quick-card-icon i {
  font-size: 1.6rem;
  color: #83d2f3;
  transition: color 0.28s ease;
}
.quick-card:hover .quick-card-icon i {
  color: #ffffff;
}
.quick-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  transition: color 0.28s ease;
}
.quick-card:hover .quick-card-title {
  color: #0e3f5c;
}
.quick-card-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f9fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #83d2f3;
  transition: background 0.28s ease, transform 0.28s ease;
  margin-top: auto;
}
.quick-card:hover .quick-card-arrow {
  background: #83d2f3;
  color: #ffffff;
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .quick-cards { grid-template-columns: repeat(3, 1fr); }
  .quick-cards-wrap { margin-top: -36px; }
}
@media (max-width: 600px) {
  .quick-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .quick-cards-wrap { margin-top: -24px; }
  .quick-card { padding: 24px 14px 18px; }
  .quick-card-icon { width: 54px; height: 54px; }
  .quick-card-icon i { font-size: 1.3rem; }
  /* Last card spans full width and centers itself */
  .quick-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(65% - 6px);
    margin: 0 auto;
  }
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 56px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* --- SERVICES CARDS --- */
.services-section { padding: 72px 0 80px; background: #ffffff; overflow: visible; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  overflow: visible;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  border: 1px solid rgba(131,210,243,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: visible;
  cursor: default;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #83d2f3, #0e3f5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
  border-radius: 16px 16px 0 0;
  z-index: 1;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 48px rgba(131,210,243,0.22), 0 6px 16px rgba(0,0,0,0.08);
  border-color: rgba(131,210,243,0.5);
  z-index: 2;
}
.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(131,210,243,0.15) 0%, rgba(131,210,243,0.05) 100%);
  border: 2px solid rgba(131,210,243,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: #83d2f3;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #83d2f3 0%, #0e3f5c 100%);
  border-color: #83d2f3;
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}
.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.28s ease;
}
.service-card:hover h3 { color: #0e3f5c; }
.service-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

/* --- ABOUT SECTION --- */
/* ── ABOUT SECTION ─────────────────────────────────────────── */
.about-section {
  padding: 72px 0 60px;
  background: #f8fbfe;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,210,243,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image side */
.about-image {
  position: relative;
}
.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease;
}
.about-img-wrap:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,42,61,0.45) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}
.about-img-wrap:hover::after {
  opacity: 1;
}
.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}
.about-img-badge {
  position: absolute;
  bottom: -18px;
  left: 32px;
  background: #83d2f3;
  color: #0a2a3d;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(131,210,243,0.4);
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}
.about-image:hover .about-img-badge {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(131,210,243,0.55);
}

/* Content side */
.about-content { padding-bottom: 20px; }
.about-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 12px 0 24px;
}
.about-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* --- COUNTERS SECTION --- */
.counters-section {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(10,42,61,0.88) 0%, rgba(14,63,92,0.82) 50%, rgba(15,82,120,0.85) 100%),
    url('/assets/images/Hero.jpg') center/cover no-repeat;
  position: relative;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  overflow: visible;
}
.counter-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid rgba(131,210,243,0.2);
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease;
}
.counter-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 48px rgba(0,0,0,0.22), 0 6px 16px rgba(131,210,243,0.15);
}
.counter-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(131,210,243,0.2), rgba(131,210,243,0.05));
  border: 2px solid rgba(131,210,243,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: #83d2f3;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, color 0.28s ease;
}
.counter-card:hover .counter-icon {
  background: linear-gradient(135deg, #83d2f3 0%, #0e3f5c 100%);
  border-color: #83d2f3;
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}
.counter-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a2a3d;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-num span { color: #83d2f3; }
.counter-label { font-size: 0.85rem; color: #6b7280; font-weight: 500; }

/* --- NEWS SECTION --- */
.news-section { padding: 96px 0; background: var(--gray-light); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark2), #0d3a52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--dark);
}
.news-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.news-link:hover { color: var(--dark); }

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--primary); }

/* --- FOOTER --- */
/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #0a1a27;
  color: rgba(255,255,255,0.7);
  position: relative;
}
.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, #83d2f3 0%, #0e3f5c 50%, #83d2f3 100%);
}
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 48px;
}

/* Brand col */
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}
.footer-about p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.footer-social a:hover {
  background: #83d2f3;
  border-color: #83d2f3;
  color: #0a1a27;
  transform: translateY(-3px);
}

/* Nav cols */
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #83d2f3;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(131,210,243,0.15);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: #83d2f3;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 1rem;
  line-height: 1;
}
.footer-col ul li a:hover { color: #83d2f3; padding-left: 4px; }
.footer-col ul li a:hover::before { opacity: 1; }

/* Contact */
.footer-contact { list-style: none; padding: 0; margin: 0 0 24px; }
.footer-contact li {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-contact li i {
  color: #83d2f3;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact li a:hover { color: #83d2f3; }

/* ISO badges in footer */
.footer-iso-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.footer-iso-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(131,210,243,0.12);
  border-radius: 8px;
  padding: 7px 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-iso-item:hover {
  background: rgba(131,210,243,0.08);
  border-color: rgba(131,210,243,0.3);
}
.footer-iso-item img {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  flex-shrink: 0;
}
.footer-iso-item div { display: flex; flex-direction: column; }
.footer-iso-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  line-height: 1.2;
}
.footer-iso-item small {
  font-size: 0.65rem;
  color: rgba(131,210,243,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Bottom bar */
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #83d2f3; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  padding: 60px 0;
  color: var(--white);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; }

/* --- CONTENT AREA --- */
.content-section { padding: 80px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; }
.article-body { max-width: none; }
.article-body h2 { font-size: 1.6rem; font-weight: 700; margin: 32px 0 16px; }
.article-body h3 { font-size: 1.25rem; font-weight: 700; margin: 24px 0 12px; }
.article-body p { margin-bottom: 18px; color: var(--gray); line-height: 1.8; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; color: var(--gray); }
.article-body strong { color: var(--dark); }

/* Sidebar */
.sidebar-widget {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

/* --- NEWS LISTING --- */
.news-list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.news-list-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1.5rem;
}
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* --- RESOURCES TABLE --- */
.resources-table { width: 100%; border-collapse: collapse; }
.resources-table th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.resources-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.resources-table tr:hover td { background: var(--gray-light); }
.resources-table .download-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.resources-table .download-btn:hover { background: var(--primary-dark); color: var(--white); }

/* --- ADMIN STYLES (separate scope) --- */
/* kept in admin/assets/admin.css */

/* --- ALERTS --- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  border-left: 4px solid;
}
.alert-success { background: #ecfdf5; color: #065f46; border-color: #10b981; }
.alert-error   { background: #fef2f2; color: #991b1b; border-color: #ef4444; }
.alert-info    { background: #eff6ff; color: #1e40af; border-color: #3b82f6; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-img { height: 300px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .topbar-text { display: none; }
  .iso-badges { display: none; }
  .nav-toggle { display: flex; order: -1; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: #0a2a3d;
    padding: 16px;
    gap: 4px;
    z-index: 300;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; display: flex; justify-content: space-between; align-items: center; }
  /* Dropdowns hidden by default on mobile — JS adds .mobile-open to show */
  .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 6px;
    margin-top: 2px;
    background: rgba(255,255,255,0.05);
    display: none;
    overflow: hidden;
  }
  .dropdown.mobile-open { display: block; }
  .dropdown li a { color: rgba(255,255,255,0.75); padding: 10px 16px; }
  .dropdown li a:hover { background: rgba(255,255,255,0.07); color: var(--primary); }
  .nav-item.has-dropdown.mobile-open > .nav-link i { transform: rotate(180deg); }
  .nav-link i { transition: transform 0.25s ease; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .about-img { height: 240px; }
  .about-img-badge { font-size: 0.78rem; padding: 10px 16px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .logo-full-img { height: 44px; max-width: 200px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .site-header { height: auto; padding: 10px 0; }
  .header-inner { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .logo-full-img { height: 50px; max-width: 240px; }
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .topbar-right { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .topbar-divider { display: none; }
}

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
.loading { animation: spin 1s linear infinite; }

/* ═══════════════════════════════════════════════
   INNER PAGES — Shared Template Styles
   ═══════════════════════════════════════════════ */

/* Banner */
.inner-banner {
  position: relative;
  background: linear-gradient(135deg, #0a2a3d 0%, #0e3f5c 50%, #0f5278 100%);
  padding: 80px 0 72px;
  overflow: hidden;
}
.inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(131,210,243,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.inner-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,210,243,0.1) 0%, transparent 70%);
}
.inner-banner-content {
  position: relative;
  z-index: 2;
}
.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.inner-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.inner-breadcrumb a:hover { color: #83d2f3; }
.inner-breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.65rem; }
.inner-breadcrumb span { color: #83d2f3; font-weight: 600; }
.inner-banner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.inner-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 0;
}

/* Sections */
.inner-section { padding: 80px 0; }
.bg-white { background: #ffffff; }
.bg-light { background: #f8fbfe; }
.bg-brand {
  background: linear-gradient(135deg, #0a2a3d 0%, #0e3f5c 100%);
}

/* Section header */
.inner-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.inner-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #83d2f3;
  margin-bottom: 10px;
}
.inner-section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 16px;
  line-height: 1.2;
}
.inner-section-header p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* Intro grid */
.inner-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.inner-intro-content .inner-section-label { display: block; }
.inner-intro-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 20px;
  line-height: 1.25;
}
.inner-intro-content p {
  color: var(--gray);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 16px;
}
.inner-intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inner-stat-card {
  background: #f8fbfe;
  border: 1px solid rgba(131,210,243,0.2);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: default;
}
.inner-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(131,210,243,0.18);
  border-color: #83d2f3;
}
.inner-stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(131,210,243,0.2), rgba(131,210,243,0.05));
  border: 1.5px solid rgba(131,210,243,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  color: #83d2f3;
  transition: background 0.28s ease, color 0.28s ease;
}
.inner-stat-card:hover .inner-stat-icon {
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
}
.inner-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a2a3d;
  line-height: 1;
  margin-bottom: 6px;
}
.inner-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

/* Timeline */
.nca-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.nca-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #83d2f3, rgba(131,210,243,0.1));
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 32px 1fr;
  gap: 0 24px;
  margin-bottom: 40px;
  align-items: start;
  position: relative;
}
.timeline-year {
  font-size: 0.82rem;
  font-weight: 800;
  color: #83d2f3;
  text-align: right;
  padding-top: 22px;
  letter-spacing: 0.04em;
}
.timeline-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #83d2f3;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(131,210,243,0.3);
  margin-top: 24px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 5px rgba(131,210,243,0.4);
}
.timeline-card {
  background: #fff;
  border: 1px solid rgba(131,210,243,0.15);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}
.timeline-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #83d2f3, #0e3f5c);
  border-radius: 14px 0 0 14px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.32s ease;
}
.timeline-item:hover .timeline-card {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(131,210,243,0.15);
  border-color: rgba(131,210,243,0.4);
}
.timeline-item:hover .timeline-card::before { transform: scaleY(1); }
.timeline-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(131,210,243,0.15), rgba(131,210,243,0.05));
  border: 1.5px solid rgba(131,210,243,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #83d2f3;
  margin-bottom: 14px;
  transition: background 0.25s, color 0.25s;
}
.timeline-item:hover .timeline-icon {
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
}
.timeline-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2a3d;
  margin: 0 0 8px;
}
.timeline-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Responsibilities grid */
.inner-resp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.inner-resp-card {
  background: #fff;
  border: 1px solid rgba(131,210,243,0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.inner-resp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #83d2f3, #0e3f5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.inner-resp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(131,210,243,0.2);
  border-color: rgba(131,210,243,0.4);
}
.inner-resp-card:hover::after { transform: scaleX(1); }
.inner-resp-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(131,210,243,0.15), rgba(131,210,243,0.05));
  border: 2px solid rgba(131,210,243,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: #83d2f3;
  transition: background 0.28s, color 0.28s, transform 0.28s;
}
.inner-resp-card:hover .inner-resp-icon {
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}
.inner-resp-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2a3d;
  margin: 0 0 10px;
}
.inner-resp-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Legal band */
.inner-legal-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.inner-legal-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: rgba(131,210,243,0.15);
  border: 2px solid rgba(131,210,243,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #83d2f3;
  flex-shrink: 0;
}
.inner-legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.inner-legal-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.btn-white {
  background: #fff;
  color: #0a2a3d;
  border: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover {
  background: #83d2f3;
  color: #0a2a3d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .inner-resp-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-intro-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .inner-banner { padding: 56px 0 48px; }
  .inner-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .inner-resp-grid { grid-template-columns: repeat(2, 1fr); }
  .nca-timeline::before { left: 16px; }
  .timeline-item { grid-template-columns: 0 20px 1fr; gap: 0 16px; }
  .timeline-year { display: none; }
  .inner-legal-wrap { flex-direction: column; gap: 24px; }
}
@media (max-width: 480px) {
  .inner-resp-grid { grid-template-columns: 1fr; }
  .inner-intro-visual { grid-template-columns: 1fr 1fr; }
}

/* Inner page content block */
.inner-content-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.inner-content-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(131,210,243,0.18), rgba(131,210,243,0.05));
  border: 2px solid rgba(131,210,243,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #83d2f3;
  flex-shrink: 0;
  transition: background 0.28s, color 0.28s, transform 0.28s;
}
.inner-content-block:hover .inner-content-icon {
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}
.inner-content-text .inner-section-label {
  display: block;
  margin-bottom: 14px;
}
.inner-content-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 600px) {
  .inner-content-block { flex-direction: column; gap: 20px; }
  .inner-content-icon { width: 56px; height: 56px; font-size: 1.4rem; }
}

/* ── MISSION & VISION PAGE ─────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.15);
}
.mv-card-dark {
  background: linear-gradient(135deg, #0a2a3d 0%, #0e3f5c 100%);
  color: #fff;
}
.mv-card-brand {
  background: linear-gradient(135deg, #83d2f3 0%, #3ab5e6 100%);
  color: #0a2a3d;
}
.mv-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.mv-card:hover .mv-card-icon { transform: rotate(-8deg) scale(1.1); }
.mv-card-dark .mv-card-icon {
  background: rgba(131,210,243,0.15);
  color: #83d2f3;
  border: 1.5px solid rgba(131,210,243,0.3);
}
.mv-card-brand .mv-card-icon {
  background: rgba(10,42,61,0.12);
  color: #0a2a3d;
  border: 1.5px solid rgba(10,42,61,0.2);
}
.mv-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.mv-card-dark h2 { color: #fff; }
.mv-card-brand h2 { color: #0a2a3d; }
.mv-card p {
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
}
.mv-card-dark p { color: #fff; }
.mv-card-brand p { color: rgba(10,42,61,0.85); }
/* Override wwd-content generic styles for dark card */
.wwd-content .mv-card-dark h2 { color: #fff; }
.wwd-content .mv-card-dark p  { color: #fff; }

/* Core Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(131,210,243,0.15);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease, border-color 0.28s ease;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #83d2f3, #0e3f5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(131,210,243,0.2);
  border-color: rgba(131,210,243,0.4);
}
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(131,210,243,0.15), rgba(131,210,243,0.05));
  border: 2px solid rgba(131,210,243,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #83d2f3;
  transition: background 0.28s, color 0.28s, transform 0.28s;
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}
.value-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0a2a3d;
  margin: 0 0 10px;
  line-height: 1.3;
}
.value-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-card { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .value-card { padding: 22px 14px; }
}

/* ── DIRECTOR GENERAL PAGE ─────────────────────── */
.dg-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.dg-photo-wrap { position: relative; }
.dg-photo-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.dg-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.dg-photo-inner:hover .dg-photo { transform: scale(1.05); }
.dg-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,42,61,0.92) 0%, rgba(10,42,61,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}
.dg-photo-inner:hover .dg-photo-overlay { opacity: 1; }
.dg-overlay-content {
  display: flex;
  gap: 12px;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.dg-photo-inner:hover .dg-overlay-content { transform: translateY(0); }
.dg-social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(131,210,243,0.2);
  border: 1.5px solid #83d2f3;
  color: #83d2f3;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.dg-social-btn:hover {
  background: #83d2f3;
  color: #0a2a3d;
  transform: scale(1.1);
}
.dg-name-card {
  background: #fff;
  border: 1px solid rgba(131,210,243,0.2);
  border-radius: 0 0 20px 20px;
  padding: 22px 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.dg-name-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #83d2f3;
  display: block;
  margin-bottom: 6px;
}
.dg-name-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a2a3d;
  margin: 0 0 4px;
}
.dg-name-card p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0 0 14px;
}
.dg-social-row {
  display: flex;
  gap: 8px;
}
.dg-social-pill {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f8fbfe;
  border: 1px solid rgba(131,210,243,0.25);
  color: #83d2f3;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.dg-social-pill:hover {
  background: #83d2f3;
  color: #0a2a3d;
  transform: translateY(-3px);
}

/* Bio card */
.dg-bio-card {
  background: #f8fbfe;
  border: 1px solid rgba(131,210,243,0.15);
  border-radius: 20px;
  padding: 40px;
}
.dg-bio-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(131,210,243,0.15);
}
.dg-bio-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.dg-since {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dg-since i { color: #83d2f3; }
.dg-bio-para {
  color: #374151;
  font-size: 1rem;
  line-height: 1.9;
  margin: 0 0 20px;
}
.dg-bio-para:last-child { margin-bottom: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .dg-layout { grid-template-columns: 280px 1fr; gap: 32px; }
  .dg-photo { height: 360px; }
}
@media (max-width: 768px) {
  .dg-layout { grid-template-columns: 1fr; gap: 32px; }
  .dg-photo { height: 400px; }
  .dg-bio-card { padding: 28px; }
  .dg-photo-overlay { opacity: 1; }
  .dg-overlay-content { transform: translateY(0); }
}

/* ── ORG STRUCTURE PAGE ─────────────────────────── */
.org-chart-wrap {
  text-align: center;
}
.org-chart-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  display: inline-block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.org-chart-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ── SHARED INNER PAGE COMPONENTS ─────────────────── */

/* Numbered/icon list */
.nca-numbered-list { display: flex; flex-direction: column; gap: 28px; }
.nca-numbered-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(131,210,243,0.15);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}
.nca-numbered-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #83d2f3, #0e3f5c);
  border-radius: 16px 0 0 16px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.nca-numbered-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 32px rgba(131,210,243,0.15);
  border-color: rgba(131,210,243,0.4);
}
.nca-numbered-item:hover::before { transform: scaleY(1); }
.nca-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}
.nca-numbered-item:hover .nca-num { transform: rotate(-6deg) scale(1.1); }
.nca-numbered-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2a3d;
  margin: 0 0 8px;
}
.nca-numbered-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

/* Requirements list */
.inner-requirements-list {
  margin-top: 40px;
  background: #f8fbfe;
  border: 1px solid rgba(131,210,243,0.2);
  border-radius: 16px;
  padding: 32px;
}
.inner-requirements-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2a3d;
  margin: 0 0 20px;
}
.inner-requirements-list ul { list-style: none; padding: 0; margin: 0; }
.inner-requirements-list ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(131,210,243,0.1);
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
}
.inner-requirements-list ul li:last-child { border-bottom: none; }
.inner-requirements-list ul li i {
  color: #83d2f3;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nca-numbered-item { flex-direction: column; gap: 16px; }
  .nca-numbered-item:hover { transform: translateY(-4px); }
}

/* ── WHAT WE DO LAYOUT (sidebar + content) ──────── */
.wwd-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.wwd-sidebar {
  position: sticky;
  top: 100px;
}
.wwd-sidebar-card {
  background: #fff;
  border: 1px solid rgba(131,210,243,0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.wwd-sidebar-title {
  background: linear-gradient(135deg, #0a2a3d, #0e3f5c);
  color: #83d2f3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 18px;
}
.wwd-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-left: 3px solid transparent;
}
.wwd-sidebar-nav a:last-child { border-bottom: none; }
.wwd-sidebar-nav a:hover {
  background: #f8fbfe;
  color: #83d2f3;
  padding-left: 22px;
}
.wwd-sidebar-nav a.active {
  background: #f0f9ff;
  color: #0a2a3d;
  font-weight: 700;
  border-left-color: #83d2f3;
}
.wwd-sidebar-nav a i {
  font-size: 0.75rem;
  color: #83d2f3;
  width: 14px;
  text-align: center;
}

/* Content area */
.wwd-content { min-width: 0; }
.wwd-content p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.wwd-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a2a3d;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(131,210,243,0.25);
}
.wwd-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2a3d;
  margin: 24px 0 10px;
}
.wwd-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.wwd-content ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.75;
  border-bottom: 1px solid #f3f4f6;
}
.wwd-content ul li:last-child { border-bottom: none; }
.wwd-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #83d2f3;
}
.wwd-content ol {
  padding: 0;
  margin: 0 0 20px;
  counter-reset: wwd-counter;
  list-style: none;
}
.wwd-content ol li {
  counter-increment: wwd-counter;
  padding: 14px 14px 14px 58px;
  position: relative;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.75;
  background: #fff;
  border: 1px solid rgba(131,210,243,0.12);
  border-radius: 10px;
  margin-bottom: 10px;
}
.wwd-content ol li::before {
  content: counter(wwd-counter);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}
.wwd-content ol li strong { color: #0a2a3d; }
.wwd-content strong { color: #0a2a3d; }

/* Responsive */
@media (max-width: 1024px) {
  .wwd-layout { grid-template-columns: 220px 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .wwd-layout { grid-template-columns: 1fr; }
  .wwd-sidebar { position: static; }
  .wwd-sidebar-card { margin-bottom: 24px; }
}

/* ── TABLES ─────────────────────────────────────── */
.nca-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(131,210,243,0.2);
  margin: 24px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.nca-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.nca-table thead tr {
  background: linear-gradient(135deg, #0a2a3d, #0e3f5c);
  color: #fff;
}
.nca-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nca-table thead th:first-child { border-radius: 12px 0 0 0; }
.nca-table thead th:last-child  { border-radius: 0 12px 0 0; }
.nca-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.18s;
}
.nca-table tbody tr:last-child { border-bottom: none; }
.nca-table tbody tr:hover { background: #f8fbfe; }
.nca-table tbody td {
  padding: 14px 20px;
  color: #374151;
  vertical-align: top;
  line-height: 1.7;
}
.nca-table tbody td:first-child {
  font-weight: 700;
  color: #0a2a3d;
  white-space: nowrap;
  border-right: 1px solid #f3f4f6;
  background: #fafcfe;
}
.nca-table tbody td ul {
  list-style: none;
  padding: 0; margin: 0;
}
.nca-table tbody td ul li {
  padding: 4px 0 4px 16px;
  position: relative;
  border-bottom: none;
  font-size: 0.875rem;
}
.nca-table tbody td ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #83d2f3;
}

/* ── ACCORDION ───────────────────────────────────── */
.nca-accordion { margin: 24px 0; }
.nca-accordion-item {
  border: 1px solid rgba(131,210,243,0.2);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.nca-accordion-item.open {
  box-shadow: 0 6px 24px rgba(131,210,243,0.15);
  border-color: rgba(131,210,243,0.4);
}
.nca-accordion-btn {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s;
}
.nca-accordion-btn:hover { background: #f8fbfe; }
.nca-accordion-item.open .nca-accordion-btn { background: #f0f9ff; }
.nca-accordion-btn-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nca-accordion-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(131,210,243,0.15), rgba(131,210,243,0.05));
  border: 1.5px solid rgba(131,210,243,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #83d2f3;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.nca-accordion-item.open .nca-accordion-icon {
  background: linear-gradient(135deg, #83d2f3, #0e3f5c);
  color: #fff;
  border-color: #83d2f3;
}
.nca-accordion-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a2a3d;
}
.nca-accordion-chevron {
  color: #83d2f3;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nca-accordion-item.open .nca-accordion-chevron { transform: rotate(180deg); }
.nca-accordion-body {
  display: none;
  padding: 0 20px 20px;
  background: #fff;
}
.nca-accordion-item.open .nca-accordion-body { display: block; }
.nca-accordion-body p {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.nca-accordion-body ol,
.nca-accordion-body ul { margin-bottom: 14px; }

/* Contact box */
.nca-contact-box {
  background: #f8fbfe;
  border: 1px solid rgba(131,210,243,0.2);
  border-left: 4px solid #83d2f3;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-top: 32px;
}
.nca-contact-box h3 { font-size: 0.95rem; font-weight: 700; color: #0a2a3d; margin: 0 0 14px; }
.nca-contact-box p  { font-size: 0.875rem; color: #374151; margin: 4px 0; line-height: 1.7; }
.nca-contact-box a  { color: #83d2f3; font-weight: 600; text-decoration: none; }
.nca-contact-box a:hover { text-decoration: underline; }

/* ── DOCUMENT TABLE ──────────────────────────────── */
.nca-docs-table-wrap { margin-top: 32px; }
.nca-docs-search {
  position: relative;
  margin-bottom: 16px;
  max-width: 320px;
}
.nca-docs-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 1.5px solid rgba(131,210,243,0.3);
  border-radius: 8px;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.nca-docs-search input:focus {
  border-color: #83d2f3;
  box-shadow: 0 0 0 3px rgba(131,210,243,0.15);
}
.nca-docs-search i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: #83d2f3;
  font-size: 0.85rem;
}
.nca-status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
}
.nca-status-approved {
  background: #dcfce7;
  color: #16a34a;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #83d2f3;
  color: #0a2a3d;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-download:hover {
  background: #0a2a3d;
  color: #83d2f3;
  transform: translateY(-2px);
}
.nca-table tbody td:first-child { background: none; }

/* ── INITIATIVE EXTERNAL BUTTON ─────────────────── */
.btn-initiative-ext {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0a2a3d, #0e3f5c);
  color: #83d2f3;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  border: 2px solid rgba(131,210,243,0.25);
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-initiative-ext:hover {
  background: #83d2f3;
  color: #0a2a3d;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(131,210,243,0.3);
}
.btn-initiative-ext i { font-size: 0.9rem; }

/* ── NEWS SINGLE — FEATURED IMAGE HOVER ─────────── */
.post-feat-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  cursor: pointer;
}
.post-feat-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.post-feat-wrap:hover .post-feat-img { transform: scale(1.05); }
.post-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,42,61,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.post-feat-wrap:hover .post-feat-overlay { opacity: 1; }
.post-feat-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}
.post-feat-date i { color: #83d2f3; }
.post-feat-wrap:hover .post-feat-date { transform: translateY(0); }

/* ── NEWS LISTING PAGE ───────────────────────────── */
.news-filter-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.news-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  color: #374151;
  border: 1.5px solid #e5e7eb;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.news-filter-btn:hover {
  background: #f0f9ff;
  border-color: #83d2f3;
  color: #0a2a3d;
  transform: translateY(-1px);
}
.news-filter-btn.active {
  background: #0a2a3d;
  color: #83d2f3;
  border-color: #0a2a3d;
}
.news-filter-count {
  background: rgba(131,210,243,0.2);
  color: #83d2f3;
  border-radius: 100px;
  padding: 1px 7px;
  font-size: 0.72rem;
  font-weight: 700;
}
.news-filter-btn.active .news-filter-count {
  background: rgba(131,210,243,0.15);
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card-full {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.news-card-full:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.news-card-img-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.news-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.news-card-full:hover .news-card-img { transform: scale(1.05); }
.news-card-placeholder {
  height: 210px;
  background: linear-gradient(135deg, #0a2a3d, #0e3f5c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(131,210,243,0.2);
}
.news-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10,42,61,0.85);
  color: #83d2f3;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}
.news-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 10px;
}
.news-card-meta i { color: #83d2f3; }
.news-card-title {
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 10px;
  flex: 1;
}
.news-card-title a {
  color: #0a2a3d;
  text-decoration: none;
  transition: color 0.2s;
}
.news-card-title a:hover { color: #83d2f3; }
.news-card-excerpt {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 16px;
}
.news-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #83d2f3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.news-card-link:hover { gap: 10px; }

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.news-page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  background: #fff;
  color: #374151;
  border: 1.5px solid #e5e7eb;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.news-page-btn:hover { background: #f0f9ff; border-color: #83d2f3; color: #0a2a3d; }
.news-page-btn.active { background: #0a2a3d; color: #83d2f3; border-color: #0a2a3d; }

/* Responsive */
@media (max-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .news-grid { grid-template-columns: 1fr; } }

/* ============================================================
   RESOURCE DOCUMENT TABLE  (used across all resources pages)
   ============================================================ */
.doc-section { margin-bottom: 40px; }
.doc-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.doc-section-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: #0a2a3d;
    display: flex; align-items: center; justify-content: center;
    color: #83d2f3; font-size: .9rem; flex-shrink: 0;
}
.doc-section-head h2 {
    font-size: 1.1rem; font-weight: 700;
    color: #0a2a3d; margin: 0;
}
.doc-section-desc {
    font-size: .91rem; color: #4b5563;
    line-height: 1.7; margin: 0 0 18px;
}

/* Table card */
.doc-table-card {
    background: #fff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(10,42,61,.07);
}
.doc-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
    min-width: 400px;
}
.doc-table thead tr th {
    background: #0a2a3d;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 13px 20px;
    text-align: left;
    white-space: nowrap;
}
.doc-table thead tr th:last-child { text-align: center; width: 140px; }
.doc-table tbody tr { transition: background .12s; }
.doc-table tbody tr:nth-child(even) { background: #f8fbfd; }
.doc-table tbody tr:hover { background: #e8f4fb; }
.doc-table tbody td {
    padding: 14px 20px;
    color: #1f2937;
    border-bottom: 1px solid #f0f4f8;
    vertical-align: middle;
}
.doc-table tbody tr:last-child td { border-bottom: none; }
.doc-table .doc-num {
    color: #9ca3af;
    font-size: .8rem;
    font-weight: 600;
    width: 44px;
}
.doc-table .doc-name { font-weight: 500; line-height: 1.5; }
.doc-table .doc-name small {
    display: block;
    font-size: .76rem;
    color: #6b7280;
    font-weight: 400;
    margin-top: 2px;
}
.doc-table .doc-dl { text-align: center; }
.doc-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: #f0f7fc;
    color: #0a2a3d;
    border: 1.5px solid #c7e8f8;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .18s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}
.doc-dl-btn:hover {
    background: #0a2a3d;
    color: #83d2f3;
    border-color: #0a2a3d;
}
.doc-dl-btn i { font-size: .8rem; }

/* Empty state */
.doc-empty {
    padding: 48px 20px;
    text-align: center;
    color: #9ca3af;
    font-size: .88rem;
}
.doc-empty i { font-size: 2rem; margin-bottom: 10px; display: block; opacity: .4; }

/* Mobile: stack layout */
@media (max-width: 600px) {
    .doc-table { min-width: unset; }
    .doc-table thead { display: none; }
    .doc-table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 14px 16px;
        border-bottom: 1px solid #f0f4f8;
        background: #fff !important;
    }
    .doc-table tbody tr:nth-child(even) { background: #f8fbfd !important; }
    .doc-table tbody td {
        padding: 2px 0;
        border: none;
        font-size: .84rem;
    }
    .doc-table .doc-num { color: #83d2f3; font-size: .72rem; }
    .doc-table .doc-dl { text-align: left; padding-top: 10px; }
    .doc-dl-btn { padding: 8px 18px; }
}

/* ============================================================
   VIEW + DOWNLOAD ACTION BUTTONS (shared across resource pages)
   ============================================================ */
.doc-actions{display:inline-flex;align-items:center;gap:6px;flex-wrap:wrap;justify-content:center}
.doc-view-btn{display:inline-flex;align-items:center;gap:6px;padding:6px 13px;background:#f0f7fc;color:#0a2a3d;border:1.5px solid #c7e8f8;border-radius:8px;font-size:.75rem;font-weight:700;text-decoration:none;transition:all .16s;white-space:nowrap;font-family:'Poppins',sans-serif}
.doc-view-btn:hover{background:#83d2f3;color:#0a2a3d;border-color:#83d2f3}
.doc-dl-btn{display:inline-flex;align-items:center;gap:6px;padding:6px 13px;background:#0a2a3d;color:#83d2f3;border:1.5px solid #0a2a3d;border-radius:8px;font-size:.75rem;font-weight:700;text-decoration:none;transition:all .16s;white-space:nowrap;font-family:'Poppins',sans-serif}
.doc-dl-btn:hover{background:#083048;color:#fff;border-color:#083048}
@media(max-width:500px){.doc-actions{flex-direction:column;width:100%}.doc-view-btn,.doc-dl-btn{width:100%;justify-content:center}}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Use, Accessibility)
   ============================================================ */
.lp-wrap{max-width:780px;margin:0 auto}

/* Meta strip */
.lp-meta{display:flex;gap:20px;flex-wrap:wrap;align-items:center;margin-bottom:24px;padding-bottom:20px;border-bottom:2px solid #e5eaf0}
.lp-meta span{display:inline-flex;align-items:center;gap:8px;font-size:.80rem;color:#6b7280;font-weight:600}
.lp-meta i{color:#83d2f3}

/* Intro paragraph */
.lp-intro{background:#fff;border:1px solid #e5eaf0;border-left:4px solid #83d2f3;border-radius:12px;padding:20px 22px;margin-bottom:36px;box-shadow:0 2px 12px rgba(10,42,61,.05)}
.lp-intro p{font-size:.95rem;color:#374151;line-height:1.8;margin:0}

/* Sections */
.lp-section{margin-bottom:36px}
.lp-section h2{display:flex;align-items:center;gap:14px;font-size:1.05rem;font-weight:700;color:#0a2a3d;margin:0 0 12px;padding-bottom:10px;border-bottom:1px solid #e5eaf0}
.lp-num{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:7px;background:#0a2a3d;color:#83d2f3;font-size:.72rem;font-weight:800;flex-shrink:0}
.lp-section p{font-size:.91rem;color:#374151;line-height:1.8;margin:0}
.lp-list{margin:0;padding-left:0;list-style:none;display:flex;flex-direction:column;gap:10px}
.lp-list li{display:flex;align-items:flex-start;gap:10px;font-size:.91rem;color:#374151;line-height:1.6}
.lp-list li::before{content:'';width:7px;height:7px;border-radius:50%;background:#83d2f3;flex-shrink:0;margin-top:7px}

/* Contact box */
.lp-contact-box{display:flex;flex-wrap:wrap;gap:16px;background:#f8fbfd;border:1px solid #e5eaf0;border-radius:10px;padding:16px 20px;margin-top:14px}
.lp-contact-box span{display:inline-flex;align-items:center;gap:8px;font-size:.85rem;color:#0a2a3d;font-weight:600}
.lp-contact-box i{color:#83d2f3;width:14px}

@media(max-width:600px){
  .lp-meta{gap:12px}
  .lp-section h2{font-size:.95rem}
  .lp-contact-box{flex-direction:column;gap:10px}
}

/* ============================================================
   ABOUT PAGES — content blocks inside wwd-content
   ============================================================ */
.about-block{padding:28px 0;border-bottom:1px solid #f0f4f8}
.about-block:last-child{border-bottom:none;padding-bottom:0}
.about-block-alt{background:transparent}

/* ── News Single responsive layout ── */
.ns-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .ns-layout { grid-template-columns: 1fr; gap: 0; }
  .ns-sidebar { display: none; }
}