@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #232737;
  --navy: #1c243c;
  --navy-mid: #232c47;
  --navy-light: #2d3c5c;
  --indigo: #5d7af7;
  --indigo-bright: #758fff;
  --indigo-deep: #4460d5;
  --indigo-glow: rgba(93, 122, 247, 0.12);
  --amber: #f5a319;
  --amber-light: #fbc437;
  --amber-pale: rgba(245, 163, 25, 0.1);
  --teal: #19d9a7;
  --teal-pale: rgba(25, 217, 167, 0.1);
  --rose: #f4516c;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --slate-50: #f3f4f8;
  --slate-100: #e8eaf2;
  --slate-200: #ced3e8;
  --slate-400: #8e97b4;
  --slate-600: #555f80;
  --slate-800: #2d3c5c;
  --text: #161a2a;
  --text-muted: #555f80;
  --text-light: #8e97b4;

  --font-head: "DM Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --shadow-xs: 0 1px 4px rgba(20, 24, 43, 0.06);
  --shadow-sm: 0 2px 8px rgba(20, 24, 43, 0.08);
  --shadow-md: 0 4px 20px rgba(20, 24, 43, 0.1);
  --shadow-indigo: 0 8px 28px rgba(93, 122, 247, 0.22);
  --shadow-amber: 0 8px 28px rgba(245, 163, 25, 0.18);
  --shadow-card: 0 2px 16px rgba(20, 24, 43, 0.07);
  --shadow-hover:
    0 12px 36px rgba(93, 122, 247, 0.15), 0 4px 12px rgba(20, 24, 43, 0.08);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.65;
  padding-bottom: 72px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: 0;
}
input,
select,
textarea {
  font-family: var(--font-body);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--slate-50);
}
::-webkit-scrollbar-thumb {
  background: var(--indigo);
  border-radius: 3px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
@keyframes blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}
/* NOTE: this "marquee" keyframe is functionally identical to
   "marquee-left" in the marketing-page CSS further down (both go
   translateX(0) -> translateX(-50%)). Kept both since they're used
   by different selectors (.marquee-track here vs the marketing
   page's own track), but you could safely consolidate to one name. */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes count-pop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7);
  }
}
@keyframes line-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track {
    animation: none;
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo);
  display: inline-block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: normal;
  color: var(--indigo);
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 580px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  box-shadow: var(--shadow-indigo);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(93, 122, 247, 0.4);
}
.btn-amber {
  background: linear-gradient(135deg, var(--amber), #e78713);
  color: #fff;
  box-shadow: var(--shadow-amber);
}
.btn-shimmer {
  background: linear-gradient(
    135deg,
    var(--amber) 0%,
    #f5a319 40%,
    #fde68a 50%,
    #f5a319 60%,
    #e78713 100%
  );
  background-size: 200% auto;
  color: var(--ink);
  font-weight: 800;
  animation: shimmer 3s linear infinite;
  box-shadow: 0 8px 28px rgba(245, 163, 25, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn-outline:hover {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow-indigo);
}
.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-white {
  background: #fff;
  color: var(--indigo);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-md);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: #2d3c5c;
  box-shadow: 0 8px 28px rgba(20, 24, 43, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--slate-200);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}
.btn-lg {
  padding: 15px 34px;
  font-size: 15px;
}
.btn-xl {
  padding: 18px 42px;
  font-size: 17px;
  font-weight: 800;
}
.arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow {
  transform: translateX(5px);
}

/* ===== ANNOUNCEMENT BAR ===== */
.ann-bar {
  background: linear-gradient(
    90deg,
    var(--indigo-deep) 0%,
    var(--indigo) 50%,
    var(--indigo-deep) 100%
  );
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 200;
}
.ann-bar strong {
  font-weight: 800;
}
.ann-bar a {
  color: var(--amber-light);
  font-weight: 700;
  margin-left: 10px;
  text-decoration: none;
  border-bottom: 1px dashed rgba(251, 191, 36, 0.5);
  transition: color 0.2s;
}
.ann-bar a:hover {
  color: #fff;
  border-color: #fff;
}

/* ===== TOP CONTACT BAR ===== */
.top-bar {
  background: var(--navy);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  font-size: 12.5px;
}
.top-bar a:hover {
  color: var(--amber-light);
}
.top-bar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(20, 24, 43, 0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(93, 122, 247, 0.32);
  transition: transform 0.2s var(--ease-spring);
}
.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.08);
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.logo-text span {
  color: var(--indigo);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--indigo);
  background: var(--indigo-glow);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow:
    0 16px 48px rgba(20, 24, 43, 0.14),
    0 4px 12px rgba(20, 24, 43, 0.07);
  border: 1px solid var(--slate-100);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transform-origin: top left;
  transition: all 0.2s var(--ease-out);
  z-index: 500;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.15s;
}
.nav-dropdown a:hover {
  background: var(--indigo-glow);
  color: var(--indigo);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: 0;
  background: 0;
  border-radius: var(--r-sm);
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.hamburger:hover span {
  background: var(--indigo);
}
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--slate-100);
  padding: 16px 20px 28px;
}
.mobile-nav.open {
  display: block;
  animation: fadeUp 0.25s var(--ease-out);
}
.mobile-nav a {
  display: block;
  padding: 11px 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--slate-100);
  transition: color 0.15s;
}
.mobile-nav a:hover {
  color: var(--indigo);
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(93, 122, 247, 0.32),
    transparent 70%
  );
  top: -100px;
  right: -80px;
  animation: blob-drift 12s ease-in-out infinite;
}
.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(25, 217, 167, 0.16),
    transparent 70%
  );
  bottom: -120px;
  left: -80px;
  animation: blob-drift 16s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 163, 25, 0.18),
    transparent 70%
  );
  top: 30%;
  left: 40%;
  animation: blob-drift 20s ease-in-out infinite 5s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-badge {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--r-pill);
  padding: 5px 13px;
  backdrop-filter: blur(12px);
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.hero-badge:hover {
  background: rgba(255, 255, 255, 0.14);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-bright), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-head);
  font-weight: 500;
}
.trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #16b794);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 52px;
  position: relative;
  z-index: 2;
}
.hero-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}
.hero-stat:last-child {
  border: none;
}
.hero-stat:hover {
  background: rgba(255, 255, 255, 0.05);
}
.h-stat-num {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.h-stat-num span {
  color: var(--amber-light);
}
.h-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ===== HERO FORM ===== */
.hero-form-wrap {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  width: 100%;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}
.hero-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  border-radius: 0 0 3px 3px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.countdown-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-md);
  padding: 13px 16px;
  margin-bottom: 18px;
}
.countdown-label {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.countdown-timer {
  display: flex;
  gap: 6px;
  align-items: center;
}
.cd-block {
  text-align: center;
}
.cd-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: rgba(93, 122, 247, 0.25);
  border: 1px solid rgba(93, 122, 247, 0.3);
  border-radius: 6px;
  padding: 5px 8px;
  min-width: 36px;
  letter-spacing: -0.02em;
}
.cd-lbl {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cd-sep {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  padding-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-group {
  margin-bottom: 10px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-600);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.form-group label span {
  color: var(--rose);
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: all 0.2s;
}
.form-control:hover {
  border-color: var(--slate-400);
}
.form-control:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-glow);
}
.form-control::placeholder {
  color: var(--text-light);
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-indigo);
  letter-spacing: 0.01em;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(93, 122, 247, 0.42);
}
.form-note {
  font-size: 11.5px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 18px 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-600);
  white-space: nowrap;
}
.marquee-item + .marquee-item {
  border-left: 1px solid var(--slate-200);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--indigo), var(--teal), var(--amber));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===== HOW IT WORKS ===== */
.hiw-section {
  padding: 88px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hiw-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 122, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 122, 247, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hiw-section .section-label {
  color: var(--amber-light);
  background: rgba(245, 163, 25, 0.1);
  border-color: rgba(245, 163, 25, 0.22);
}
.hiw-section .section-label::before {
  background: var(--amber);
}
.hiw-section .section-title {
  color: #fff;
}
.hiw-section .section-title em {
  background: linear-gradient(135deg, var(--indigo-bright), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.hiw-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  position: relative;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.hiw-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}
.hiw-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}
.hiw-step:hover .hiw-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}
.hiw-icon-wrap-1 {
  background: linear-gradient(
    135deg,
    rgba(93, 122, 247, 0.25),
    rgba(93, 122, 247, 0.1)
  );
  border: 1px solid rgba(93, 122, 247, 0.3);
}
.hiw-icon-wrap-2 {
  background: linear-gradient(
    135deg,
    rgba(25, 217, 167, 0.2),
    rgba(25, 217, 167, 0.08)
  );
  border: 1px solid rgba(25, 217, 167, 0.3);
}
.hiw-icon-wrap-3 {
  background: linear-gradient(
    135deg,
    rgba(245, 163, 25, 0.2),
    rgba(245, 163, 25, 0.08)
  );
  border: 1px solid rgba(245, 163, 25, 0.3);
}
.hiw-icon-wrap-4 {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.22),
    rgba(168, 85, 247, 0.08)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.hiw-icon-wrap svg {
  width: 28px;
  height: 28px;
}
.hiw-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}
.hiw-num-1 {
  background: var(--indigo);
  box-shadow: 0 4px 12px rgba(93, 122, 247, 0.4);
}
.hiw-num-2 {
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(25, 217, 167, 0.35);
}
.hiw-num-3 {
  background: var(--amber);
  box-shadow: 0 4px 12px rgba(245, 163, 25, 0.38);
}
.hiw-num-4 {
  background: #ae61f7;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.38);
}
.hiw-step h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hiw-step p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.hiw-cta {
  text-align: center;
  margin-top: 52px;
}

/* ===== MARKET OPPORTUNITY ===== */
.market-section {
  padding: 88px 0;
  background: var(--white);
}
.market-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.market-content {
}
.market-content .section-title {
  margin-bottom: 0;
}
.market-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
}
.market-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.market-stat-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.market-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-bright));
  border-radius: 3px 3px 0 0;
}
.market-stat-card:hover {
  border-color: rgba(93, 122, 247, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.ms-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--indigo);
  margin-bottom: 6px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ms-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ===== COURSES ===== */
.about-section {
  padding: 88px 0;
  background: var(--off-white);
}
.about-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: opacity 0.3s;
  opacity: 0;
}
.course-card.card-purple::before {
  background: linear-gradient(90deg, var(--indigo), var(--indigo-bright));
}
.course-card.card-teal::before {
  background: linear-gradient(90deg, var(--teal), #16b794);
}
.course-card.card-amber::before {
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}
.course-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.course-card:hover::before {
  opacity: 1;
}
.course-card-top {
  padding: 24px 24px 0;
}
.cc-badge {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 14px;
}
.badge-purple {
  background: var(--indigo-glow);
  color: var(--indigo);
  border: 1px solid rgba(93, 122, 247, 0.2);
}
.badge-teal {
  background: var(--teal-pale);
  color: #1ca581;
  border: 1px solid rgba(25, 217, 167, 0.22);
}
.badge-amber {
  background: var(--amber-pale);
  color: #c5791a;
  border: 1px solid rgba(245, 163, 25, 0.22);
}
.cc-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.cc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}
.cc-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
  background: var(--slate-50);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--slate-100);
}
.cc-divider {
  height: 1px;
  background: var(--slate-100);
}
.cc-features {
  padding: 18px 24px;
  flex: 1;
}
.cc-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
  line-height: 1.5;
}
.cc-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.check-purple {
  background: var(--indigo-glow);
  color: var(--indigo);
}
.check-teal {
  background: var(--teal-pale);
  color: #1ca581;
}
.check-amber {
  background: var(--amber-pale);
  color: #c5791a;
}
.cc-urgent {
  margin: 0 24px;
  padding: 10px 14px;
  background: linear-gradient(
    135deg,
    rgba(245, 163, 25, 0.07),
    rgba(245, 163, 25, 0.03)
  );
  border: 1px solid rgba(245, 163, 25, 0.18);
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: #9a4e20;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cc-urgent-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse-ring 1.8s ease-out infinite;
}
.cc-footer {
  padding: 18px 24px 24px;
  display: flex;
  gap: 10px;
}
.cc-footer .btn {
  flex: 1;
  justify-content: center;
  font-size: 13.5px;
}

/* ===== CURRICULUM ===== */
.curriculum-section {
  background: linear-gradient(135deg, #0f1629, #1a2456);
  padding: 88px 0;
}
.curriculum-section .section-title {
  color: #fff;
}
.curriculum-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.curriculum-section .section-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.curriculum-section .section-label::before {
  background: var(--teal);
}
.curriculum-tabs {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.curr-tab {
  padding: 10px 22px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.curr-tab.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}
.curr-tab:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}
.curriculum-panel {
  display: none;
}
.curriculum-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.curr-module {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all 0.2s;
}
.curr-module:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.curr-module-num {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.curr-module-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.curr-module-topics {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

/* ===== STATS BAND ===== */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-mid) 50%,
    var(--navy) 100%
  );
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 122, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 122, 247, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.stat-box {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}
.stat-box:last-child {
  border: none;
}
.stat-box:hover {
  background: rgba(255, 255, 255, 0.04);
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-num .accent {
  color: var(--amber-light);
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-head);
  margin-top: 7px;
  font-weight: 600;
}
.stat-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 3px;
}

/* ===== COMPANIES ===== */
.companies-section {
  padding: 88px 0;
  background: var(--off-white);
}
.companies-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 44px;
}
.company-logo {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-md);
  padding: 11px 22px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
}
.company-logo:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-glow);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-2px);
}
.placed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.placed-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s var(--ease-spring);
  box-shadow: var(--shadow-xs);
}
.placed-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-4px) scale(1.02);
}
.placed-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(93, 122, 247, 0.28);
}
.placed-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.placed-company {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 600;
}

/* ===== PLACEMENT PROCESS ===== */
.placement-section {
  padding: 88px 0;
  background: var(--white);
}
.placement-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.placement-step {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s var(--ease-out);
}
.placement-step:hover {
  border-color: rgba(93, 122, 247, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.placement-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(93, 122, 247, 0.3);
}
.placement-step h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.placement-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.placement-step .ps-stat {
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 88px 0;
  background: var(--off-white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.feature-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  transition: all 0.3s var(--ease-out);
  text-align: center;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.feature-card:hover::after {
  transform: scaleX(1);
}
.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: linear-gradient(
    135deg,
    var(--indigo-glow),
    rgba(25, 217, 167, 0.07)
  );
  border: 1px solid rgba(93, 122, 247, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s var(--ease-spring);
}
.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.feature-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== URGENCY BAND ===== */
.urgency-band {
  background: linear-gradient(135deg, var(--amber) 0%, #e78713 100%);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.urgency-band::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.urgency-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.urgency-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.urgency-icon svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
}
.urgency-text h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.urgency-text p {
  font-size: 13.5px;
  color: rgba(20, 24, 43, 0.7);
  line-height: 1.5;
}
.urgency-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.urgency-seats {
  background: rgba(20, 24, 43, 0.12);
  border: 2px solid rgba(20, 24, 43, 0.14);
  border-radius: var(--r-md);
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}
.urgency-seats span {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ===== ABOUT NUMBERED ===== */
.about-num-section {
  padding: 88px 0;
  background: var(--white);
}
.about-num-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-num-list {
  display: flex;
  flex-direction: column;
}
.about-num-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--slate-100);
}
.about-num-item:last-child {
  border: none;
}
.about-num-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 14px rgba(93, 122, 247, 0.28);
  transition: all 0.3s var(--ease-spring);
}
.about-num-item:hover .about-num-badge {
  background: linear-gradient(135deg, var(--amber), #e78713);
  box-shadow: var(--shadow-amber);
}
.about-num-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.about-num-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-quote {
  background: linear-gradient(
    135deg,
    var(--indigo-glow),
    rgba(25, 217, 167, 0.05)
  );
  border-left: 3px solid var(--indigo);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 22px 26px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
}
.about-img-side {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--r-xl);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 24px 64px rgba(20, 24, 43, 0.22);
  position: relative;
  overflow: hidden;
}
.about-img-side::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(93, 122, 247, 0.22),
    transparent 70%
  );
}
.about-img-side h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  position: relative;
}
.about-img-side p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  position: relative;
}
.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.about-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  transition: all 0.2s;
}
.about-pill:hover {
  background: rgba(255, 255, 255, 0.18);
}
.about-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-big-stat {
  text-align: center;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  transition: background 0.2s;
}
.about-big-stat:hover {
  background: rgba(255, 255, 255, 0.12);
}
.about-big-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-big-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  font-weight: 600;
}

/* ===== SALARY TABLE ===== */
.salary-section {
  background: var(--off-white);
  padding: 88px 0;
}
.salary-table-wrap {
  overflow-x: auto;
  margin-top: 44px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.salary-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.salary-table th {
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.salary-table th:first-child {
  border-radius: var(--r-md) 0 0 0;
}
.salary-table th:last-child {
  border-radius: 0 var(--r-md) 0 0;
}
.salary-table td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--slate-100);
}
.salary-table tr:last-child td {
  border-bottom: none;
}
.salary-table td:first-child {
  font-weight: 700;
  color: var(--ink);
}
.salary-table td:not(:first-child) {
  color: var(--teal);
  font-weight: 700;
  font-family: var(--font-head);
}
.salary-table tr:hover td {
  background: var(--off-white);
}

/* ===== JOB ROLES ===== */
.roles-section {
  padding: 88px 0;
  background: var(--white);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.role-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}
.role-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.role-card-1::before {
  background: var(--indigo);
}
.role-card-2::before {
  background: var(--teal);
}
.role-card-3::before {
  background: var(--amber);
}
.role-card-4::before {
  background: #ae61f7;
}
.role-card-5::before {
  background: var(--rose);
}
.role-card-6::before {
  background: #f97b23;
}
.role-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.role-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--indigo);
}
.role-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.role-salary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-pale);
  border: 1px solid rgba(25, 217, 167, 0.2);
  color: #20856c;
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.role-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.role-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.role-skill {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  color: var(--text-muted);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 11.5px;
  font-family: var(--font-head);
  font-weight: 600;
}
.roles-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px;
}
.roles-stat {
  text-align: center;
}
.roles-stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}
.roles-stat-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  font-weight: 600;
}
.roles-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== BATCHES ===== */
.batches-section {
  padding: 88px 0;
  background: var(--off-white);
}
.batches-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.batches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.batch-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.batch-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.batch-date {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.batch-date::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.batch-day {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.batch-month {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.batch-body {
  padding: 20px;
}
.batch-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 13px;
  letter-spacing: -0.02em;
}
.batch-metas {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.batch-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.batch-meta svg {
  width: 15px;
  height: 15px;
  color: var(--text-light);
  flex-shrink: 0;
}
.batch-tag {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: var(--r-pill);
  display: inline-block;
  margin-bottom: 12px;
}
.tag-hot {
  background: rgba(244, 81, 108, 0.1);
  color: #c22347;
  border: 1px solid rgba(244, 81, 108, 0.2);
}
.tag-open {
  background: rgba(25, 217, 167, 0.1);
  color: #1ca581;
  border: 1px solid rgba(25, 217, 167, 0.2);
}
.batch-btn {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  border: 0;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.batch-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-indigo);
}
.batches-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== TOOLS ===== */
.tools-section {
  padding: 80px 0;
  background: var(--navy);
}
.tools-section .section-title {
  color: #fff;
}
.tools-section .section-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.tools-section .section-label::before {
  background: var(--teal);
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  justify-content: center;
}
.tool-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 9px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
  cursor: default;
}
.tool-tag:hover {
  border-color: var(--indigo);
  color: var(--indigo-bright);
  background: rgba(93, 122, 247, 0.12);
  transform: translateY(-2px);
}

/* ===== JOURNEY TIMELINE ===== */
.journey-section {
  background: var(--off-white);
  padding: 88px 0;
}
.journey-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 52px;
  max-width: 800px;
  margin-inline: auto;
}
.journey-item {
  display: grid;
  grid-template-columns: 110px 1px 1fr;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 36px;
}
.journey-item:last-child {
  padding-bottom: 0;
}
.journey-month {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--indigo);
  text-align: right;
  padding-top: 4px;
}
.journey-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.journey-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--indigo);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--indigo);
  flex-shrink: 0;
  margin: 4px 0 0 -6.5px;
}
.journey-vline {
  flex: 1;
  width: 2px;
  background: var(--slate-200);
  margin-top: 4px;
}
.journey-item:last-child .journey-vline {
  display: none;
}
.journey-content {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  transition: all 0.2s;
  box-shadow: var(--shadow-xs);
}
.journey-content:hover {
  border-color: rgba(93, 122, 247, 0.2);
  box-shadow: var(--shadow-md);
}
.journey-content h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.journey-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SECTORS ===== */
.sectors-section {
  padding: 88px 0;
  background: var(--white);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.sector-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.sector-card:hover {
  border-color: rgba(93, 122, 247, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.sector-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(
    135deg,
    var(--indigo-glow),
    rgba(25, 217, 167, 0.07)
  );
  border: 1px solid rgba(93, 122, 247, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sector-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--indigo);
}
.sector-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.sector-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.sector-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.sector-co {
  font-size: 11.5px;
  font-weight: 700;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* ===== WHICH COURSE ===== */
.which-section {
  background: linear-gradient(135deg, #0f1629, #1a2456);
  padding: 88px 0;
}
.which-section .section-title {
  color: #fff;
}
.which-section .section-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.which-section .section-label::before {
  background: var(--teal);
}
.which-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.which-table-wrap {
  overflow-x: auto;
  margin-top: 44px;
  border-radius: var(--r-xl);
}
.which-table {
  width: 100%;
  border-collapse: collapse;
}
.which-table th {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.which-table td {
  padding: 13px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.which-table td:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.which-table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

/* ===== PROJECTS ===== */
.projects-section {
  padding: 88px 0;
  background: var(--off-white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.project-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.project-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.project-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-thumb-icon {
  width: 48px;
  height: 48px;
  opacity: 0.8;
}
.project-body {
  padding: 20px;
}
.project-tag {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: var(--r-pill);
  display: inline-block;
  margin-bottom: 10px;
}
.tag-ai {
  background: var(--indigo-glow);
  color: var(--indigo);
  border: 1px solid rgba(93, 122, 247, 0.2);
}
.tag-ds {
  background: var(--teal-pale);
  color: #20856c;
  border: 1px solid rgba(25, 217, 167, 0.2);
}
.tag-da {
  background: var(--amber-pale);
  color: #9a4e20;
  border: 1px solid rgba(245, 163, 25, 0.2);
}
.project-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.project-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.project-tech {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  color: var(--text-muted);
  border-radius: 5px;
  padding: 2px 8px;
  font-size: 11px;
  font-family: var(--font-head);
  font-weight: 600;
}
.project-student {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
}
.project-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.project-student-info {
  font-size: 12px;
  color: var(--text-muted);
}
.project-student-info strong {
  color: var(--ink);
  font-family: var(--font-head);
  display: block;
  font-size: 12.5px;
}

/* ===== TEAM ===== */
.team-section {
  padding: 88px 0;
  background: var(--white);
}
.team-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.team-tab {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: var(--r-pill);
  border: 2px solid var(--slate-200);
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
  background: #fff;
  letter-spacing: -0.01em;
}
.team-tab.active,
.team-tab:hover {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-indigo);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.team-card:hover {
  border-color: rgba(93, 122, 247, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.team-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-wrap svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.7);
}
.team-body {
  flex: 1;
}
.team-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.team-role {
  font-size: 12.5px;
  color: var(--indigo);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 6px;
}
.team-stat {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.team-stat strong {
  color: var(--teal);
}
.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.team-feats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.team-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}
.team-feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 88px 0;
  background: var(--off-white);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.google-g {
  font-size: 20px;
  color: #4285f4;
  font-weight: 900;
  font-family: var(--font-head);
}
.stars-row {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 1px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.review-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.review-card:hover {
  border-color: rgba(93, 122, 247, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}
.review-course {
  font-size: 11.5px;
  color: var(--text-light);
}
.review-placed {
  font-size: 11.5px;
  color: var(--teal);
  font-weight: 700;
  margin-top: 2px;
}
.reviews-cta {
  text-align: center;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}

/* ===== COMPARE ===== */
.compare-section {
  padding: 88px 0;
  background: var(--white);
}
.compare-wrap {
  margin-top: 52px;
  overflow-x: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--slate-100);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th {
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
}
.compare-table th:first-child {
  text-align: left;
  width: 36%;
}
.compare-th-us {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  position: relative;
  padding-top: 26px;
}
.compare-th-us::after {
  content: "Best Choice";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 0 0 var(--r-pill) var(--r-pill);
  white-space: nowrap;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
}
.compare-th-others {
  background: var(--slate-50);
  color: var(--text-muted);
}
.compare-th-online {
  background: var(--slate-50);
  color: var(--text-muted);
}
.compare-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--slate-100);
  text-align: center;
  transition: background 0.15s;
}
.compare-table td:first-child {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
}
.compare-table tr:hover td {
  background: var(--slate-50);
}
.compare-table tr:hover td:nth-child(2) {
  background: var(--indigo-glow);
}
.compare-td-us {
  background: rgba(93, 122, 247, 0.04);
  font-weight: 700;
}
.check-yes {
  color: var(--teal);
  font-size: 16px;
  font-weight: 900;
}
.check-no {
  color: var(--rose);
  font-size: 16px;
}
.check-partial {
  color: var(--amber);
  font-size: 15px;
}
.compare-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

/* ===== SALARY CALCULATOR ===== */
.calc-section {
  padding: 88px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 122, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 122, 247, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.calc-section .section-label {
  color: var(--amber-light);
  background: rgba(245, 163, 25, 0.1);
  border-color: rgba(245, 163, 25, 0.22);
}
.calc-section .section-label::before {
  background: var(--amber);
}
.calc-section .section-title {
  color: #fff;
}
.calc-section .section-title em {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 52px;
}
.calc-form-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.calc-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.calc-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 600;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.calc-select:focus {
  border-color: var(--indigo);
  background: rgba(93, 122, 247, 0.1);
}
.calc-select option {
  background: var(--navy);
  color: #fff;
}
.calc-slider-wrap {
  position: relative;
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.1s;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-bright), var(--indigo));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(93, 122, 247, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.2s var(--ease-spring);
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-head);
  font-weight: 600;
}
.calc-result {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(93, 122, 247, 0.18),
    transparent 70%
  );
}
.calc-result-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.calc-current {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}
.calc-arrow-wrap {
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-arrow-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  animation: float 2s ease-in-out infinite;
}
.calc-new-salary {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.calc-new-salary .salary-unit {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.calc-hike-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(25, 217, 167, 0.14);
  border: 1px solid rgba(25, 217, 167, 0.28);
  color: var(--teal);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 18px;
  transition: all 0.4s;
}
.calc-disclaimer {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 10px;
  line-height: 1.6;
}
.calc-cta-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

/* ===== FEE STRUCTURE ===== */
.fee-section {
  padding: 88px 0;
  background: var(--off-white);
}
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.fee-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}
.fee-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.fee-card-popular {
  border-color: var(--indigo);
  box-shadow: 0 8px 32px rgba(93, 122, 247, 0.16);
}
.fee-popular-badge {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  text-align: center;
  padding: 9px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fee-head {
  padding: 28px 28px 20px;
}
.fee-course-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}
.fee-duration {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 18px;
}
.fee-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.fee-price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.fee-emi {
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 18px;
}
.fee-divider {
  height: 1px;
  background: var(--slate-100);
}
.fee-includes {
  padding: 20px 28px;
  flex: 1;
}
.fee-includes-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.fee-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
  line-height: 1.5;
}
.fee-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fee-check svg {
  width: 10px;
  height: 10px;
  color: #1ca581;
}
.fee-footer {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fee-note {
  font-size: 11.5px;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 88px 0;
  background: var(--white);
}
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-top: 52px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 90px;
}
.faq-sidebar-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 16px 48px rgba(20, 24, 43, 0.18);
  position: relative;
  overflow: hidden;
}
.faq-sidebar-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(93, 122, 247, 0.18),
    transparent 70%
  );
}
.faq-sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  letter-spacing: -0.02em;
}
.faq-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-contact-item:last-of-type {
  border: none;
}
.faq-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-contact-icon svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.faq-contact-label {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.faq-contact-val {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  word-break: break-word;
  margin-top: 1px;
}
.faq-cta-btn {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
  border: 0;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: var(--shadow-indigo);
}
.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(93, 122, 247, 0.38);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.faq-item.open {
  border-color: rgba(93, 122, 247, 0.22);
  box-shadow: 0 4px 20px rgba(93, 122, 247, 0.09);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--indigo);
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-spring);
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  border-color: transparent;
}
.faq-item.open .faq-icon svg {
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--slate-100);
}

/* =====================================================================
   NOTE: The base file's own "===== CONTACT =====" block below uses
   .contact-section / .contact-inner / .contact-features / .contact-feat
   / .cf-icon / .cf-title / .cf-desc / .contact-direct / .contact-card.
   This is a DIFFERENT component from the dedicated Contact page's
   .contact-main-section / .contact-info-item family (further down in
   this file, under "PAGE: CONTACT"). They don't collide by class name
   except for the bare .cf-icon/.cf-title/.cf-desc, which the page-level
   CSS always references through a more specific parent selector
   (e.g. .contact-info-item .cf-icon), so the compound selector wins
   and both coexist safely. No action needed, just flagging it so
   you know two separate "contact" UIs exist in this codebase.
   ===================================================================== */

/* ===== CONTACT ===== */
.contact-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #0f1629, #1a2456);
}
.contact-section .section-title {
  color: #fff;
}
.contact-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.contact-section .section-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.contact-section .section-label::before {
  background: var(--teal);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
}
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  transition: all 0.2s;
}
.contact-feat:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}
.cf-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(93, 122, 247, 0.18);
  border: 1px solid rgba(93, 122, 247, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cf-icon svg {
  width: 20px;
  height: 20px;
  color: var(--indigo-bright);
}
.cf-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.cf-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.contact-direct {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cd-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #16b794);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-phone-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.cd-phone-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cd-phone-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.cd-phone-num a {
  color: var(--amber-light);
}
.cd-phone-num a:hover {
  color: #fff;
}
.contact-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--teal), var(--amber));
}
.contact-hours {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #30326d 50%,
    var(--navy) 100%
  );
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(93, 122, 247, 0.18) 0%,
    transparent 70%
  );
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}
.cta-banner h2 em {
  font-style: normal;
  color: var(--amber-light);
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}
.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin: 14px 0 20px;
}
.footer-certs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.footer-cert {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  padding: 4px 13px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s;
  font-weight: 500;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.28);
}
.footer-meta {
  display: flex;
  gap: 16px;
}
.footer-meta a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
}
.footer-meta a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== STICKY BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(20, 24, 43, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(93, 122, 247, 0.25);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -8px 32px rgba(20, 24, 43, 0.28);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-bar.show,
.sticky-bar.visible {
  transform: translateY(0);
}
.sb-text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.sb-text span {
  color: var(--amber-light);
}
.sb-btns {
  display: flex;
  gap: 10px;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 850;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s var(--ease-spring);
}
.wa-float:hover {
  transform: scale(1.12);
}
.wa-float svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 24, 43, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(20, 24, 43, 0.38);
  transform: scale(0.9) translateY(16px);
  transition: transform 0.35s var(--ease-spring);
  overflow: hidden;
}
.popup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--teal), var(--amber));
}
.popup-overlay.open .popup-card {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text-muted);
}
.popup-close:hover {
  background: var(--slate-100);
  color: var(--ink);
}
.popup-badge {
  background: var(--indigo-glow);
  color: var(--indigo);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-pill);
  padding: 4px 14px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.popup-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: -0.03em;
}
.popup-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.popup-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 26px;
}
.popup-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.popup-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--indigo-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.popup-feat-icon svg {
  width: 11px;
  height: 11px;
  color: var(--indigo);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}

/* Hero animations */
.hero-anim-1 {
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}
.hero-anim-2 {
  animation: fadeUp 0.8s var(--ease-out) 0.25s both;
}
.hero-anim-3 {
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}
.hero-anim-4 {
  animation: fadeUp 0.8s var(--ease-out) 0.55s both;
}
.hero-anim-5 {
  animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}
.hero-stat-anim {
  animation: count-pop 0.6s var(--ease-spring) both;
}
.hero-stat:nth-child(1) .hero-stat-anim {
  animation-delay: 0.9s;
}
.hero-stat:nth-child(2) .hero-stat-anim {
  animation-delay: 1.05s;
}
.hero-stat:nth-child(3) .hero-stat-anim {
  animation-delay: 1.2s;
}
.hero-stat:nth-child(4) .hero-stat-anim {
  animation-delay: 1.35s;
}

/* ===== RESPONSIVE (base) ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-form-wrap {
    max-width: 520px;
  }
  .market-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .market-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-num-inner {
    grid-template-columns: 1fr;
  }
  .curriculum-panel.active {
    grid-template-columns: 1fr 1fr;
  }
  .placement-steps {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .calc-inner {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
  }
  .fee-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .market-inner {
    grid-template-columns: 1fr;
  }
  .market-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
  }
  .placed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .placement-steps {
    grid-template-columns: 1fr;
  }
  .batches-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    flex-direction: column;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .fee-grid {
    grid-template-columns: 1fr;
  }
  .curriculum-panel.active {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .urgency-inner {
    flex-direction: column;
  }
  .urgency-left {
    flex-direction: column;
  }
  .roles-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .roles-divider {
    display: none;
  }
  .calc-new-salary {
    font-size: 38px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .popup-feats {
    grid-template-columns: 1fr;
  }
  body {
    padding-bottom: 108px;
  }
  .sticky-bar {
    flex-direction: column;
    text-align: center;
  }
  .sb-btns {
    justify-content: center;
  }
  .compare-table {
    min-width: 600px;
  }
  .salary-table {
    min-width: 500px;
  }
  .which-table {
    min-width: 500px;
  }
}

@media (max-width: 480px) {
  .market-stats-grid {
    grid-template-columns: 1fr;
  }
  .placed-grid {
    grid-template-columns: 1fr 1fr;
  }
  .roles-bottom {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about-big-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =====================================================================
   PAGE-SPECIFIC / SHARED COMPONENT CSS BELOW
   (News, Homepage marketing, Internship, Course, Contact, Ranking pages)
   ===================================================================== */

/* =====================================================================
   COMBINED STYLESHEET — Prime Point site
   Merged from: news-media.css, homepage-marketing.css,
   ds-internship.css, ds-course.css, contact.css
   Uses CSS variables already defined in the base style.css
   (--indigo, --navy, --off-white, --slate-100, --font-head, etc.)

   ⚠️ See the chat summary for a full CONFLICT REPORT. A few classes
   were reused across pages with different values — those are marked
   with "CONFLICT RESOLVED" comments below, picking one canonical
   version. Search for "CONFLICT" to find every spot that needs your
   sign-off.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. SHARED / GLOBAL COMPONENTS
   (identical across News, Internship, Course, and Contact pages —
   deduplicated to a single definition)
   --------------------------------------------------------------------- */

/* Breadcrumb strip under navbar — used on News, Internship, Course, Contact */
.course-crumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--slate-100);
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
}
.course-crumb a {
  color: var(--indigo);
}
.course-crumb span {
  color: var(--slate-400);
  margin: 0 6px;
}

/* Compact page banner (no form) — used on News and Contact */
.page-banner {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.page-banner-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 10800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-banner-inner h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-bright), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-banner-inner p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* CONFLICT RESOLVED: the Ranking page ("Top 10 AI Course in Pune Fees")
   reused .page-banner-inner with different values (760px max-width,
   smaller/looser h1 clamp, 15px/1.85 paragraph). Canonical .page-banner-inner
   above stays as News/Contact's 720px version; the Ranking page's numbers
   are kept here as an opt-in modifier.
   ⚠️ ACTION NEEDED: on the Ranking page, add class="page-banner-inner
   page-banner-inner--wide" to get the original wider layout back. */
.page-banner-inner--wide {
  max-width: 760px;
}
.page-banner-inner--wide h1 {
  font-size: clamp(26px, 3.8vw, 42px);
}
.page-banner-inner--wide p {
  font-size: 15px;
  line-height: 1.85;
}

/* Footer SEO / location links — used on Internship and Contact */
.footer-seo-links {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 2.1;
}
.footer-seo-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-seo-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-seo-links .sep {
  color: rgba(255, 255, 255, 0.18);
  margin: 0 2px;
}

/* Branches grid — used on News and Contact (identical) */
.branches-section {
  padding: 88px 0;
  background: var(--white);
}
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.branch-card {
  background: var(--off-white);
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 26px;
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.branch-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.branch-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.branch-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--indigo);
}
.branch-name {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.branch-addr {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.branch-soon-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--amber-pale);
  color: #9a4e20;
  border: 1px solid rgba(245, 163, 25, 0.22);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Map section base — used on News, Internship, Contact.
   NOTE: .map-inner / .map-contact-panel (split map+info layout) are only
   used by News & Internship. Contact page uses a plain full-width map. */
.map-section {
  padding: 0;
  background: var(--off-white);
}
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* CONFLICT RESOLVED: .map-embed iframe had 3 different values:
   News = min-height:420px | Internship = min-height:400px | Contact = fixed height:420px (no min-height).
   Canonical below uses min-height:420px (News' value) with a fallback height.
   -> Double-check the Internship page still looks right at 420px instead of 400px. */
.map-embed iframe {
  width: 100%;
  height: 420px;
  min-height: 420px;
  border: 0;
  display: block;
}

.map-contact-panel {
  background: var(--navy);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.map-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.map-contact-item .cf-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(93, 122, 247, 0.18);
  border: 1px solid rgba(93, 122, 247, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-contact-item .cf-icon svg {
  width: 20px;
  height: 20px;
  color: var(--indigo-bright);
}
.map-contact-item .cf-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
/* CONFLICT RESOLVED: cf-val line-height was 1.5 (News) vs 1.6 (Internship);
   cf-val a had no display rule in News but display:block in Internship.
   Canonical below takes Internship's version (block links read better in a list). */
.map-contact-item .cf-val {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
.map-contact-item .cf-val a {
  color: var(--amber-light);
  display: block;
}

/* ---------------------------------------------------------------------
   2. CONFLICT ZONE — .callback-card / .callback-section
   News uses .callback-section as ALWAYS dark, with a wide 560px card.
   Internship uses .callback-section as LIGHT by default, with an
   opt-in ".dark" modifier, and a narrower 460px card.
   RESOLUTION: kept Internship's more flexible light-default + .dark
   modifier pattern, and renamed the two card widths so nothing breaks:
     .callback-card        -> 460px (Internship's original size)
     .callback-card--wide  -> 560px (News' original size)
   ⚠️ ACTION NEEDED: on the News page, add class="callback-section dark"
   to the section, and class="callback-card callback-card--wide" to the
   card, since News originally relied on the old always-dark/560px rule.
   --------------------------------------------------------------------- */
.callback-section {
  padding: 72px 0;
  background: var(--off-white);
}
.callback-section.dark {
  background: linear-gradient(135deg, #0f1629, #1a2456);
}
.callback-section.dark .section-title {
  color: #fff;
}
.callback-section.dark .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.callback-section.dark .section-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.callback-section.dark .section-label::before {
  background: var(--teal);
}

.callback-card {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
}
.callback-card--wide {
  max-width: 560px;
  margin: 44px auto 0;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}
.callback-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--teal), var(--amber));
}

/* ---------------------------------------------------------------------
   3. PAGE: IN NEWS & MEDIA (unique blocks only)
   --------------------------------------------------------------------- */
.press-section {
  padding: 72px 0;
  background: var(--off-white);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.press-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-muted);
  min-height: 76px;
  transition: all 0.2s;
}
.press-tile:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-glow);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-2px);
}

.article-section {
  padding: 88px 0;
  background: var(--white);
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  margin-top: 44px;
  align-items: start;
}
.article-content h2.art-h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 20px;
}
.article-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content h3.art-h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
}
.article-content h4.art-h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}
.article-bullets {
  margin: 18px 0 24px;
}
.article-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--slate-100);
}
.article-bullet:first-child {
  border-top: none;
}
.article-bullet-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--indigo-glow);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.article-bullet-icon svg {
  width: 14px;
  height: 14px;
}
.article-bullet-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}
.article-bullet-text strong {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
}
.article-cta-box {
  margin-top: 36px;
  background: linear-gradient(
    135deg,
    var(--indigo-glow),
    rgba(25, 217, 167, 0.05)
  );
  border-left: 3px solid var(--indigo);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 22px 26px;
}
.article-cta-box p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.8;
}

.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.art-side-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: 0 16px 48px rgba(20, 24, 43, 0.18);
  position: relative;
  overflow: hidden;
}
.art-side-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(93, 122, 247, 0.18),
    transparent 70%
  );
}
.art-side-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.art-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.art-contact-item:last-of-type {
  border-bottom: none;
}
.art-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.art-contact-icon svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.art-contact-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.art-contact-val {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1px;
  word-break: break-word;
}
.art-stat-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-xs);
}
.art-stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  color: var(--indigo);
  letter-spacing: -0.03em;
}
.art-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ---------------------------------------------------------------------
   4. PAGE: HOMEPAGE / MARKETING (unique blocks only)
   --------------------------------------------------------------------- */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* ⚠️ NOTE: marquee-left / marquee-right keyframes are defined but never
   referenced anywhere in the 5 source files (the actual marquee uses
   @keyframes ppMarquee below). Left in for safety in case something
   outside these files uses them — flagged as possibly dead code. */

.pp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mkt-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.mkt-card {
  position: relative;
}
.mkt-card-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #e8eaf2;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(20, 24, 43, 0.06);
  overflow: hidden;
}
.mkt-bignum {
  position: absolute;
  top: -14px;
  right: 2px;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 76px;
  line-height: 1;
  color: rgba(93, 122, 247, 0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.mkt-idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #161a2a;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  flex-shrink: 0;
}
.mkt-line {
  border-top: 1px solid #eef0f6;
  padding-top: 10px;
  margin-top: 10px;
}
.mkt-line:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.mkt-grid-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (min-width: 1025px) {
  .mkt-stack {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
}
@media (max-width: 1024px) {
  .mkt-grid-stats {
    grid-template-columns: 1fr 1fr;
  }
  .mkt-bignum {
    font-size: 60px;
  }
}
@media (max-width: 480px) {
  .mkt-card-inner {
    padding: 20px 18px;
  }
}
@media (min-width: 1025px) {
  #contact-right-col {
    display: flex;
    flex-direction: column;
  }
  #contact-form-wrap {
    order: 1;
  }
  #contact-direct-block {
    order: 2;
    margin-top: 24px;
  }
}

@keyframes ppMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.pp-marquee-track {
  display: flex;
  width: max-content;
  animation: ppMarquee 42s linear infinite;
}
.pp-marquee-track:hover {
  animation-play-state: paused;
}
.pp-marquee-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.pp-marquee-card {
  flex-shrink: 0;
  width: 260px;
  margin: 0 10px;
  background: #fff;
  border: 1.5px solid #e8eaf2;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
}
.pp-marquee-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pp-marquee-caption {
  font-style: italic;
  font-size: 12.5px;
  color: #555f80;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .pp-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .pp-marquee-card {
    width: 210px;
    padding: 18px 16px;
  }
  .pp-marquee-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .pp-marquee-caption {
    font-size: 11.5px;
  }
  .pp-marquee-track {
    animation-duration: 30s;
  }
}
@media (max-width: 600px) {
  .pp-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   5. PAGE: DATA SCIENCE INTERNSHIP (unique blocks only)
   --------------------------------------------------------------------- */
.intern-hero {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.intern-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.intern-hero-kicker {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--amber-light);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.intern-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.intern-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 24px;
}
.intern-hero-assoc {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.intern-hero-assoc-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.intern-hero-assoc-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  color: #fff;
}

.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.icon-feature-card {
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 24px 14px;
  transition: all 0.2s;
}
.icon-feature-card:hover {
  border-color: rgba(93, 122, 247, 0.25);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-3px);
}
.icon-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--indigo-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.icon-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--indigo);
}
.icon-feature-title {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}
.mode-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  box-shadow: var(--shadow-xs);
}
.mode-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.mode-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.highlights-list {
  max-width: 860px;
  margin: 44px auto 0;
}
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 4px;
  border-top: 1px solid var(--slate-100);
}
.highlight-item:first-child {
  border-top: none;
}
.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--indigo-glow);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-icon svg {
  width: 15px;
  height: 15px;
}
.highlight-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

.learn-section {
  padding: 88px 0;
  background: var(--white);
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.learn-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}
.learn-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.learn-card-top {
  height: 8px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
}
.learn-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.learn-badge {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 14px;
  width: fit-content;
}
.learn-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.learn-meta span {
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}
.learn-title {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.learn-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

/* ---------------------------------------------------------------------
   6. PAGE: DATA SCIENCE COURSE (unique blocks only)
   --------------------------------------------------------------------- */
.hero-fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 163, 25, 0.14);
  border: 1px solid rgba(245, 163, 25, 0.3);
  color: var(--amber-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}

.intro-section {
  padding: 72px 0 24px;
  background: var(--white);
}
.intro-section .intro-copy {
  max-width: 760px;
  margin: 0 auto;
}
.intro-copy p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.intro-fee-line {
  margin-top: 18px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.2);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--indigo);
}

.cf-glance-section {
  padding: 72px 0;
  background: var(--off-white);
}
.cf-glance-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 44px;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.cf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px;
  border-bottom: 1px solid var(--slate-100);
  border-right: 1px solid var(--slate-100);
}
.cf-row:nth-child(even) {
  border-right: none;
}
.cf-glance-wrap .cf-row:nth-last-child(1),
.cf-glance-wrap .cf-row:nth-last-child(2) {
  border-bottom: none;
}
.cf-row-label {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
}
.cf-row-value {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  text-align: right;
}
.cf-row-value.accent {
  color: var(--indigo);
}

.curr-mod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.curr-mod-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.25s var(--ease-out);
}
.curr-mod-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.curr-mod-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(93, 122, 247, 0.18);
  border: 1px solid rgba(93, 122, 247, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.curr-mod-icon svg {
  width: 20px;
  height: 20px;
  color: var(--indigo-bright);
}
.curr-mod-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.curr-mod-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.loc-adv-section {
  padding: 88px 0;
  background: var(--off-white);
}
.loc-adv-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}
.loc-adv-text p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.loc-adv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.loc-adv-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}
.loc-adv-card-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  color: var(--indigo);
  letter-spacing: -0.03em;
}
.loc-adv-card-label {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
  font-weight: 500;
}

.delivery-section {
  padding: 88px 0;
  background: var(--white);
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.delivery-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 30px 26px;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s var(--ease-out);
}
.delivery-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.delivery-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--indigo-glow);
  color: var(--indigo);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}
.delivery-card h4 {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.delivery-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.delivery-closing {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.8;
}

.benefits-section {
  padding: 88px 0;
  background: var(--off-white);
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.policy-card {
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s var(--ease-out);
  border-top: 3px solid var(--indigo);
}
.policy-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.policy-card h4 {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.policy-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.trainer-section {
  padding: 88px 0;
  background: var(--white);
}
.trainer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}
.trainer-text p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.trainer-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.trainer-stat-card {
  background: var(--off-white);
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  gap: 16px;
}
.trainer-stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  color: var(--indigo);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.trainer-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 600;
  font-family: var(--font-head);
}

.recruiters-section {
  padding: 88px 0;
  background: var(--off-white);
}
.recruiters-table-wrap {
  overflow-x: auto;
  margin-top: 44px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.recruiters-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}
.recruiters-table th {
  background: var(--navy);
  color: #fff;
  padding: 15px 22px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  text-align: left;
}
.recruiters-table td {
  padding: 13px 22px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--slate-100);
}
.recruiters-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-head);
  white-space: nowrap;
}
.recruiters-table tr:hover td {
  background: var(--off-white);
}
.recruiters-closing {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.8;
}

.who-section {
  padding: 88px 0;
  background: var(--white);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.who-card {
  display: flex;
  gap: 18px;
  background: var(--off-white);
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  padding: 26px;
}
.who-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--indigo-glow);
  border: 1px solid rgba(93, 122, 247, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.who-icon svg {
  width: 22px;
  height: 22px;
  color: var(--indigo);
}
.who-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.who-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.who-closing {
  text-align: center;
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.8;
}

.why-pune-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #0f1629, #1a2456);
  position: relative;
  overflow: hidden;
}
.why-pune-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 122, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 122, 247, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.why-pune-section .section-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.why-pune-section .section-label::before {
  background: var(--teal);
}
.why-pune-section .section-title {
  color: #fff;
}
.why-pune-section .section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-bright), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-pune-intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 14px auto 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}
.why-pune-kicker {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
}
.why-pune-list {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 28px auto 0;
}
.why-pune-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}
.why-pune-item:first-child {
  border-top: none;
}
.why-pune-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
.why-pune-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(93, 122, 247, 0.15);
  border: 1px solid rgba(93, 122, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-pune-icon svg {
  width: 20px;
  height: 20px;
  color: var(--indigo-bright);
}
.why-pune-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  padding-top: 3px;
}

.commitment-section {
  padding: 64px 0 24px;
  background: var(--white);
}
.commitment-box {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    var(--indigo-glow),
    rgba(25, 217, 167, 0.05)
  );
  border-left: 3px solid var(--indigo);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 28px 32px;
}
.commitment-box p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.commitment-box p:last-child {
  margin-bottom: 0;
}

.ready-copy {
  max-width: 640px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}
.ready-copy p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 14px;
}
.ready-contact-line {
  font-weight: 700;
  color: #fff !important;
}

.mini-eyebrow {
  text-align: center;
  margin-bottom: 6px;
}

/* ---------------------------------------------------------------------
   7. PAGE: CONTACT (unique blocks only)
   --------------------------------------------------------------------- */
.quick-contact-section {
  padding: 44px 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quick-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  background: var(--off-white);
  transition: all 0.2s;
}
.quick-contact-card:hover {
  border-color: rgba(93, 122, 247, 0.25);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-3px);
}
.quick-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(93, 122, 247, 0.28);
}
.quick-contact-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.quick-contact-label {
  font-size: 11px;
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.quick-contact-val {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 2px;
}
.quick-contact-val a {
  color: var(--ink);
}

.contact-main-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #0f1629, #1a2456);
}
.contact-main-section .section-title {
  color: #fff;
}
.contact-main-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
.contact-main-section .section-label {
  color: var(--teal);
  background: rgba(25, 217, 167, 0.1);
  border-color: rgba(25, 217, 167, 0.22);
}
.contact-main-section .section-label::before {
  background: var(--teal);
}
.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  margin-top: 44px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
}
.contact-info-item .cf-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(93, 122, 247, 0.18);
  border: 1px solid rgba(93, 122, 247, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .cf-icon svg {
  width: 20px;
  height: 20px;
  color: var(--indigo-bright);
}
.contact-info-item .cf-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}
.contact-info-item .cf-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.contact-info-item .cf-desc a {
  color: var(--amber-light);
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  border-color: transparent;
  transform: translateY(-3px);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.contact-main-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}
.contact-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--teal), var(--amber));
}

/* ---------------------------------------------------------------------
   8. PAGE: TOP 10 AI COURSE IN PUNE FEES (ranking page, unique blocks)
   NOTE: this page's .course-crumb, .page-banner, .footer-seo-links, and
   .social-btn were byte-for-byte duplicates of the shared versions in
   section 1 — deduplicated. Its .page-banner-inner sizing conflicted
   with News/Contact's — see the "CONFLICT RESOLVED" comment near
   .page-banner-inner--wide in section 1.
   --------------------------------------------------------------------- */
.ranking-section {
  padding: 72px 0 88px;
  background: var(--off-white);
}
.ranking-list {
  max-width: 880px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.rank-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  background: #fff;
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s var(--ease-out);
}
.rank-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.rank-card.rank-featured {
  border-color: var(--indigo);
  box-shadow: 0 8px 32px rgba(93, 122, 247, 0.16);
}
.rank-num {
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  color: var(--slate-400);
  letter-spacing: -0.03em;
}
.rank-featured .rank-num {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  color: #fff;
}
.rank-body {
  padding: 24px 26px;
}
.rank-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.rank-title {
  font-family: var(--font-head);
  font-size: 17.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.rank-badge {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  border-radius: var(--r-pill);
  padding: 4px 12px;
  white-space: nowrap;
}
.rank-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.rank-desc a {
  color: var(--indigo);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(93, 122, 247, 0.35);
}
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rank-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-pill);
  padding: 4px 12px;
}
.rank-meta span.accent {
  background: var(--indigo-glow);
  border-color: rgba(93, 122, 247, 0.2);
  color: var(--indigo);
}
.rank-meta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.ranking-closing {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ---------------------------------------------------------------------
   9. RESPONSIVE — merged & deduplicated media queries
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .map-inner {
    grid-template-columns: 1fr;
  }
  .branches-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-main-inner {
    grid-template-columns: 1fr;
  }
  .intern-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intern-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .intern-hero-assoc {
    justify-content: center;
  }
  .icon-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .modes-grid {
    grid-template-columns: 1fr;
  }
  .learn-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cf-glance-wrap {
    grid-template-columns: 1fr;
  }
  .cf-row {
    border-right: none !important;
  }
  .curr-mod-grid {
    grid-template-columns: 1fr 1fr;
  }
  .loc-adv-inner {
    grid-template-columns: 1fr;
  }
  .policy-grid {
    grid-template-columns: 1fr;
  }
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .trainer-inner {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .press-grid {
    grid-template-columns: 1fr 1fr;
  }
  .branches-grid {
    grid-template-columns: 1fr;
  }
  .map-contact-panel {
    padding: 40px 24px;
  }
  .icon-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .learn-grid {
    grid-template-columns: 1fr;
  }
  .curr-mod-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .icon-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .callback-card {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .rank-card {
    grid-template-columns: 1fr;
  }
  .rank-num {
    padding: 12px 0;
    font-size: 22px;
  }
  .rank-body {
    padding: 20px;
  }
}
.pp-gallery {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.pp-gallery img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  display: block !important;
  max-width: 100% !important;
}

@media (max-width: 900px) {
  .pp-gallery {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 600px) {
  .pp-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px !important;
  }
}
