/* ESDC Design System — modern professional skill-development UI (2026) */

:root {
  --navy: #0b2a4a;
  --navy-deep: #071c33;
  --navy-mid: #16457a;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7c14;
  --green: #178a42;
  --green-bright: #1fb356;
  --green-soft: #e9f7ef;
  --cyan: #148fc7;
  --cyan-soft: #e7f5fb;
  --teal: #0c8a8a;
  --orange: #d97706;
  --coral: #c44536;
  --purple: #5b4a9e;
  --brown: #7a5c3e;
  --ink: #152033;
  --muted: #5d6b7c;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --bg: #eaf1f8;
  --bg-elevated: #ffffff;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(7, 28, 51, 0.04);
  --shadow: 0 10px 30px rgba(7, 28, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 28, 51, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --bg-mint: #e8f5ef;
  --bg-sand: #f7f1e4;
  --bg-sky: #e6f3fb;
  --bg-lavender: #eef0f8;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(1000px 520px at 8% -5%, rgba(20, 143, 199, 0.16), transparent 55%),
    radial-gradient(900px 480px at 95% 8%, rgba(23, 138, 66, 0.12), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(201, 162, 39, 0.1), transparent 55%),
    linear-gradient(180deg, #e4eef8 0%, #eaf5f0 45%, #f3eee3 100%);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; }

/* ---------- Top bar ---------- */
.top-bar {
  background: linear-gradient(90deg, var(--navy-deep), #0d3558 60%, #0a4a4a);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
}

.top-bar a { color: rgba(255, 255, 255, 0.88); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar .sep { color: var(--gold); margin: 0 0.45rem; opacity: 0.85; }

/* ---------- Navbar ---------- */
.navbar-esdc {
  /*background: linear-gradient(180deg, rgba(232, 242, 252, 0.92), rgba(255, 255, 255, 0.88));*/
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(20, 143, 199, 0.12);
  /*padding: 0.6rem 0;*/
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
	background: #ffffff;
}

.navbar-esdc.scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 239, 0.92));
  box-shadow: var(--shadow);
}

.navbar-brand { padding: 0; }
.navbar-brand img {
  height:80px;
  width: auto;
  transition: transform 0.35s var(--ease);
}
.navbar-brand:hover img { transform: scale(1.02); }

.nav-link {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--navy) !important;
  padding: 0.55rem 0.72rem !important;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.22rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover { background: rgba(11, 42, 74, 0.04); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-home { color: var(--navy) !important; }
.nav-about { color: var(--green) !important; }
.nav-skill { color: var(--teal) !important; }
.nav-prog { color: #4a3d8a !important; }
.nav-emp { color: var(--orange) !important; }
.nav-part { color: var(--coral) !important; }
.nav-news { color: var(--brown) !important; }
.nav-careers { color: var(--green) !important; }
.nav-contact { color: var(--cyan) !important; }

.nav-icon { font-size: 1.12rem; padding: 0.55rem !important; }
.nav-icon::after { left: 0.55rem !important; right: 0.55rem !important; }

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 0.55rem;
  margin-top: 0.45rem !important;
  animation: dropdownIn 0.22s var(--ease);
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.dropdown-item {
  border-radius: 9px;
  font-weight: 550;
  font-size: 0.9rem;
  padding: 0.55rem 0.9rem;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s var(--ease);
}

.dropdown-item:hover {
  background: linear-gradient(90deg, var(--cyan-soft), transparent);
  color: var(--navy);
  transform: translateX(2px);
}

.dropdown-accent-green { border-top: 3px solid var(--green); }
.dropdown-accent-teal { border-top: 3px solid var(--teal); }
.dropdown-accent-purple { border-top: 3px solid #4a3d8a; }
.dropdown-accent-orange { border-top: 3px solid var(--orange); }
.dropdown-accent-coral { border-top: 3px solid var(--coral); }
.dropdown-mega { border-radius: 16px; }

.btn-cta-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep) !important;
  font-weight: 750;
  border: none;
  border-radius: 12px;
  padding: 0.58rem 1.15rem;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
}

.btn-cta-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: var(--navy-deep) !important;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}

/* ---------- Buttons ---------- */
.btn-navy, .btn-green, .btn-orange, .btn-outline-navy, .btn-outline-gold {
  font-weight: 700;
  border-radius: 12px;
  padding: 0.78rem 1.45rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-navy { background: var(--navy); color: #fff; border: none; }
.btn-navy:hover { background: var(--navy-mid); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-green { background: var(--green); color: #fff; border: none; }
.btn-green:hover { background: var(--green-bright); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(23, 138, 66, 0.25); }

.btn-orange { background: var(--orange); color: #fff; border: none; }
.btn-orange:hover { filter: brightness(1.06); color: #fff; transform: translateY(-2px); }

.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color:var(--gold);;
  background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-deep); }

.hero--photo {
  background: var(--navy-deep);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(7, 28, 51, 0.94) 0%, rgba(7, 28, 51, 0.78) 42%, rgba(7, 28, 51, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 28, 51, 0.5), transparent 50%);
}

.hero--photo .hero-circuit,
.hero--photo .container {
  z-index: 2;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hero-side-photo {
  margin: 0;
  width: min(100%, 380px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-side-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.hero-orb--compact {
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin-top: -2.5rem;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 4.25rem 0 4.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(20, 143, 199, 0.38), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 72%, rgba(201, 162, 39, 0.22), transparent 50%),
    radial-gradient(ellipse 40% 35% at 70% 12%, rgba(23, 138, 66, 0.2), transparent 45%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 48%, #123a63 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 40% 40%, black 20%, transparent 72%);
  pointer-events: none;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

.hero-circuit { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.hero-circuit .trace { position: absolute; height: 2px; border-radius: 999px; background: currentColor; opacity: 0.55; }
.hero-circuit .dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; opacity: 0.85; }

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.35); opacity: 1; }
}

.hero .container { position: relative; z-index: 2; }

.hero-brand {
  max-width: 400px;
  margin-bottom: 1.6rem;
  animation: fadeIn 0.55s var(--ease) both;
}

.hero-brand img {
  width: min(100%, 360px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  /*padding: 0.85rem 1.1rem;*/
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  max-width: 16ch;
  margin-bottom: 1.1rem;
  animation: fadeIn 0.55s 0.08s var(--ease) both;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  max-width: 38rem;
  animation: fadeIn 0.55s 0.12s var(--ease) both;
}

.hero-tag {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  color: var(--gold-light);
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 1.35rem 0 1.85rem;
  animation: fadeIn 0.55s 0.16s var(--ease) both;
}

.hero-tag .pipe { color: rgba(255, 255, 255, 0.3); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: fadeIn 0.55s 0.2s var(--ease) both;
}

.hero-side { animation: fadeIn 0.6s 0.15s var(--ease) both; }

.hero-orb {
  width: min(100%, 400px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(201, 162, 39, 0.4), transparent 42%),
    radial-gradient(circle at 72% 68%, rgba(23, 138, 66, 0.38), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(20, 143, 199, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  position: relative;
  animation: none;
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.12);
}

.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, 0.4);
}

.hero-orb::before { inset: 11%; animation: none; }
.hero-orb::after { inset: 23%; border-color: rgba(20, 143, 199, 0.35); animation: none; }

.hero-orb-inner { text-align: center; z-index: 1; padding: 1.5rem; }
.hero-orb-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-orb-inner span { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.12); }
  50% { box-shadow: 0 0 80px rgba(20, 143, 199, 0.22); }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-tight { padding: 3.25rem 0; }
.section-title { margin-bottom: 0.45rem; font-size: clamp(1.55rem, 2.6vw, 2.15rem); }
.section-sub { color: var(--muted); max-width: 40rem; margin-bottom: 2.4rem; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.7rem;
}

.section-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.divider-gold {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--cyan));
  border-radius: 999px;
  margin: 0.9rem 0 1.35rem;
}

.bg-white-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(226, 240, 250, 0.7) 40%, rgba(232, 245, 239, 0.65));
  backdrop-filter: blur(6px);
}
.bg-soft {
  background:
    radial-gradient(700px 280px at 10% 20%, rgba(20, 143, 199, 0.1), transparent 60%),
    radial-gradient(600px 260px at 90% 80%, rgba(23, 138, 66, 0.08), transparent 55%),
    transparent;
}

/* ---------- Offer pillars ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 1199px) { .offer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }

.offer-item {
  text-align: center;
  padding: 1.5rem 0.9rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, #ffffff, #eef5fc);
  border: 1px solid rgba(20, 143, 199, 0.14);
  border-top: 3px solid var(--navy);
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.offer-item:nth-child(2) { background: linear-gradient(165deg, #ffffff, #e6f6ed); border-top-color: var(--green); }
.offer-item:nth-child(3) { background: linear-gradient(165deg, #ffffff, #ebe6f8); border-top-color: #5b4a9e; }
.offer-item:nth-child(4) { background: linear-gradient(165deg, #ffffff, #fff0e4); border-top-color: var(--orange); }
.offer-item:nth-child(5) { background: linear-gradient(165deg, #ffffff, #e4f5f5); border-top-color: var(--teal); }
.offer-item:nth-child(6) { background: linear-gradient(165deg, #ffffff, #fdeceb); border-top-color: var(--coral); }

.offer-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(7, 28, 51, 0.12);
}

.offer-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 1.45rem;
  position: relative;
  overflow: hidden;
}

.offer-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 55%);
}

.offer-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.offer-item p { font-size: 0.84rem; color: var(--muted); margin: 0; line-height: 1.5; }

.bg-skill { background: linear-gradient(145deg, var(--navy), var(--navy-mid)); }
.bg-cert { background: linear-gradient(145deg, var(--green), #159a4a); }
.bg-emp { background: linear-gradient(145deg, #4a3d8a, #6a58b8); }
.bg-part { background: linear-gradient(145deg, var(--orange), #e8911a); }
.bg-digital { background: linear-gradient(145deg, var(--teal), #12a0a0); }
.bg-nation { background: linear-gradient(145deg, var(--coral), #d45545); }

/* ---------- Why / steps ---------- */
.why-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 143, 199, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 242, 252, 0.9));
  box-shadow: 0 8px 22px rgba(7, 28, 51, 0.05);
  margin-bottom: 0.75rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.why-item:nth-child(even) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 245, 239, 0.9));
  border-color: rgba(23, 138, 66, 0.14);
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(7, 28, 51, 0.09);
}

.why-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.why-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.why-item p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- Sector / chips ---------- */
.sector-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(145deg, #ffffff, #e8f1fb);
  border: 1px solid rgba(22, 69, 122, 0.16);
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(7, 28, 51, 0.06);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.sector-chip:nth-child(9n + 2) { background: linear-gradient(145deg, #ffffff, #e2f6ea); border-color: rgba(23, 138, 66, 0.18); }
.sector-chip:nth-child(9n + 3) { background: linear-gradient(145deg, #ffffff, #ddf2f8); border-color: rgba(20, 143, 199, 0.2); }
.sector-chip:nth-child(9n + 4) { background: linear-gradient(145deg, #ffffff, #f8efd2); border-color: rgba(201, 162, 39, 0.28); }
.sector-chip:nth-child(9n + 5) { background: linear-gradient(145deg, #ffffff, #e0f4f4); border-color: rgba(12, 138, 138, 0.2); }
.sector-chip:nth-child(9n + 6) { background: linear-gradient(145deg, #ffffff, #fde8d8); border-color: rgba(217, 119, 6, 0.22); }
.sector-chip:nth-child(9n + 7) { background: linear-gradient(145deg, #ffffff, #ebe6f8); border-color: rgba(91, 74, 158, 0.2); }
.sector-chip:nth-child(9n + 8) { background: linear-gradient(145deg, #ffffff, #fdeceb); border-color: rgba(217, 94, 82, 0.2); }
.sector-chip:nth-child(9n + 9) { background: linear-gradient(145deg, #ffffff, #e8f5ef); border-color: rgba(23, 138, 66, 0.2); }

.sector-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(7, 28, 51, 0.12);
  color: var(--navy);
}

.sector-chip i { color: inherit; font-size: 1.1rem; opacity: 0.9; }

/* ---------- Stats ---------- */
.impact-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid) 55%, #0d4f4f);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.impact-band::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 48px solid rgba(201, 162, 39, 0.1);
}

.stat-item { text-align: center; padding: 1rem; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
}
.stat-item .label { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin-top: 0.4rem; }

/* ---------- Programme tiles ---------- */
.prog-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 1.55rem;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  border-radius: 0 0 var(--radius) var(--radius);
}

.prog-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.prog-tile.t-green { border-top-color: var(--green); }
.prog-tile.t-cyan { border-top-color: var(--cyan); }
.prog-tile.t-orange { border-top-color: var(--orange); }
.prog-tile.t-teal { border-top-color: var(--teal); }
.prog-tile.t-coral { border-top-color: var(--coral); }
.prog-tile.t-purple { border-top-color: #4a3d8a; }

.prog-tile h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.prog-tile p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.prog-tile .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #fff;
}

/* ---------- Commitment ---------- */
.commitment {
  background: linear-gradient(105deg, var(--navy-deep), #0d3558 50%, #0a4540);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.commitment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.08), transparent);
  animation: none;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-30%); }
  50% { transform: translateX(30%); }
}

.commitment h2 { color: #fff; text-align: center; margin-bottom: 2rem; position: relative; }
.commit-item { text-align: center; padding: 1rem; position: relative; }
.commit-item i {
  font-size: 1.85rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
  transition: transform 0.35s var(--ease);
}
.commit-item:hover i { transform: translateY(-4px) scale(1.08); }
.commit-item span { font-weight: 700; font-size: 0.95rem; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes heroKenBurns {
  from { transform: none; }
  to { transform: none; }
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 28, 51, 0.92) 0%, rgba(7, 28, 51, 0.72) 48%, rgba(7, 28, 51, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 28, 51, 0.55), transparent 55%);
  pointer-events: none;
}

.page-hero.tone-about .page-hero__shade {
  background:
    linear-gradient(115deg, rgba(10, 58, 36, 0.92) 0%, rgba(23, 138, 66, 0.55) 55%, rgba(7, 28, 51, 0.35) 100%);
}
.page-hero.tone-skill .page-hero__shade {
  background:
    linear-gradient(115deg, rgba(6, 69, 69, 0.92) 0%, rgba(12, 138, 138, 0.55) 60%, rgba(7, 28, 51, 0.35) 100%);
}
.page-hero.tone-emp .page-hero__shade {
  background:
    linear-gradient(115deg, rgba(92, 46, 8, 0.9) 0%, rgba(217, 119, 6, 0.5) 55%, rgba(7, 28, 51, 0.4) 100%);
}
.page-hero.tone-part .page-hero__shade {
  background:
    linear-gradient(115deg, rgba(92, 28, 22, 0.9) 0%, rgba(196, 69, 54, 0.5) 55%, rgba(7, 28, 51, 0.4) 100%);
}
.page-hero.tone-prog .page-hero__shade {
  background:
    linear-gradient(115deg, rgba(7, 28, 51, 0.92) 0%, rgba(13, 92, 92, 0.45) 55%, rgba(20, 143, 199, 0.25) 100%);
}
.page-hero.tone-cyan .page-hero__shade {
  background:
    linear-gradient(115deg, rgba(10, 58, 85, 0.92) 0%, rgba(20, 143, 199, 0.5) 60%, rgba(7, 28, 51, 0.35) 100%);
}
.page-hero.tone-news .page-hero__shade {
  background:
    linear-gradient(115deg, rgba(61, 42, 28, 0.92) 0%, rgba(122, 92, 62, 0.55) 60%, rgba(7, 28, 51, 0.4) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 0.5rem;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  max-width: 18ch;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
  font-size: 1.08rem;
}

/* Content featured photograph */
.content-media {
  margin: 0 0 1.75rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 143, 199, 0.14);
  background: #0b2a4a;
  box-shadow: 0 16px 40px rgba(7, 28, 51, 0.14);
  position: relative;
}

.content-media img {
  width: 100%;
  height: clamp(200px, 32vw, 340px);
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.content-media:hover img {
  transform: scale(1.03);
}

.content-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.15rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(transparent, rgba(7, 28, 51, 0.85));
}

/* Home / section photography */
.media-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .media-split { grid-template-columns: 1fr; }
}

.media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-lg);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.media-frame__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-weight: 750;
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.media-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 360px;
}

.media-mosaic figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.media-mosaic figure:first-child {
  grid-row: 1 / span 2;
}

.media-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform 0.6s var(--ease);
}

.media-mosaic figure:hover img {
  transform: scale(1.04);
}

.prog-tile--photo {
  padding: 0;
  overflow: hidden;
  border-top: none;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.prog-tile--photo .prog-photo {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.prog-tile--photo .prog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.prog-tile--photo:hover .prog-photo img {
  transform: scale(1.06);
}

.prog-tile--photo .prog-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(7, 28, 51, 0.35));
}

.prog-tile--photo .prog-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 991px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

.gallery-strip figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-strip figure:hover img {
  transform: scale(1.05);
}

.gallery-strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.75rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(7, 28, 51, 0.8));
}

/* Keep older page-hero heading rules from conflicting — shade handles overlay */

.page-hero .container { position: relative; z-index: 2; }
.breadcrumb-nav {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.breadcrumb-nav a { color: var(--gold-light); }
.breadcrumb-nav a:hover { color: #fff; }

/* ---------- Page layout (TOC + content) ---------- */
.page-content-section {
  padding-top: 2.75rem;
  padding-bottom: 4.5rem;
  background:
    linear-gradient(180deg, rgba(228, 238, 248, 0.95) 0%, rgba(232, 245, 239, 0.9) 50%, rgba(243, 238, 227, 0.95) 100%);
  position: relative;
}

.page-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(11, 42, 74, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
  pointer-events: none;
}

.page-content-section > .container {
  position: relative;
  z-index: 1;
}

.page-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-toc { display: none !important; }
}

.page-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(232, 242, 252, 0.95));
  border: 1px solid rgba(20, 143, 199, 0.12);
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.06);
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow: auto;
}

.page-toc .toc-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.page-toc a {
  display: block;
  font-size: 0.84rem;
  font-weight: 550;
  color: var(--ink);
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border-left: 2px solid transparent;
  margin-bottom: 0.15rem;
  line-height: 1.35;
}

.page-toc a:hover,
.page-toc a.active {
  background: var(--cyan-soft);
  color: var(--navy);
  border-left-color: var(--cyan);
}

.page-toc a.toc-h3 { padding-left: 1rem; font-weight: 500; font-size: 0.8rem; color: var(--muted); }

/* ---------- Rich content body ---------- */
.content-body {
  max-width: none;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 252, 255, 0.98) 55%, rgba(255, 252, 245, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.65rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 50px rgba(7, 28, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.content-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--navy), var(--teal), var(--gold), var(--green));
}

.content-body > p:first-of-type {
  font-size: 1.12rem;
  color: var(--navy);
  font-weight: 500;
  border-left: 4px solid var(--gold);
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  margin-bottom: 1.75rem;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12), transparent);
  border-radius: 0 14px 14px 0;
}

.content-body p {
  color: #243447;
  margin-bottom: 1.05rem;
}

.content-block {
  margin: 2.4rem 0 1.6rem;
  padding: 1.15rem 1.15rem 0.35rem;
  scroll-margin-top: calc(var(--header-h) + 24px);
  background: linear-gradient(135deg, rgba(20, 143, 199, 0.06), rgba(23, 138, 66, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(20, 143, 199, 0.1);
}

.content-block__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.content-block__index {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.45rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--green));
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.content-body .section-title {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  margin: 0;
  letter-spacing: -0.03em;
}

.content-body h3,
.content-subhead {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 750;
  color: var(--navy);
  margin: 1.75rem 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  scroll-margin-top: calc(var(--header-h) + 24px);
  letter-spacing: -0.02em;
}

.content-subhead::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(12, 138, 138, 0.15);
}

/* Colorful topic cards (gov / skill-portal style) */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.chip-grid li {
  margin: 0;
  padding: 1.05rem 1.05rem 1.05rem 1.1rem;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  border: 1px solid transparent;
  box-shadow: 0 8px 22px rgba(7, 28, 51, 0.06);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.chip-grid li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.55);
}

.chip-grid li::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.chip-grid li:nth-child(6n + 1) {
  background: linear-gradient(145deg, #ffffff, #dce8f8);
  border-color: rgba(22, 69, 122, 0.18);
  border-top: 3px solid var(--navy);
  color: #0b2a4a;
}
.chip-grid li:nth-child(6n + 2) {
  background: linear-gradient(145deg, #ffffff, #d8f3e4);
  border-color: rgba(23, 138, 66, 0.18);
  border-top: 3px solid var(--green);
  color: #0f5c2c;
}
.chip-grid li:nth-child(6n + 3) {
  background: linear-gradient(145deg, #ffffff, #d7f0f8);
  border-color: rgba(20, 143, 199, 0.2);
  border-top: 3px solid var(--cyan);
  color: #0a5f86;
}
.chip-grid li:nth-child(6n + 4) {
  background: linear-gradient(145deg, #ffffff, #f8efd2);
  border-color: rgba(201, 162, 39, 0.28);
  border-top: 3px solid var(--gold);
  color: #7a5f0c;
}
.chip-grid li:nth-child(6n + 5) {
  background: linear-gradient(145deg, #ffffff, #d9f3f3);
  border-color: rgba(12, 138, 138, 0.2);
  border-top: 3px solid var(--teal);
  color: #0a5c5c;
}
.chip-grid li:nth-child(6n + 6) {
  background: linear-gradient(145deg, #ffffff, #fde8d8);
  border-color: rgba(217, 119, 6, 0.22);
  border-top: 3px solid var(--orange);
  color: #8a4b05;
}

.chip-grid li:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(7, 28, 51, 0.12);
}

.chip-grid.tone-gold li::before,
.chip-grid.tone-cyan li::before,
.chip-grid.tone-orange li::before {
  /* keep nth-child colors; override only if needed */
}

/* Role / career grid */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.role-grid li {
  margin: 0;
  padding: 1.15rem 1.15rem 1.15rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #ebe4fb);
  border: 1px solid rgba(91, 74, 158, 0.18);
  border-left: 4px solid #5b4a9e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: #3a2f6b;
  box-shadow: 0 8px 22px rgba(7, 28, 51, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.role-grid li:nth-child(3n + 2) {
  background: linear-gradient(145deg, #ffffff, #dceefc);
  border-left-color: var(--cyan);
  color: #0a5070;
}
.role-grid li:nth-child(3n + 3) {
  background: linear-gradient(145deg, #ffffff, #e2f6ea);
  border-left-color: var(--green);
  color: #145c30;
}

.role-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 28, 51, 0.11);
}

/* Facility grid */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.facility-grid li {
  margin: 0;
  padding: 1.15rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #dff5ea);
  border: 1px solid rgba(23, 138, 66, 0.18);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #145c30;
  box-shadow: 0 8px 22px rgba(7, 28, 51, 0.06);
  transition: transform 0.3s var(--ease);
}

.facility-grid li:nth-child(even) {
  background: linear-gradient(145deg, #ffffff, #e0f2fb);
  border-color: rgba(20, 143, 199, 0.18);
  color: #0a5f86;
}

.facility-grid li::before {
  content: "▣ ";
  opacity: 0.7;
  font-size: 0.8rem;
}

.facility-grid li:hover { transform: translateY(-4px); }

/* Checklist */
.content-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.content-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  margin: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(20, 143, 199, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(20, 143, 199, 0.12);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 500;
  transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.content-list li:hover {
  border-color: rgba(20, 143, 199, 0.35);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(7, 28, 51, 0.06);
}

.bg-white-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(226, 240, 250, 0.72) 45%, rgba(232, 245, 239, 0.68));
}

.bg-soft {
  background:
    radial-gradient(700px 280px at 10% 20%, rgba(20, 143, 199, 0.1), transparent 60%),
    radial-gradient(600px 260px at 90% 80%, rgba(23, 138, 66, 0.08), transparent 55%),
    transparent;
}

.panel {
  background: linear-gradient(160deg, #ffffff, #eef5fc);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(20, 143, 199, 0.12);
  height: 100%;
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.06);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease);
}

/* Scheme / mission banners (e.g. DDU-GKY, PMKVY) */
.scheme-banner {
  display: grid;
  gap: 0.35rem;
  margin: 1.5rem 0 1.25rem;
  padding: 1.25rem 1.35rem 1.25rem 1.45rem;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(11, 42, 74, 0.94), rgba(12, 90, 110, 0.9)),
    linear-gradient(90deg, var(--navy), var(--teal));
  color: #fff;
  box-shadow: 0 14px 36px rgba(7, 28, 51, 0.16);
  position: relative;
  overflow: hidden;
}

.scheme-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-light), var(--green));
}

.scheme-banner::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  pointer-events: none;
}

.scheme-banner__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
}

.scheme-banner__tagline {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  border: none !important;
  padding: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.scheme-banner--green {
  background: linear-gradient(120deg, #0d5c32, #178a42 60%, #0c8a8a);
}
.scheme-banner--cyan {
  background: linear-gradient(120deg, #0a5070, #148fc7 55%, #0c8a8a);
}
.scheme-banner--gold {
  background: linear-gradient(120deg, #5c4a12, #9a7a1c 50%, #178a42);
}

.chip-grid li .chip-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  color: inherit;
}

.chip-grid li.has-ico::before { display: none; }

/* Keep process-rail etc. below */

/* Process / methodology steps */
.process-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}

.process-step {
  position: relative;
  padding: 1.35rem 1.2rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(155deg, #ffffff, #e8f2fb);
  border: 1px solid rgba(20, 143, 199, 0.14);
  border-top: 3px solid var(--cyan);
  box-shadow: 0 8px 22px rgba(7, 28, 51, 0.06);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.process-step:nth-child(2) { background: linear-gradient(155deg, #ffffff, #e4f5ec); border-top-color: var(--green); }
.process-step:nth-child(3) { background: linear-gradient(155deg, #ffffff, #f7efd4); border-top-color: var(--gold); }
.process-step:nth-child(4) { background: linear-gradient(155deg, #ffffff, #e4f4f4); border-top-color: var(--teal); }
.process-step:nth-child(5) { background: linear-gradient(155deg, #ffffff, #fde8d8); border-top-color: var(--orange); }
.process-step:nth-child(6) { background: linear-gradient(155deg, #ffffff, #ebe6f8); border-top-color: #5b4a9e; }

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 28, 51, 0.1);
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  right: 0.75rem;
  top: 0.35rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(11, 42, 74, 0.06);
  line-height: 1;
}

.process-step h4 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  position: relative;
}

.process-step p {
  margin: 0 !important;
  font-size: 0.88rem;
  color: var(--muted);
  border: none !important;
  padding: 0 !important;
}

/* ---------- Career journey cards (Learn → Grow) ---------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 991px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .journey-grid { grid-template-columns: 1fr; }
}

.journey-card {
  position: relative;
  padding: 1.45rem 1.25rem 1.3rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #eaf3fb 100%);
  border: 1px solid rgba(20, 143, 199, 0.14);
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.07);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  min-height: 180px;
}

.journey-card:nth-child(2) { background: linear-gradient(165deg, #ffffff, #e4f5ec); border-color: rgba(23, 138, 66, 0.16); }
.journey-card:nth-child(3) { background: linear-gradient(165deg, #ffffff, #f7efd4); border-color: rgba(201, 162, 39, 0.22); }
.journey-card:nth-child(4) { background: linear-gradient(165deg, #ffffff, #ebe6f8); border-color: rgba(91, 74, 158, 0.18); }
.journey-card:nth-child(5) { background: linear-gradient(165deg, #ffffff, #fde8d8); border-color: rgba(217, 119, 6, 0.18); }
.journey-card:nth-child(6) { background: linear-gradient(165deg, #ffffff, #fdeceb); border-color: rgba(217, 94, 82, 0.18); }

.journey-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 143, 199, 0.12), transparent 70%);
  pointer-events: none;
}

.journey-card:hover {
  border-color: rgba(20, 143, 199, 0.35);
  box-shadow: var(--shadow);
}

.journey-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--cyan));
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  transition: transform 0.35s var(--ease);
}

.journey-card:hover .journey-card__icon {
  transform: scale(1.08) rotate(-4deg);
}

.journey-card:nth-child(2) .journey-card__icon { background: linear-gradient(145deg, var(--teal), var(--green)); }
.journey-card:nth-child(3) .journey-card__icon { background: linear-gradient(145deg, var(--gold-dark), var(--gold)); color: var(--navy-deep); }
.journey-card:nth-child(4) .journey-card__icon { background: linear-gradient(145deg, #4a3d8a, #6a58b8); }
.journey-card:nth-child(5) .journey-card__icon { background: linear-gradient(145deg, var(--orange), #e8911a); }
.journey-card:nth-child(6) .journey-card__icon { background: linear-gradient(145deg, var(--coral), #d45545); }

.journey-card__step {
  position: absolute;
  right: 0.9rem;
  top: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(11, 42, 74, 0.07);
  line-height: 1;
}

.journey-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.journey-card p {
  margin: 0 !important;
  font-size: 0.88rem;
  color: var(--muted);
  border: none !important;
  padding: 0 !important;
  line-height: 1.5;
}

/* Feature pairs (Employer Services + desc, etc.) */
.feature-pair-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}

@media (max-width: 767px) {
  .feature-pair-grid { grid-template-columns: 1fr; }
}

.feature-pair {
  padding: 1.3rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #eaf4fc);
  border: 1px solid rgba(12, 138, 138, 0.14);
  border-left: 4px solid var(--teal);
  box-shadow: 0 8px 22px rgba(7, 28, 51, 0.06);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.feature-pair:nth-child(even) {
  background: linear-gradient(145deg, #ffffff, #f7efd4);
  border-left-color: var(--gold);
}
.feature-pair:nth-child(3n) {
  background: linear-gradient(145deg, #ffffff, #e4f5ec);
  border-left-color: var(--cyan);
}
.feature-pair:nth-child(4n) {
  background: linear-gradient(145deg, #ffffff, #fde8d8);
  border-left-color: var(--orange);
}

.feature-pair h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.feature-pair p {
  margin: 0 !important;
  font-size: 0.9rem;
  color: var(--muted);
  border: none !important;
  padding: 0 !important;
}

.feature-pair:hover { box-shadow: var(--shadow); }

.content-kicker {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 750 !important;
  color: var(--navy) !important;
  border-left: 3px solid var(--gold) !important;
  padding: 0.35rem 0 0.35rem 1rem !important;
  margin: 1.25rem 0 0.75rem !important;
  letter-spacing: -0.02em;
}

/* Stronger transitions for interactive UI */
.chip-grid li,
.role-grid li,
.facility-grid li,
.offer-item,
.prog-tile,
.sector-chip,
.panel {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s, background 0.35s;
}

/* Callouts */
.callout {
  border-radius: 18px;
  padding: 1.45rem 1.55rem;
  margin: 1.35rem 0 1.6rem;
  border: 1px solid rgba(20, 143, 199, 0.14);
  background: linear-gradient(135deg, #ffffff, #e5f2fb);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.06);
}

.callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
}

.callout--vision {
  background: linear-gradient(135deg, #ffffff, #dceaf8);
  border-color: rgba(22, 69, 122, 0.16);
}

.callout--mission {
  background: linear-gradient(135deg, #ffffff, #dff3e8);
  border-color: rgba(23, 138, 66, 0.16);
}

.callout--quote {
  background: linear-gradient(135deg, #ffffff, #f7efd4);
  border-color: rgba(201, 162, 39, 0.28);
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 550;
}

.callout h3, .callout h4 {
  margin-top: 0 !important;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.callout p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band {
  margin-top: 2.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(201, 162, 39, 0.2), transparent 50%),
    linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88) !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1rem !important;
  max-width: 28rem;
}

.cta-band .btn { box-shadow: none; }

/* ---------- Panels / forms / misc ---------- */
.panel {
  background: linear-gradient(160deg, #ffffff, #eef5fc);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(20, 143, 199, 0.12);
  height: 100%;
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.06);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease);
}

.panel:hover {
  box-shadow: var(--shadow);
  border-color: rgba(20, 143, 199, 0.25);
}

.panel.d-block:hover { transform: translateY(-3px); }
.panel h3 { font-size: 1.1rem; }

.cin-box {
  background: linear-gradient(135deg, var(--green-soft), var(--cyan-soft));
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(23, 138, 66, 0.12);
}

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.4rem;
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 550;
}

.form-control, .form-select {
  border-radius: 12px;
  border-color: var(--line);
  padding: 0.75rem 1rem;
  background: #fbfcfe;
}

.form-control:focus, .form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 0.2rem rgba(20, 143, 199, 0.14);
  background: #fff;
}

.form-label { font-weight: 650; font-size: 0.9rem; color: var(--navy); }

.list-row {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  transition: background 0.2s;
}

.list-row:last-child { border-bottom: none; }

.list-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--green-soft);
  border-radius: 12px;
  padding: 0.55rem;
}

.list-date .d {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.list-date .m {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.job-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 750;
  padding: 0.22rem 0.55rem;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: var(--cyan);
  margin-right: 0.35rem;
  letter-spacing: 0.02em;
}

.partner-strip { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

.partner-badge {
  min-width: 140px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.partner-badge:hover {
  border-color: var(--gold);
  border-style: solid;
  transform: translateY(-2px);
}

.accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  border-radius: 12px !important;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 0.65rem;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: var(--cyan-soft);
  color: var(--navy);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 143, 199, 0.12);
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy-deep), #04101f);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.75rem;
}

.site-footer h5 {
  color: #fff;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }

.footer-brand img {
  height: 64px;
  background: #fff;
  border-radius: 12px;
  padding: 0.4rem 0.65rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.75rem;
  padding: 1.3rem 0;
  font-size: 0.85rem;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-right: 0.4rem;
  transition: background 0.25s, transform 0.25s var(--ease);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* ---------- Motion / utilities ---------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }

.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border: none;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  z-index: 50;
}

.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

.page-enter {
  animation: pageEnter 0.35s var(--ease) both;
}

@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.split-band {
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .split-band { grid-template-columns: 1fr; }
}

.split-band__pane {
  padding: 2rem 1.75rem;
  color: #fff;
}

.split-band__pane--navy { background: linear-gradient(145deg, var(--navy-deep), var(--navy)); }
.split-band__pane--green { background: linear-gradient(145deg, #0d5c32, var(--green)); }

@media (max-width: 991px) {
  .navbar-brand img { height: 46px; }
  .hero { min-height: auto; padding: 4.25rem 0 3.5rem; }
  .hero-side { display: none; }
  .content-body { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   UI Enrichment — gov-modern colorful surfaces (cascade win)
   Inspired by skill-mission / NSDC-style portal clarity with
   ESDC brand navy · gold · green · cyan accents.
   ========================================================= */
h1, h2, h3, h4, h5, .section-title, .navbar-brand, .hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.prog-tile {
  background: linear-gradient(165deg, #ffffff, #eef5fc);
  border-color: rgba(20, 143, 199, 0.12);
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.06);
}

.prog-tile.t-green { background: linear-gradient(165deg, #ffffff, #e6f6ed); }
.prog-tile.t-cyan { background: linear-gradient(165deg, #ffffff, #e0f2fb); }
.prog-tile.t-orange { background: linear-gradient(165deg, #ffffff, #fff0e4); }
.prog-tile.t-teal { background: linear-gradient(165deg, #ffffff, #e4f5f5); }
.prog-tile.t-coral { background: linear-gradient(165deg, #ffffff, #fdeceb); }
.prog-tile.t-purple { background: linear-gradient(165deg, #ffffff, #ebe6f8); }

.prog-tile--photo {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(20, 143, 199, 0.12);
  border-top: none;
  padding: 0;
  background: #fff;
}

.prog-body {
  padding: 1.15rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, #ffffff, #f3f8fc);
}

.page-toc {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(232, 242, 252, 0.95));
  border: 1px solid rgba(20, 143, 199, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.06);
}

.list-row {
  border-radius: 14px;
  padding: 1.1rem 1rem;
  margin-bottom: 0.45rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(232, 242, 252, 0.55));
  border: 1px solid rgba(20, 143, 199, 0.08);
  border-bottom: 1px solid rgba(20, 143, 199, 0.08);
}

.list-row:hover {
  background: linear-gradient(90deg, #fff, #e8f5ef);
  border-color: rgba(23, 138, 66, 0.2);
}

.footer-esdc {
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(20, 143, 199, 0.18), transparent 55%),
    linear-gradient(165deg, #071c33, #0b2a4a 55%, #0a3d3d);
}
