:root {
  --primary: #0d6efd;
  --secondary: #0f172a;
  --accent: #22c55e;
  --bg: #f4f8ff;
  --text: #152238;
  --muted: #5e6b84;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(13, 110, 253, 0.95), rgba(34, 197, 94, 0.9));
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 30%);
  pointer-events: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  font-weight: 700;
  text-decoration: none;
  color: white;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 3.5rem 5% 5rem;
  position: relative;
  z-index: 1;
}

.hero-media {
  flex: 0 0 46%;
  max-width: 520px;
  width: 100%;
  margin: 0;
  padding-right: 1rem;
  align-self: center;
}

.hero-panel {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 560px;
  margin-left: 0.5rem;
  align-self: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #dceeff;
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.02rem;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.96);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: white;
  color: var(--primary);
}

.btn-secondary {
  border: 1px solid white;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  backdrop-filter: blur(8px);
}

.stat-card strong {
  font-size: 1.1rem;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media,
  .hero-panel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 4rem 5%;
  scroll-margin-top: 90px;
}

.section + .section {
  margin-top: 0.2rem;
}

.section-alt {
  background: rgba(13, 110, 253, 0.04);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}

.info-card,
.card,
.benefit-item {
  background: var(--card);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.accent-card {
  background: linear-gradient(135deg, #0d6efd, #22c55e);
  color: white;
}

.check-list {
  margin-top: 0.9rem;
  padding-left: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid rgba(13, 110, 253, 0.08);
}

.card h3,
.benefit-item h3,
.info-card h3 {
  margin-bottom: 0.5rem;
}

.program-highlight {
  margin-top: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: #f8fbff;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  background: linear-gradient(135deg, #ffffff, #f5faff);
  border: 1px solid rgba(13, 110, 253, 0.08);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.highlight-card h3 {
  margin-bottom: 0.4rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-item {
  border: 1px solid rgba(13, 110, 253, 0.06);
}

.slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  padding: 1.4rem;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.slider-btn {
  border: none;
  background: var(--primary);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}

.slides {
  min-height: 180px;
}

.slide {
  display: none;
  animation: fadeIn 0.4s ease;
}

.slide.active {
  display: block;
}

.slide h3 {
  margin-bottom: 0.5rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  border: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
}

.cta-box {
  background: linear-gradient(90deg, #0d6efd, #22c55e);
  color: white;
  border-radius: 24px;
  padding: 2.2rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(13, 110, 253, 0.16);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 1rem 5% 2rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-content,
  .section-grid,
  .card-grid,
  .benefit-list,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 720px) {
  .navbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.75rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .hero-actions,
  .stats-grid,
  .contact-links {
    flex-direction: column;
    display: flex;
  }

  .quick-links {
    gap: 0.5rem;
  }

  .stats-grid {
    gap: 0.7rem;
  }

  .slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }
}
