/* ==========================================================================
   Ezytm Technologies – Skill India portal
   Brand theme built on Bootstrap 5.3 (self-hosted).
   Colours come from the Ezytm logo (magenta + royal blue) and the corporate
   website (indigo #513de8, navy #323f7c, saffron accent #fca311).
   ========================================================================== */

:root {
  --c-pink: #f5009e;
  --c-pink-dark: #c9007f;
  --c-pink-soft: #ffe6f5;
  --c-blue: #0f1fe0;
  --c-indigo: #513de8;
  --c-indigo-dark: #3b2cc0;
  --c-indigo-soft: #eeebfd;
  --c-navy: #1e2a5e;
  --c-navy-deep: #111a45;
  --c-ink: #141a2e;
  --c-text: #3b4256;
  --c-muted: #6b7285;
  --c-line: #e4e7f0;
  --c-bg: #f6f7fc;
  --c-soft: #f0f2fa;
  --c-saffron: #fca311;
  --c-saffron-soft: #fff3dc;
  --c-green: #148a52;
  --c-green-soft: #e3f6ec;
  --c-white: #ffffff;

  --font-head: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(17, 26, 69, 0.06);
  --shadow: 0 12px 32px rgba(17, 26, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(17, 26, 69, 0.16);
  --grad-brand: linear-gradient(135deg, var(--c-navy) 0%, var(--c-indigo) 60%, #6a4cf0 100%);
  --grad-pink: linear-gradient(135deg, var(--c-pink) 0%, #ff4fc0 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, var(--c-bg) 100%);

  /* Bootstrap overrides */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--c-text);
  --bs-link-color: var(--c-indigo);
  --bs-link-hover-color: var(--c-indigo-dark);
  --bs-primary: var(--c-indigo);
  --bs-primary-rgb: 81, 61, 232;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1, .h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2, .h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3, .h3 { font-size: 1.6rem; }
h4, .h4 { font-size: 1.3rem; }

p { margin-bottom: 1.1rem; }
a { text-decoration: none; transition: color .2s ease; }
a:hover { text-decoration: none; }
strong { font-weight: 600; color: var(--c-ink); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; }

::selection { background: var(--c-pink); color: #fff; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 2000;
  background: var(--c-ink); color: #fff; padding: .5rem 1rem; border-radius: 8px;
}
.skip-link:focus { left: 8px; color: #fff; }

/* Icons (inline SVG sprite) */
.icon {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 1.5em; height: 1.5em; }
.icon-xl { width: 2em; height: 2em; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--c-pink);
  margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--c-pink); border-radius: 2px; }
.eyebrow.eyebrow-light { color: #ffd1ec; }
.eyebrow.eyebrow-light::before { background: #ffd1ec; }
.eyebrow.eyebrow-center { justify-content: center; }

.lead-muted { font-size: 1.1rem; color: var(--c-muted); }
.text-pink { color: var(--c-pink) !important; }
.text-indigo { color: var(--c-indigo) !important; }
.text-navy { color: var(--c-navy) !important; }
.text-muted-2 { color: var(--c-muted) !important; }
.fw-head { font-family: var(--font-head); font-weight: 700; }
.mw-720 { max-width: 720px; }
.mw-820 { max-width: 820px; }

.section-title { margin-bottom: 1rem; }
.section-title + p { max-width: 720px; }
.section-head { margin-bottom: 3rem; }
.section-head.text-center p { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em;
  font-size: 1.05rem; padding: .7rem 1.5rem; border-radius: 999px;
  transition: all .2s ease;
}
.btn .icon { margin-left: .3rem; transition: transform .2s ease; }
.btn:hover .icon { transform: translateX(3px); }

.btn-brand {
  background: var(--c-indigo); border: 2px solid var(--c-indigo); color: #fff;
  box-shadow: 0 8px 20px rgba(81, 61, 232, .28);
}
.btn-brand:hover, .btn-brand:focus { background: var(--c-indigo-dark); border-color: var(--c-indigo-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(81, 61, 232, .34); }

.btn-pink {
  background: var(--c-pink); border: 2px solid var(--c-pink); color: #fff;
  box-shadow: 0 8px 20px rgba(245, 0, 158, .28);
}
.btn-pink:hover, .btn-pink:focus { background: var(--c-pink-dark); border-color: var(--c-pink-dark); color: #fff; transform: translateY(-2px); }

.btn-outline-brand { border: 2px solid var(--c-indigo); color: var(--c-indigo); background: transparent; }
.btn-outline-brand:hover, .btn-outline-brand:focus { background: var(--c-indigo); color: #fff; }

.btn-outline-white { border: 2px solid rgba(255,255,255,.75); color: #fff; background: transparent; }
.btn-outline-white:hover, .btn-outline-white:focus { background: #fff; color: var(--c-indigo); border-color: #fff; }

.btn-white { background: #fff; border: 2px solid #fff; color: var(--c-indigo); }
.btn-white:hover, .btn-white:focus { background: var(--c-pink-soft); border-color: var(--c-pink-soft); color: var(--c-pink-dark); transform: translateY(-2px); }

.btn-lg { padding: .9rem 2rem; font-size: 1.15rem; }
.btn-sm { padding: .4rem 1rem; font-size: .95rem; }

.link-arrow { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--c-indigo); display: inline-flex; align-items: center; gap: .35rem; }
.link-arrow .icon { transition: transform .2s ease; }
.link-arrow:hover { color: var(--c-pink); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--c-navy-deep); color: rgba(255,255,255,.85); font-size: .85rem;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: #fff; }
.topbar .icon { color: var(--c-saffron); margin-right: .35rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar-inner ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.topbar-tag { font-family: var(--font-head); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: #fff; }
.topbar-tag span { color: var(--c-saffron); }

.site-header {
  position: sticky; top: 0; z-index: 1030; background: #fff;
  border-bottom: 1px solid var(--c-line); transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(17, 26, 69, .08); }

.navbar { padding: .55rem 0; }
.navbar-brand { display: flex; align-items: center; gap: .75rem; }
.navbar-brand img { height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; border-left: 2px solid var(--c-line); padding-left: .75rem; }
.brand-text strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--c-navy); font-weight: 700; letter-spacing: .02em; }
.brand-text small { font-size: .72rem; color: var(--c-pink); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

.navbar-nav .nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: .03em;
  color: var(--c-ink); padding: .6rem .9rem !important; position: relative;
}
.navbar-nav .nav-link::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 3px;
  background: var(--c-pink); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--c-indigo); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-cta { margin-left: .75rem; }
.navbar-nav .nav-cta .btn { padding: .55rem 1.3rem; }

.dropdown-menu {
  border: 1px solid var(--c-line); border-radius: 14px; box-shadow: var(--shadow); padding: .5rem; min-width: 280px;
}
.dropdown-item { border-radius: 10px; padding: .6rem .9rem; font-weight: 500; color: var(--c-text); display: flex; gap: .7rem; align-items: center; }
.dropdown-item .icon { color: var(--c-pink); width: 1.2em; height: 1.2em; }
.dropdown-item small { display: block; color: var(--c-muted); font-size: .78rem; font-weight: 400; }
.dropdown-item:hover, .dropdown-item:focus { background: var(--c-indigo-soft); color: var(--c-indigo-dark); }
.dropdown-item.active, .dropdown-item:active { background: var(--c-indigo); color: #fff; }
.dropdown-item.active .icon, .dropdown-item:active .icon { color: #fff; }

.navbar-toggler { border: 1px solid var(--c-line); border-radius: 10px; padding: .4rem .6rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--c-indigo-soft); }

@media (max-width: 991.98px) {
  .navbar-collapse { padding: .75rem 0 1rem; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-cta { margin: .5rem 0 0; }
  .brand-text { display: none; }
  .navbar-brand img { height: 48px; }
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-brand);
  padding: 5.5rem 0 6rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero::after {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  right: -180px; top: -220px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(245, 0, 158, .55), rgba(245, 0, 158, 0));
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5.2vw, 4rem); margin-bottom: 1.25rem; }
.hero h1 .hl { color: var(--c-saffron); }
.hero .lead { font-size: 1.15rem; color: rgba(255,255,255,.88); max-width: 580px; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: .35rem 1rem .35rem .5rem;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .05em; font-size: .95rem; margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-saffron); box-shadow: 0 0 0 4px rgba(252,163,17,.3); }
.hero-trust { display: flex; gap: 1.75rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust div { font-size: .85rem; color: rgba(255,255,255,.75); }
.hero-trust strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; line-height: 1.1; }

/* Hero visual */
.hero-visual { position: relative; min-height: 460px; }
.hero-emblem {
  position: absolute; inset: 0; margin: auto; width: 380px; height: 380px; max-width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-emblem svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }
.hero-chip {
  position: absolute; background: #fff; color: var(--c-ink); border-radius: 14px; padding: .75rem 1rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .75rem; min-width: 220px;
  animation: float 6s ease-in-out infinite;
}
.hero-chip .chip-icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-size: 1.3rem; flex-shrink: 0;
}
.hero-chip strong { display: block; font-family: var(--font-head); font-size: 1.05rem; line-height: 1.1; }
.hero-chip small { color: var(--c-muted); font-size: .78rem; }
.hero-chip.chip-1 { top: 6%; left: 0; animation-delay: 0s; }
.hero-chip.chip-2 { right: 0; top: 40%; animation-delay: -2s; }
.hero-chip.chip-3 { bottom: 4%; left: 8%; animation-delay: -4s; }
.chip-icon.bg-pink { background: var(--grad-pink); }
.chip-icon.bg-indigo { background: var(--c-indigo); }
.chip-icon.bg-saffron { background: var(--c-saffron); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-chip { animation: none; } }

@media (max-width: 991.98px) {
  .hero { padding: 3.5rem 0 4rem; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 400px; margin-top: 3rem; }
  .hero-emblem { width: 300px; height: 300px; }
  .hero-chip { min-width: 190px; padding: .6rem .8rem; }
}
@media (max-width: 575.98px) {
  .hero-visual { min-height: 360px; }
  .hero-emblem { width: 240px; height: 240px; }
  .hero-chip { min-width: 0; max-width: 62%; }
  .hero-chip.chip-1 { left: 0; }
  .hero-chip.chip-2 { right: 0; }
  .hero-chip.chip-3 { left: 4%; }
}

/* --------------------------------------------------------------------------
   Inner page hero
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff; background: var(--grad-brand); padding: 4rem 0 3.5rem;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .3; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 26px 26px;
}
.page-hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -160px; top: -200px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(245, 0, 158, .5), rgba(245, 0, 158, 0));
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 760px; margin-bottom: 0; }
.page-hero .eyebrow { color: #ffd1ec; }
.page-hero .eyebrow::before { background: #ffd1ec; }
.page-hero.page-hero-pink { background: linear-gradient(135deg, #7a0a5e 0%, var(--c-pink) 70%, #ff5cc5 100%); }
.page-hero.page-hero-pink::after { background: radial-gradient(closest-side, rgba(81, 61, 232, .55), rgba(81, 61, 232, 0)); }
.page-hero.page-hero-teal { background: linear-gradient(135deg, #0c3d5e 0%, #1174a8 60%, #19a3c7 100%); }
.page-hero.page-hero-teal::after { background: radial-gradient(closest-side, rgba(81, 61, 232, .55), rgba(81, 61, 232, 0)); }

.breadcrumb-light { --bs-breadcrumb-divider-color: rgba(255,255,255,.5); margin-bottom: 1rem; font-size: .9rem; }
.breadcrumb-light a { color: rgba(255,255,255,.75); }
.breadcrumb-light a:hover { color: #fff; }
.breadcrumb-light .active { color: #fff; }

.hero-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.hero-meta span {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  padding: .3rem .9rem; font-size: .85rem; font-weight: 500;
}

/* --------------------------------------------------------------------------
   Sections & surfaces
   -------------------------------------------------------------------------- */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-soft { background: var(--c-bg); }
.section-soft-gradient { background: var(--grad-soft); }
.section-dark { background: var(--c-navy-deep); color: rgba(255,255,255,.85); }
.section-dark h2, .section-dark h3 { color: #fff; }
@media (max-width: 767.98px) { .section { padding: 3.5rem 0; } }

.surface {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.surface-pad { padding: 2rem; }
.rounded-xl { border-radius: var(--radius-lg) !important; }
.shadow-soft { box-shadow: var(--shadow) !important; }

/* Feature cards */
.feature-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.75rem;
  height: 100%; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: var(--grad-pink);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card h3, .feature-card h4 { font-size: 1.3rem; margin: 1rem 0 .5rem; }
.feature-card p { margin-bottom: 0; color: var(--c-muted); font-size: .95rem; }
.feature-card .step { position: absolute; right: 1.25rem; top: 1rem; font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--c-line); line-height: 1; }

.icon-box {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; font-size: 1.6rem;
  background: var(--c-indigo-soft); color: var(--c-indigo);
}
.icon-box.pink { background: var(--c-pink-soft); color: var(--c-pink); }
.icon-box.saffron { background: var(--c-saffron-soft); color: #d98200; }
.icon-box.green { background: var(--c-green-soft); color: var(--c-green); }
.icon-box.navy { background: var(--c-navy); color: #fff; }
.icon-box.sm { width: 44px; height: 44px; border-radius: 12px; font-size: 1.25rem; }

/* Stats */
.stats-band { position: relative; margin-top: -3rem; z-index: 2; }
.stats-band .surface { box-shadow: var(--shadow); }
.stat { text-align: center; padding: 1.25rem .75rem; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--c-indigo); line-height: 1.05; }
.stat strong small { font-size: 1.2rem; color: var(--c-pink); }
.stat span { display: block; font-size: .88rem; color: var(--c-muted); margin-top: .35rem; line-height: 1.4; }
.stat + .stat { border-left: 1px solid var(--c-line); }
@media (max-width: 767.98px) { .stat + .stat { border-left: 0; border-top: 1px solid var(--c-line); } }
.stats-note { font-size: .8rem; color: var(--c-muted); text-align: center; padding: .5rem 1rem 1rem; margin: 0; }

/* Project cards */
.project-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--c-line);
  height: 100%; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card__band { padding: 2rem 2rem 1.5rem; color: #fff; position: relative; overflow: hidden; }
.project-card__band::after {
  content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -110px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.project-card__band.band-health { background: linear-gradient(135deg, #0c3d5e 0%, #1174a8 60%, #19a3c7 100%); }
.project-card__band.band-fashion { background: linear-gradient(135deg, #7a0a5e 0%, var(--c-pink) 70%, #ff5cc5 100%); }
.project-card__band .scheme { font-family: var(--font-head); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; opacity: .9; }
.project-card__band h3 { color: #fff; font-size: 1.9rem; margin: .35rem 0 .25rem; position: relative; }
.project-card__band .sector { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.16); border-radius: 999px; padding: .25rem .8rem; font-size: .85rem; position: relative; }
.project-card__band .big-icon { position: absolute; right: 1.5rem; bottom: 1rem; font-size: 4.5rem; opacity: .35; }
.project-card__body { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; flex: 1; }
.project-card__body p { color: var(--c-muted); }
.project-card__meta { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .5rem; }
.project-card__meta li { display: flex; gap: .6rem; font-size: .92rem; }
.project-card__meta li .icon { color: var(--c-pink); margin-top: .35rem; }
.project-card__meta li strong { min-width: 110px; font-weight: 600; color: var(--c-ink); }
.project-card__body .link-arrow { margin-top: auto; }

/* Check lists */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: .25rem; border-radius: 50%;
  background: var(--c-pink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}
.check-list.indigo li::before { background-color: var(--c-indigo); }
.check-list.green li::before { background-color: var(--c-green); }
.check-list.titled li strong { display: block; }

/* Timeline */
.timeline { position: relative; list-style: none; padding: 0 0 0 2.25rem; margin: 0; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--c-line); }
.timeline li { position: relative; padding-bottom: 1.75rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -2.25rem; top: 6px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 4px solid var(--c-indigo); box-shadow: 0 0 0 4px var(--c-indigo-soft);
}
.timeline li.pink::before { border-color: var(--c-pink); box-shadow: 0 0 0 4px var(--c-pink-soft); }
.timeline .year { font-family: var(--font-head); font-weight: 700; color: var(--c-indigo); font-size: 1.15rem; letter-spacing: .05em; }
.timeline h4 { font-size: 1.2rem; margin: .1rem 0 .3rem; }
.timeline p { margin: 0; color: var(--c-muted); font-size: .95rem; }

/* Definition / fact panel */
.fact-panel { background: var(--c-navy-deep); color: rgba(255,255,255,.85); border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden; }
.fact-panel::after { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; bottom: -120px; border-radius: 50%; background: radial-gradient(closest-side, rgba(245,0,158,.55), rgba(245,0,158,0)); }
.fact-panel h3 { color: #fff; font-size: 1.45rem; margin-bottom: 1.25rem; position: relative; }
.fact-panel dl { margin: 0; position: relative; }
.fact-panel dt { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; }
.fact-panel dd { margin: 0 0 .9rem; color: #fff; font-weight: 500; }
.fact-panel dd:last-child { margin-bottom: 0; }

/* Info strip / badges */
.badge-soft { display: inline-flex; align-items: center; gap: .35rem; border-radius: 999px; padding: .3rem .8rem; font-size: .8rem; font-weight: 600; }
.badge-soft.indigo { background: var(--c-indigo-soft); color: var(--c-indigo-dark); }
.badge-soft.pink { background: var(--c-pink-soft); color: var(--c-pink-dark); }
.badge-soft.saffron { background: var(--c-saffron-soft); color: #b36b00; }
.badge-soft.green { background: var(--c-green-soft); color: var(--c-green); }
.badge-soft.grey { background: var(--c-soft); color: var(--c-muted); }

/* Job role chips */
.role-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.role-chip {
  display: flex; align-items: center; gap: .85rem; background: #fff; border: 1px solid var(--c-line); border-radius: 14px; padding: .9rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.role-chip:hover { border-color: var(--c-indigo); box-shadow: var(--shadow-sm); }
.role-chip .icon-box { flex-shrink: 0; }
.role-chip strong { display: block; font-family: var(--font-head); font-size: 1.1rem; line-height: 1.15; }
.role-chip small { color: var(--c-muted); font-size: .78rem; }

/* Process steps */
.process { counter-reset: step; display: grid; gap: 1.25rem; }
.process-step { display: flex; gap: 1.25rem; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--c-pink); line-height: 1; flex-shrink: 0; width: 2.4rem;
}
.process-step h4 { font-size: 1.2rem; margin-bottom: .25rem; }
.process-step p { margin: 0; color: var(--c-muted); font-size: .95rem; }

/* Comparison table */
.table-clean { --bs-table-bg: transparent; border-collapse: separate; border-spacing: 0; }
.table-clean th { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--c-navy); background: var(--c-soft); border-bottom: 2px solid var(--c-line); padding: .9rem 1rem; }
.table-clean td { padding: .9rem 1rem; border-bottom: 1px solid var(--c-line); vertical-align: top; font-size: .95rem; }
.table-clean tr:last-child td { border-bottom: 0; }
.table-clean td:first-child { font-weight: 600; color: var(--c-ink); width: 200px; }
.table-wrap { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; }

/* Callout / quote */
.callout { border-left: 4px solid var(--c-saffron); background: var(--c-saffron-soft); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; }
.callout.indigo { border-color: var(--c-indigo); background: var(--c-indigo-soft); }
.callout.pink { border-color: var(--c-pink); background: var(--c-pink-soft); }
.callout p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: 3rem; }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(rgba(255,255,255,.2) 1px, transparent 1px); background-size: 22px 22px; }
.cta-band::after { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(closest-side, rgba(245,0,158,.5), rgba(245,0,158,0)); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 0; }
@media (max-width: 767.98px) { .cta-band { padding: 2rem 1.5rem; text-align: center; } }

/* Contact */
.contact-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card .icon-box { flex-shrink: 0; }
.contact-card strong { display: block; font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .1rem; }
.contact-card a, .contact-card span { color: var(--c-text); }
.contact-card a:hover { color: var(--c-indigo); }

/* Forms */
.form-label { font-weight: 500; font-size: .92rem; color: var(--c-ink); margin-bottom: .35rem; }
.form-control, .form-select {
  border-radius: var(--radius-sm); border: 1.5px solid var(--c-line); padding: .7rem .95rem; font-size: .97rem; color: var(--c-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus, .form-select:focus { border-color: var(--c-indigo); box-shadow: 0 0 0 4px var(--c-indigo-soft); }
.form-control::placeholder { color: #a3a9bb; }
.form-check-input:checked { background-color: var(--c-indigo); border-color: var(--c-indigo); }
.form-check-input:focus { box-shadow: 0 0 0 4px var(--c-indigo-soft); border-color: var(--c-indigo); }
.form-check-label { font-size: .9rem; }
.field-validation-error, .text-danger { color: #c62d4b !important; font-size: .85rem; }
.input-validation-error { border-color: #c62d4b !important; }
.validation-summary-errors ul { margin: 0; padding-left: 1.1rem; }
.form-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow); }
@media (max-width: 575.98px) { .form-card { padding: 1.5rem; } }
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 0; width: 0; overflow: hidden; }

.alert { border-radius: var(--radius-sm); border: 0; }
.alert-danger { background: #fde8ec; color: #8f1d33; }
.alert-success { background: var(--c-green-soft); color: var(--c-green); }
.alert-info { background: var(--c-indigo-soft); color: var(--c-indigo-dark); }

/* Thank you */
.success-icon { width: 96px; height: 96px; border-radius: 50%; background: var(--c-green-soft); color: var(--c-green); display: grid; place-items: center; font-size: 3rem; margin: 0 auto 1.5rem; }
.ref-code { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; letter-spacing: .08em; color: var(--c-indigo); background: var(--c-indigo-soft); border-radius: 12px; padding: .5rem 1.25rem; display: inline-block; }

/* Error page */
.error-code { font-family: var(--font-head); font-size: clamp(5rem, 15vw, 9rem); font-weight: 700; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--c-navy-deep); color: rgba(255,255,255,.72); padding: 4rem 0 0; font-size: .93rem; }
.footer h5 { color: #fff; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; }
.footer .brand img { height: 64px; margin-bottom: 1rem; }
.footer .contact-list li { display: flex; gap: .6rem; align-items: flex-start; }
.footer .contact-list .icon { color: var(--c-saffron); margin-top: .3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding: 1.25rem 0; font-size: .85rem; }
.footer-bottom .links a { margin-left: 1.25rem; }
.footer-skill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: .6rem .9rem; margin-top: 1rem; }
.footer-skill .icon { color: var(--c-saffron); }
.footer-skill span { font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   Reveal-on-scroll (progressive enhancement, see site.js)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal, .reveal.no-anim { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Back to top */
.back-to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; width: 46px; height: 46px; border-radius: 50%; z-index: 1020;
  background: var(--c-indigo); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--c-pink); color: #fff; }
