:root {
  --bg: #07111f;
  --bg-2: #0c1829;
  --panel: rgba(13, 25, 41, 0.8);
  --text: #eff6ff;
  --muted: #b5c4dd;
  --accent: #e8e008;
  --accent-2: #86b6ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --font: 'DM Sans', -apple-system, sans-serif;
      --font-display: 'Sora', sans-serif;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --nav-h: 72px;
      --ticker-h: 36px;
      --cur-ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
      --cur-white-05: rgba(255, 255, 255, 0.05);
      --cur-white-10: rgba(255, 255, 255, 0.1);
      --cur-white-40: rgba(255, 255, 255, 0.4);
      --cur-white-50: rgba(255, 255, 255, 0.5);
      --cur-white-75: rgba(255, 255, 255, 0.75);
      --cur-white-80: rgba(255, 255, 255, 0.8);
      --cur-white-85: rgba(255, 255, 255, 0.85);
      --cur-sticky-top: calc(var(--nav-h) + var(--ticker-h));
      --cur-stack-base: 16px;
      --cur-stack-step: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(71, 130, 255, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #040b13 100%);
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

/* --- Announcement Ticker --- */
.ticker-bar {
  width: 100%;
  background: linear-gradient(90deg, rgba(36, 144, 56, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Ticker */
@media (max-width: 767.98px) {
  .ticker-track span {
    font-size: 12px;
  }
  .ticker-track {
    gap: 30px;
  }
}

/* --- Why Choose Us Section --- */
.why-section {
  padding: 80px 0;
  background: var(--bg-2);
}

.why-section .section-header {
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 221, 83, 0.4);
  box-shadow: 0 20px 40px rgba(237, 221, 83, 0.1);
}

.why-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(237, 221, 83, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Responsive Why Choose Us */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .why-section {
    padding: 56px 0;
  }
  .why-grid {
    gap: 18px;
  }
  .why-card {
    padding: 22px 18px;
  }
  .why-card h3 {
    font-size: 0.98rem;
  }
  .why-card p {
    font-size: 0.86rem;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FAQ Section --- */
.faq-section {
  padding: 0;
  background: #0b1120 !important;
}

.faq-section .section-header {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(237, 221, 83, 0.4);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Responsive FAQ */
@media (max-width: 767.98px) {
  .faq-section {
    padding: 0;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.98rem;
  }
  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
  }
}

/* --- Footer --- */
.footer { background: var(--bg); padding: 64px 0 28px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; margin-bottom: 40px; }
.footer-links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin-top: 14px; max-width: 280px; line-height: 1.6; }
.footer-links h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); }
.footer .logo {
  flex-direction: row;
}
.footer .logo-mark img {
  display: block;
  width: 100px;
  border-radius: 12px;
  object-fit: cover;
}
.footer .logo-text {
  font-weight: 800;
  font-size: 1.05rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

@media (max-width: 991.98px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .footer { padding: 48px 0 24px; }
  .footer-grid { gap: 24px; }
  .footer-brand p { max-width: 100%; }
  .footer .logo-mark img {
    width: 80px;
  }
}

@media (max-width: 767.98px) {
  .footer { padding: 48px 0 24px; }
  .footer-grid { gap: 24px; }
  .footer-brand p { max-width: 100%; }
  .footer .logo-mark img {
    width: 80px;
  }
  .footer-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left:1rem;
    gap:50px;
  }
}

@media (max-width: 425px) {
  .footer { padding: 40px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding-top: 20px; }
  .footer-bottom p { text-align: center; }
  .footer .logo-mark img {
    width: 60px;
  }
  .footer .logo-text {
    font-size: 0.95rem;
  }
  .footer-links-wrapper {
    justify-content: space-between;
   
  }
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled { background: rgba(4, 8, 14, 0.92); box-shadow: var(--shadow); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-img img { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; }
.logo-sup { font-size: 1.5rem; color: red; }

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-link { color: var(--muted); font-weight: 600; font-size: 0.98rem; transition: color .2s ease; }
.nav-link:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid transparent; padding: 12px 18px;
  font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #e8e008;color: #000; }
.btn-outline-hero {
  border-color: rgba(255,255,255,0.18); color: #fff;
  background: rgba(255,255,255,0.04);
}

.nav-toggle { display: none; background: transparent; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 24px;
  border-bottom: 1px solid var(--border);
  background:
    rgba(20, 37, 60, 0.8),
    radial-gradient(circle at top right, rgba(92, 158, 255, 0.14), transparent 20%);
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; opacity: .35; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  min-height: 70vh;
}
.hero-eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: .2em; font-size: .75rem; font-weight: 700; }
.hero-title { font-family: 'Sora', sans-serif; font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin: 8px 0 14px; }
.text-accent {
  background: linear-gradient(90deg, rgba(36, 144, 56, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: var(--muted); max-width: 520px; font-size: 0.95rem; line-height: 1.6; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.seats-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); padding: 10px 12px; border-radius: 999px; color: #fff; font-weight: 700; }

.hero-right { display: flex; justify-content: center; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 480px; }
.hero-person-img { border-radius: 30px; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid var(--border); box-shadow: var(--shadow); }
.hero-person-img img { width: 100%; min-height: 500px; object-fit: cover; }
.hero-float-badge { position: absolute; display: grid; gap: 2px; padding: 12px 14px; border-radius: 16px; background: rgba(6, 10, 18, 0.9); border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow); max-width: 150px;color: #fff; }
.hero-float-badge strong { font-size: 1.15rem; color: #fff; }
.hero-float-badge span { color: #fff;}
.badge-top-right { top: 10px; right: -10px; }
.badge-mid-left { left: -14px; bottom: 110px; }
.badge-bottom-right { right: 8px; bottom: -6px; }

.anchor-pills { position: relative; z-index: 1; padding: 18px 0 6px; }
.anchor-pills-inner { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px; }
.anchor-pills-inner::-webkit-scrollbar { display: none; }
.anchor-pill { white-space: nowrap; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.04); color: var(--muted); padding: 10px 12px; font-weight: 700; font-size: .92rem; transition: color .2s ease, background .2s ease; }
.anchor-pill:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* --- AI Trends vs Traditional Education --- */
.ai-trends-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .ai-trends-grid {
        grid-template-columns: 1fr;
    }
    .chart-placeholder {
        min-height: 180px;
    }
}

.trend-card {
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(167,139,250,0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}
.trend-card:hover {
    border-color: rgba(167,139,250,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(167,139,250,0.1);
}

.chart-placeholder {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 220px;
    margin-bottom: 20px;
    position: relative;
}

.trend-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.trend-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}
.text-purple-400 { color: #a78bfa; font-weight: 500; }
.text-cyan-400 { color: #22d3ee; font-weight: 500; }
.text-yellow-400 { color: #249038; font-weight: 500; }
.text-green-400 { color: #4ade80; font-weight: 500; }

.comparison-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}
.comparison-header {
    padding: 20px 24px;
}
.comparison-header h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}
.ai-header { background: linear-gradient(135deg, #22c55e, #16a34a); }
.traditional-header { background: linear-gradient(135deg, #7c3aed, #5b21b6); }

.comparison-list {
    list-style: none;
    padding: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(15,23,42,0.95);
    height: calc(100% - 66px);
}
.comparison-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}
.check-icon {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-weight: 700;
}
.cross-icon {
    color: #ef4444;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-weight: 700;
}
.ai-card { border-color: rgba(34,197,94,0.3); }
.traditional-card { border-color: rgba(124,58,237,0.3); }
.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 12px;
    color: #000;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700; line-height: 1.2; color: var(--white); margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
#ai-trends{
  background-color: rgba(20, 37, 60, 0.8);
}
/* Partners Marquee Section */
.partners-marquee-section {
  padding: 30px 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}
.partners-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
/* Enhanced mask for smooth fade out at edges */
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0) 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0) 100%);
}

.marquee-content {
  display: inline-flex;
  gap: 16px;
  animation: marquee-scroll 25s linear infinite;
  padding: 5px 0;
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 8px 20px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.marquee-item img {
  height: 55px;
  width: auto;
  min-width: 80px;
  opacity: 1; /* Increased from 0.7 */
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.marquee-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

/* Featured Programs Section */
.programs-section {
  padding: 30px 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  position: relative;
}
.programs-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.programs-section .section-label {
  display: inline-block;
  padding: 6px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #b45309;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.programs-section .section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.1;
}
.programs-section .section-desc {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Program Cards */
.programs-swiper {
  padding: 20px 0 60px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.programs-swiper .swiper-slide {
  height: auto;
}
.program-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.92rem;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.program-card--featured {
  background: linear-gradient(145deg, #ffffff, #fffbeb);
  border: 1px solid rgba(232, 224, 8, 0.45);
}
.program-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(90deg, rgba(36, 144, 56, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
  color: #000;
  font-weight: 800;
  font-size: 0.65rem;
  padding: 6px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.program-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.program-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}
.flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.program-badge .flag-icon {
  margin-left: 2px;
}
.program-duration {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #eff6ff;
  padding: 6px 14px;
  border-radius: 999px;
}
.program-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  color: #111827;
  line-height: 1.2;
  margin: 0;
}
.program-desc {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.55;
}
.program-metrics {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #f9fafb;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  flex-wrap: wrap;
}
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-item strong {
  font-size: 1.05rem;
  color: #000;
}
.metric-item span {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.metric-divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}
.program-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-tags li {
  position: relative;
  padding-left: 24px;
  color: #374151;
  font-size: 0.88rem;
}
.program-tags li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.program-eligibility {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 12px 14px;
}
.program-eligibility-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1d4ed8;
  margin-bottom: 8px;
}
.program-eligibility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.program-eligibility-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.84rem;
  color: #374151;
  line-height: 1.45;
}
.program-eligibility-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1d4ed8;
  font-weight: 700;
}
.program-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.program-actions .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}
.btn-ghost {
  background: transparent;
  color: #111827;
  border: 1px solid #d1d5db;
}
.btn-ghost:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

/* Swiper Customizations */
.programs-swiper .swiper-pagination-bullet {
  background: #9ca3af;
  opacity: 0.4;
}
.programs-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-right { margin-top: 20px; }
}
@media (max-width: 900px) {
  .nav-links { position: absolute; top: 76px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; background: rgba(7, 17, 31, 0.98); border: 1px solid var(--border); border-radius: 18px; padding: 12px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .btn-nav { display: none; }
}
@media (max-width: 640px) {
  .logo { font-size: .95rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-actions .btn { width: 100%; }
  .hero-image-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero-person-img { width: 100%; }
  .hero-float-badge { position: static; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; flex: 1; min-width: 30%; text-align: center; padding: 10px 5px; }
  .badge-top-right, .badge-mid-left, .badge-bottom-right { position: static; }
  .hero-left { text-align: left; }
}

@media (max-width: 425px) {
  .nav-container {
    min-height: 64px;
    gap: 12px;
  }
  .logo-img img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .logo-text-accent {
    font-size: 1.15rem !important;
  }
  .logo-sup {
    font-size: 0.9rem;
  }
  .nav-links {
    top: 64px;
  }
  .nav-toggle {
    padding: 6px;
  }
  .nav-toggle span {
    width: 20px;
    margin: 4px 0;
  }
}

/* Contact Form */

.cta-page-shell { min-height: 50vh; }

.cta-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.cta-contact-section {
  padding: 72px 0;
  background: #ffffff;
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: start;
}

.cta-section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #2563eb;
  margin-bottom: 8px;
}

.cta-section-title {
  font-family: 'Sora', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin: 0 0 14px;
  color: #0f172a;
}

.cta-text-accent { color: #2563eb; }

.cta-section-desc {
  color: #475569;
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

.cta-contact-details { margin-top: 28px; }
.cta-contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.cta-contact-item span:first-child { font-size: 1.15rem; line-height: 1.2; }
.cta-contact-item strong { display: block; font-size: 0.8rem; color: #64748b; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.12em; }
.cta-contact-item span:last-child, .cta-contact-item div > span { font-size: 0.95rem; color: #111827; }

.cta-contact-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.cta-contact-form h3 {
  font-family: 'Sora', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px;
}

.cta-form-group { margin-bottom: 14px; }
.cta-form-group input,
.cta-form-group select,
.cta-form-group textarea {
  width: 100%;
  padding: 13px 14px;
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  color: #0f172a;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder { color: #64748b; }
.cta-form-group input:focus,
.cta-form-group select:focus,
.cta-form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.cta-form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.cta-form-group select option { background: #ffffff; color: #0f172a; }
.cta-form-group textarea { min-height: 100px; resize: vertical; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover { transform: translateY(-1px); }
.cta-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}
.cta-btn-lg { padding: 13px 18px; font-size: 0.98rem; }
.cta-w-full { width: 100%; }

.cta-form-note {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.cta-reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cta-reveal-up.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .cta-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Campus Section Styles */
.campus-section {
    padding: 80px 0;
    background: #ffffff;
}

.campus-grid {
    display: grid;
    grid-template-columns: calc(50% - 30px) calc(50% - 30px);
    gap: 60px;
    align-items: center;
}

.campus-info,
.campus-gallery {
    width: 100%;
    min-width: 0; /* Prevents grid item from overflowing */
}

.campus-swiper {
    width: 100%;
}

.campus-info .section-label {
    color: #10b981;
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.campus-info .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.1;
}

.campus-info .text-muted {
    color: #6b7280;
    font-weight: 500;
}

.campus-info .section-desc {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.campus-stats {
    display: flex;
    gap: 32px;
}

.campus-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.campus-stat strong {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, rgba(36, 144, 56, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campus-stat span {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.campus-gallery {
    position: relative;
}

.campus-swiper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.campus-swiper .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.campus-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, rgba(36, 144, 56, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
}

/* Reveal animation */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    height: 100%;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .campus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .campus-swiper .swiper-slide img {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .campus-section {
        padding: 56px 0;
    }
    .campus-stats {
        gap: 24px;
    }
    .campus-swiper .swiper-slide img {
        height: 250px;
    }
}

@media (max-width: 640px) {
  .cta-contact-section { padding: 56px 0; }
  .cta-contact-form { padding: 22px; border-radius: 18px; }
}

/* AI Trends vs Traditional Education - Responsive & Enhanced Styles */
#ai-trends {
    background: #0b1120;
    padding: 56px 0;
}

#ai-trends .ai-trends-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

#ai-trends .trend-card {
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(167,139,250,0.2);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    
}

#ai-trends .trend-card:hover {
    border-color: rgba(167,139,250,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(167,139,250,0.1);
}

#ai-trends .chart-placeholder {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 160px;
    max-height: 200px;
    margin-bottom: 16px;
    position: relative;
    width: 100%;
    flex-grow: 0;
}

#ai-trends .chart-placeholder canvas {
    width: 100% !important;
    height: 100% !important;
}

#ai-trends .trend-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

#ai-trends .trend-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    line-height: 1.6;
}

#ai-trends .text-purple-400 { color: #a78bfa; font-weight: 500; }
#ai-trends .text-cyan-400 { color: #22d3ee; font-weight: 500; }
#ai-trends .text-yellow-400 { color: #4ade80; font-weight: 500; }
#ai-trends .text-green-400 { color: #4ade80; font-weight: 500; }

#ai-trends .comparison-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

#ai-trends .comparison-header {
    padding: 16px 20px;
}

#ai-trends .comparison-header h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

#ai-trends .ai-header { background: linear-gradient(135deg, #22c55e, #16a34a); }
#ai-trends .traditional-header { background: linear-gradient(135deg, #7c3aed, #5b21b6); }

#ai-trends .comparison-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(15,23,42,0.95);
}

#ai-trends .comparison-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    line-height: 1.5;
}

#ai-trends .check-icon {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
    font-weight: 700;
}

#ai-trends .cross-icon {
    color: #ef4444;
    font-size: 1rem;
    flex-shrink: 0;
    font-weight: 700;
}

#ai-trends .ai-card { border-color: rgba(34,197,94,0.3); }
#ai-trends .traditional-card { border-color: rgba(124,58,237,0.3); }

/* Section Header Styles for AI Trends */
#ai-trends .section-label {
    display: inline-block; 
    font-size: 0.8rem; 
    font-weight: 700;
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    color: #4ade80;
    margin-bottom: 12px;
}

#ai-trends .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800; 
    line-height: 1.1; 
    color: #ffffff; 
    margin-bottom: 12px;
}

#ai-trends .section-desc {
    font-size: 0.95rem; 
    color: rgba(255,255,255,0.7); 
    max-width: 600px; 
    line-height: 1.6;
}

#ai-trends .section-header { 
    margin-bottom: 40px; 
}
#ai-trends .section-header.center { 
    text-align: center; 
}

#ai-trends .section-header.center .section-desc {
    margin: 0 auto;
}

/* Responsive Styles for AI Trends Section */
@media (max-width: 991.98px) {
    #ai-trends .ai-trends-grid {
        gap: 18px;
    }
}

@media (max-width: 767.98px) {
    #ai-trends .ai-trends-grid {
        grid-template-columns: 1fr;
    }
    #ai-trends .chart-placeholder {
        min-height: 200px;
    }
    #ai-trends {
        padding: 48px 0;
    }
    #ai-trends .section-header {
        margin-bottom: 40px;
        text-align: left !important;
    }
}

@media (max-width: 640px) {
    #ai-trends {
        padding: 40px 0;
    }
    #ai-trends .trend-card,
    #ai-trends .comparison-list {
        padding: 20px;
    }
    #ai-trends .comparison-header {
        padding: 16px 20px;
    }
    #ai-trends .section-title {
        font-size: 1.6rem;
    }
    #ai-trends .chart-placeholder {
        min-height: 180px;
    }
}

/* --- Featured Programs Swiper Navigation --- */
.programs-button-prev,
.programs-button-next {
    display: none;
    color: var(--accent);
}
@media (min-width: 992px) {
    .programs-button-prev,
    .programs-button-next {
        display: flex;
        position: absolute;
        top: calc(50% - 25px);
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: var(--bg-2);
        border: 1px solid var(--border);
        border-radius: 50%;
        box-shadow: var(--shadow);
        z-index: 10;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .programs-button-prev::after,
    .programs-button-next::after {
        font-size: 20px;
        font-weight: bold;
    }
    .programs-button-prev {
        left: 20px;
    }
    .programs-button-next {
        right: 20px;
    }
}

