/* =========================================================
   GLOBAL VARIABLES
   ========================================================= */

:root {
  --bg: #ffffff;
  --dark: #0b1020;
  --muted: #64748b;
  --line: #e2e8f0;

  --primary: #5b5cf0;
  --primary2: #8b5cf6;

  --blue: #129cec;
  --green: #16d39a;
  --yellow: #f6b82e;

  --container: 1200px;
  --radius: 22px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #111827;
  background: var(--bg);

  line-height: 1.6;
}

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

button {
  font: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 300;

  transform: scaleX(0);
  transform-origin: left center;

  background: linear-gradient(90deg, var(--primary), var(--primary2));
  box-shadow: 0 0 12px rgba(91, 92, 240, 0.45);
  border-radius: 0 3px 3px 0;

  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    transition: none;
  }
}


.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;
padding-top: 30px;
  z-index: 100;

  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

/* Home page: transparent header solidifies once the page is scrolled */
.site-header.scrolled {
  padding-top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
}

/* ...and the logo mark shrinks a touch further to fit the compact bar */
.site-header.scrolled .navbar {
  height: 74px;
}
.site-header.scrolled .brand img {
  height: 34px;
}

.navbar {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.brand img {
  height: 42px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}
.brand-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-links {
  display: flex;
  align-items: center;

  gap: 30px;

  color: #111827;

  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.9;

  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 18px;

  border: 1px solid #d9deeb;

  border-radius: 999px;

  color: #111827;
}

.menu-toggle {
  display: none;

  background: none;

  border: 0;
}

.menu-toggle span {
  display: block;

  width: 25px;
  height: 2px;

  background: #111827;

  margin: 5px;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #ffffff;

  color: var(--dark);

  /* clears the absolutely-positioned header + oversized logo */
  padding-top: 140px;
}


/* =========================================================
   HERO BACKGROUND
   ========================================================= */

.hero-bg {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 72% 45%,
      rgba(108, 118, 255, 0.09),
      transparent 32%
    ),
    radial-gradient(
      circle at 45% 80%,
      rgba(30, 180, 255, 0.055),
      transparent 28%
    );
}


/* =========================================================
   HERO LAYOUT
   ========================================================= */

.hero-inner {
  position: relative;

  z-index: 2;

  width: min(92%, 1400px);

  margin-inline: auto;

  display: grid;

  grid-template-columns: 47% 53%;

  align-items: center;

  min-height: 650px;
}


/* =========================================================
   HERO LEFT CONTENT
   ========================================================= */

.hero-copy {
  position: relative;

  z-index: 5;

  max-width: 650px;

  padding-top: 10px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
  display: inline-block;

  font-size: 0.76rem;

  font-weight: 800;

  letter-spacing: 0.16em;

  color: var(--primary);

  margin-bottom: 15px;
}

.hero-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding: 15px 23px;

  margin-bottom: 22px;

  border: 1px solid #dce2ff;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.8);

  box-shadow:
    0 8px 30px rgba(77, 78, 230, 0.08);

  color: #11182e;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.17em;
}

.eyebrow-dot {
  width: 14px;
  height: 14px;

  flex: 0 0 14px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 0 5px rgba(22, 211, 154, 0.08);
}


/* =========================================================
   HERO HEADING
   ========================================================= */

.hero h1 {
  margin: 0 0 22px;

  font-size: clamp(58px, 5.25vw, 84px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;

  color: var(--dark);
}

.hero h1 span {
  display: inline-block;

  position: relative;

  background:
    linear-gradient(
      90deg,
      #08a9ed 0%,
      #376cf1 45%,
      #7148e8 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


/* =========================================================
   YELLOW HAND-DRAWN UNDERLINE
   ========================================================= */

.hero h1 span::after {
  content: "";

  position: absolute;

  left: 7%;
  right: 2%;

  bottom: -7px;

  height: 7px;

  border-radius: 50%;

  background: var(--yellow);

  transform:
    rotate(-2deg)
    skewX(-18deg);

  opacity: 0.95;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-copy p {
  max-width: 590px;

  margin: 0 0 32px;

  color: #586483;

  font-size: 21px;

  line-height: 1.55;

  font-weight: 450;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 18px;

  flex-wrap: wrap;

  margin-bottom: 35px;
}


/* =========================================================
   BUTTON BASE
   ========================================================= */

.btn {
  min-height: 70px;

  padding: 0 30px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  border-radius: 999px;

  border: 1px solid transparent;

  font-size: 18px;

  font-weight: 750;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.btn-primary {
  color: #ffffff;

  background:
    linear-gradient(
      100deg,
      #6848f3 0%,
      #485ff1 48%,
      #129cec 100%
    );

  box-shadow:
    0 15px 32px rgba(76, 87, 235, 0.25);
}

.btn-primary:hover {
  box-shadow:
    0 20px 40px rgba(76, 87, 235, 0.32);
}

.btn-arrow {
  font-size: 25px;

  line-height: 1;

  transition:
    transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}


/* =========================================================
   SECONDARY / COUNSELOR BUTTON
   ========================================================= */

.btn-ghost {
  color: #151b30;

  background: #ffffff;

  border: 2px solid #e0e5f3;

  box-shadow: none;
}

.btn-ghost:hover {
  border-color: #cbd3e9;

  box-shadow:
    0 10px 30px rgba(20, 30, 60, 0.08);
}

.counselor-icon {
  width: 23px;
  height: 23px;

  display: grid;

  place-items: center;

  border: 2px solid #172039;

  border-radius: 50%;

  font-size: 12px;
}


/* =========================================================
   LIGHT BUTTON
   ========================================================= */

.btn-light {
  background: #ffffff;

  color: #111827;
}


/* =========================================================
   HERO BENEFITS
   ========================================================= */

.hero-benefits {
  display: flex;

  align-items: center;

  gap: 28px;

  flex-wrap: wrap;
}

.hero-benefit {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #526080;

  font-size: 14px;

  line-height: 1.35;

  font-weight: 550;
}

.benefit-icon {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  flex: 0 0 40px;

  border-radius: 50%;

  font-size: 17px;

  font-weight: 800;
}

.benefit-icon.purple {
  color: #7148e8;

  background: #eee8ff;
}

.benefit-icon.blue {
  color: #008de3;

  background: #dff5ff;
}

.benefit-icon.green {
  color: #11a96d;

  background: #dff9ed;
}

.benefit-icon.violet {
  color: #7148e8;

  background: #eee8ff;
}


/* =========================================================
   HERO HANDWRITING
   ========================================================= */

.hero-handwriting {
  position: absolute;

  left: 0;
  bottom: -100px;

  color: #131a38;

  font-family:
    "Segoe Print",
    "Bradley Hand",
    cursive;

  font-size: 24px;

  line-height: 1.1;

  transform: rotate(-7deg);

  z-index: 4;
}

.hero-handwriting span:last-of-type {
  color: #202544;
}

.hero-handwriting b {
  position: absolute;

  right: -55px;
  top: -18px;

  font-size: 48px;

  font-weight: 400;

  color: #141a3c;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {
  position: relative;

  height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: visible;
}

.hero-art {
  width: 100%;

  max-width: 860px;

  height: auto;

  display: block;

  object-fit: contain;

  transform:
    translateX(18px)
    translateY(-4px);

  filter:
    drop-shadow(
      0 25px 50px rgba(74, 92, 180, 0.08)
    );
}


/* =========================================================
   OLD HERO VISUAL ELEMENTS
   Hidden because the new artwork already contains them
   ========================================================= */

.hero-orb {
  display: none;
}

.main-visual {
  display: none;
}

.floating-card {
  display: none;
}


/* =========================================================
   HERO SLIDER CONTROLS
   ========================================================= */

.hero-controls {
  position: absolute;

  z-index: 10;

  left: 50%;

  bottom: 35px;

  transform: translateX(-50%);

  width: min(92%, 1400px);

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 22px;
}

.slide-label {
  display: flex;

  align-items: baseline;

  gap: 5px;

  min-width: 58px;

  color: #8a94b1;

  font-size: 16px;
}

.slide-label strong {
  color: #0b1020;

  font-size: 18px;
}

.progress-track {
  width: 420px;

  height: 5px;

  overflow: hidden;

  border-radius: 999px;

  background: #e2e7f4;
}

.progress-track span {
  display: block;

  width: 25%;

  height: 100%;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #466cf2,
      #7148e8
    );
}

.carousel-buttons {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-left: 20px;
}

.carousel-buttons button {
  width: 50px;
  height: 50px;

  display: grid;

  place-items: center;

  border: 0;

  border-radius: 50%;

  color: #0b1020;

  background: #ffffff;

  box-shadow:
    0 8px 25px rgba(40, 50, 100, 0.08);

  font-size: 22px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.carousel-buttons button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(40, 50, 100, 0.15);
}

.carousel-buttons button:last-child {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #6749ef,
      #6544e8
    );

  box-shadow:
    0 12px 25px rgba(91, 82, 230, 0.25);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
  background: #ffffff;

  border-bottom: 1px solid var(--line);
}

.trust-items {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 18px 0;

  font-size: 0.88rem;

  font-weight: 700;

  color: #475569;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 100px 0;
}

.section-dark {
  background: #0e1426;

  color: #ffffff;
}

.section-light {
  background: #f8fafc;
}

.section-heading {
  max-width: 720px;

  margin-bottom: 42px;
}

.section-heading h2 {
  font-size:
    clamp(2.2rem, 4vw, 3.6rem);

  line-height: 1.08;

  letter-spacing: -0.04em;

  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
}

.section-dark .section-heading p {
  color: #9ca8bf;
}


/* =========================================================
   STUDENT SUCCESS
   ========================================================= */
/* =========================================================
   STUDENT SUCCESS CAROUSEL
   ========================================================= */

.success-section {
  background: #ffffff;
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.success-carousel {
  position: relative;

  width: 100%;

  height: 570px;

  overflow: hidden;

  border-radius: 28px;

  background: #0b1020;

  box-shadow:
    0 25px 70px rgba(20, 30, 70, 0.12);
}


/* =========================================================
   SLIDES
   ========================================================= */

.success-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}


.success-slide.active {
  opacity: 1;

  visibility: visible;

  z-index: 2;
}


/* =========================================================
   IMAGE
   ========================================================= */

.success-slide > img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================================
   VIDEO
   ========================================================= */

.success-video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================================
   DARK OVERLAY
   ========================================================= */

.success-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  padding: 50px;

  background:
    linear-gradient(
      180deg,
      transparent 35%,
      rgba(5, 10, 25, 0.18) 50%,
      rgba(5, 10, 25, 0.9) 100%
    );
}


/* =========================================================
   CONTENT
   ========================================================= */

.success-content {
  max-width: 600px;

  color: #ffffff;
}


.success-tag {
  display: inline-block;

  margin-bottom: 12px;

  padding: 7px 13px;

  border: 1px solid rgba(255,255,255,0.3);

  border-radius: 999px;

  background: rgba(255,255,255,0.1);

  backdrop-filter: blur(10px);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.13em;
}


.success-content h3 {
  margin-bottom: 8px;

  font-size: clamp(2rem, 4vw, 3.5rem);

  line-height: 1.05;

  letter-spacing: -0.04em;
}


.success-content p {
  max-width: 520px;

  color: rgba(255,255,255,0.82);

  font-size: 17px;

  line-height: 1.5;
}


/* =========================================================
   ARROWS
   ========================================================= */

.success-prev,
.success-next {
  position: absolute;

  top: 50%;

  z-index: 10;

  width: 54px;
  height: 54px;

  display: grid;

  place-items: center;

  border: 0;

  border-radius: 50%;

  font-size: 22px;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.success-prev {
  left: 25px;

  color: #111827;

  background: #ffffff;
}


.success-next {
  right: 25px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #6749ef,
      #129cec
    );
}


.success-prev:hover,
.success-next:hover {
  transform:
    translateY(-50%)
    scale(1.08);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.2);
}


/* =========================================================
   BOTTOM CONTROLS
   ========================================================= */

.success-controls {
  position: absolute;

  left: 50px;
  right: 50px;
  bottom: 30px;

  z-index: 10;

  display: flex;

  align-items: center;

  justify-content: space-between;
}


.success-counter {
  display: flex;

  align-items: baseline;

  gap: 5px;

  color: rgba(255,255,255,0.55);

  font-size: 15px;
}


.success-counter strong {
  color: #ffffff;

  font-size: 18px;
}


/* =========================================================
   DOTS
   ========================================================= */

.success-dots {
  display: flex;

  align-items: center;

  gap: 8px;
}


.success-dot {
  width: 28px;
  height: 4px;

  padding: 0;

  border: 0;

  border-radius: 999px;

  background: rgba(255,255,255,0.35);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}


.success-dot.active {
  width: 55px;

  background: #ffffff;
}

/* =========================================================
   COURSE FILTER
   ========================================================= */

.filter-bar {
  display: flex;

  gap: 9px;

  flex-wrap: wrap;

  margin-bottom: 28px;
}

.filter {
  padding: 9px 15px;

  border-radius: 999px;

  background: transparent;

  color: #c3ccde;

  border: 1px solid rgba(255, 255, 255, 0.16);
}

.filter.active {
  background: #ffffff;

  color: #101629;
}


/* =========================================================
   COURSES
   ========================================================= */

.course-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.course-card {
  background: #151d35;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: var(--radius);

  padding: 24px;

  min-height: 230px;

  display: flex;

  flex-direction: column;
}

.course-card .tag {
  color: #aeb4ff;

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.course-card h3 {
  font-size: 1.35rem;

  margin: 8px 0;
}

.course-card p {
  color: #9eabc2;

  font-size: 0.9rem;
}

.course-card .course-bottom {
  margin-top: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 22px;
}

.course-card,
.course-card:hover {
  color: inherit;
  text-decoration: none;
}

.course-card {
  cursor: pointer;
}

.course-card a,
.course-card .course-cta {
  color: #ffffff;

  font-weight: 750;
}


/* =========================================================
   WHY SP IT ACADEMY
   ========================================================= */

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.feature-card {
  border: 1px solid var(--line);

  border-radius: var(--radius);

  padding: 28px;
}

.feature-card span {
  font-size: 0.8rem;

  color: var(--primary);

  font-weight: 800;
}

.feature-card h3 {
  margin: 28px 0 8px;
}

.feature-card p {
  color: var(--muted);

  font-size: 0.92rem;
}


/* =========================================================
   CAREER JOURNEY
   ========================================================= */

.journey-section {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(91, 92, 240, 0.10), transparent 60%),
    #f8fafc;

  overflow: hidden;
}

.roadmap {
  position: relative;

  margin-top: 60px;
  padding-bottom: 70px;
}

.roadmap-wave {
  position: relative;

  height: 340px;
}

/* --- the wavy path --- */

.roadmap-track {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
}

.roadmap-line,
.roadmap-line-glow {
  fill: none;

  stroke: url(#roadmapGradient);
  stroke-linecap: round;

  vector-effect: non-scaling-stroke;
}

.roadmap-line {
  stroke-width: 5;

  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.roadmap-line-glow {
  stroke-width: 18;

  opacity: 0.12;
}

.roadmap.visible .roadmap-line {
  animation: roadmapDraw 1.9s 0.15s ease forwards;
}

@keyframes roadmapDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- milestone nodes --- */

.roadmap-node {
  position: absolute;

  left: var(--x);
  top: var(--y);

  width: 0;
  height: 0;

  opacity: 0;
  transform: translateY(14px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.roadmap.visible .roadmap-node {
  opacity: 1;
  transform: none;
}

.roadmap.visible .roadmap-node:nth-child(2)  { transition-delay: 0.05s; }
.roadmap.visible .roadmap-node:nth-child(3)  { transition-delay: 0.10s; }
.roadmap.visible .roadmap-node:nth-child(4)  { transition-delay: 0.15s; }
.roadmap.visible .roadmap-node:nth-child(5)  { transition-delay: 0.20s; }
.roadmap.visible .roadmap-node:nth-child(6)  { transition-delay: 0.25s; }
.roadmap.visible .roadmap-node:nth-child(7)  { transition-delay: 0.30s; }
.roadmap.visible .roadmap-node:nth-child(8)  { transition-delay: 0.35s; }
.roadmap.visible .roadmap-node:nth-child(9)  { transition-delay: 0.40s; }

.roadmap-tile {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 66px;
  height: 66px;

  display: grid;
  place-items: center;

  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 19px;

  color: var(--primary);

  box-shadow: 0 12px 26px rgba(31, 41, 90, 0.10);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.roadmap-tile svg {
  width: 26px;
  height: 26px;
}

.roadmap-node:hover .roadmap-tile,
.roadmap-node.is-active .roadmap-tile {
  transform: translate(-50%, -50%) scale(1.08);

  border-color: rgba(91, 92, 240, 0.45);

  box-shadow: 0 18px 38px rgba(91, 92, 240, 0.22);
}

.roadmap-label {
  position: absolute;
  left: 50%;
  top: 44px;
  transform: translateX(-50%);

  white-space: nowrap;

  font-weight: 800;
  font-size: 14px;

  color: var(--dark);
}

/* --- hover / active detail card --- */

.roadmap-card {
  position: absolute;
  left: 50%;
  top: 84px;
  transform: translateX(-50%) translateY(6px);

  width: 244px;

  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;

  padding: 16px;

  box-shadow: 0 22px 48px rgba(31, 41, 90, 0.16);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.22s ease,
    transform 0.22s ease;

  z-index: 6;
}

.roadmap-node:hover .roadmap-card,
.roadmap-node.is-active .roadmap-card {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0);
}

.roadmap-node.card-left .roadmap-card {
  left: 0;
  transform: translateX(0) translateY(6px);
}

.roadmap-node.card-left:hover .roadmap-card,
.roadmap-node.card-left.is-active .roadmap-card {
  transform: translateX(0) translateY(0);
}

.roadmap-node.card-right .roadmap-card {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(6px);
}

.roadmap-node.card-right:hover .roadmap-card,
.roadmap-node.card-right.is-active .roadmap-card {
  transform: translateX(0) translateY(0);
}

.roadmap-node.card-up .roadmap-card {
  top: auto;
  bottom: 82px;
}

.roadmap-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-mini {
  flex: none;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  background: rgba(91, 92, 240, 0.09);
  color: var(--primary);
}

.roadmap-mini svg {
  width: 18px;
  height: 18px;
}

.roadmap-card-title strong {
  display: block;
  font-size: 14px;
}

.roadmap-card-title small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.roadmap-card ul {
  list-style: none;

  margin: 13px 0 0;
  padding: 0;

  display: grid;
  gap: 7px;
}

.roadmap-card li {
  position: relative;

  padding-left: 18px;

  font-size: 12.5px;
  color: #475467;
}

.roadmap-card li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 6px;

  width: 7px;
  height: 7px;
  border-radius: 2px;

  background: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-line {
    stroke-dashoffset: 0;
    animation: none;
  }

  .roadmap .roadmap-node {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   CAMPUS / EVENTS
   ========================================================= */

.split-content {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 60px;

  align-items: center;
}

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;
}

.gallery-grid div {
  min-height: 180px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #e7e9ff,
      #eef2f7
    );

  display: grid;

  place-items: center;

  color: #64748b;

  font-weight: 700;
}

.narrow {
  max-width: 850px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: grid;

  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);

  border-radius: 15px;

  padding: 20px 22px;

  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;

  font-weight: 750;
}

.faq-list p {
  color: var(--muted);

  padding-top: 12px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  background:
    linear-gradient(
      120deg,
      #4d4ee6,
      #7c3aed
    );

  color: #ffffff;

  text-align: center;

  padding: 100px 0;
}

.final-cta .eyebrow {
  color: #d8d9ff;
}

.final-cta h2 {
  font-size:
    clamp(2.3rem, 5vw, 4.4rem);

  line-height: 1.05;

  margin-bottom: 15px;
}

.final-cta p {
  color: #e4e6ff;

  margin-bottom: 28px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: #070b16;

  color: #aeb7ca;

  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.7fr 1fr 1fr 1.3fr;

  gap: 48px;
}

.footer-logo {
  display: block;
  box-sizing: border-box;
  width: auto;
  height: 84px;
  object-fit: contain;

  margin-bottom: 8px;
}

.footer-org-name {
  display: block;
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #8a93a8;
}

.footer-brand p {
  max-width: 340px;
  font-size: 0.92rem;
  color: #9aa4b8;
}

.footer-contact {
  font-style: normal;
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #9aa4b8;
}

.footer-contact-col a {
  display: block;
  margin: 6px 0;
  font-size: 0.88rem;
  color: #c7d0e0;
  transition: color 0.2s ease;
}

.footer-contact-col a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer .footer-social a,
.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 17px;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer .footer-social a:hover,
.site-footer .footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.footer-social a span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.footer-social .s-ig { background-image: url("../assets/icons/instagram.svg"); }
.footer-social .s-li { background-image: url("../assets/icons/linkedin.svg"); }
.footer-social .s-fb { background-image: url("../assets/icons/facebook.svg"); }
.footer-social .s-wa { background-image: url("../assets/icons/whatsapp.svg"); }

.footer h4 {
  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  margin-bottom: 18px;
}

.footer-col a {
  display: block;

  margin: 10px 0;

  font-size: 0.9rem;

  color: #aeb7ca;

  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  margin-top: 52px;

  padding-top: 22px;

  font-size: 0.8rem;

  color: #7c8699;
}

/* ================= PLACEMENT SECTION ================= */

.placement-section {
  padding: 110px 20px;
  background: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.placement-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */

.placement-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 55px;
}

.placement-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #5b5cf0;
}

.placement-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: #101426;
}

.placement-heading h2 span {
  color: #5b5cf0;
}

.placement-heading p {
  max-width: 650px;
  margin-top: 20px;
  color: #687089;
  font-size: 16px;
  line-height: 1.7;
}

/* Placement Counter */

.placement-stat {
  flex-shrink: 0;
  padding: 22px 28px;
  border: 1px solid #e3e5f2;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(25, 30, 60, 0.06);
}

.placement-stat strong {
  display: block;
  color: #5b5cf0;
  font-size: 34px;
  line-height: 1;
}

.placement-stat span {
  display: block;
  margin-top: 7px;
  color: #737b91;
  font-size: 12px;
  font-weight: 700;
}


/* ================= CARDS ================= */

.placement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.placement-card {
  position: relative;
  padding: 27px;
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(27, 34, 72, 0.06);
  transition: all 0.3s ease;
}

.placement-card:hover {
  transform: translateY(-7px);
  border-color: #cfd1ff;
  box-shadow: 0 22px 55px rgba(91, 92, 240, 0.12);
}


/* Top */

.placement-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 13px;
}

.student-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(
    135deg,
    #5b5cf0,
    #8b5cf6
  );

  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.student-profile h3 {
  margin: 0;
  font-size: 17px;
  color: #15192b;
}

.student-profile span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #7b8296;
}

.placement-badge {
  padding: 7px 11px;
  border-radius: 50px;
  background: #ecfdf3;
  color: #149447;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}


/* Company */

.company-box {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 25px;
  padding: 17px;

  border-radius: 17px;
  background: #f7f7fc;
}

.company-logo {
  width: 48px;
  height: 48px;
  flex: none;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;
  background: #11162a;
  color: #fff;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.company-logo.has-logo {
  font-size: 0;
}

.company-logo.has-logo::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  -webkit-mask: var(--logo) center / contain no-repeat;
          mask: var(--logo) center / contain no-repeat;
}

.company-box small {
  display: block;
  color: #8a90a3;
  font-size: 10px;
  margin-bottom: 4px;
}

.company-box strong {
  color: #181c2f;
  font-size: 15px;
}


/* Information */

.placement-info {
  display: grid;
  grid-template-columns: 1fr 1fr;

  margin-top: 18px;
  padding: 17px 0;

  border-top: 1px solid #eceef5;
  border-bottom: 1px solid #eceef5;
}

.placement-info div:first-child {
  border-right: 1px solid #eceef5;
}

.placement-info div {
  padding-left: 17px;
}

.placement-info div:first-child {
  padding-left: 0;
}

.placement-info span {
  display: block;
  margin-bottom: 6px;
  color: #858ca0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.placement-info strong {
  color: #171b2e;
  font-size: 17px;
}


/* Student Story */

.student-story {
  margin: 19px 0;

  color: #656d82;
  font-size: 13px;
  line-height: 1.7;
  font-style: italic;
}


/* Footer */

.placement-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #747b90;
  font-size: 11px;
  font-weight: 700;
}

.arrow {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f0f0ff;
  color: #5b5cf0;

  font-size: 17px;

  transition: 0.3s ease;
}

.placement-card:hover .arrow {
  background: #5b5cf0;
  color: #fff;
  transform: rotate(45deg);
}


/* ================= CTA ================= */

.placement-cta {
  margin-top: 60px;
  padding: 30px 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-radius: 24px;

  background: #11162a;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.placement-cta::after {
  content: "";
  position: absolute;

  width: 280px;
  height: 280px;

  right: -100px;
  top: -150px;

  border-radius: 50%;
  background: rgba(91, 92, 240, 0.35);
  filter: blur(5px);
}

.placement-cta span {
  position: relative;
  z-index: 1;

  color: #969cff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.placement-cta h3 {
  position: relative;
  z-index: 1;

  margin-top: 7px;
  font-size: 23px;
}

.placement-btn {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 20px;

  border-radius: 12px;

  background: #fff;
  color: #15192b;

  text-decoration: none;
  font-size: 13px;
  font-weight: 800;

  transition: 0.3s ease;
}

.placement-btn:hover {
  transform: translateY(-2px);
  background: #eeeefe;
}

.placement-btn span {
  color: #5b5cf0;
  font-size: 17px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 850px) {

  .placement-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .placement-stat {
    width: 100%;
    text-align: left;
  }

  .placement-stat strong,
  .placement-stat span {
    display: inline-block;
  }

  .placement-stat span {
    margin-left: 8px;
  }

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

  .placement-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .placement-btn {
    width: 100%;
    justify-content: center;
  }
}


@media (max-width: 550px) {

  .placement-section {
    padding: 75px 16px;
  }

  .placement-heading {
    margin-bottom: 35px;
  }

  .placement-heading h2 {
    font-size: 37px;
    letter-spacing: -1.5px;
  }

  .placement-card {
    padding: 20px;
    border-radius: 20px;
  }

  .placement-badge {
    display: none;
  }

  .student-avatar {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .student-profile h3 {
    font-size: 15px;
  }

  .company-box {
    padding: 14px;
  }

  .placement-cta {
    padding: 25px 22px;
  }

  .placement-cta h3 {
    font-size: 20px;
  }
}


/* =========================================================
   SOLID HEADER
   (for interior pages that have no hero behind the nav —
    a light bar so the full-colour logo reads cleanly)
   ========================================================= */

.site-header.solid {
  position: sticky;
  top: 0;
  padding-top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.site-header.solid .navbar {
  height: 80px;
}

.site-header.solid .brand img {
  height: 42px;
}


/* =========================================================
   INTERIOR PAGE HEADS
   ========================================================= */

.page-head {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 78% 20%, rgba(108, 118, 255, 0.10), transparent 40%),
    #f8fafc;
}

.page-head h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.page-head p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 680px;
}

.page-head .btn {
  margin-top: 32px;
}


/* =========================================================
   SIMPLE STAT ROW
   ========================================================= */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.stat-row div {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.stat-row strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--dark);
}

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

@media (max-width: 850px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================================
   LOGO / PARTNER WALL
   ========================================================= */

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.logo-wall div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #475569;
}

.logo-wall div[style*="--logo"]::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: none;
  background-color: #475569;
  -webkit-mask: var(--logo) center / contain no-repeat;
          mask: var(--logo) center / contain no-repeat;
}

@media (max-width: 850px) {
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================================
   CONTACT LAYOUT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info li {
  list-style: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info li span {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-info li strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #111827;
}

.contact-info li a:hover {
  color: var(--primary);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #334155;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.contact-socials a::before {
  content: "";
  width: 19px;
  height: 19px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.contact-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(79, 70, 229, 0.06);
  transform: translateY(-2px);
}

.contact-socials a span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.contact-socials .s-ig::before { -webkit-mask-image: url("../assets/icons/instagram.svg"); mask-image: url("../assets/icons/instagram.svg"); }
.contact-socials .s-li::before { -webkit-mask-image: url("../assets/icons/linkedin.svg"); mask-image: url("../assets/icons/linkedin.svg"); }
.contact-socials .s-fb::before { -webkit-mask-image: url("../assets/icons/facebook.svg"); mask-image: url("../assets/icons/facebook.svg"); }
.contact-socials .s-wa::before { -webkit-mask-image: url("../assets/icons/whatsapp.svg"); mask-image: url("../assets/icons/whatsapp.svg"); }

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin: 16px 0 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: #111827;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(91, 92, 240, 0.35);
  outline-offset: 1px;
  background: #ffffff;
}

.contact-form button {
  margin-top: 22px;
  width: 100%;
  border: 0;
}

.form-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(22, 211, 154, 0.12);
  color: #0f7a5a;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

/* --- Forminator-style form fields --- */

.form-field {
  margin-top: 16px;
  position: relative;
}

.form-field:first-of-type {
  margin-top: 0;
}

.form-field label {
  margin: 0 0 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.form-row .form-field {
  margin-top: 0;
}

.contact-form .req {
  color: #e11d48;
  font-weight: 800;
}

.char-counter {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #e11d48;
  background: #fff5f7;
}

.form-error {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e11d48;
}

.form-alert {
  margin: 4px 0 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(225, 29, 72, 0.3);
  background: rgba(225, 29, 72, 0.08);
  color: #be123c;
  font-size: 0.85rem;
  font-weight: 600;
}

.consent-field {
  margin-top: 20px;
}

.contact-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  color: #475569;
  cursor: pointer;
}

.contact-form .consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--primary);
}

@media (max-width: 850px) {
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}