:root {
  --ink: #0b1220;
  --muted: #52607a;
  --primary: #2f80ed;
  --primary-dark: #245ec2;
  --accent: #f2994a;
  --accent-2: #f2c94c;
  --pink: #ff6fb5;
  --teal: #27c1a6;
  --violet: #7c5cff;
  --lime: #8dd643;
  --bg: #f7f7ff;
  --card: #ffffff;
  --line: #e2e8f0;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: #f7f7ff;
  color: var(--ink);
  position: relative;
  overflow-x: hidden;
}

body::before {
  background: radial-gradient(circle, #b5d6ff 0%, #7c5cff 70%);
  top: -120px;
  left: -120px;
}

body::after {
  background: radial-gradient(circle, #ffd1e8 0%, #f2994a 70%);
  bottom: -140px;
  right: -120px;
}

main,
header,
section,
footer,
nav {
  position: relative;
  z-index: 1;
}

.section-hero {
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 55%, #fff2fb 100%);
  border-bottom: 4px solid rgba(124, 92, 255, 0.15);
}

.section-pop {
  background: linear-gradient(135deg, #fff8f2 0%, #fff1fb 60%, #eef9ff 100%);
}

.section-alt {
  background: #ffffff;
}

.section-contrast {
  background: linear-gradient(135deg, #eaf2ff 0%, #ffffff 50%, #f7f0ff 100%);
}

.section-cta {
  background: linear-gradient(135deg, #2f80ed 0%, #7c5cff 55%, #ff6fb5 100%);
}

.section-hero,
.section-pop,
.section-alt,
.section-contrast,
.section-cta {
  position: relative;
  overflow: hidden;
}

.section-hero::after,
.section-pop::after,
.section-contrast::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(39, 193, 166, 0.2), rgba(255, 111, 181, 0.2));
  top: -60px;
  right: -60px;
  transform: rotate(12deg);
}

.section-pop::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.25);
  bottom: -70px;
  left: -60px;
}

.topbar {
  background: linear-gradient(90deg, #2f80ed 0%, #7c5cff 45%, #ff6fb5 100%);
  color: #fff;
  font-size: 0.9rem;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.navbar {
  background: #ffffff;
  border-bottom: 3px solid rgba(124, 92, 255, 0.2);
}

.nav-link {
  font-weight: 500;
  color: #0f172a;
}

.navbar-brand span {
  font-family: "Merriweather", serif;
  letter-spacing: 0.2px;
}

.logo-mark {
  height: 64px;
  width: auto;
}

.hero {
  padding: 96px 0 64px;
}

.hero-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
  border: 3px solid rgba(47, 128, 237, 0.2);
}

.hero h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.badge-pill {
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.22) 0%, rgba(255, 111, 181, 0.22) 100%);
  color: #4a3fc2;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-stars {
  position: relative;
  min-height: 360px;
}

.floating-stars .bubble {
  position: absolute;
  border-radius: 24px;
  padding: 14px 18px;
  background: var(--card);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  font-weight: 600;
}

.bubble.one { top: 30px; left: 0; }
.bubble.two { top: 140px; right: 10%; }
.bubble.three { bottom: 10px; left: 15%; }

.stroke-card {
  border: none;
  border-radius: 22px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  border: 2px solid rgba(47, 128, 237, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stroke-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.stat-card {
  background: linear-gradient(135deg, #ffffff 10%, #f0f7ff 40%, #fff1fb 100%);
  border-radius: 18px;
  padding: 16px 12px;
  border: 2px solid rgba(255, 111, 181, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--violet);
}

.stroke-line {
  height: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #f1f5f9 0 14px, #e2e8f0 14px 28px);
}

.section-title {
  font-family: "Merriweather", serif;
}

.program-card {
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 2px solid rgba(124, 92, 255, 0.18);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}

.program-card h5 {
  font-weight: 700;
}

.cta-section {
  background: linear-gradient(120deg, #2f80ed 0%, #7c5cff 50%, #ff6fb5 100%);
  border-radius: 32px;
  padding: 48px;
  color: #fff;
}

.cta-section .text-secondary {
  color: #e2e8f0 !important;
}

.feature-chip {
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  color: #334e68;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.timeline-step {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  border: 2px dashed #ffb3d9;
}

.btn-primary {
  background: linear-gradient(90deg, #2f80ed 0%, #7c5cff 100%);
  border: none;
  box-shadow: 0 16px 30px rgba(124, 92, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #245ec2 0%, #6a4be0 100%);
}

.btn-outline-dark {
  border-radius: 999px;
  border-color: #111827;
}

.hero-illustration {
  background: linear-gradient(160deg, #e9efff 0%, #fff 70%);
  border-radius: 28px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px #dbe3ff;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  border: 3px solid rgba(255, 111, 181, 0.2);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stack {
  position: relative;
}

.about-quote {
  position: absolute;
  right: -10%;
  bottom: -12%;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  font-weight: 600;
  color: var(--primary);
}

.progress-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  border: 2px solid rgba(47, 128, 237, 0.12);
}

.progress-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 2px solid rgba(39, 193, 166, 0.18);
}

.progress-track {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2f80ed 0%, #27c1a6 55%, #f2994a 100%);
  border-radius: 999px;
}

.progress-label {
  font-size: 0.85rem;
  color: #64748b;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.progress-callout {
  background: linear-gradient(120deg, #2f80ed 0%, #7c5cff 60%, #ff6fb5 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-callout .btn {
  background: #f2c94c;
  color: #1f2937;
  border: none;
}

.progress-callout .btn:hover {
  background: #f2994a;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.9s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.2s; }
.reveal.delay-2 { animation-delay: 0.4s; }
.reveal.delay-3 { animation-delay: 0.6s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.footer {
  padding: 56px 0 32px;
  background: linear-gradient(120deg, #1b2a6b 0%, #2f3ea8 50%, #4b2f8f 100%);
  color: #e2e8f0;
  border-top: 4px solid rgba(242, 201, 76, 0.4);
}

.footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

.footer-title {
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-badge {
  background: rgba(245, 184, 46, 0.15);
  color: #fbd38d;
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.2);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

@media (max-width: 991px) {
  .hero {
    padding-top: 72px;
  }
  .hero-card {
    padding: 28px;
  }
  .floating-stars {
    min-height: 260px;
  }
  .about-quote {
    position: static;
    margin-top: 16px;
  }
  .progress-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}
