/* ===================================================================
   Maharashtra Public Health & Digital Healthcare Summit 2026
   Palette: deep teal / emerald + government navy + amber accent
   =================================================================== */
:root {
  /* logo palette: blue + teal + green */
  --teal-900: #0c2e4d;
  --teal-800: #11456b;
  --teal-700: #15578f;
  --teal-600: #1f86c9;
  --teal-500: #2bb3a3;
  --emerald: #5cc24f;
  --navy: #0c2e4d;
  --navy-2: #15578f;
  --amber: #62c24f;
  --amber-soft: #a8e08c;
  --ink: #15273c;
  --muted: #5b7187;
  --tint: #eef4fb;
  --line: #e2eaf1;
  --grad: linear-gradient(120deg, var(--teal-600) 0%, var(--teal-500) 50%, var(--emerald) 100%);
  --grad-dark: linear-gradient(135deg, var(--navy) 0%, #0e3a5e 60%, var(--teal-800) 100%);
  --shadow-sm: 0 6px 18px rgba(11, 37, 69, .08);
  --shadow-md: 0 18px 40px rgba(11, 37, 69, .12);
  --shadow-lg: 0 30px 70px rgba(6, 54, 58, .25);
}

* { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, .section-title, .hero-title { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; letter-spacing: -.02em; }
img { max-width: 100%; }
.text-gradient {
  background: linear-gradient(100deg, var(--amber-soft), #fff 60%, var(--emerald));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- NAVBAR ---------- */
#mainNav {
  padding: .9rem 0;
  background: rgba(6, 54, 58, .96);
  backdrop-filter: blur(12px);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
#mainNav.scrolled {
  background: rgba(6, 54, 58, .92);
  backdrop-filter: blur(12px);
  padding: .55rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.nav-logo { height: 54px; width: auto; display: block; transition: height .35s ease; }
#mainNav.scrolled .nav-logo { height: 46px; }
@media (max-width: 575px) { .nav-logo { height: 44px; } }

.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); color: #fff; font-size: 1.3rem;
  margin-right: .7rem; box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: #fff; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1.02rem; }
.brand-text small { color: rgba(255,255,255,.7); font-size: .72rem; }
#mainNav .nav-link {
  color: rgba(255,255,255,.82); font-weight: 600; font-size: .95rem;
  margin: 0 .15rem; position: relative;
}
#mainNav .nav-link::after {
  content: ''; position: absolute; left: .8rem; right: .8rem; bottom: .35rem;
  height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active { color: #fff; }
#mainNav .nav-link:hover::after, #mainNav .nav-link.active::after { transform: scaleX(1); }

.btn-cta {
  background: var(--amber); color: var(--navy); font-weight: 700; border: none;
  border-radius: 50px; padding: .7rem 1.5rem;
  box-shadow: 0 10px 24px rgba(92,194,79,.35);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-cta:hover { background: var(--amber-soft); color: var(--navy); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(92,194,79,.45); }
.btn-outline-light { border-radius: 50px; padding: .7rem 1.5rem; font-weight: 600; }

/* ---------- TOP HOST BANNER ---------- */
.top-banner { background: #fff; padding-top: 84px; overflow: hidden; }
.top-banner img { display: block; width: 100%; height: auto; }
@media (max-width: 768px) { .top-banner { padding-top: 80px; } }
@media (max-width: 575px) { .top-banner { padding-top: 76px; } }

/* ---------- HERO ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  padding: 3.5rem 0 4.5rem; overflow: hidden; color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(31,185,140,.35), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(23,163,152,.35), transparent 45%),
    var(--grad-dark);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .6;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,54,58,.2), rgba(6,54,58,.55));
}
.hero .container { z-index: 2; }
.hero-partners { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.4rem; }
.hero-partners span { font-size: .82rem; color: rgba(255,255,255,.82); font-weight: 500; }
.hero-partners i { color: var(--amber); margin-right: .4rem; }
.hero-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.08; margin-bottom: 1rem; }
.hero-tagline { font-size: 1.25rem; color: var(--amber-soft); font-weight: 600; margin-bottom: 1.6rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.meta-pill {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px); padding: .6rem 1.1rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
}
.meta-pill i { color: var(--amber); margin-right: .45rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-actions-center { justify-content: center; }
.hero-credits { font-size: .9rem; color: rgba(255,255,255,.75); display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.hero-credits .divider { color: var(--amber); }

/* Programme chair card */
.chair-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px); border-radius: 24px; padding: 1.6rem;
  text-align: center; box-shadow: var(--shadow-lg);
  position: relative; animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.chair-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--amber-soft); font-weight: 700; margin-bottom: 1rem;
}
.chair-photo {
  width: 170px; height: 170px; margin: 0 auto 1.1rem; border-radius: 50%;
  padding: 5px; background: var(--grad);
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
}
.chair-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid rgba(255,255,255,.4); }
.chair-info h3 { font-size: 1.35rem; margin-bottom: .25rem; color: #fff; }
.chair-role { color: var(--amber-soft); font-weight: 600; margin-bottom: .1rem; }
.chair-gov { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: 1.6rem; z-index: 3; text-decoration: none;
  animation: bob 2s infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,10px);} }

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip { background: var(--grad); padding: 1rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 1.6rem; animation: marquee 26s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span { color: #fff; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: .01em; }
.marquee-track i { color: var(--amber); font-size: .55rem; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- SUBPAGE HEADER ---------- */
.subpage #mainNav { background: rgba(6,54,58,.92); backdrop-filter: blur(12px); }
.page-hero {
  position: relative; color: #fff; padding: 9rem 0 4rem; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(31,185,140,.35), transparent 42%),
    radial-gradient(circle at 88% 75%, rgba(23,163,152,.3), transparent 45%),
    var(--grad-dark);
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .6;
}
.page-hero .container { position: relative; z-index: 2; }
.page-breadcrumb { background: transparent; padding: 0; margin-bottom: 1.2rem; }
.page-breadcrumb a { color: var(--amber-soft); text-decoration: none; font-weight: 600; }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.7); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }
.page-hero-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: .8rem; }
.page-hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.82); margin-bottom: 1.6rem; max-width: 640px; }

.btn-outline-teal {
  border: 2px solid var(--teal-600); color: var(--teal-700); background: transparent;
  border-radius: 50px; padding: .65rem 1.4rem; font-weight: 700;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn-outline-teal:hover { background: var(--teal-600); color: #fff; transform: translateY(-3px); }

/* ---------- AWARDS: STATS STRIP ---------- */
.section-strip { background: #fff; padding: 3rem 0; border-bottom: 1px solid var(--line); }
.strip-stat i {
  display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  background: var(--tint); color: var(--teal-600); font-size: 1.5rem; margin-bottom: .9rem;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.strip-stat:hover i { background: var(--grad); color: #fff; transform: translateY(-4px); }
.strip-stat h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; }
.strip-stat p { color: var(--muted); font-size: .85rem; margin: 0; }

/* ---------- AWARD CARDS ---------- */
.award-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem 1.6rem; height: 100%; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.award-card::after {
  content: '\F5A2'; font-family: 'bootstrap-icons'; position: absolute; right: -10px; bottom: -14px;
  font-size: 5.5rem; color: rgba(23,163,152,.06); transition: color .35s ease, transform .35s ease;
}
.award-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: transparent; }
.award-card:hover::after { color: rgba(92,194,79,.14); transform: rotate(-8deg) scale(1.1); }
.award-icon {
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 16px;
  background: var(--grad); color: #fff; font-size: 1.5rem; margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm); position: relative; z-index: 1;
}
.award-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; position: relative; z-index: 1; }
.award-card p { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.6; position: relative; z-index: 1; }

/* ---------- NOMINATION FORM ---------- */
.nomination-form {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px; padding: 2.5rem; backdrop-filter: blur(8px);
}
.nomination-form .form-label { color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.nomination-form .form-label span { color: var(--amber); }
.nomination-form .form-control,
.nomination-form .form-select {
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px; padding: .7rem .9rem; font-size: .95rem;
}
.nomination-form .form-control:focus,
.nomination-form .form-select:focus {
  background: #fff; border-color: var(--amber); box-shadow: 0 0 0 .25rem rgba(92,194,79,.25);
}
.nomination-form .form-check-label { color: rgba(255,255,255,.78); font-size: .9rem; }
.nomination-form .form-check-input:checked { background-color: var(--amber); border-color: var(--amber); }
.form-message { margin-top: 1.2rem; text-align: center; font-weight: 600; }
.form-message.success { color: #8df0c6; }
.form-message.error { color: #ffb4a8; }

/* ---------- COUNTDOWN ---------- */
.countdown-band { background: var(--grad-dark); color: #fff; padding: 3.2rem 0; position: relative; overflow: hidden; }
.countdown-band::before {
  content: ''; position: absolute; bottom: -40%; left: -8%; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(31,185,140,.25), transparent 70%); border-radius: 50%;
}
.countdown-band .container { position: relative; z-index: 2; }
.countdown-title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; margin-bottom: .6rem; }
.countdown-date { color: rgba(255,255,255,.78); font-weight: 600; margin: 0; }
.countdown-date i { color: var(--amber); }
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cd-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px; padding: 1.3rem .6rem; text-align: center; backdrop-filter: blur(8px);
}
.cd-num {
  display: block; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800;
  color: var(--amber); line-height: 1; font-variant-numeric: tabular-nums;
}
.cd-label { display: block; margin-top: .5rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); font-weight: 600; }
.cd-flip { animation: cdpulse .4s ease; }
@keyframes cdpulse { 0%{ transform: scale(1);} 40%{ transform: scale(1.18); } 100%{ transform: scale(1);} }

/* ---------- AGENDA TIMELINE ---------- */
.timeline { position: relative; padding-left: 0; }
.timeline::before {
  content: ''; position: absolute; left: 120px; top: 8px; bottom: 8px; width: 3px;
  background: linear-gradient(var(--teal-500), var(--emerald)); border-radius: 3px;
}
.tl-item { position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 1.6rem; margin-bottom: 1.5rem; }
.tl-time {
  text-align: right; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-weight: 700; color: var(--teal-700);
  font-size: .92rem; padding-top: 1.1rem; white-space: nowrap;
}
.tl-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); margin-left: 1.6rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tl-card::before {
  content: ''; position: absolute; left: -1.9rem; top: 1.4rem; width: 16px; height: 16px;
  background: var(--emerald); border: 3px solid #fff; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(31,185,140,.3);
}
.tl-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.tl-tag {
  display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; color: var(--teal-700); background: var(--tint);
  padding: .25rem .7rem; border-radius: 50px; margin-bottom: .6rem;
}
.tl-tag-amber { color: #8a5a00; background: rgba(92,194,79,.18); }
.tl-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.tl-card p { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.6; }

@media (max-width: 575px) {
  .countdown-grid { gap: .6rem; }
  .cd-box { padding: 1rem .3rem; border-radius: 14px; }
  .timeline::before { left: 7px; }
  .tl-item { grid-template-columns: 1fr; gap: .4rem; }
  .tl-time { text-align: left; padding-top: 0; padding-left: 1.8rem; color: var(--teal-600); }
  .tl-card { margin-left: 1.8rem; }
  .tl-card::before { left: -1.85rem; top: 1.2rem; }
}

/* ---------- SECTIONS ---------- */
.section { padding: 6rem 0; }
.section-tint { background: var(--tint); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; font-weight: 700; color: var(--teal-600);
  background: rgba(23,163,152,.1); padding: .35rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.eyebrow-light { color: var(--amber-soft); background: rgba(92,194,79,.15); }
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1.1rem; }
.lead-text { font-size: 1.15rem; line-height: 1.7; color: #2c3e44; }
.section p { color: #45565d; line-height: 1.75; }

/* ---------- ABOUT SECTION ---------- */
.about-section { position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(31,134,201,.08), transparent 70%); border-radius: 50%; z-index: 0;
}
.about-section .container { position: relative; z-index: 1; }
/* unified full-width banner: text panel over the image's white area */
.about-card {
  position: relative; overflow: hidden; background: #fff; width: 100%;
}
.about-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 82% center;
}
.about-panel {
  position: relative; z-index: 1; width: 56%; min-width: 420px;
  padding: 3.5rem clamp(1.5rem, 4vw, 4rem) 3.5rem clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(90deg, #fff 70%, rgba(255,255,255,.85) 88%, rgba(255,255,255,.5));
}
.about-panel .lead-text { font-size: 1.02rem; line-height: 1.6; }
.about-panel p { font-size: .95rem; }

@media (max-width: 991px) {
  .about-card-img { position: static; width: 100%; height: clamp(220px, 38vw, 320px); object-fit: cover; object-position: 78% center; }
  .about-panel { width: 100%; min-width: 0; background: #fff; padding: 2rem 1.4rem 2.6rem; }
  .about-panel .about-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .about-panel .lead-text { font-size: .98rem; }
}
.about-title { line-height: 1.12; margin-bottom: 1.4rem; }
.text-gradient-teal {
  background: linear-gradient(100deg, var(--teal-600) 0%, var(--emerald) 55%, var(--amber) 110%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.about-tag {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .9rem;
  color: var(--teal-700); background: var(--tint); border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 50px;
}
.about-tag i { color: var(--emerald); }

/* animated image */
.about-visual { position: relative; padding: 1.2rem; }
.about-blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: 0; }
.about-blob-1 {
  width: 180px; height: 180px; top: -20px; left: -20px;
  background: radial-gradient(circle, rgba(31,185,140,.35), transparent 70%);
  animation: blobFloat 7s ease-in-out infinite;
}
.about-blob-2 {
  width: 150px; height: 150px; bottom: -10px; right: -10px;
  background: radial-gradient(circle, rgba(92,194,79,.3), transparent 70%);
  animation: blobFloat 9s ease-in-out infinite reverse;
}
@keyframes blobFloat { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(12px,-14px) scale(1.08);} }
.about-img-frame {
  position: relative; z-index: 1; border-radius: 22px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  animation: aboutFloat 6s ease-in-out infinite;
  transition: transform .4s ease;
}
.about-img-frame img { width: 100%; height: auto; border-radius: 22px; display: block; }
.about-img-frame:hover { transform: translateY(-6px) scale(1.01); }
@keyframes aboutFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.about-float-badge {
  position: absolute; left: -10px; bottom: 24px; z-index: 2;
  display: flex; align-items: center; gap: .7rem;
  background: var(--grad-dark); color: #fff; padding: .8rem 1.1rem; border-radius: 16px;
  box-shadow: var(--shadow-md); animation: aboutFloat 6s ease-in-out infinite .5s;
}
.about-float-badge i { font-size: 1.4rem; color: var(--amber); }
.about-float-badge strong { display: block; font-size: .95rem; line-height: 1.1; }
.about-float-badge span { font-size: .75rem; color: rgba(255,255,255,.75); }
@media (max-width: 575px) { .about-float-badge { left: 0; bottom: 8px; padding: .6rem .8rem; } }

/* host grid */
.host-grid { display: grid; gap: 1rem; }
.host-item {
  display: flex; gap: 1rem; align-items: flex-start; background: #fff; height: 100%;
  border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.host-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.host-item i { font-size: 1.6rem; color: var(--teal-600); }
.host-item span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.host-item strong { font-size: .95rem; color: var(--ink); }

/* ---------- KEY HIGHLIGHTS ---------- */
.highlights-section {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11,37,69,.94) 0%, rgba(6,54,58,.9) 55%, rgba(10,77,82,.88) 100%),
    url('https://images.unsplash.com/photo-1530497610245-94d3c16cda28?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.highlights-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.highlights-section::after {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; background: radial-gradient(circle, rgba(31,185,140,.25), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.highlights-section .container { position: relative; z-index: 2; }
.text-gradient-bright {
  background: linear-gradient(100deg, var(--emerald), var(--amber-soft) 60%, var(--amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hl-heading { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 800; margin-bottom: 1rem; }
.hl-heading-dark { color: var(--ink); }
.hl-divider { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.hl-divider span { height: 2px; width: 70px; background: linear-gradient(90deg, transparent, var(--emerald)); }
.hl-divider span:last-child { background: linear-gradient(90deg, var(--emerald), transparent); }
.hl-divider i { color: var(--amber); font-size: 1.2rem; }

/* glowing neon infographic card (icon left, content right) */
.hl-card {
  position: relative; height: 100%; display: flex; align-items: center; gap: 1.4rem;
  padding: 1.5rem 1.8rem 1.5rem 1.5rem; border-radius: 80px 20px 20px 80px;
  background: linear-gradient(120deg, rgba(10,77,82,.5), rgba(6,54,58,.3));
  border: 1px solid rgba(31,185,140,.35);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), inset 0 0 34px rgba(31,185,140,.08);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
/* neon glowing edge sweep */
.hl-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(120deg, rgba(31,185,140,.8), transparent 35%, transparent 65%, rgba(31,185,140,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.hl-card:hover {
  transform: translateY(-8px); border-color: rgba(31,185,140,.75);
  box-shadow: 0 24px 54px rgba(0,0,0,.45), 0 0 42px rgba(31,185,140,.32), inset 0 0 44px rgba(31,185,140,.14);
}

/* glowing circular icon */
.hl-ico {
  position: relative; flex: 0 0 auto; display: grid; place-items: center;
  width: 86px; height: 86px; border-radius: 50%; color: #fff; font-size: 2rem;
  background: radial-gradient(circle at 32% 30%, rgba(31,185,140,.3), rgba(6,54,58,.65));
  border: 2px solid rgba(31,185,140,.65);
  box-shadow: 0 0 20px rgba(31,185,140,.5), inset 0 0 20px rgba(31,185,140,.35);
  animation: hlFloat 4s ease-in-out infinite;
}
.hl-ico::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(31,185,140,.45); opacity: 0; animation: hlPulse 2.6s ease-out infinite;
}
.hl-ico i { display: inline-block; animation: hlBeat 2.2s ease-in-out infinite; filter: drop-shadow(0 0 6px rgba(31,185,140,.7)); }
@keyframes hlFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes hlPulse { 0% { transform: scale(1); opacity: .55; } 80%,100% { transform: scale(1.4); opacity: 0; } }
@keyframes hlBeat { 0%,100% { transform: scale(1); } 25% { transform: scale(1.16); } 40% { transform: scale(1.02); } 60% { transform: scale(1.12); } }
.hl-card:hover .hl-ico { animation-play-state: paused; transform: scale(1.08); box-shadow: 0 0 30px rgba(31,185,140,.7), inset 0 0 24px rgba(31,185,140,.45); }
.hl-card:hover .hl-ico i { animation-duration: 1s; }

/* content */
.hl-body { position: relative; z-index: 1; }
.hl-number {
  display: inline-block; font-size: 1.95rem; font-weight: 800; letter-spacing: .06em;
  color: var(--emerald); margin-bottom: .2rem; line-height: 1; text-shadow: 0 0 12px rgba(31,185,140,.8);
}
.hl-card h3 { color: #fff; font-size: 1.12rem; font-weight: 700; margin: 0; line-height: 1.35; }

/* stacked side cards + center figure */
.hl-stack { display: flex; flex-direction: column; gap: 1.3rem; }
.hl-stack .hl-card { gap: 1.1rem; padding: 1.2rem 1.3rem 1.2rem 1.1rem; }
.hl-stack .hl-ico { width: 70px; height: 70px; font-size: 1.7rem; }
.hl-stack .hl-card h3 { font-size: 1.05rem; }
/* right column: mirror the pill curve to the right side */
.hl-stack-right .hl-card { border-radius: 20px 80px 80px 20px; }

.hl-figure {
  position: relative; border-radius: 24px; overflow: hidden; isolation: isolate;
  box-shadow: 0 26px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(31,185,140,.4);
  animation: aboutFloat 6s ease-in-out infinite;
}
.hl-figure img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.hl-figure-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(6,54,58,.55));
  box-shadow: inset 0 0 60px rgba(31,185,140,.25);
}
.hl-figure-badge {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 2; white-space: nowrap;
  background: var(--grad-dark); color: #fff; font-weight: 700; font-size: .82rem;
  padding: .5rem 1.1rem; border-radius: 50px; box-shadow: var(--shadow-md);
}
.hl-figure-badge i { color: var(--amber); margin-right: .35rem; }

@media (max-width: 991px) {
  .hl-figure { max-width: 460px; margin: 0 auto 1.5rem; }
}

/* amber neon cards (alternating + feature) */
.hl-card-feature, .hl-card-amber { border-color: rgba(92,194,79,.4); }
.hl-card-feature::before, .hl-card-amber::before { background: linear-gradient(120deg, rgba(92,194,79,.85), transparent 35%, transparent 65%, rgba(92,194,79,.55)); }
.hl-card-feature:hover, .hl-card-amber:hover { border-color: rgba(92,194,79,.75); box-shadow: 0 24px 54px rgba(0,0,0,.45), 0 0 42px rgba(92,194,79,.32), inset 0 0 44px rgba(92,194,79,.14); }
.hl-card-feature .hl-ico, .hl-card-amber .hl-ico {
  background: radial-gradient(circle at 32% 30%, rgba(92,194,79,.3), rgba(6,54,58,.65));
  border-color: rgba(92,194,79,.65); box-shadow: 0 0 20px rgba(92,194,79,.5), inset 0 0 20px rgba(92,194,79,.35);
}
.hl-card-feature .hl-ico::after, .hl-card-amber .hl-ico::after { border-color: rgba(92,194,79,.45); }
.hl-card-feature .hl-ico i, .hl-card-amber .hl-ico i { filter: drop-shadow(0 0 6px rgba(92,194,79,.7)); }
.hl-card-feature .hl-number, .hl-card-amber .hl-number { color: var(--amber-soft); text-shadow: 0 0 12px rgba(92,194,79,.8); }
.hl-card-feature:hover .hl-ico, .hl-card-amber:hover .hl-ico { box-shadow: 0 0 30px rgba(92,194,79,.7), inset 0 0 24px rgba(92,194,79,.45); }

/* ---------- FOCUS AREAS — RADIAL HUB ---------- */
.focus-hub {
  position: relative; width: 100%; max-width: 880px; margin: 1.5rem auto 0; aspect-ratio: 1 / 1;
}
/* rotating dotted rings */
.hub-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 2px dashed rgba(18,138,134,.35); transform: translate(-50%, -50%);
}
.hub-ring-1 { width: 64%; height: 64%; animation: hubSpin 38s linear infinite; }
.hub-ring-2 { width: 40%; height: 40%; border-color: rgba(92,194,79,.4); animation: hubSpin 26s linear infinite reverse; }
@keyframes hubSpin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }

/* faint radial spokes */
.hub-spokes {
  position: absolute; top: 50%; left: 50%; width: 88%; height: 88%; transform: translate(-50%,-50%);
  background:
    repeating-conic-gradient(from 0deg, rgba(18,138,134,.12) 0deg 0.4deg, transparent 0.4deg 45deg);
  border-radius: 50%; -webkit-mask: radial-gradient(circle, transparent 30%, #000 31%); mask: radial-gradient(circle, transparent 30%, #000 31%);
}

/* central core */
.hub-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 27%; height: 27%; border-radius: 50%; z-index: 3; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: .7rem;
  background: var(--grad-dark); color: #fff;
  box-shadow: 0 20px 50px rgba(6,54,58,.45), 0 0 0 10px rgba(255,255,255,.6), 0 0 0 11px var(--line);
  animation: corePulse 4s ease-in-out infinite;
}
@keyframes corePulse { 0%,100% { box-shadow: 0 20px 50px rgba(6,54,58,.45), 0 0 0 10px rgba(255,255,255,.6), 0 0 0 11px var(--line); } 50% { box-shadow: 0 20px 50px rgba(6,54,58,.45), 0 0 0 16px rgba(31,185,140,.12), 0 0 0 17px rgba(31,185,140,.25); } }
.hub-core-ico { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--amber); margin-bottom: .4rem; animation: hlBeat 2.2s ease-in-out infinite; display: inline-block; }
.hub-core h3 { font-size: clamp(.85rem, 1.7vw, 1.15rem); font-weight: 800; line-height: 1.2; margin: 0 0 .25rem; }
.hub-core p { font-size: clamp(.7rem, 1.3vw, .9rem); color: var(--amber-soft); font-weight: 600; margin: 0; }

/* nodes */
.focus-node {
  position: absolute; transform: translate(-50%, -50%); width: 150px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.node-badge {
  position: relative; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: #fff; color: var(--teal-600); font-size: 1.5rem; border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(6,54,58,.22); margin-bottom: .6rem;
  transition: transform .35s ease, background .35s ease, color .35s ease;
  animation: nodeFloat 5s ease-in-out infinite;
}
.node-badge::before {
  content: attr(data-num); position: absolute; top: -8px; right: -8px;
  display: grid; place-items: center; min-width: 24px; height: 24px; padding: 0 .25rem;
  font-size: .72rem; font-weight: 800; color: #fff; background: var(--grad);
  border-radius: 50%; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(18,138,134,.4);
}
.node-badge::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--emerald); opacity: 0; animation: hlPulse 2.8s ease-out infinite;
}
.node-badge i { position: relative; z-index: 1; }
@keyframes nodeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.focus-node:hover .node-badge { background: var(--grad); color: #fff; transform: scale(1.12) rotate(-6deg); animation-play-state: paused; }
.node-label {
  font-size: .82rem; font-weight: 600; color: var(--ink); line-height: 1.3;
  background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 12px;
  padding: .45rem .7rem; box-shadow: 0 6px 16px rgba(6,54,58,.1);
  transition: color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.focus-node:hover .node-label { color: var(--teal-700); box-shadow: 0 10px 22px rgba(6,54,58,.16); transform: translateY(-2px); }

/* give the top/bottom labels a little more width */
.focus-node[style*="top:3%"]  { width: 180px; }
.focus-node[style*="top:97%"] { width: 210px; }

/* mobile fallback: grid instead of circle */
@media (max-width: 767px) {
  .focus-hub { aspect-ratio: auto; max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; padding-top: 1rem; }
  .hub-ring, .hub-spokes { display: none; }
  .hub-core { position: static; transform: none; width: 100%; height: auto; aspect-ratio: auto; grid-column: 1 / -1; border-radius: 20px; padding: 1.4rem 1.2rem; box-shadow: var(--shadow-md); animation: none; }
  .hub-core h3 { font-size: 1.1rem; } .hub-core p { font-size: .85rem; }
  .focus-node { position: static !important; transform: none; width: 100% !important; left: auto !important; top: auto !important; }
}

/* ---------- WHY (DARK) ---------- */
.section-dark { background: var(--grad-dark); position: relative; overflow: hidden; }
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.section-dark .container { position: relative; z-index: 2; }

/* deeper blue tech backdrop for Why section */
#why { background: linear-gradient(135deg, #06173a 0%, #0a2747 45%, #07484d 100%); }
#why::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 620px; height: 620px; max-width: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,185,140,.16), transparent 65%); pointer-events: none;
}

/* ---- WHY TECH HUB ---- */
.why-hub {
  position: relative; max-width: 1040px; margin: 0 auto 3.5rem;
  display: grid; grid-template-columns: 1fr 230px 1fr; grid-template-rows: auto auto auto;
  gap: 2.6rem 1.5rem; align-items: center; justify-items: center;
}
.why-top    { grid-column: 2; grid-row: 1; }
.why-left   { grid-column: 1; grid-row: 2; }
.why-core   { grid-column: 2; grid-row: 2; }
.why-right  { grid-column: 3; grid-row: 2; }
.why-bottom { grid-column: 2; grid-row: 3; }

/* animated dotted connector cross */
.why-line { position: absolute; z-index: 0; opacity: .55; }
.why-line-v {
  left: 50%; top: 12%; bottom: 12%; width: 3px; transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, var(--emerald) 0 6px, transparent 6px 15px);
  background-size: 3px 15px; animation: dashFlowV 1.1s linear infinite;
}
.why-line-h {
  top: 50%; left: 14%; right: 14%; height: 3px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--emerald) 0 6px, transparent 6px 15px);
  background-size: 15px 3px; animation: dashFlow 1.1s linear infinite;
}
@keyframes dashFlowV { to { background-position: 0 15px; } }

/* central glowing emblem */
.why-core {
  position: relative; z-index: 2; width: 190px; max-width: 42vw; height: auto; aspect-ratio: 1 / 1;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(31,185,140,.5), rgba(6,23,58,.9));
  box-shadow: 0 0 50px rgba(31,185,140,.5), inset 0 0 40px rgba(31,185,140,.4);
  border: 2px solid rgba(31,185,140,.6);
}
.why-core-ico { font-size: clamp(2.6rem, 6vw, 3.6rem); color: #eafff7; filter: drop-shadow(0 0 14px rgba(31,185,140,.9)); animation: hlBeat 2.2s ease-in-out infinite; display: inline-block; z-index: 2; }
.why-core-ring {
  position: absolute; top: 50%; left: 50%; width: calc(100% + 22px); height: calc(100% + 22px);
  border-radius: 50%; border: 2px dashed rgba(31,185,140,.55);
  animation: hubSpin 22s linear infinite;
}
.why-core-ring-2 {
  width: calc(100% + 46px); height: calc(100% + 46px);
  border-color: rgba(92,194,79,.4); animation: hubSpin 30s linear infinite reverse;
}

/* nodes */
.why-node { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 250px; z-index: 2; }
.why-badge {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 108px; height: 108px; border-radius: 50%;
  font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: .9rem;
  white-space: nowrap; line-height: 1;
  background: radial-gradient(circle at 35% 30%, rgba(31,185,140,.4), rgba(6,23,58,.85));
  border: 2px solid rgba(31,185,140,.65);
  box-shadow: 0 0 26px rgba(31,185,140,.5), inset 0 0 18px rgba(31,185,140,.4);
  transition: transform .35s ease, box-shadow .35s ease;
  animation: hlFloat 4.5s ease-in-out infinite;
}
.why-badge::after {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(31,185,140,.4); opacity: 0; animation: hlPulse 2.8s ease-out infinite;
}
.why-badge-amber {
  background: radial-gradient(circle at 35% 30%, rgba(92,194,79,.4), rgba(6,23,58,.85));
  border-color: rgba(92,194,79,.7); box-shadow: 0 0 26px rgba(92,194,79,.5), inset 0 0 18px rgba(92,194,79,.4); color: var(--amber-soft);
}
.why-badge-amber::after { border-color: rgba(92,194,79,.45); }
.why-node:hover .why-badge { transform: scale(1.08); box-shadow: 0 0 36px rgba(31,185,140,.75), inset 0 0 22px rgba(31,185,140,.5); }
.why-node-text strong { display: block; color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: .25rem; }
.why-node-text span { color: rgba(255,255,255,.72); font-size: .84rem; line-height: 1.5; }

@media (max-width: 767px) {
  .why-hub { grid-template-columns: 1fr; gap: 1.8rem; }
  .why-node, .why-core { grid-column: auto !important; grid-row: auto !important; }
  .why-core { width: 190px; max-width: 60vw; }
  .why-line { display: none; }
  .why-node { max-width: 100%; }
}
.stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 1.8rem 1.4rem; text-align: center; height: 100%;
  backdrop-filter: blur(8px); transition: transform .35s ease, background .35s ease;
}
.stat-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); }
.stat-num { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: .7rem; }
.stat-card p { color: rgba(255,255,255,.82); font-size: .9rem; margin: 0; line-height: 1.5; }

.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 1.8rem 1.5rem; height: 100%;
  transition: transform .35s ease, background .35s ease;
}
.why-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.09); }
.why-card i { font-size: 2rem; color: var(--emerald); margin-bottom: 1rem; display: block; }
.why-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: .6rem; }
.why-card p { color: rgba(255,255,255,.72); font-size: .92rem; margin: 0; line-height: 1.6; }

/* ---------- ATTEND — CENTER IMAGE + CONNECTED LIST ---------- */
#attend {
  position: relative; overflow: hidden;
  background: linear-gradient(152deg, #e4f4f1 0%, #d9eeea 42%, #eef6ef 70%, #e7eff9 100%);
}
#attend::before {
  content: ''; position: absolute; top: -150px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(31,185,140,.24), transparent 70%); border-radius: 50%; pointer-events: none;
}
#attend::after {
  content: ''; position: absolute; bottom: -170px; right: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(92,194,79,.2), transparent 70%); border-radius: 50%; pointer-events: none;
}
#attend .container { position: relative; z-index: 1; }
.attend-hub { position: relative; }

/* center image */
.attend-center { position: relative; display: grid; place-items: center; padding: 1rem; }
.attend-img {
  position: relative; z-index: 2; width: 270px; height: 270px; max-width: 80vw; border-radius: 50%;
  padding: 8px; background: var(--grad); box-shadow: 0 24px 60px rgba(6,54,58,.35);
  animation: aboutFloat 6s ease-in-out infinite;
}
.attend-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 5px solid #fff; }
.attend-orbit {
  position: absolute; top: 50%; left: 50%; width: 330px; height: 330px; max-width: 95vw;
  transform: translate(-50%, -50%); border: 2px dashed rgba(18,138,134,.4); border-radius: 50%;
  animation: hubSpin 30s linear infinite; z-index: 1;
}
.attend-center-badge {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); z-index: 3; white-space: nowrap;
  background: var(--grad-dark); color: #fff; font-weight: 700; font-size: .85rem;
  padding: .5rem 1.1rem; border-radius: 50px; box-shadow: var(--shadow-md);
}
.attend-center-badge i { color: var(--amber); margin-right: .35rem; }

/* feature rows */
.attend-feat {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; position: relative;
}
.attend-feat:last-child { margin-bottom: 0; }
.attend-left { justify-content: flex-end; text-align: right; }
.feat-text { font-weight: 600; color: var(--ink); line-height: 1.35; max-width: 220px; transition: color .3s ease; }
.feat-icon {
  position: relative; flex: 0 0 auto; display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 16px; background: var(--tint); color: var(--teal-600); font-size: 1.45rem;
  box-shadow: var(--shadow-sm); transition: transform .35s ease, background .35s ease, color .35s ease;
}
.feat-icon i { position: relative; z-index: 1; }
/* animated flowing connector line toward the centre */
.attend-left .feat-icon::after,
.attend-right .feat-icon::before {
  content: ''; position: absolute; top: 50%; width: 38px; height: 3px; transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, var(--teal-500) 0 7px, transparent 7px 14px);
  background-size: 14px 3px; animation: dashFlow 1s linear infinite;
}
.attend-left .feat-icon::after { left: 100%; }
.attend-right .feat-icon::before { right: 100%; animation-direction: reverse; }
@keyframes dashFlow { to { background-position: 14px 0; } }

.attend-feat:hover .feat-icon { background: var(--grad); color: #fff; transform: scale(1.1) rotate(-4deg); }
.attend-feat:hover .feat-text { color: var(--teal-700); }

@media (max-width: 991px) {
  .attend-left { justify-content: flex-start; text-align: left; }
  .attend-left .feat-icon { order: -1; }            /* icon first, like the right column */
  .attend-left .feat-icon::after { content: none; }
  .attend-right .feat-icon::before { content: none; }
  .feat-text { max-width: none; }
  .attend-center { margin-bottom: 2rem; }
  .attend-feat { gap: .9rem; }
}

/* ---------- PARTNER — ALTERNATING PILL STEPS ---------- */
#partner {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #06173a 0%, #0a2747 35%, #07484d 65%, #0a2747 100%);
  background-size: 220% 220%; animation: partnerBg 20s ease infinite;
}
@keyframes partnerBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#partner::before {
  content: ''; position: absolute; top: -130px; right: -100px; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(31,185,140,.3), transparent 70%); border-radius: 50%; pointer-events: none;
  animation: pbFloat1 16s ease-in-out infinite;
}
#partner::after {
  content: ''; position: absolute; bottom: -150px; left: -100px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(92,194,79,.24), transparent 70%); border-radius: 50%; pointer-events: none;
  animation: pbFloat2 20s ease-in-out infinite;
}
@keyframes pbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,40px) scale(1.18); } }
@keyframes pbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-40px) scale(1.14); } }
/* dotted texture overlay */
#partner .container::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 30px 30px;
}
#partner .container { position: relative; z-index: 1; }
/* animated scrolling background text */
.partner-bgtext {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%); z-index: 0;
  width: 100%; overflow: hidden; pointer-events: none; line-height: 1;
}
.partner-bgtext span {
  display: inline-block; white-space: nowrap; font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 9rem); letter-spacing: -.02em; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.07); text-stroke: 1.5px rgba(255,255,255,.07);
  animation: bgTextScroll 28s linear infinite;
}
@keyframes bgTextScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
#partner .hl-heading, #partner .hl-heading-dark { color: #fff; }
.psteps { position: relative; max-width: 940px; margin: 0 auto; }
/* central animated dotted spine */
.psteps::before {
  content: ''; position: absolute; left: 50%; top: 10px; bottom: 10px; width: 3px; transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, rgba(18,138,134,.5) 0 7px, transparent 7px 16px);
  background-size: 3px 16px; animation: dashFlowV 1.1s linear infinite; z-index: 0;
}
.pstep { position: relative; display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; margin-bottom: 1.4rem; z-index: 1; }
.pstep:last-child { margin-bottom: 0; }
.pstep-left  .pstep-card { grid-column: 1; justify-self: stretch; flex-direction: row-reverse; text-align: right; }
.pstep-right .pstep-card { grid-column: 2; justify-self: stretch; flex-direction: row; text-align: left; }

.pstep-card {
  position: relative; display: flex; align-items: center; gap: 1.3rem; width: 100%;
  padding: 1.5rem 1.6rem; color: #fff; border-radius: 18px; overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--c) 86%, #fff), var(--c) 55%, color-mix(in srgb, var(--c) 80%, #000));
  box-shadow: 0 18px 38px -12px color-mix(in srgb, var(--c) 60%, transparent), 0 8px 22px rgba(0,0,0,.14);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
/* glossy sheen */
.pstep-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,.26), rgba(255,255,255,0) 48%);
}
.pstep-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 30px 56px -12px color-mix(in srgb, var(--c) 72%, transparent), 0 0 0 1px color-mix(in srgb, var(--c) 45%, transparent);
}
/* glowing connector dot toward spine */
.pstep-left .pstep-card::after,
.pstep-right .pstep-card::after {
  content: ''; position: absolute; top: 50%; width: 16px; height: 16px; border-radius: 50%; z-index: 2;
  background: #fff; border: 3px solid var(--c); transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(255,255,255,.5), 0 0 14px color-mix(in srgb, var(--c) 70%, transparent);
}
.pstep-left .pstep-card::after  { right: -34px; }
.pstep-right .pstep-card::after { left: -34px; }

.pstep-ico {
  position: relative; z-index: 1; flex: 0 0 auto; display: grid; place-items: center;
  width: 82px; height: 82px; border-radius: 50%; background: #fff; color: var(--c); font-size: 2.05rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.22), inset 0 0 0 4px color-mix(in srgb, var(--c) 15%, #fff);
  transition: transform .45s ease;
}
.pstep-ico i { filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--c) 45%, transparent)); }
.pstep-ico img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block;
  transition: transform .5s ease;
}
.pstep-card:hover .pstep-ico { transform: scale(1.06); }
.pstep-card:hover .pstep-ico img { transform: scale(1.12); }
.pstep-body { position: relative; z-index: 1; }
.pstep-no { display: block; font-size: 1.4rem; font-weight: 800; letter-spacing: .05em; color: rgba(255,255,255,.55); line-height: 1; margin-bottom: .35rem; }
.pstep-body h4 { font-size: 1.05rem; font-weight: 700; margin: 0; line-height: 1.35; color: #fff; }

/* colour palette */
.pstep-c1 { --c: #0e6b6f; }
.pstep-c2 { --c: #f5a524; }
.pstep-c3 { --c: #17a398; }
.pstep-c4 { --c: #1fb98c; }
.pstep-c5 { --c: #0a4d52; }
.pstep-c6 { --c: #128a86; }

@media (max-width: 767px) {
  .psteps::before { left: 26px; }
  .pstep { grid-template-columns: 1fr; }
  .pstep-left .pstep-card, .pstep-right .pstep-card {
    grid-column: 1; justify-self: stretch; width: auto; max-width: 100%; margin-left: 52px;
    flex-direction: row; text-align: left; border-radius: 18px;
  }
  .pstep-left .pstep-card::after, .pstep-right .pstep-card::after { left: -34px; right: auto; }
}

/* ---------- GLIMPSES (auto-scroll gallery) ---------- */
.glimpses-section {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #eef4fb 0%, #e6f1ec 55%, #f1f7fb 100%);
}
.glimpse-row { overflow: hidden; padding: .6rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.glimpse-track { display: flex; gap: 1.2rem; width: max-content; animation: glimpseScroll 55s linear infinite; }
.glimpse-track-rev { animation-direction: reverse; }
.glimpse-row:hover .glimpse-track { animation-play-state: paused; }
@keyframes glimpseScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.glimpse-item {
  flex: 0 0 auto; position: relative; width: 330px; height: 215px; margin: 0;
  border-radius: 18px; overflow: hidden; background: var(--tint);
  box-shadow: 0 12px 30px rgba(12,46,77,.16); border: 3px solid #fff;
  transition: transform .4s ease, box-shadow .4s ease;
}
.glimpse-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.glimpse-ov {
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.8rem;
  background: linear-gradient(180deg, rgba(12,46,77,0) 40%, rgba(12,46,77,.55));
  opacity: 0; transition: opacity .4s ease;
}
.glimpse-ov i {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  background: var(--grad); transform: scale(.6); transition: transform .4s ease;
}
.glimpse-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 22px 44px rgba(12,46,77,.28); }
.glimpse-item:hover img { transform: scale(1.1); }
.glimpse-item:hover .glimpse-ov { opacity: 1; }
.glimpse-item:hover .glimpse-ov i { transform: scale(1); }

@media (max-width: 575px) {
  .glimpse-item { width: 240px; height: 160px; }
  .glimpse-track { gap: .8rem; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative; overflow: hidden; color: #fff; padding: 5rem 0;
  background: linear-gradient(120deg, var(--teal-700), var(--teal-500), var(--emerald), var(--teal-600));
  background-size: 240% 240%; animation: partnerBg 16s ease infinite;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 26px 26px;
}
.cta-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-blob-1 { top: -120px; right: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%); animation: pbFloat1 14s ease-in-out infinite; }
.cta-blob-2 { bottom: -140px; left: -60px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(92,194,79,.28), transparent 70%); animation: pbFloat2 18s ease-in-out infinite; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-emblem {
  display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; margin-bottom: 1.2rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 2rem;
  box-shadow: 0 0 30px rgba(255,255,255,.25); animation: hlBeat 2.2s ease-in-out infinite;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.cta-meta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.text-center .cta-meta { justify-content: center; }
.cta-meta span {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px);
  padding: .55rem 1.1rem; border-radius: 50px; font-weight: 600; font-size: .95rem;
}
.cta-meta i { color: #fff; margin-right: .4rem; }

/* animated photo collage */
.cta-collage { position: relative; min-height: 400px; }
.cta-photo {
  position: absolute; margin: 0; border-radius: 22px; overflow: hidden; border: 6px solid rgba(255,255,255,.9);
  box-shadow: 0 26px 60px rgba(6,40,30,.4);
}
.cta-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cta-photo-1 { top: 0; left: 4%; width: 64%; height: 300px; z-index: 1; animation: aboutFloat 6s ease-in-out infinite; }
.cta-photo-2 { bottom: 0; right: 2%; width: 50%; height: 220px; z-index: 2; animation: aboutFloat 6s ease-in-out infinite .8s; }
.cta-floatcard {
  position: absolute; top: 16px; right: 0; z-index: 3; display: flex; align-items: center; gap: .7rem;
  background: #fff; color: var(--ink); padding: .8rem 1.1rem; border-radius: 16px;
  box-shadow: 0 16px 36px rgba(6,40,30,.3); animation: aboutFloat 6s ease-in-out infinite .4s;
}
.cta-floatcard-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff; font-size: 1.2rem; }
.cta-floatcard strong { display: block; font-size: 1.25rem; font-weight: 800; line-height: 1; color: var(--teal-600); }
.cta-floatcard small { font-size: .78rem; color: var(--muted); }
@media (max-width: 991px) {
  .cta-collage { min-height: 340px; max-width: 480px; margin: 1.5rem auto 0; }
}
@media (max-width: 575px) {
  .cta-collage { min-height: 300px; }
  .cta-photo-1 { height: 230px; } .cta-photo-2 { height: 170px; }
}

/* ---------- OUR PUBLICATIONS (hanging magazines) ---------- */
.pub-section { position: relative; overflow: hidden; background: linear-gradient(160deg, #f3f8fc 0%, #eef5f1 55%, #f5faf7 100%); }
.pub-row {
  position: relative; display: flex; justify-content: center; align-items: flex-start;
  gap: clamp(1rem, 4vw, 3.2rem); padding-top: 34px; flex-wrap: wrap;
}
/* the hanging string */
.pub-string {
  position: absolute; top: 22px; left: 4%; right: 4%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--teal-500) 12%, var(--teal-500) 88%, transparent);
  opacity: .5;
}
.pub-item {
  position: relative; z-index: 1; width: clamp(160px, 21vw, 215px); margin: 0;
  transform-origin: top center; animation: pubSway 5s ease-in-out infinite;
}
/* alternate up / down */
.pub-item:nth-child(odd)  { margin-top: 0; }
.pub-item:nth-child(even) { margin-top: 52px; }
.pub-item:nth-child(3)    { animation-delay: -1.2s; }
.pub-item:nth-child(4)    { animation-delay: -2.4s; }
.pub-item:nth-child(5)    { animation-delay: -.6s; }
@keyframes pubSway { 0%,100% { transform: rotate(-1.8deg); } 50% { transform: rotate(1.8deg); } }

/* the peg / clip */
.pub-clip {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 16px; height: 30px; border-radius: 5px;
  background: linear-gradient(180deg, var(--emerald), #3f9e30);
  box-shadow: 0 4px 10px rgba(12,46,77,.3);
}
.pub-clip::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.7);
}
.pub-card {
  border-radius: 8px; overflow: hidden; background: #fff; padding: 6px;
  box-shadow: 0 18px 38px rgba(12,46,77,.22);
  transition: transform .4s ease, box-shadow .4s ease;
}
.pub-card img { display: block; width: 100%; height: auto; border-radius: 4px; }
.pub-item:hover { animation-play-state: paused; }
.pub-item:hover .pub-card { transform: translateY(-8px) scale(1.03); box-shadow: 0 28px 50px rgba(12,46,77,.32); }

@media (max-width: 575px) {
  .pub-row { gap: 1.4rem 1rem; }
  .pub-item { width: 42%; }
  .pub-item:nth-child(even) { margin-top: 30px; }
  .pub-string { display: none; }
}

/* ---------- VENUE / MAP ---------- */
.venue-section { position: relative; overflow: hidden; background: linear-gradient(160deg, #eef4fb 0%, #e7f2ed 55%, #f2f8fb 100%); }
.venue-map {
  position: relative; border-radius: 22px; overflow: hidden; padding: 8px; background: #fff;
  box-shadow: 0 22px 50px rgba(12,46,77,.18); border: 1px solid var(--line);
}
.venue-map iframe { display: block; width: 100%; height: 420px; border: 0; border-radius: 16px; filter: grayscale(.1); }
.hl-divider-start { justify-content: flex-start; }
.venue-name { font-size: 1.5rem; font-weight: 800; margin: .4rem 0 .6rem; color: var(--ink); }
.venue-addr { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.venue-info { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 1rem; }
.venue-info li { display: flex; align-items: center; gap: 1rem; }
.venue-ico {
  flex: 0 0 auto; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  background: var(--grad); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-sm);
}
.venue-info strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-600); margin-bottom: .1rem; }
.venue-info div { color: var(--ink); font-weight: 600; }
@media (max-width: 991px) { .venue-map iframe { height: 320px; } }

/* ---------- CONTACT ---------- */
#contact {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f1f9f7 0%, #e9f5f2 55%, #eaf2fb 100%);
}
#contact .container { position: relative; z-index: 1; }
.contact-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 3rem 2.2rem 2.2rem; text-align: center; box-shadow: var(--shadow-sm); height: 100%; margin-top: 36px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; border-radius: 22px 22px 0 0;
  background: var(--grad); transform: scaleX(.4); transition: transform .4s ease;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.contact-card:hover::before { transform: scaleX(1); }
.contact-avatar {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 1.8rem; border: 5px solid #fff;
  box-shadow: 0 12px 26px rgba(18,138,134,.4); transition: transform .4s ease;
}
.contact-avatar-amber { background: linear-gradient(120deg, var(--amber), #3f9e30); box-shadow: 0 12px 26px rgba(92,194,79,.45); }
.contact-card:hover .contact-avatar { transform: translate(-50%, -50%) scale(1.08) rotate(-6deg); }
.contact-tag {
  display: inline-block; background: var(--tint); color: var(--teal-700); font-weight: 700;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.contact-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.contact-line {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  color: #45565d; text-decoration: none; font-weight: 600; padding: .4rem 0; transition: color .25s ease;
}
.contact-line:hover { color: var(--teal-600); }
.contact-line i { color: var(--amber); }

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative; overflow: hidden; color: rgba(255,255,255,.8);
  background: linear-gradient(150deg, #06173a 0%, #0a2240 40%, #07363a 75%, #06173a 100%);
  background-size: 220% 220%; animation: partnerBg 22s ease infinite;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, var(--teal-600), var(--emerald), var(--amber), var(--emerald), var(--teal-600));
  background-size: 200% 100%; animation: footerBorder 8s linear infinite;
}
@keyframes footerBorder { to { background-position: 200% 0; } }
.footer-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.footer-glow-1 { top: -120px; right: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(31,185,140,.22), transparent 70%); animation: pbFloat1 16s ease-in-out infinite; }
.footer-glow-2 { bottom: -140px; left: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(92,194,79,.16), transparent 70%); animation: pbFloat2 20s ease-in-out infinite; }

/* gradient menu bar */
.footer-menu { position: relative; z-index: 2; background: var(--grad); background-size: 200% 100%; animation: partnerBg 14s ease infinite; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.6rem; padding: 1rem 0; }
.footer-nav a {
  color: rgba(255,255,255,.92); text-decoration: none; font-weight: 600; font-size: .95rem; position: relative; padding: .2rem 0;
}
.footer-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: #fff; transform: scaleX(0); transition: transform .3s ease; }
.footer-nav a:hover { color: #fff; }
.footer-nav a:hover::after { transform: scaleX(1); }

.footer-main { position: relative; z-index: 2; padding: 3.5rem 12px 1.8rem; }
.footer-logo { height: 64px; width: auto; margin-bottom: 1.2rem; }
.site-footer .brand-text strong { font-size: 1.05rem; }
.footer-about { color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.7; margin: 0 0 1rem; }
.footer-meta { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1.1rem; }
.footer-meta i { color: var(--amber); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; font-size: 1.1rem;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.footer-social a:hover { background: var(--grad); transform: translateY(-4px); box-shadow: 0 10px 22px rgba(18,138,134,.45); }

.footer-title {
  position: relative; color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 1.3rem; padding-bottom: .6rem;
}
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; border-radius: 3px; background: var(--grad); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a {
  color: rgba(255,255,255,.7); text-decoration: none; font-size: .92rem; font-weight: 500;
  display: inline-flex; align-items: center; transition: color .25s ease, transform .25s ease;
}
.footer-links a::before { content: '\F285'; font-family: 'bootstrap-icons'; color: var(--emerald); font-size: .8rem; margin-right: .45rem; opacity: 0; transition: opacity .25s ease, margin .25s ease; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-links a:hover::before { opacity: 1; }

.footer-org { list-style: none; padding: 0; margin: 0; }
.footer-org li { font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.4; margin-bottom: .8rem; }
.footer-org span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--amber-soft); font-weight: 700; margin-bottom: .1rem; }

.footer-contact {
  display: flex; flex-direction: column; color: #fff; text-decoration: none; font-weight: 700; font-size: 1rem;
  margin-bottom: 1rem; transition: color .25s ease;
}
.footer-contact i { color: var(--amber); margin-right: .4rem; }
.footer-contact small { font-weight: 500; font-size: .76rem; color: rgba(255,255,255,.6); margin-top: .15rem; }
.footer-contact:hover { color: var(--amber-soft); }

.site-footer hr { border-color: rgba(255,255,255,.12); margin: 2.2rem 0 1.2rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem; }
.footer-copy { font-size: .84rem; color: rgba(255,255,255,.55); margin: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  #mainNav { background: rgba(6,54,58,.95); backdrop-filter: blur(12px); }
  .navbar-collapse { margin-top: 1rem; }
  .hero { text-align: center; padding-top: 3rem; }
  .hero-partners { align-items: center; }
  .hero-actions, .hero-meta, .hero-credits { justify-content: center; }
  .chair-card { max-width: 380px; margin: 2rem auto 0; }
}
@media (max-width: 575px) {
  .section { padding: 4rem 0; }
  .stat-num { font-size: 2.2rem; }
}
