:root {
  --bg: #ffffff;
  --text: #171a27;
  --muted: #5f667b;
  --line: #e7e9f2;
  --violet: #6a11cb;
  --magenta: #c933c5;
  --gradient: linear-gradient(135deg, var(--violet), var(--magenta));
  --radius: 18px;
  --shadow: 0 18px 50px rgba(69, 23, 115, 0.12);
  --card-bg: rgba(255, 255, 255, 0.82);
  /* Typography */
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --text-base: 1rem;
  --leading-body: 1.65;
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  /* Spacing scale (8px base) */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --section-y: clamp(3.5rem, 6vw, 5.25rem);
  --section-y-sm: clamp(2.75rem, 5vw, 4rem);
  --head-gap: clamp(1.5rem, 2.5vw, 2.4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #fcfbff 60%, #fbf9ff);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
  color: inherit;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: var(--leading-body);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
  padding-inline: 0;
}

/* Full-width bar inside fixed-width navbar — aligns with .container */
.container-fluid {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.section {
  padding-block: var(--section-y);
  overflow: hidden;
}

.alt {
  background: linear-gradient(180deg, #fbf9ff, #f7f8ff);
}

.section-head {
  text-align: center;
  margin-bottom: var(--head-gap);
  max-width: 72ch;
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3.3vw, 2.45rem);
  max-width: 20ch;
  margin-inline: auto;
  line-height: 1.15;
  text-wrap: balance;
}

.section-head p {
  margin-top: var(--space-3);
  max-width: min(70ch, 100%);
  margin-inline: auto;
  line-height: var(--leading-body);
  font-size: 1.02rem;
}

.eyebrow {
  color: #7e42d9;
  font-weight: 700;
  margin-bottom: var(--space-2);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: none;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.motion-bg {
  position: fixed;
  inset: -40%;
  z-index: -1;
  background: radial-gradient(circle at 15% 10%, rgba(121, 67, 255, 0.16), transparent 38%),
    radial-gradient(circle at 90% 20%, rgba(218, 51, 197, 0.13), transparent 36%),
    radial-gradient(circle at 45% 70%, rgba(88, 130, 255, 0.1), transparent 42%);
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1%, 1.5%, 0) scale(1.06);
  }
}

.navbar {
  position: sticky;
  top: 10px;
  width: min(1120px, 92%);
  margin: 12px auto 0;
  border-radius: 20px;
  z-index: 30;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-image {
  width: clamp(120px, 14vw, 210px);
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-logo {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(106, 17, 203, 0.32);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.77rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  color: #474f63;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(106, 17, 203, 0.34);
}

.btn-secondary {
  color: #581aa5;
  background: #f4ecff;
}

.ripple span {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.45);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.15rem);
  min-height: 50vh;
  padding-block: var(--space-4) var(--space-2);
}

.hero-left {
  max-width: 560px;
}

.hero-right {
  position: relative;
}

.hero h1 {
  font-size: clamp(1.95rem, 5.2vw, 3.25rem);
  margin-bottom: 8px;
  line-height: 1.08;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4f248f;
  border: 1px solid #e9ddff;
  background: rgba(255, 255, 255, 0.86);
}

.hero-tag i {
  color: #7627cd;
}

.subtext {
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.22rem);
  background: var(--gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  margin: 12px 0 18px;
  max-width: 50ch;
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #efe4ff;
  background: rgba(255, 255, 255, 0.86);
}

.hero-proof .stars {
  margin-top: 0;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: #f4b116;
}

.hero-proof p {
  color: #484f67;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 500px;
}

.stat {
  border: 1px solid #ece7fb;
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(84, 33, 145, 0.12);
}

.stat strong {
  display: block;
  color: #4f1d96;
  font-size: 1.06rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-lottie {
  margin-top: 14px;
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 390px;
}

#heroLottie {
  width: 56px;
  height: 56px;
}

.hero-lottie p {
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
  max-width: 470px;
  margin-left: auto;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -60px -40px auto;
  height: 180px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 35% 40%, rgba(140, 69, 255, 0.3), transparent 65%);
}

.hero-card img,
.hero-card video {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  filter: saturate(1.04) contrast(1.03);
}

.floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(27, 36, 80, 0.16);
  font-size: 0.76rem;
  animation: float 4.5s ease-in-out infinite;
}

.floating i {
  color: #8125d1;
}

.bubble-1 {
  top: 18px;
  left: 10px;
}

.bubble-2 {
  bottom: 68px;
  right: 10px;
  animation-delay: 1.3s;
}

.bubble-3 {
  bottom: 16px;
  left: 12px;
  animation-delay: 0.6s;
}

.hero-result {
  position: absolute;
  right: 16px;
  top: 16px;
  max-width: 220px;
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-result strong {
  display: block;
  color: #4f1d96;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-result span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.program-card {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(151, 121, 204, 0.11);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(90, 35, 155, 0.18);
}

.program-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5828a0;
  background: #f1e8ff;
}

.course-card h3,
.feature-card h3,
.why-card h3,
.timeline-step h3,
.panel h3,
.tutor-card h3,
.program-card h3 {
  margin-top: 10px;
  font-size: 18px;
  margin-bottom: 10px;
}

.program-card p {
  margin-top: 9px;
}

.program-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: #505875;
  font-size: 0.9rem;
  font-weight: 600;
}

.course-card,
.feature-card,
.why-card,
.timeline-step,
.panel,
.tutor-card {
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(151, 121, 204, 0.11);
}

.course-card:hover,
.feature-card:hover,
.why-card:hover,
.panel:hover,
.tutor-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(90, 35, 155, 0.18);
}

.course-card i,
.feature-card i,
.why-card i {
  width: 52px;
  aspect-ratio: 1;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 24px rgba(106, 17, 203, 0.28);
  transition: transform 0.25s ease;
}

.course-card:hover i,
.feature-card:hover i,
.why-card:hover i {
  transform: rotate(-8deg) scale(1.08);
}

.course-card p,
.timeline-step p {
  margin-top: 8px;
}

.career-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.career-row .why-card {
  display: flex;
  flex-direction: column;
}

.career-read-more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  color: #6a11cb;
  border: 1px solid #dcc7fb;
  background: linear-gradient(180deg, #ffffff 0%, #f7f1ff 100%);
  padding: 9px 16px;
  border-radius: 999px;
  align-self: center;
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.12);
  transition: transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.career-read-more i {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.course-read-more {
  margin-top: 10px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5a18ad;
  border-color: #e8dcf9;
  background: #fff;
  box-shadow: none;
}

.course-read-more:hover {
  color: #4a0f97;
  border-color: #d8c2f3;
  box-shadow: 0 8px 16px rgba(106, 17, 203, 0.1);
}

.career-row .why-card:hover .career-read-more {
  transform: translateY(-2px);
  color: #8d2ee6;
  border-color: #c89df8;
  box-shadow: 0 14px 28px rgba(106, 17, 203, 0.18);
}

.career-row .why-card:hover .career-read-more i {
  transform: translateX(3px);
}

#career-page-hero {
  padding-top: calc(var(--section-y) + 16px);
}

.career-page-head {
  max-width: 74ch;
}

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

.career-role {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e8def6;
  background: #fff;
  box-shadow: 0 12px 30px rgba(95, 38, 158, 0.1);
}

.career-role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}

.career-role-meta span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5f667b;
  background: #f3ecff;
}

.career-role ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.career-apply-link {
  margin-top: 16px;
  align-self: flex-start;
}

.career-page-cta {
  margin-top: 30px;
  text-align: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

#why-students-choose-us {
  background: linear-gradient(180deg, #fcf9ff 0%, #f6f0ff 100%);
}

#why-students-choose-us .section-head {
  max-width: 860px;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 28px;
}

.choose-point {
  position: relative;
  text-align: center;
  border-radius: 18px;
  padding: 0px;
  background: #fff;
  border: 1px solid #e8def6;
  box-shadow: 0 12px 28px rgba(95, 38, 158, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.choose-point:hover {
  transform: translateY(-6px);
  border-color: #cdaaf8;
  box-shadow: 0 20px 36px rgba(88, 34, 153, 0.18);
}

.choose-point-image {
  padding: 5px;
  height: 200px;
  overflow: hidden;
  border-radius: 14px;
}

.choose-point-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transform: scale(1.02) translateY(0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  will-change: transform;
}



.choose-point-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0px;
  margin-top: -35px;
  position: relative;
  z-index: 10;
}

.choose-point h3 {
  margin-top: 10px;
  margin-bottom: 8px;
}

.choose-point p {
  margin: 0;
}

.choose-point i {
  width: 56px;
  margin-inline: auto;
  margin-bottom: 2px;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(106, 17, 203, 0.24);
}

/* Keep icon motion subtle in this compact section */
#why-students-choose-us .choose-point:hover i {
  transform: translateY(-2px) scale(1.03);
}

@keyframes chooseImageFloat {

  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }

  50% {
    transform: scale(1.045) translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .choose-point-image img {
    animation: none;
  }
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, #b37af3, #d35dcf);
}

.timeline-step {
  position: relative;
  z-index: 1;
}

.timeline-step span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 800;
  background: var(--gradient);
}

.advanced-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.advanced-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.advanced-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4e248f;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e7d8ff;
}

.advanced-pill i {
  color: #7a2fd5;
}

.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5c2ba4;
  background: #f4ebff;
}

.panel-copy {
  margin-top: 10px;
}

.mock-call {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 14px;
  padding: 12px;
  background: #fff;
}

.call-top {
  display: flex;
  justify-content: space-between;
  color: #3f4462;
  font-size: 0.88rem;
}

.call-top span i {
  font-size: 0.66rem;
  color: #3dcc7d;
}

.call-body {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.call-footer {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-chip {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #5e2ca5;
  background: #f5eeff;
}

.video-tile {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f3e8ff, #f6f8ff);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #5f3fa4;
}

.dashboard {
  margin-top: 16px;
}

.bar {
  height: 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  background: #efedf6;
  overflow: hidden;
}

.bar::before {
  content: "";
  display: block;
  height: 100%;
  background: var(--gradient);
  border-radius: inherit;
}

.bar-1::before {
  width: 82%;
}

.bar-2::before {
  width: 73%;
}

.bar-3::before {
  width: 88%;
}

.dashboard-tag {
  margin-top: 12px;
  color: #4f2f8f;
  font-weight: 700;
}

.dashboard-metrics,
.ai-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #4f5570;
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 600;
}

.tutor-head {
  margin-top: 26px;
  text-align: center;
}

.tutor-head h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.tutor-head p {
  margin: 8px auto 0;
  max-width: 62ch;
}

.tutor-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tutor-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.tutor-subject {
  margin-top: 12px;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5f2fa7;
  background: #f4ecff;
}

.tutor-card h4 {
  margin-top: 8px;
}

.tutor-card p {
  margin-top: 6px;
}

.tutor-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tutor-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #5f6076;
  background: #f3f4fa;
}

.carousel {
  border-radius: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.carousel button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: #efe2ff;
  color: #6626bc;
  cursor: pointer;
}

.review-track {
  position: relative;
  min-height: 252px;
}

.review {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: all 0.35s ease;
  text-align: center;
  padding: 8px 24px;
}

.review.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.review img {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  object-fit: cover;
}

.review p {
  margin: 12px auto;
  max-width: 62ch;
}

.review h4 {
  margin-top: 6px;
}

.review-meta {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #5f3c9e;
  background: #f4ebff;
}

.testimonial-stats {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.testimonial-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
  color: #522391;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e8d9ff;
}

.testimonial-stats i {
  color: #7c2fd5;
}

.stars {
  color: #f6b400;
  margin-top: 8px;
}

.cta-card {
  border-radius: 28px;
  padding: 46px;
  text-align: center;
  background: linear-gradient(145deg, rgba(115, 20, 214, 0.88), rgba(209, 59, 201, 0.88));
  color: #fff;
  box-shadow: 0 24px 52px rgba(93, 26, 158, 0.32);
}

.cta-card h2 {
  line-height: 1.2;
  text-wrap: balance;
}

.cta-card p {
  color: #f6efff;
  margin: 12px auto 24px;
  line-height: 1.55;
  max-width: 52ch;
}

.footer {
  background: #171927;
  color: #d0d3e2;
  padding: 48px 0 82px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer a {
  display: block;
  margin-top: 8px;
  color: #d0d3e2;
}

.footer-col p,
.footer-brand p {
  margin-top: 10px;
  color: #c1c7dc;
  font-size: 0.88rem;
}

.footer-logo {
  width: clamp(140px, 18vw, 230px);
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-badges {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #f4ebff;
  background: #2d3148;
  border: 1px solid #3a3f5b;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #2a2d40;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #2a2d40;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer-bottom p {
  color: #aeb4ca;
  font-size: 0.82rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 14px;
  z-index: 40;
  display: none;
  margin: 0 auto;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(106, 17, 203, 0.34);
}

.demo-modal {
  --bs-modal-bg: transparent;
  --bs-modal-border-width: 0;
  --bs-modal-padding: 0;
  --bs-modal-width: min(620px, calc(100% - 24px));
  --bs-modal-margin: 1rem;
  --bs-backdrop-bg: #0f1424;
  --bs-backdrop-opacity: 0.64;
}

.demo-modal .modal-dialog {
  margin: 16px auto;
}

.demo-modal-card {
  width: 100%;
  border-radius: 22px;
  padding: 24px;
  position: relative;
  border: 1px solid rgba(226, 213, 255, 0.8);
  box-shadow: 0 22px 52px rgba(36, 20, 69, 0.26);
}

.demo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  color: #6229b0;
  background: #f2e8ff;
  cursor: pointer;
}

.demo-subtext {
  margin-top: 8px;
}

.demo-modal-head {
  margin-bottom: 14px;
}

.demo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 24px rgba(106, 17, 203, 0.32);
}

.demo-modal-head h3 {
  margin-top: 12px;
}

.demo-trust-points {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #57299f;
  background: #f4ebff;
  border: 1px solid #e5d4ff;
}

.demo-trust-points i {
  color: #7531d2;
}

.demo-form {
  display: grid;
  gap: 12px;
}

.demo-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.demo-field {
  display: grid;
  gap: 6px;
}

.demo-field-full {
  grid-column: 1 / -1;
}

.demo-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #424a66;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid #dfd5f3;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: #202437;
  background: rgba(255, 255, 255, 0.94);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #9c6bdf;
  box-shadow: 0 0 0 3px rgba(129, 62, 202, 0.15);
}

.demo-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 10px;
  padding: 9px 10px;
  color: #505977;
  background: #f7f4ff;
  border: 1px solid #e3dcf4;
  font-size: 0.79rem;
  font-weight: 600;
}

.demo-consent i {
  margin-top: 2px;
  color: #6831b8;
}

.demo-submit-btn {
  width: 100%;
  margin-top: 2px;
}

.demo-success {
  margin-top: 2px;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #21633f;
  background: #dff7e9;
  display: none;
}

.demo-success.show {
  display: block;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding-top: 16px;
  }

  .hero-stats {
    max-width: 100%;
  }

  .hero-result {
    position: static;
    margin-top: 12px;
    max-width: 100%;
  }

  .hero-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .grid-4,
  .why-choose-grid,
  .career-list-grid,
  .program-grid,
  .career-row,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .advanced-grid,
  .tutor-cards,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .advanced-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.9rem);
  }

  h3 {
    font-size: clamp(1.05rem, 4.6vw, 1.2rem);
    margin-bottom: 10px;
  }

  .section-head p,
  .hero-copy,
  .subtext,
  .feature p,
  .course p,
  .review p,
  .footer p {
    font-size: 0.92rem;
  }

  .btn,
  .nav-links a,
  .footer-col a,
  .mobile-sticky-cta {
    font-size: 0.9rem;
  }

  .demo-form label,
  .demo-consent,
  .demo-success {
    font-size: 0.8rem;
  }

  .demo-form input,
  .demo-form select,
  .demo-form textarea {
    font-size: 0.92rem;
  }

  .hero {
    display: block;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-right {
    max-width: 100%;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-copy {
    text-align: center;
    margin: 10px auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .section {
    padding-block: var(--section-y-sm);
  }

  .navbar {
    width: calc(100% - 14px);
    top: 8px;
  }

  .brand-text small {
    display: none;
  }

  .brand-image {
    width: clamp(110px, 50vw, 190px);
  }

  .footer-logo {
    width: clamp(120px, 60vw, 210px);
  }

  .hero-card img,
  .hero-card video {
    height: 330px;
  }

  .hero-proof {
    width: 100%;
    border-radius: 14px;
    justify-content: center;
  }

  .hero-tags {
    gap: 8px;
    justify-content: center;
  }

  .hero-tag {
    font-size: 0.74rem;
    padding: 7px 10px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .floating {
    font-size: 0.73rem;
    padding: 8px 9px;
  }

  .bubble-3 {
    display: none;
  }

  .grid-4,
  .why-choose-grid,
  .career-list-grid,
  .program-grid,
  .career-row,
  .timeline,
  .advanced-grid,
  .tutor-cards,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .advanced-pills {
    justify-content: center;
  }

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

  .testimonial-stats {
    justify-content: center;
  }

  .carousel button {
    justify-self: center;
  }



  .demo-modal-card {
    padding: 18px;
    border-radius: 18px;
  }

  .demo-field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .grid-4,
  .why-choose-grid,
  .career-list-grid,
  .program-grid,
  .career-row,
  .timeline,
  .advanced-grid,
  .tutor-cards,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    display: none;
  }
.navbar{
  padding: 2px 0px !important;
}
  .nav-inner {
    flex-wrap: nowrap !important;
    padding: 8px;
  }

  .navbar .nav-inner a.btn {
    font-size: 0.8rem;
    padding: 10px 12px;
  }
}