/* ╔═══════════════════════════════════════════════════════════╗
   ║  TVET Page — UNIQUE DESIGN SYSTEM                        ║
   ║  Bold Editorial · Bento Grid · Tabbed Showcase           ║
   ║  NO glassmorphism, NO sparkles, NO waves, NO orbs        ║
   ╚═══════════════════════════════════════════════════════════╝ */

/* ═══════════ PAGE OVERRIDES ═══════════ */
.tvet-body {
  background: #ffffff;
}

/* Hide homepage-style background effects on this page */
.tvet-body .bg-blobs,
.tvet-body #sparkleCanvas,
.tvet-body #trailCanvas {
  display: none !important;
}

/* ═══════════ SHARED TVET COMPONENTS ═══════════ */
.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.overline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--blue-500);
  transform: translateY(-50%);
}

.hero-accent {
  color: var(--blue-500);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ═══════════ BUTTONS — CLEAN SOLID ═══════════ */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-solid:hover {
  background: var(--blue-700);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}

.btn-solid-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--blue-600);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 2px solid var(--blue-200);
  cursor: pointer;
  transition: border-color 0.35s ease, background-color 0.35s ease, transform 0.35s ease, color 0.35s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  transform: translateY(-3px);
}

/* ═══════════ SCROLL ANIMATION ═══════════ */
.anim-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════ */
/* ══ FLUID OCEAN ZONE ═════════════════ */
/* ═══════════════════════════════════════ */
.fluid-ocean-zone {
  position: relative;
  overflow: hidden;
  contain: layout style;
  background: linear-gradient(165deg, #f0f4fb 0%, #edf2fa 60%, #ffffff 100%);
  transition: background-color 0.8s ease, background-image 0.8s ease, background 0.8s ease;
  z-index: 1;
}

.fluid-ocean-zone.dark-mode {
  background: linear-gradient(165deg, #203556 0%, #2c4974 60%, #1b2e4b 100%);
}

#heroFluidCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ═══════════ GPU FRIENDLY BACKGROUND BLOBS ═══════════ */
.tvet-bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tvet-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
  animation: tvet-blob-float 35s ease-in-out infinite;
  will-change: transform;
}

.tvet-blob-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.45) 0%, rgba(59, 130, 246, 0.2) 45%, transparent 70%);
  top: -100px;
  left: -120px;
}

.tvet-blob-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.38) 0%, rgba(168, 85, 247, 0.18) 45%, transparent 70%);
  top: 30%;
  right: -60px;
  animation-delay: -8s;
  animation-duration: 42s;
}

.tvet-blob-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(34, 211, 238, 0.2) 45%, transparent 70%);
  bottom: 15%;
  left: 10%;
  animation-delay: -15s;
  animation-duration: 38s;
}

/* Dark mode overrides for blobs (vibrant yet soft against deep navy) */
.fluid-ocean-zone.dark-mode .tvet-blob-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(59, 130, 246, 0.2) 45%, transparent 70%);
}
.fluid-ocean-zone.dark-mode .tvet-blob-2 {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.38) 0%, rgba(168, 85, 247, 0.15) 45%, transparent 70%);
}
.fluid-ocean-zone.dark-mode .tvet-blob-3 {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, rgba(34, 211, 238, 0.18) 45%, transparent 70%);
}

@keyframes tvet-blob-float {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(50px, -30px) scale(1.08) rotate(3deg);
  }
  50% {
    transform: translate(-30px, 45px) scale(0.95) rotate(-2deg);
  }
  75% {
    transform: translate(30px, 20px) scale(1.05) rotate(2deg);
  }
}

/* Hide blobs on mobile screens or in relaxed mode for locked 60fps */
@media (max-width: 768px) {
  .tvet-bg-blobs {
    display: none !important;
  }
}
body.relaxed-mode .tvet-bg-blobs {
  display: none !important;
}

/* ═══════════════════════════════════════ */
/* ══ 1. HERO — SPLIT SCREEN ═══════════ */
/* ═══════════════════════════════════════ */
.hero-split {
  padding: 160px 0 100px;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-split::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-200), transparent);
}

.hero-split-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left: Text */
.hero-split-left {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 24px;
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Mini stats */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mini-stat {
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.mini-stat span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-400);
}

.mini-stat small {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 600;
}

.mini-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--blue-100);
}

/* Right: Image Collage */
.hero-split-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.hero-collage {
  position: relative;
  width: 100%;
  height: 420px;
}

.collage-item {
  position: absolute;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
  text-decoration: none;
}

.collage-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.collage-tag {
  display: block;
  padding: 10px 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.ci-1 {
  top: 0;
  left: 10%;
  transform: rotate(-4deg);
  z-index: 4;
}

.ci-2 {
  top: 60px;
  right: 5%;
  transform: rotate(3deg);
  z-index: 3;
}

.ci-3 {
  top: 200px;
  left: 5%;
  transform: rotate(2deg);
  z-index: 2;
}

.ci-4 {
  top: 260px;
  right: 10%;
  transform: rotate(-3deg);
  z-index: 1;
}

.collage-item:hover {
  transform: rotate(0deg) scale(1.06) translateY(-8px);
  box-shadow: 0 24px 64px rgba(59, 130, 246, 0.2);
  z-index: 10;
}


/* ═══════════ DARK MODE TOGGLE ═══════════ */
.hero-mode-toggle {
  position: absolute;
  top: 100px;
  right: 28px;
  z-index: 99999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-200);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s ease, background-color 0.4s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.15);
}

.hero-mode-toggle .mode-sun {
  display: none;
}

.hero-mode-toggle .mode-moon {
  display: block;
}

/* ═══════════ DARK MODE — ZONE OVERRIDES ═══════════ */
body.dark-mode .hero-mode-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

body.dark-mode .mode-sun {
  display: block;
}

body.dark-mode .mode-moon {
  display: none;
}

/* Text transitions */
.hero-heading,
.hero-desc,
.hero-label,
.hero-accent,
.hero-label-dot,
.mini-stat strong,
.mini-stat small,
.mini-stat span,
.mini-stat-sep,
.hero-btns .btn-ghost,
.collage-item,
.collage-tag,
.editorial-heading,
.overline,
.ed-content,
.ed-tab,
.editorial-tabs,
.editorial-img-accent,
.pill {
  transition: color 0.8s ease, background-color 0.8s ease,
    border-color 0.8s ease, box-shadow 0.8s ease;
}

/* Hero dark overrides */
.fluid-ocean-zone.dark-mode .hero-heading {
  color: #ffffff;
}

.fluid-ocean-zone.dark-mode .hero-accent {
  color: #93c5fd;
}

.fluid-ocean-zone.dark-mode .hero-desc {
  color: rgba(255, 255, 255, 0.65);
}

.fluid-ocean-zone.dark-mode .hero-label {
  color: #67e8f9;
}

.fluid-ocean-zone.dark-mode .hero-label-dot {
  background: #67e8f9;
  box-shadow: 0 0 8px #67e8f9;
}

.fluid-ocean-zone.dark-mode .mini-stat strong {
  color: #fff;
}

.fluid-ocean-zone.dark-mode .mini-stat small {
  color: rgba(255, 255, 255, 0.45);
}

.fluid-ocean-zone.dark-mode .mini-stat span {
  color: #93c5fd;
}

.fluid-ocean-zone.dark-mode .mini-stat-sep {
  background: rgba(255, 255, 255, 0.15);
}

.fluid-ocean-zone.dark-mode .btn-solid {
  background: rgba(59, 130, 246, 0.9);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.fluid-ocean-zone.dark-mode .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.fluid-ocean-zone.dark-mode .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.fluid-ocean-zone.dark-mode .collage-item {
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(59, 130, 246, 0.08);
}

.fluid-ocean-zone.dark-mode .collage-tag {
  background: rgba(15, 23, 42, 0.85);
  color: rgba(255, 255, 255, 0.9);
}

.fluid-ocean-zone.dark-mode .collage-item:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 32px rgba(59, 130, 246, 0.15);
}

/* About section dark overrides */
.fluid-ocean-zone.dark-mode .editorial-heading {
  color: #fff;
}

.fluid-ocean-zone.dark-mode .about-editorial .overline {
  color: #67e8f9;
}

.fluid-ocean-zone.dark-mode .about-editorial .overline::before {
  background: #67e8f9;
}

.fluid-ocean-zone.dark-mode .ed-content {
  color: rgba(255, 255, 255, 0.65);
}

.fluid-ocean-zone.dark-mode .editorial-tabs {
  background: rgba(255, 255, 255, 0.06);
}

.fluid-ocean-zone.dark-mode .ed-tab {
  color: rgba(255, 255, 255, 0.45);
}

.fluid-ocean-zone.dark-mode .ed-tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fluid-ocean-zone.dark-mode .pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
}

.fluid-ocean-zone.dark-mode .pill:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.fluid-ocean-zone.dark-mode .editorial-img-accent {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Marquee in dark mode */
.fluid-ocean-zone.dark-mode .marquee-strip {
  background: linear-gradient(90deg, rgba(30, 58, 95, 0.8), rgba(37, 99, 235, 0.7));
}

/* Stats strip in dark mode */
.fluid-ocean-zone.dark-mode .stats-strip {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(30, 64, 175, 0.65) 100%);
}

/* ═══ Bento section dark mode ═══ */
.fluid-ocean-zone.dark-mode .bento-heading {
  color: #fff;
}
.fluid-ocean-zone.dark-mode .bento-section .overline {
  color: #67e8f9;
}
.fluid-ocean-zone.dark-mode .bento-section .overline::before {
  background: #67e8f9;
}
.fluid-ocean-zone.dark-mode .bento-card {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.fluid-ocean-zone.dark-mode .bento-card h3 {
  color: #fff;
}
.fluid-ocean-zone.dark-mode .bento-card p {
  color: rgba(255, 255, 255, 0.55);
}
.fluid-ocean-zone.dark-mode .bento-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.25),
    0 0 32px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.fluid-ocean-zone.dark-mode .bento-card .bc-glow {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
}

.fluid-ocean-zone.dark-mode .bento-heading .hero-accent {
  background: linear-gradient(90deg, #67e8f9, #93c5fd, #c4b5fd, #67e8f9);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bentoAccentShift 4s ease-in-out infinite;
}

.fluid-ocean-zone.dark-mode .bento-card:hover h3 {
  background: linear-gradient(90deg, #93c5fd, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════ */
/* ══ 2. ABOUT — EDITORIAL LAYOUT ══════ */
/* ═══════════════════════════════════════ */
.about-editorial {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.editorial-img {
  position: relative;
}

.editorial-img img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.editorial-img-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--blue-100);
  border-radius: 24px;
  z-index: 1;
}

.editorial-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

/* Language Tabs */
.editorial-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--blue-50);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}

.ed-tab {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ed-tab.active {
  background: #fff;
  color: var(--blue-600);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ed-content {
  display: none;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
}

.ed-content.active {
  display: block;
}

.editorial-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  padding: 8px 18px;
  background: #fff;
  border: 1.5px solid var(--blue-200);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  transition: all 0.3s ease;
}

.pill:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════ */
/* ══ 3. STATS STRIP ═══════════════════ */
/* ═══════════════════════════════════════ */
.stats-strip {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(30, 64, 175, 0.82) 100%);
  position: relative;
  z-index: 2;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent 24.5%,
      rgba(255, 255, 255, 0.04) 24.5%,
      rgba(255, 255, 255, 0.04) 25%);
  pointer-events: none;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-big {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-big-suffix {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--blue-300);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════════ */
/* ══ 4. BENTO GRID — WHY US ═══════════ */
/* ═══════════════════════════════════════ */
.bento-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.bento-header {
  margin-bottom: 48px;
}

.bento-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-top: 8px;
  letter-spacing: -1px;
}

/* Animated gradient on "Choose Us" accent inside bento */
.bento-heading .hero-accent {
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6, #3b82f6);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bentoAccentShift 4s ease-in-out infinite;
}

@keyframes bentoAccentShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  perspective: 1000px;
}

/* Card 1: Tall — spans 2 rows */
.bento-card.bc-tall {
  grid-row: 1 / 3;
}

/* Card 4: Wide — spans 2 cols */
.bento-card.bc-wide {
  grid-column: 2 / 4;
}

/* ── Glassmorphic Card Base ── */
.bento-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ── Subtle border highlight on hover ── */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-card:hover::before {
  opacity: 1;
}

/* ── Shimmer sweep (wider + brighter) ── */
.bento-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(59, 130, 246, 0.12) 50%,
    rgba(255, 255, 255, 0.15) 60%,
    transparent 80%
  );
  transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.bento-card:hover::after {
  left: 160%;
}

/* ── Cursor-tracking glow orb ── */
.bento-card .bc-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(59, 130, 246, 0.18) 0%,
    rgba(6, 182, 212, 0.08) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  will-change: transform, opacity;
  filter: blur(8px);
}

.bento-card:hover .bc-glow {
  opacity: 1;
  transform: scale(1.8);
}

/* ── Hover: 3D lift + glassmorphic glow ── */
.bento-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow:
    0 28px 72px rgba(15, 23, 42, 0.12),
    0 0 40px rgba(59, 130, 246, 0.08),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ── Icon with glow ring ── */
.bc-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: inline-block;
  will-change: transform;
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

/* Pulsing glow ring behind icon */
.bc-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  animation: iconRing 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes iconRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%      { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%      { transform: translateY(-6px) rotate(4deg); }
  75%      { transform: translateY(-2px) rotate(-3deg); }
}

/* Stagger icon animation per card */
.bento-card:nth-child(1) .bc-icon { animation-delay: 0s; }
.bento-card:nth-child(2) .bc-icon { animation-delay: 0.5s; }
.bento-card:nth-child(3) .bc-icon { animation-delay: 1.0s; }
.bento-card:nth-child(4) .bc-icon { animation-delay: 1.5s; }
.bento-card:nth-child(5) .bc-icon { animation-delay: 0.3s; }
.bento-card:nth-child(6) .bc-icon { animation-delay: 0.8s; }

/* Icon pops + spins on card hover */
.bento-card:hover .bc-icon {
  animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconPop {
  0%   { transform: scale(1) translateY(0) rotate(0deg); }
  40%  { transform: scale(1.4) translateY(-10px) rotate(-12deg); }
  70%  { transform: scale(1.15) translateY(-4px) rotate(6deg); }
  100% { transform: scale(1.2) translateY(-3px) rotate(0deg); }
}

/* ── Per-card staggered floating (more dramatic) ── */
.bento-card:nth-child(1) { animation: cardDrift1 6s ease-in-out infinite; }
.bento-card:nth-child(2) { animation: cardDrift2 7s ease-in-out infinite; }
.bento-card:nth-child(3) { animation: cardDrift3 5.5s ease-in-out infinite; }
.bento-card:nth-child(4) { animation: cardDrift4 8s ease-in-out infinite; }
.bento-card:nth-child(5) { animation: cardDrift5 6.5s ease-in-out infinite; }
.bento-card:nth-child(6) { animation: cardDrift6 7.5s ease-in-out infinite; }

@keyframes cardDrift1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-10px) rotate(0.5deg); }
  60%      { transform: translateY(-5px) rotate(-0.3deg); }
}
@keyframes cardDrift2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35%      { transform: translateY(-7px) rotate(-0.4deg); }
  70%      { transform: translateY(-12px) rotate(0.25deg); }
}
@keyframes cardDrift3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-11px) rotate(0.35deg); }
  55%      { transform: translateY(-4px) rotate(-0.5deg); }
  80%      { transform: translateY(-8px) rotate(0.2deg); }
}
@keyframes cardDrift4 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%      { transform: translateY(-6px) rotate(-0.25deg); }
  75%      { transform: translateY(-9px) rotate(0.3deg); }
}
@keyframes cardDrift5 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-8px) rotate(0.4deg); }
  65%      { transform: translateY(-5px) rotate(-0.3deg); }
}
@keyframes cardDrift6 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  45%      { transform: translateY(-7px) rotate(-0.35deg); }
  80%      { transform: translateY(-11px) rotate(0.25deg); }
}

/* Pause floating on hover (JS takes over with 3D tilt) */
.bento-card:hover {
  animation-play-state: paused;
}

/* ── Card Title — gradient reveal on hover ── */
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.bento-card:hover h3 {
  background: linear-gradient(90deg, #1e3a5f, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bento-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════ */
/* ══ 5. PROGRAM SHOWCASE — TABBED ═════ */
/* ═══════════════════════════════════════ */
.program-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, #f3f6fc 0%, #edf2fa 50%, #f3f6fc 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
  position: relative;
  overflow: hidden;
}

/* ── Programs Background Container ── */
.pg-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Gradient orbs ── */
.pg-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.pg-orb-1 {
  top: -8%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.12) 30%, rgba(59, 130, 246, 0.03) 55%, transparent 70%);
  animation: pgOrb1 22s ease-in-out infinite;
}

.pg-orb-2 {
  bottom: -10%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(6, 182, 212, 0.1) 30%, rgba(6, 182, 212, 0.02) 55%, transparent 70%);
  animation: pgOrb2 18s ease-in-out infinite;
}

.pg-orb-3 {
  top: 40%;
  left: 50%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.06) 35%, transparent 65%);
  animation: pgOrb3 25s ease-in-out infinite;
}

@keyframes pgOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(-100px, 60px) scale(1.12); }
  60%      { transform: translate(-40px, 100px) scale(0.92); }
  80%      { transform: translate(30px, 30px) scale(1.05); }
}

@keyframes pgOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(80px, -50px) scale(1.1); }
  55%      { transform: translate(30px, -80px) scale(0.95); }
  80%      { transform: translate(-20px, -30px) scale(1.04); }
}

@keyframes pgOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-60px, 50px) scale(1.08); }
  70%      { transform: translate(40px, -40px) scale(0.93); }
}

/* ── Floating diamonds (unique to programs section) ── */
.pg-diamond {
  position: absolute;
  will-change: transform;
  border: 2px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(6, 182, 212, 0.04));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.pg-diamond-1 {
  top: 8%;
  left: 6%;
  width: 60px;
  height: 60px;
  border-color: rgba(59, 130, 246, 0.25);
  transform: rotate(45deg);
  animation: pgDiamondFloat1 16s ease-in-out infinite;
}

.pg-diamond-2 {
  top: 18%;
  right: 10%;
  width: 40px;
  height: 40px;
  border-color: rgba(6, 182, 212, 0.2);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(59, 130, 246, 0.04));
  transform: rotate(45deg);
  animation: pgDiamondFloat2 20s ease-in-out infinite;
}

.pg-diamond-3 {
  bottom: 15%;
  right: 6%;
  width: 50px;
  height: 50px;
  border-color: rgba(99, 102, 241, 0.2);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(59, 130, 246, 0.03));
  transform: rotate(45deg);
  animation: pgDiamondFloat3 18s ease-in-out infinite;
}

.pg-diamond-4 {
  bottom: 30%;
  left: 8%;
  width: 35px;
  height: 35px;
  border-color: rgba(59, 130, 246, 0.18);
  transform: rotate(45deg);
  animation: pgDiamondFloat4 14s ease-in-out infinite;
}

@keyframes pgDiamondFloat1 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  25%      { transform: rotate(50deg) translate(20px, -15px); opacity: 0.8; }
  50%      { transform: rotate(45deg) translate(10px, -30px); opacity: 0.5; }
  75%      { transform: rotate(40deg) translate(-10px, -10px); opacity: 0.7; }
}

@keyframes pgDiamondFloat2 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  33%      { transform: rotate(50deg) translate(-15px, 25px); opacity: 0.8; }
  66%      { transform: rotate(40deg) translate(10px, 10px); opacity: 0.4; }
}

@keyframes pgDiamondFloat3 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  40%      { transform: rotate(40deg) translate(-20px, -20px); opacity: 0.7; }
  70%      { transform: rotate(50deg) translate(15px, -10px); opacity: 0.4; }
}

@keyframes pgDiamondFloat4 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50%      { transform: rotate(50deg) translate(15px, -20px); opacity: 0.7; }
}

/* ── Sparkle/shimmer stars (cross-shaped with glow) ── */
.pg-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  will-change: transform, opacity;
  opacity: 0;
}

.pg-sparkle::before,
.pg-sparkle::after {
  content: '';
  position: absolute;
  background: rgba(59, 130, 246, 0.7);
  border-radius: 2px;
}

.pg-sparkle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.pg-sparkle::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.pg-sparkle-1 { top: 12%; left: 20%; width: 16px; height: 16px; animation: pgSparkle 3s ease-in-out infinite 0s; }
.pg-sparkle-1::before, .pg-sparkle-1::after { background: rgba(59, 130, 246, 0.8); box-shadow: 0 0 8px rgba(59, 130, 246, 0.5); }

.pg-sparkle-2 { top: 25%; right: 18%; width: 12px; height: 12px; animation: pgSparkle 4s ease-in-out infinite 0.5s; }
.pg-sparkle-2::before, .pg-sparkle-2::after { background: rgba(6, 182, 212, 0.7); box-shadow: 0 0 6px rgba(6, 182, 212, 0.4); }

.pg-sparkle-3 { top: 45%; left: 12%; width: 10px; height: 10px; animation: pgSparkle 3.5s ease-in-out infinite 1s; }
.pg-sparkle-3::before, .pg-sparkle-3::after { background: rgba(99, 102, 241, 0.7); box-shadow: 0 0 6px rgba(99, 102, 241, 0.4); }

.pg-sparkle-4 { top: 60%; right: 25%; width: 14px; height: 14px; animation: pgSparkle 4.5s ease-in-out infinite 1.5s; }
.pg-sparkle-4::before, .pg-sparkle-4::after { background: rgba(59, 130, 246, 0.7); box-shadow: 0 0 8px rgba(59, 130, 246, 0.4); }

.pg-sparkle-5 { top: 72%; left: 30%; width: 8px; height: 8px; animation: pgSparkle 3s ease-in-out infinite 2s; }
.pg-sparkle-5::before, .pg-sparkle-5::after { background: rgba(6, 182, 212, 0.8); box-shadow: 0 0 6px rgba(6, 182, 212, 0.5); }

.pg-sparkle-6 { top: 35%; left: 65%; width: 11px; height: 11px; animation: pgSparkle 5s ease-in-out infinite 0.8s; }
.pg-sparkle-6::before, .pg-sparkle-6::after { background: rgba(99, 102, 241, 0.6); box-shadow: 0 0 6px rgba(99, 102, 241, 0.3); }

.pg-sparkle-7 { top: 85%; right: 15%; width: 13px; height: 13px; animation: pgSparkle 3.8s ease-in-out infinite 2.5s; }
.pg-sparkle-7::before, .pg-sparkle-7::after { background: rgba(59, 130, 246, 0.7); box-shadow: 0 0 8px rgba(59, 130, 246, 0.4); }

.pg-sparkle-8 { top: 8%; left: 50%; width: 10px; height: 10px; animation: pgSparkle 4.2s ease-in-out infinite 1.2s; }
.pg-sparkle-8::before, .pg-sparkle-8::after { background: rgba(6, 182, 212, 0.7); box-shadow: 0 0 6px rgba(6, 182, 212, 0.4); }

@keyframes pgSparkle {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  15%      { opacity: 1; transform: scale(1.2) rotate(15deg); }
  30%      { opacity: 0.8; transform: scale(1) rotate(0deg); }
  50%      { opacity: 0.6; transform: scale(0.8) rotate(-10deg); }
  70%      { opacity: 0.3; transform: scale(0.5) rotate(5deg); }
}

/* ── Floating hexagons (engineering motif) ── */
.pg-hex {
  position: absolute;
  will-change: transform;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.pg-hex-1 {
  top: 5%;
  right: 12%;
  width: 80px;
  height: 90px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.05));
  border: none;
  animation: pgHexFloat1 20s ease-in-out infinite;
}

/* Inner border via box-shadow trick on hex pseudo */
.pg-hex::after {
  content: '';
  position: absolute;
  inset: 3px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(180deg, #f3f6fc, #edf2fa);
}

.pg-hex-2 {
  bottom: 18%;
  left: 4%;
  width: 65px;
  height: 73px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.06));
  animation: pgHexFloat2 16s ease-in-out infinite;
}

.pg-hex-3 {
  top: 50%;
  right: 3%;
  width: 55px;
  height: 62px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(59, 130, 246, 0.05));
  animation: pgHexFloat3 22s ease-in-out infinite;
}

@keyframes pgHexFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  30%      { transform: translate(-20px, 30px) rotate(10deg); opacity: 0.7; }
  60%      { transform: translate(15px, 15px) rotate(-5deg); opacity: 0.4; }
}

@keyframes pgHexFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
  40%      { transform: translate(25px, -15px) rotate(-8deg); opacity: 0.6; }
  75%      { transform: translate(-10px, -25px) rotate(5deg); opacity: 0.35; }
}

@keyframes pgHexFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.45; }
  50%      { transform: translate(-15px, 20px) rotate(12deg); opacity: 0.65; }
}

/* ── Diagonal light beams ── */
.pg-beam {
  position: absolute;
  will-change: transform, opacity;
}

.pg-beam-1 {
  top: 0;
  right: 35%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.06) 20%,
    rgba(59, 130, 246, 0.18) 40%,
    rgba(6, 182, 212, 0.14) 60%,
    rgba(59, 130, 246, 0.06) 80%,
    transparent 100%
  );
  transform: rotate(-10deg);
  animation: pgBeam1 9s ease-in-out infinite;
}

.pg-beam-2 {
  top: 0;
  left: 20%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(99, 102, 241, 0.05) 30%,
    rgba(99, 102, 241, 0.12) 50%,
    rgba(59, 130, 246, 0.08) 70%,
    transparent 100%
  );
  transform: rotate(7deg);
  animation: pgBeam2 11s ease-in-out infinite;
}

@keyframes pgBeam1 {
  0%, 100% { opacity: 0.2; transform: rotate(-10deg) translateX(0); }
  50%      { opacity: 0.55; transform: rotate(-12deg) translateX(-12px); }
}

@keyframes pgBeam2 {
  0%, 100% { opacity: 0.15; transform: rotate(7deg) translateX(0); }
  50%      { opacity: 0.45; transform: rotate(9deg) translateX(10px); }
}

.showcase-header {
  margin-bottom: 40px;
}

/* Override hero-accent for this section — clean modern gradient */
.program-showcase .hero-accent {
  font-style: normal;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.program-showcase .bento-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
}

.showcase-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid #e0e5ee;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease,
              background-color 0.3s ease;
  will-change: transform;
  position: relative;
}

.stab:hover {
  border-color: var(--blue-300);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.stab.active {
  background: linear-gradient(135deg, var(--blue-600), #2563eb);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.stab-emoji {
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stab:hover .stab-emoji,
.stab.active .stab-emoji {
  animation: tabEmojiPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes tabEmojiPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25) rotate(-8deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Panels */
.showcase-viewport {
  position: relative;
  min-height: 380px;
}

.showcase-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(200, 215, 240, 0.5);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06),
              0 1px 3px rgba(15, 23, 42, 0.04);
  animation: panelFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-panel.active {
  display: grid;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Image with subtle zoom entrance */
.sp-img {
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.sp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.showcase-panel.active .sp-img img {
  animation: imgZoomIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes imgZoomIn {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.sp-img:hover img {
  transform: scale(1.04);
}

/* Info panel */
.sp-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge with subtle shimmer */
.sp-badge {
  display: inline-block;
  padding: 5px 16px;
  background: linear-gradient(135deg, var(--blue-50), rgba(219, 234, 254, 0.6));
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.sp-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0%, 100% { left: -100%; }
  50%      { left: 150%; }
}

.sp-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.sp-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Tags with hover effect */
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.sp-tags span {
  padding: 6px 16px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  cursor: default;
}

.sp-tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.12);
  background: rgba(219, 234, 254, 0.9);
}

/* Button with animated arrow */
.sp-btn {
  display: inline-flex;
  position: relative;
}

.sp-btn:hover {
  letter-spacing: 0.3px;
}



/* ═══════════════════════════════════════ */
/* ══ 6. JOURNEY — VERTICAL TIMELINE ═══ */
/* ═══════════════════════════════════════ */
.journey-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8faff 0%, #f0f4fb 50%, #fff 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
  position: relative;
  overflow: hidden;
}

/* ── Journey Background Container ── */
.jy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Large drifting gradient orbs ── */
.jy-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.jy-orb-1 {
  top: -5%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0.15) 30%, rgba(59, 130, 246, 0.04) 55%, transparent 70%);
  animation: jyOrb1 20s ease-in-out infinite;
}

.jy-orb-2 {
  bottom: -10%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(6, 182, 212, 0.12) 30%, rgba(6, 182, 212, 0.03) 55%, transparent 70%);
  animation: jyOrb2 24s ease-in-out infinite;
}

.jy-orb-3 {
  top: 30%;
  right: 0%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(99, 102, 241, 0.1) 30%, rgba(99, 102, 241, 0.02) 55%, transparent 70%);
  animation: jyOrb3 18s ease-in-out infinite;
}

@keyframes jyOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(90px, 70px) scale(1.12); }
  50%      { transform: translate(40px, 130px) scale(0.9); }
  75%      { transform: translate(-50px, 50px) scale(1.06); }
}

@keyframes jyOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(-70px, -60px) scale(1.15); }
  60%      { transform: translate(-25px, -100px) scale(0.92); }
  85%      { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes jyOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-80px, 60px) scale(1.1); }
  70%      { transform: translate(30px, -50px) scale(0.94); }
}

/* ── Rotating gradient rings (timeline theme) ── */
.jy-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  will-change: transform;
}

.jy-ring-1 {
  top: 10%;
  right: 6%;
  width: 240px;
  height: 240px;
  border-width: 3px;
  border-color: rgba(59, 130, 246, 0.12);
  border-top-color: rgba(59, 130, 246, 0.4);
  border-right-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.06);
  animation: jyRingSpin 30s linear infinite, jyRingDrift1 16s ease-in-out infinite;
}

.jy-ring-2 {
  bottom: 15%;
  left: 4%;
  width: 190px;
  height: 190px;
  border-width: 3px;
  border-color: rgba(99, 102, 241, 0.1);
  border-bottom-color: rgba(99, 102, 241, 0.35);
  border-left-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.05);
  animation: jyRingSpin 25s linear infinite reverse, jyRingDrift2 20s ease-in-out infinite;
}

@keyframes jyRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes jyRingDrift1 {
  0%, 100% { translate: 0 0; }
  50%      { translate: -30px 25px; }
}

@keyframes jyRingDrift2 {
  0%, 100% { translate: 0 0; }
  50%      { translate: 25px -20px; }
}

/* ── Floating dots (timeline nodes scattered) ── */
.jy-dot {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  opacity: 0;
  animation: jyDotFade 4s ease-in-out infinite;
}

.jy-dot-1 {
  top: 8%; left: 15%;
  width: 12px; height: 12px;
  background: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
  animation-delay: 0s;
  animation-duration: 5s;
}

.jy-dot-2 {
  top: 22%; right: 12%;
  width: 10px; height: 10px;
  background: rgba(6, 182, 212, 0.55);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
  animation-delay: 0.8s;
  animation-duration: 4.5s;
}

.jy-dot-3 {
  top: 38%; left: 8%;
  width: 16px; height: 16px;
  background: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.25);
  animation-delay: 1.5s;
  animation-duration: 6s;
}

.jy-dot-4 {
  top: 55%; right: 18%;
  width: 11px; height: 11px;
  background: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.25);
  animation-delay: 2.2s;
  animation-duration: 5.5s;
}

.jy-dot-5 {
  top: 68%; left: 20%;
  width: 8px; height: 8px;
  background: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
  animation-delay: 0.5s;
  animation-duration: 4s;
}

.jy-dot-6 {
  top: 80%; right: 10%;
  width: 14px; height: 14px;
  background: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.2);
  animation-delay: 3s;
  animation-duration: 5s;
}

.jy-dot-7 {
  top: 15%; left: 75%;
  width: 10px; height: 10px;
  background: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.25);
  animation-delay: 1s;
  animation-duration: 4.8s;
}

.jy-dot-8 {
  top: 90%; left: 35%;
  width: 11px; height: 11px;
  background: rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.25);
  animation-delay: 2s;
  animation-duration: 5.2s;
}

@keyframes jyDotFade {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.4); }
  15%      { opacity: 1; transform: translateY(-12px) scale(1.1); }
  50%      { opacity: 0.9; transform: translateY(-20px) scale(1); }
  85%      { opacity: 0.6; transform: translateY(-28px) scale(0.8); }
}

/* ── Curved arcs (connection path lines) ── */
.jy-arc {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  will-change: transform, opacity;
}

.jy-arc-1 {
  top: 8%;
  left: 3%;
  width: 350px;
  height: 350px;
  border-width: 3px;
  border-top-color: rgba(59, 130, 246, 0.2);
  border-right-color: rgba(6, 182, 212, 0.15);
  animation: jyArcFloat1 12s ease-in-out infinite;
  opacity: 0.7;
}

.jy-arc-2 {
  bottom: 12%;
  right: 2%;
  width: 300px;
  height: 300px;
  border-width: 3px;
  border-bottom-color: rgba(99, 102, 241, 0.18);
  border-left-color: rgba(59, 130, 246, 0.14);
  animation: jyArcFloat2 14s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes jyArcFloat1 {
  0%, 100% { transform: rotate(0deg) translate(0, 0); opacity: 0.4; }
  50%      { transform: rotate(25deg) translate(20px, 15px); opacity: 0.7; }
}

@keyframes jyArcFloat2 {
  0%, 100% { transform: rotate(0deg) translate(0, 0); opacity: 0.3; }
  50%      { transform: rotate(-20deg) translate(-15px, -10px); opacity: 0.6; }
}

/* ── Light beams sweeping diagonally ── */
.jy-beam {
  position: absolute;
  will-change: transform, opacity;
}

.jy-beam-1 {
  top: 0;
  left: 28%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.08) 15%,
    rgba(59, 130, 246, 0.22) 35%,
    rgba(6, 182, 212, 0.18) 55%,
    rgba(59, 130, 246, 0.08) 75%,
    transparent 100%
  );
  transform: rotate(8deg);
  animation: jyBeamSweep1 8s ease-in-out infinite;
}

.jy-beam-2 {
  top: 0;
  right: 22%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(99, 102, 241, 0.06) 25%,
    rgba(99, 102, 241, 0.16) 45%,
    rgba(59, 130, 246, 0.12) 65%,
    transparent 100%
  );
  transform: rotate(-6deg);
  animation: jyBeamSweep2 10s ease-in-out infinite;
}

@keyframes jyBeamSweep1 {
  0%, 100% { opacity: 0.2; transform: rotate(8deg) translateX(0); }
  50%      { opacity: 0.6; transform: rotate(10deg) translateX(15px); }
}

@keyframes jyBeamSweep2 {
  0%, 100% { opacity: 0.15; transform: rotate(-6deg) translateX(0); }
  50%      { opacity: 0.5; transform: rotate(-8deg) translateX(-10px); }
}

/* Clean heading override */
.journey-section .hero-accent {
  font-style: normal;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-track {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

/* ── Animated gradient timeline line ── */
.journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom,
    rgba(59, 130, 246, 0.08),
    var(--blue-400) 20%,
    var(--blue-500) 50%,
    var(--blue-400) 80%,
    rgba(59, 130, 246, 0.08)
  );
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Pulsing glow on the line */
.journey-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(6px);
  opacity: 0.4;
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 0.5; }
}

/* ── Step layout ── */
.journey-step {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

/* ── Marker: gradient circle with ring pulse ── */
.js-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px rgba(59, 130, 246, 0.2),
    0 4px 16px rgba(59, 130, 246, 0.2);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.js-marker span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}

/* Animated ring pulse around marker */
.js-marker::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.15);
  animation: markerRing 2.5s ease-in-out infinite;
}

@keyframes markerRing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.25); opacity: 0; }
}

.journey-step:hover .js-marker {
  transform: scale(1.12);
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px rgba(59, 130, 246, 0.35),
    0 8px 28px rgba(59, 130, 246, 0.25);
}

/* ── Card: modern glassmorphic with gradient accent ── */
.js-card {
  background: #fff;
  border: 1px solid rgba(200, 215, 240, 0.5);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  will-change: transform;
}

/* Gradient accent bar on hover */
.js-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3b82f6, #06b6d4);
  border-radius: 18px 0 0 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-step:hover .js-card::before {
  opacity: 1;
}

.js-card:hover,
.journey-step:hover .js-card {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.15);
}

/* ── Icon with subtle float ── */
.js-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: inline-block;
  animation: jsIconFloat 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes jsIconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Stagger icon floats */
.journey-step:nth-child(2) .js-icon { animation-delay: 0.3s; }
.journey-step:nth-child(3) .js-icon { animation-delay: 0.6s; }
.journey-step:nth-child(4) .js-icon { animation-delay: 0.9s; }
.journey-step:nth-child(5) .js-icon { animation-delay: 1.2s; }
.journey-step:nth-child(6) .js-icon { animation-delay: 1.5s; }
.journey-step:nth-child(7) .js-icon { animation-delay: 1.8s; }

.js-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.journey-step:hover .js-card h4 {
  color: var(--blue-600);
}

.js-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Left steps: card on left, spacer on right */
.js-left .js-card {
  text-align: right;
}

.js-left .js-card::before {
  left: auto;
  right: 0;
  border-radius: 0 18px 18px 0;
}

.js-right .js-card {
  text-align: left;
}


/* ═══════════════════════════════════════ */
/* ══ 7. TRUST BAR ═════════════════════ */
/* ═══════════════════════════════════════ */
.trust-bar {
  padding: 64px 0;
  background: linear-gradient(135deg, #f0f4fb 0%, #e8eef8 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  position: relative;
}

.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blue-500);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.trust-badge:hover {
  transform: translateY(-3px);
}

.trust-badge svg {
  filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.15));
}

.trust-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.trust-badge small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--blue-200), transparent);
}


/* ═══════════════════════════════════════ */
/* ══ 8. TESTIMONIAL — SPOTLIGHT ═══════ */
/* ═══════════════════════════════════════ */
.testimonial-spotlight {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  position: relative;
  overflow: hidden;
}

/* Floating orbs */
.testimonial-spotlight::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  animation: tsOrb1 17s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

.testimonial-spotlight::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -6%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  animation: tsOrb2 14s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

@keyframes tsOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%      { transform: translate(70px, 30px) scale(1.1); }
  65%      { transform: translate(-25px, 70px) scale(0.95); }
}

@keyframes tsOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-55px, -40px) scale(1.1); }
}

/* Clean heading override */
.testimonial-spotlight .hero-accent {
  font-style: normal;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ts-carousel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ts-slides {
  position: relative;
  min-height: 240px;
  padding: 40px 32px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(200, 215, 240, 0.4);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

.ts-slide {
  display: none;
  animation: tsFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ts-slide.active {
  display: block;
}

@keyframes tsFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ts-slide blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0 0 32px;
  position: relative;
}

.ts-slide blockquote::before {
  content: '"';
  font-size: 88px;
  background: linear-gradient(135deg, var(--blue-300), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.5;
}

.ts-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.ts-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), #0ea5e9);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(59, 130, 246, 0.15);
}

.ts-author strong {
  font-size: 15px;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

.ts-author small {
  font-size: 12px;
  color: var(--text-muted);
}

.ts-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--blue-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.3s ease,
              transform 0.3s ease;
}

.ts-dot.active {
  background: var(--blue-600);
  width: 28px;
}

.ts-dot:hover {
  background: var(--blue-400);
  transform: scale(1.15);
}


/* ═══════════════════════════════════════ */
/* ══ 9. CTA — BOLD ════════════════════ */
/* ═══════════════════════════════════════ */
.cta-bold {
  padding: 110px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #0f2044 40%, #1e40af 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

/* Pulsing radial glow */
.cta-bold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite;
  will-change: transform, opacity;
}

/* Secondary accent orb */
.cta-bold::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
  pointer-events: none;
  animation: ctaGlow 5s ease-in-out infinite reverse;
  will-change: transform, opacity;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.cta-bold-inner {
  position: relative;
  z-index: 1;
}

.cta-bold h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.cta-bold p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-bold-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-bold .btn-solid {
  background: #fff;
  color: var(--blue-700);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-bold .btn-solid:hover {
  background: var(--blue-50);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.cta-bold .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-bold .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.cta-bold .hero-accent {
  font-style: normal;
  font-family: var(--font-display);
  color: #67e8f9;
  text-shadow: 0 0 30px rgba(103, 232, 249, 0.25);
}


/* ═══════════════════════════════════════ */
/* ══ RESPONSIVE ═══════════════════════ */
/* ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-split-left {
    order: 1;
  }

  .hero-split-right {
    order: 2;
    min-height: 320px;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-mini-stats {
    justify-content: center;
  }

  .hero-label {
    justify-content: center;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .editorial-tabs {
    margin-left: auto;
    margin-right: auto;
  }

  .editorial-pills {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card.bc-tall {
    grid-row: auto;
  }

  .bento-card.bc-wide {
    grid-column: 1 / -1;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .sp-img {
    min-height: 260px;
  }

  .journey-step {
    grid-template-columns: 1fr 40px 1fr;
    gap: 12px;
  }

  .js-marker {
    width: 40px;
    height: 40px;
  }

  .js-marker span {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-split {
    padding: 140px 0 60px;
  }

  .hero-collage {
    height: 300px;
  }

  .collage-item {
    width: 160px;
  }

  .collage-item img {
    height: 110px;
  }

  .stats-row {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.bc-wide {
    grid-column: auto;
  }

  .showcase-tabs {
    gap: 6px;
  }

  .stab {
    padding: 10px 14px;
    font-size: 12px;
  }

  .stab-text {
    display: none;
  }

  .stab-emoji {
    font-size: 22px;
  }

  .journey-step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .js-spacer {
    display: none;
  }

  .js-left,
  .js-right {
    grid-template-columns: 40px 1fr;
  }

  .js-left .js-card,
  .js-right .js-card {
    text-align: left;
    grid-column: 2;
    grid-row: 1;
  }

  .js-left .js-marker,
  .js-right .js-marker {
    grid-column: 1;
    grid-row: 1;
  }

  .trust-badges {
    flex-direction: column;
    gap: 20px;
  }

  .trust-sep {
    width: 40px;
    height: 1px;
  }

  .cta-bold-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Mobile GPU performance optimizations */
  .pg-bg,
  .jy-bg,
  .testimonial-spotlight::before,
  .testimonial-spotlight::after,
  .cta-bold::before,
  .cta-bold::after {
    display: none !important;
  }

  .bento-card {
    animation: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.95);
  }

  body.dark-mode .bento-card {
    background: rgba(15, 23, 42, 0.9);
  }
}

@media (max-width: 480px) {
  .hero-collage {
    height: 260px;
  }

  .collage-item {
    width: 140px;
  }

  .collage-item img {
    height: 95px;
  }

  .collage-tag {
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn-solid,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-mini-stats {
    flex-direction: column;
    gap: 16px;
  }

  .mini-stat-sep {
    width: 40px;
    height: 1px;
  }

  .sp-info {
    padding: 24px;
  }
}


/* ═══════════════════════════════════════════════ */
/* ══ DARK MODE — ALL SECTIONS OUTSIDE ZONE ═════ */
/* ═══════════════════════════════════════════════ */

/* ── Smooth body transition ── */
body {
  transition: background-color 0.6s ease, color 0.6s ease;
}

body.dark-mode {
  background-color: #16253e;
  color: #e2e8f0;
}

/* ── Programs Showcase ── */
body.dark-mode .program-showcase {
  background: linear-gradient(180deg, #1b2e4b 0%, #253e66 50%, #1b2e4b 100%);
}

body.dark-mode .program-showcase .bento-heading {
  color: #fff;
}

body.dark-mode .program-showcase .hero-accent {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode .program-showcase .overline {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .program-showcase .overline::before {
  background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .stab {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .stab.active {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.3);
}

body.dark-mode .showcase-panel {
  background: rgba(32, 53, 86, 0.65);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .sp-info h3 {
  color: #f1f5f9;
}

body.dark-mode .sp-info p {
  color: rgba(255, 255, 255, 0.55);
}

body.dark-mode .sp-badge {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.15));
  color: #93c5fd;
}

body.dark-mode .sp-tags span {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

body.dark-mode .sp-tags span:hover {
  background: rgba(59, 130, 246, 0.25);
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.15);
}

/* Programs BG elements — dark mode */
body.dark-mode .pg-orb-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.08) 35%, transparent 65%);
}
body.dark-mode .pg-orb-2 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.06) 35%, transparent 65%);
}
body.dark-mode .pg-orb-3 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, rgba(99, 102, 241, 0.04) 40%, transparent 65%);
}

body.dark-mode .pg-diamond {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.08));
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

body.dark-mode .pg-diamond-2 {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.08);
}

body.dark-mode .pg-diamond-3 {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 0 18px rgba(99, 102, 241, 0.08);
}

body.dark-mode .pg-sparkle::before,
body.dark-mode .pg-sparkle::after {
  filter: brightness(1.5);
}

body.dark-mode .pg-hex::after {
  background: linear-gradient(180deg, #0f1a2e, #0c1525);
}

body.dark-mode .pg-hex-1 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1));
}

body.dark-mode .pg-hex-2 {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(59, 130, 246, 0.1));
}

body.dark-mode .pg-hex-3 {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(59, 130, 246, 0.08));
}

body.dark-mode .pg-beam-1 {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.06) 20%,
    rgba(59, 130, 246, 0.16) 40%,
    rgba(6, 182, 212, 0.12) 60%,
    rgba(59, 130, 246, 0.04) 80%,
    transparent 100%
  );
}

body.dark-mode .pg-beam-2 {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(99, 102, 241, 0.04) 30%,
    rgba(99, 102, 241, 0.1) 50%,
    rgba(59, 130, 246, 0.06) 70%,
    transparent 100%
  );
}

/* ── Journey Timeline ── */
body.dark-mode .journey-section {
  background: linear-gradient(180deg, #1b2e4b 0%, #223a5e 50%, #16253e 100%);
}

body.dark-mode .journey-section .bento-heading {
  color: #fff;
}

body.dark-mode .journey-section .hero-accent {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode .journey-section .overline {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .journey-section .overline::before {
  background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .journey-line {
  background: linear-gradient(to bottom,
    rgba(59, 130, 246, 0.05),
    rgba(59, 130, 246, 0.4) 20%,
    rgba(59, 130, 246, 0.5) 50%,
    rgba(59, 130, 246, 0.4) 80%,
    rgba(59, 130, 246, 0.05)
  );
}

body.dark-mode .js-marker {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  box-shadow:
    0 0 0 5px #1c2e4a,
    0 0 0 7px rgba(59, 130, 246, 0.3),
    0 4px 20px rgba(59, 130, 246, 0.35);
}

body.dark-mode .js-marker::before {
  border-color: rgba(59, 130, 246, 0.25);
}

body.dark-mode .journey-step:hover .js-marker {
  box-shadow:
    0 0 0 5px #1c2e4a,
    0 0 0 7px rgba(59, 130, 246, 0.5),
    0 8px 32px rgba(59, 130, 246, 0.4);
}

body.dark-mode .js-card {
  background: rgba(32, 53, 86, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

body.dark-mode .js-card::before {
  background: linear-gradient(180deg, #60a5fa, #22d3ee);
}

body.dark-mode .js-card:hover,
body.dark-mode .journey-step:hover .js-card {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(59, 130, 246, 0.08);
}

body.dark-mode .js-card h4 {
  color: #f1f5f9;
}

body.dark-mode .journey-step:hover .js-card h4 {
  color: #60a5fa;
}

body.dark-mode .js-card p {
  color: rgba(255, 255, 255, 0.5);
}

/* Journey BG elements — brighter in dark mode */
body.dark-mode .jy-orb-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 35%, transparent 65%);
}
body.dark-mode .jy-orb-2 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(6, 182, 212, 0.08) 35%, transparent 65%);
}
body.dark-mode .jy-orb-3 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.06) 40%, transparent 65%);
}

body.dark-mode .jy-ring-1 {
  border-color: rgba(59, 130, 246, 0.15);
  border-top-color: rgba(59, 130, 246, 0.45);
  border-right-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

body.dark-mode .jy-ring-2 {
  border-color: rgba(99, 102, 241, 0.12);
  border-bottom-color: rgba(99, 102, 241, 0.4);
  border-left-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.08);
}

body.dark-mode .jy-dot {
  filter: brightness(1.4);
}

body.dark-mode .jy-beam-1 {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.08) 15%,
    rgba(59, 130, 246, 0.2) 35%,
    rgba(6, 182, 212, 0.15) 55%,
    rgba(59, 130, 246, 0.06) 75%,
    transparent 100%
  );
}

body.dark-mode .jy-beam-2 {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(99, 102, 241, 0.06) 25%,
    rgba(99, 102, 241, 0.15) 45%,
    rgba(59, 130, 246, 0.1) 65%,
    transparent 100%
  );
}

/* ── Trust Bar ── */
body.dark-mode .trust-bar {
  background: linear-gradient(135deg, #16253e 0%, #1f3354 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .trust-label {
  color: rgba(255, 255, 255, 0.4);
}

body.dark-mode .trust-badge strong {
  color: #f1f5f9;
}

body.dark-mode .trust-badge small {
  color: rgba(255, 255, 255, 0.45);
}

body.dark-mode .trust-badge svg {
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.25));
}

body.dark-mode .trust-sep {
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

/* ── Testimonials ── */
body.dark-mode .testimonial-spotlight {
  background: linear-gradient(180deg, #16253e 0%, #1f3354 100%);
}

body.dark-mode .testimonial-spotlight .bento-heading {
  color: #fff;
}

body.dark-mode .testimonial-spotlight .hero-accent {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode .testimonial-spotlight .overline {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .testimonial-spotlight .overline::before {
  background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .ts-slides {
  background: rgba(32, 53, 86, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

body.dark-mode .ts-slide blockquote {
  color: #e2e8f0;
}

body.dark-mode .ts-slide blockquote::before {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.5), rgba(34, 211, 238, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
}

body.dark-mode .ts-avatar {
  box-shadow: 0 0 0 3px #203556, 0 0 0 5px rgba(59, 130, 246, 0.25);
}

body.dark-mode .ts-author strong {
  color: #f1f5f9;
}

body.dark-mode .ts-author small {
  color: rgba(255, 255, 255, 0.45);
}

body.dark-mode .ts-dot {
  background: rgba(59, 130, 246, 0.25);
}

body.dark-mode .ts-dot.active {
  background: #60a5fa;
}

body.dark-mode .ts-dot:hover {
  background: rgba(59, 130, 246, 0.5);
}

body.dark-mode .testimonial-spotlight::before {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.06) 40%, transparent 70%);
}

body.dark-mode .testimonial-spotlight::after {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.04) 40%, transparent 70%);
}

/* ── CTA (already dark, just refine) ── */
body.dark-mode .cta-bold {
  background: linear-gradient(135deg, #101d33 0%, #1b2e4b 40%, #25416b 100%);
}

body.dark-mode .cta-bold .hero-accent {
  color: #67e8f9;
  text-shadow: 0 0 40px rgba(103, 232, 249, 0.35);
}

/* ═══════════════════════════════════════ */
/* ══ RELAXED MODE OVERRIDES ════════════ */
/* ═══════════════════════════════════════ */
body.relaxed-mode .pg-bg,
body.relaxed-mode .jy-bg,
body.relaxed-mode .testimonial-spotlight::before,
body.relaxed-mode .testimonial-spotlight::after,
body.relaxed-mode .cta-bold::before,
body.relaxed-mode .cta-bold::after {
  display: none !important;
}

body.relaxed-mode .bento-card {
  animation: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(255, 255, 255, 0.95);
}

body.relaxed-mode.dark-mode .bento-card {
  background: rgba(15, 23, 42, 0.9);
}

/* ═══════════ GPU AND VISUAL BACKGROUND OPTIMIZATIONS ═══════════ */
/* Tone down background graphics in Programs Showcase and Your Journey sections */
.program-showcase .pg-diamond,
.program-showcase .pg-sparkle,
.program-showcase .pg-hex,
.program-showcase .pg-beam,
.journey-section .jy-ring,
.journey-section .jy-dot,
.journey-section .jy-arc,
.journey-section .jy-beam {
  display: none !important;
}

/* Freeze large background orbs to act as static glows and remove layout repaint costs */
.program-showcase .pg-orb,
.journey-section .jy-orb {
  animation: none !important;
  opacity: 0.3 !important; /* Tone down opacity */
}

/* Disable bento card continuous drift animations to save GPU resources */
.bento-card {
  animation: none !important;
}

/* ═══════════ TVET FOOTER DARK MODE OVERRIDES ═══════════ */
body.dark-mode .site-footer {
  background: linear-gradient(180deg, #13223f 0%, #0d172a 100%) !important;
  border-top-color: rgba(59, 130, 246, 0.15) !important;
}

body.dark-mode .site-footer::after {
  background: #0d172a !important;
}

body.dark-mode .footer-grid {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .footer-about-text,
body.dark-mode .footer-bottom p {
  color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-mode .footer-heading {
  color: #ffffff !important;
}

body.dark-mode .footer-list li {
  color: rgba(255, 255, 255, 0.75) !important;
}

body.dark-mode .footer-list li svg {
  color: #38bdf8 !important;
}

body.dark-mode .footer-links-list a {
  color: rgba(255, 255, 255, 0.6) !important;
}

body.dark-mode .footer-links-list a:hover {
  color: #60a5fa !important;
}

body.dark-mode .social-icon {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

body.dark-mode .social-icon:hover {
  background: rgba(59, 130, 246, 0.15) !important;
  border-color: rgba(59, 130, 246, 0.4) !important;
}

body.dark-mode .wa-contact {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
}

body.dark-mode .wa-contact:hover {
  background: rgba(16, 185, 129, 0.08) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
}

body.dark-mode .wa-contact.wa-primary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04)) !important;
  border-color: rgba(16, 185, 129, 0.45) !important;
}

body.dark-mode .wa-contact.wa-primary:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0.08)) !important;
}

body.dark-mode .wa-name {
  color: #f1f5f9 !important;
}

body.dark-mode .wa-number {
  color: rgba(255, 255, 255, 0.5) !important;
}

body.dark-mode .footer-cta-strip {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.05)) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .fcs-text h4 {
  color: #ffffff !important;
}

body.dark-mode .fcs-text p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Make animated ocean bubbles match the dark theme */
body.dark-mode .ocean-bubble {
  background: radial-gradient(150% 150% at 30% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.01) 40%, rgba(59, 130, 246, 0.35) 100%) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: 
    inset 0 0 15px rgba(255, 255, 255, 0.3), 
    inset 10px 0 30px rgba(167, 139, 250, 0.15),
    inset -15px -20px 35px rgba(59, 130, 246, 0.25),
    inset 20px 20px 30px rgba(52, 211, 153, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .ocean-bubble::before {
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 60%) !important;
}