/* MAAC Kalyan & Mulund — Dark red + black landing */
:root {
  --red: #c41e3a;
  --red-dark: #8b1228;
  --red-glow: rgba(196, 30, 58, 0.45);
  --black: #0a0a0c;
  --black-soft: #121218;
  --black-card: #16161f;
  --gray: #9ca3af;
  --gray-light: #d1d5db;
  --white: #f8fafc;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Bebas Neue", "Outfit", sans-serif;
  --font-hero: "Bebas Neue", "Outfit", sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}

/* Ambient depth */
.page-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-1 {
  width: 420px; height: 420px;
  background: var(--red);
  top: -10%; right: -5%;
}
.orb-2 {
  width: 320px; height: 320px;
  background: #4a0e1a;
  bottom: 20%; left: -8%;
  animation-delay: -6s;
}
.orb-3 {
  width: 260px; height: 260px;
  background: rgba(196, 30, 58, 0.5);
  top: 45%; left: 40%;
  animation-delay: -12s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}
main { position: relative; z-index: 3; }
.site-header { z-index: 1000; }
body.touch-device { cursor: auto; }
body.touch-device .cursor-dot,
body.touch-device .cursor-ring { display: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1200px, 92vw); margin-inline: auto; }

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--red);
  transition: transform 0.08s linear, opacity 0.2s;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(196, 30, 58, 0.6);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.2s, background 0.2s;
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  background: rgba(196, 30, 58, 0.12);
  border-color: var(--red);
}
body.cursor-click .cursor-dot { transform: translate(-50%, -50%) scale(0.6); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(196, 30, 58, 0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(196, 30, 58, 0.25));
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo-img { transform: scale(1.04); }
.footer-logo .logo-img { height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.1rem !important;
  background: var(--red);
  border-radius: 999px;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark); }

.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--black-card);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.06);
}
.lang-btn {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--gray);
  cursor: none;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 32px var(--red-glow);
}
.btn-primary:hover {
  box-shadow: 0 12px 40px var(--red-glow);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn-outline:hover {
  border-color: var(--red);
  background: rgba(196, 30, 58, 0.1);
}
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 12, 0.28);
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.05);
  animation: kenBurns 8s ease-out forwards;
}
.hero-slide.active img {
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1.18); }
}
.hero-scanline {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.4;
}
.hero-dots {
  position: absolute;
  bottom: 5rem;
  right: 8%;
  z-index: 6;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.hero-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.25);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.45) 38%, rgba(10, 10, 12, 0.25) 62%, rgba(10, 10, 12, 0.35) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(196, 30, 58, 0.22), transparent);
  z-index: 4;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 5;
  background-image:
    linear-gradient(rgba(196, 30, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 30, 58, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, black 20%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 6;
  padding: 4rem 0 6rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(196, 30, 58, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: pulseBadge 3s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 20px 2px var(--red-glow); }
}
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(3.25rem, 9vw, 5.75rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.gradient-text {
  background: linear-gradient(120deg, #fff 0%, #ffb3c1 40%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(196, 30, 58, 0.35));
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red);
}
.stat span { font-size: 0.85rem; color: var(--gray); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Section decor */
.section-divider {
  text-align: center;
  padding: 0.5rem 0;
  color: var(--red);
  opacity: 0.5;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
}
.section-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.5;
}
.section-bg-deco {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-radius: 50%;
  animation: spinSlow 40s linear infinite;
}
.section-bg-deco::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(196, 30, 58, 0.2);
  border-radius: 50%;
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
.section-mesh {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.06), transparent 35%);
}
.film-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--black-card) 0,
    var(--black-card) 8px,
    rgba(196, 30, 58, 0.25) 8px,
    rgba(196, 30, 58, 0.25) 16px
  );
  opacity: 0.6;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-head { margin-bottom: 3rem; max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.left { text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.eyebrow.light { color: rgba(255,255,255,0.7); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-head p { color: var(--gray); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pathways */
.pathways { background: var(--black-soft); }
.pathway-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.pathway-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.pathway-card:hover {
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(196, 30, 58, 0.2);
}
.pathway-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(180deg, #121218 0%, #0a0a0c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pathway-img img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: filter 0.4s var(--ease);
}
.pathway-card:hover .pathway-img img {
  filter: brightness(1.05);
}
.pathway-img::after {
  content: none;
}
.pathway-label {
  display: none;
}
.pathway-card-body { padding: 1.75rem; }
.pathway-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.pathway-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1rem; }
.pathway-card li {
  font-size: 0.9rem;
  color: var(--gray-light);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.pathway-card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--red);
}

.tilt-card { transform-style: preserve-3d; }

/* Flagship */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.flagship-item {
  position: relative;
  background: linear-gradient(145deg, var(--black-card), var(--black-soft));
  border: 1px solid rgba(196, 30, 58, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.flagship-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.flagship-item:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(196, 30, 58, 0.15);
}
.flagship-item:hover::before { opacity: 1; }
.flagship-code {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--red);
  opacity: 0.8;
}
.flagship-item h3 {
  font-size: 1.15rem;
  margin: 0.5rem 0 0.75rem;
}
.flagship-item p { font-size: 0.88rem; color: var(--gray); }
.hover-lift { transition: transform 0.35s var(--ease); }

/* Courses */
.courses { background: var(--black-soft); }
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.course-card {
  position: relative;
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.course-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  padding: 1px;
  background: linear-gradient(135deg, var(--red), transparent 40%, rgba(196, 30, 58, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
}
.course-card:hover::before { opacity: 1; }
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(196, 30, 58, 0.12), 0 20px 50px rgba(0,0,0,0.35);
}
.course-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.2fr; }
@media (max-width: 768px) {
  .course-card-wide { grid-template-columns: 1fr; }
}
.course-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.course-card-wide .course-img-wrap { aspect-ratio: auto; min-height: 220px; }
.course-img-wrap {
  background: linear-gradient(135deg, #1a0a10, #0a0a0c);
}
.course-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 12, 0.85));
  pointer-events: none;
  z-index: 1;
}
.course-img-wrap img,
.pathway-img img,
.why-frame img {
  filter: saturate(1.25) contrast(1.08) brightness(0.92);
}
.course-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  background: var(--black-soft);
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.course-card:hover .course-img-wrap img {
  transform: scale(1.08);
  filter: saturate(1.35) contrast(1.12) brightness(1);
}
.pathway-img img {
  filter: saturate(1.2) contrast(1.1);
}
.course-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.course-body { padding: 1.5rem; }
.course-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.course-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 0.75rem; }
.course-roles { font-size: 0.82rem; color: var(--gray-light); margin-bottom: 1rem !important; }
.course-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red);
  transition: letter-spacing 0.2s;
}
.course-card:hover .course-link { letter-spacing: 0.05em; }

/* Why MAAC */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; }
}
.why-visual {
  position: relative;
}
.why-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(196, 30, 58, 0.2);
}
.why-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.why-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), transparent 50%);
  pointer-events: none;
}
.frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  z-index: 2;
  opacity: 0.9;
}
.frame-corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.frame-corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }
.why-badge-stack {
  position: absolute;
  top: 1.25rem;
  right: -0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.why-badge-stack span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(10, 10, 12, 0.85);
  border: 1px solid rgba(196, 30, 58, 0.4);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.why-float-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.why-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--red);
  opacity: 0.6;
  flex-shrink: 0;
}
.why-list h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.why-list p { font-size: 0.9rem; color: var(--gray); }

/* Placements */
.placements { overflow: hidden; }
.marquee {
  margin: 2rem 0 3rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span:hover { color: var(--red); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.alumni-card {
  background: var(--black-card);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.alumni-card:hover {
  transform: scale(1.03);
  border-color: var(--red);
}
.alumni-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.alumni-card span { font-size: 0.82rem; color: var(--gray); }

/* Events */
.events-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.event-pill {
  padding: 1rem 1.75rem;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}
.event-pill:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px) scale(1.02);
}

/* Centres */
.centres { background: var(--black-soft); }
.centre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.centre-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s, box-shadow 0.35s;
}
.centre-card:hover {
  box-shadow: 0 16px 40px rgba(196, 30, 58, 0.15);
}
.centre-map-icon { font-size: 2rem; margin-bottom: 1rem; }
.centre-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.centre-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1rem; }
.centre-phone {
  font-weight: 600;
  color: var(--red);
  font-size: 1.1rem;
}
.centre-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2rem;
  font-style: italic;
}

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item {
  background: var(--black-card);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(196, 30, 58, 0.35); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--red);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Enquire form */
.enquire {
  position: relative;
  overflow: hidden;
}
.enquire-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(196, 30, 58, 0.2), transparent),
    var(--black-soft);
}
.enquire-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .enquire-layout { grid-template-columns: 1fr; }
}
.enquire-copy h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.enquire-copy > p { color: var(--gray); margin-bottom: 1.5rem; }
.form-perks li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-light);
  font-size: 0.95rem;
}
.form-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.lead-form {
  background: var(--black-card);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-light);
}
.form-row input,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-consent { font-size: 0.75rem; color: var(--gray); margin-bottom: 1.25rem; }
.form-success {
  text-align: center;
  color: #4ade80;
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.hidden { display: none; }
.form-error {
  text-align: center;
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.form-error.hidden { display: none; }
.form-row.error input,
.form-row.error select { border-color: #f87171; }

@media (min-width: 520px) {
  #leadForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }
  #leadForm .form-row--half { grid-column: span 1; }
  #leadForm .form-row:not(.form-row--half) { grid-column: 1 / -1; }
  #leadForm .form-consent,
  #leadForm .btn-block,
  #leadForm .form-error { grid-column: 1 / -1; }
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer-tag { font-size: 0.85rem; color: var(--gray); margin-top: 0.35rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--gray); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-copy { width: 100%; font-size: 0.8rem; color: var(--gray); opacity: 0.7; }

/* Floating contact: chat + WhatsApp + Call */
.contact-floats {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}
.contact-floats__left,
.contact-floats__right {
  pointer-events: auto;
}
.contact-floats__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.floating-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
#maac-chat-widget-wrapper {
  position: relative;
}
#maac-chat-widget-wrapper .chat-container {
  position: relative;
}
@media (min-width: 641px) {
  .contact-floats {
    left: auto;
    right: 1.25rem;
    flex-direction: column;
    align-items: flex-end;
  }
  .contact-floats__left {
    order: 2;
  }
  .contact-floats__right {
    order: 1;
    margin-bottom: 0.35rem;
  }
}
.fab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab-btn:hover { transform: translateY(-2px) scale(1.03); }
.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.fab-call {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 28px var(--red-glow);
}
@media (max-width: 640px) {
  .contact-floats {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
  #maac-chat-widget-wrapper .chat-container .chat-ui {
    right: 1rem;
    bottom: 5.5rem;
    width: min(92vw, 420px);
    min-width: 0;
  }
  .fab-btn span { display: none; }
  .fab-btn { padding: 0.85rem; border-radius: 50%; }
}

/* Enquire modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.modal-open { overflow: hidden; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}
.modal-dialog {
  position: relative;
  width: min(540px, 100%);
  max-height: none;
  overflow: visible;
  background: var(--black-card);
  border: 1px solid rgba(196, 30, 58, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.lead-form--modal {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.lead-form--modal .form-row {
  margin-bottom: 0;
}
.lead-form--modal .form-row label {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.lead-form--modal .form-row input,
.lead-form--modal .form-row select {
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
}
.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.85rem;
  margin-bottom: 0.65rem;
}
.modal-form-grid .form-row--full {
  grid-column: 1 / -1;
}
.form-consent--compact {
  font-size: 0.68rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.lead-form--modal .btn-block {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .modal-form-grid {
    grid-template-columns: 1fr;
  }
  .modal-form-grid .form-row--full {
    grid-column: auto;
  }
}
.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--red); }
.modal-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  padding-right: 2rem;
}
.modal-sub {
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.modal--thankyou { z-index: 2100; }
.modal-dialog--thankyou {
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
}
.thankyou-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 56px;
}
.modal-dialog--thankyou h2 {
  padding-right: 0;
  margin-bottom: 0.5rem;
}
.thankyou-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.thankyou-ctas .btn { width: 100%; justify-content: center; }
.thankyou-whatsapp {
  border-color: #25d366;
  color: #25d366;
}
.thankyou-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  color: #4ade80;
}
.centre-card p {
  line-height: 1.65;
  font-size: 0.92rem;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 10, 12, 0.98);
    padding: 2rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open { overflow: hidden; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .lang-switcher { order: -1; }
  .hero-stats { gap: 1.5rem; }
  .floating-actions { bottom: 1rem; right: 1rem; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .hero-slide { opacity: 1; }
  .hero-slide:not(.active) { display: none; }
  .ambient-orb { animation: none; }
}

/* Hindi/Marathi — slightly smaller hero to avoid overflow */
html[lang="hi"] .hero-title,
html[lang="mr"] .hero-title {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.05;
  text-transform: none;
  font-family: var(--font);
  font-weight: 800;
}
