/* ============================================================
   MAAC GHAZIABAD — Stylesheet
   ------------------------------------------------------------
   Sections in this file:
     1. Design tokens (colors, fonts, spacing)
     2. Base / reset
     3. Reusable helpers (container, buttons, eyebrow, etc.)
     4. Scroll-reveal animation utilities
     5. Navbar
     6. Hero
     7. Marquee ticker
     8. Why MAAC
     9. Courses
    10. About
    11. Placements / hiring partners
    12. Alumni testimonials
    13. Contact + form + map
    14. Footer
    15. Floating WhatsApp / call buttons
    16. Responsive (media queries)
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colors — red on black */
  --ink:        #08080a;   /* page background          */
  --ink-2:      #0f0f13;   /* alternating section bg   */
  --surface:    #161619;   /* cards                    */
  --surface-2:  #1f1f25;   /* raised cards / inputs    */
  --line:       rgba(255, 255, 255, 0.09);

  --red:        #ff2e2e;   /* primary accent           */
  --red-deep:   #d40f2a;
  --orange:     #ff7a1a;   /* gradient partner         */
  --pink:       #ff1e56;

  --white:      #ffffff;
  --text:       #ededf0;   /* default body text        */
  --muted:      #9a9aa4;   /* secondary text           */
  --muted-2:    #6c6c76;   /* faint text               */

  /* Signature hot gradient */
  --grad-hot:   linear-gradient(120deg, #ff2e2e 0%, #ff5a1a 100%);
  --grad-pink:  linear-gradient(120deg, #ff1e56 0%, #ff7a1a 100%);

  /* Type */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-head:    "Space Grotesk", sans-serif;
  --font-body:    "DM Sans", sans-serif;

  /* Layout */
  --maxw: 1240px;
  --radius: 18px;
  --radius-sm: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ve-speed: 8s; /* hero editing-timeline playhead speed */
}


/* ============================================================
   2. BASE / RESET
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

h1, h2, h3, h4 { margin: 0; line-height: 1.04; font-weight: 700; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--red); color: #fff; }


/* ============================================================
   3. REUSABLE HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; position: relative; }
.section--alt { background: var(--ink-2); }

/* Small uppercase label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad-hot);
}

/* Big section headings */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 0.98;
}
.display .hl {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 56ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--grad-hot);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(255, 46, 46, 0.55);
}
.btn--primary:hover { box-shadow: 0 16px 40px -8px rgba(255, 46, 46, 0.7); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--red); background: rgba(255, 46, 46, 0.08); }

.btn--whatsapp {
  background: #25d366;
  color: #04200f;
}
.btn--whatsapp:hover { box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.6); }

/* Section heading block (eyebrow + title + lead) */
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }


/* ============================================================
   4. SCROLL-REVEAL UTILITIES
   ------------------------------------------------------------
   JS adds .in-view when the element scrolls into the viewport.
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

/* Staggered children: add data-delay or these helper classes */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }


/* ============================================================
   5. NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 46px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav__logo img { height: 40px; }
.nav__logo-fallback {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.nav__logo-fallback span { color: var(--red); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad-hot);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
/* --- Full-width banner image (with a slow ken-burns zoom) --- */
.hero__banner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 12% 22%, rgba(255, 46, 46, 0.22), transparent 55%),
    linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.66) 46%, rgba(8,8,10,0.34) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.35) 0%, rgba(8,8,10,0.18) 35%, var(--ink) 100%);
}
/* Floating gradient blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}
.hero__blob--1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,46,46,0.55), transparent 70%);
  top: -120px; right: -80px;
  animation: float1 14s ease-in-out infinite;
}
.hero__blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,122,26,0.4), transparent 70%);
  bottom: -120px; left: 10%;
  animation: float2 17s ease-in-out infinite;
}
@keyframes float1 { 50% { transform: translate(-40px, 50px); } }
@keyframes float2 { 50% { transform: translate(50px, -40px); } }

.hero__inner { position: relative; z-index: 2; max-width: 880px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 12px;
  border: 1px solid rgba(255,46,46,0.4);
  background: rgba(255,46,46,0.1);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,46,46,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,46,46,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255,46,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,46,46,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
}
.hero__title .hl {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Rotating word */
.hero__rotator {
  display: inline-block;
  position: relative;
  color: var(--red);
}

.hero__sub {
  margin-top: 26px;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero__cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__stats {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 56px;
}
.hero__stat .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stat .label {
  font-family: var(--font-head);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 6px;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll .line {
  width: 1px; height: 38px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }


/* ============================================================
   7. MARQUEE TICKER
   ============================================================ */
.ticker {
  background: var(--grad-hot);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: scrollX 30s linear infinite;
}
.ticker__track span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.ticker__track span::after {
  content: "✦";
  color: rgba(255,255,255,0.6);
}
@keyframes scrollX { to { transform: translateX(-50%); } }


/* ============================================================
   8. WHY MAAC
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover { transform: translateY(-8px); border-color: rgba(255,46,46,0.4); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,46,46,0.55);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.pillar p { color: var(--muted); font-size: 0.98rem; }


/* ============================================================
   9. COURSES
   ============================================================ */
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.course {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.course:hover {
  transform: translateY(-10px);
  border-color: rgba(255,46,46,0.45);
  box-shadow: 0 30px 60px -30px rgba(255,46,46,0.45);
}
.course__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.course__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.course:hover .course__media img { transform: scale(1.08); }
.course__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22,22,25,0.9) 100%);
}
.course__tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--grad-hot);
  color: #fff;
}
.course__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.course__body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.course__body p { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; }
.course__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.chip {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
}
.course__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.course__rating { font-family: var(--font-head); font-size: 0.88rem; color: var(--muted); }
.course__rating .stars { color: var(--orange); letter-spacing: 1px; }
.course__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.3s var(--ease);
}
.course__link:hover { gap: 12px; }

/* Detailed course card additions */
.course__rating-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(8,8,10,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}
.course__rating-badge::first-letter { color: var(--orange); }
.course__meta .chip b {
  font-weight: 700;
  color: var(--muted);
  margin-right: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Expandable details (toggled by the View Details button) */
.course__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
}
.course.open .course__details {
  max-height: 1000px;
  opacity: 1;
  margin-bottom: 22px;
}
.course__details h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 4px 0 12px;
}
.course__learn { display: grid; gap: 9px; margin-bottom: 18px; }
.course__learn li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
  color: var(--text);
}
.course__learn li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--grad-hot);
}
.course__facts {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin: 0;
}
.course__facts div { display: grid; gap: 3px; }
.course__facts dt {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.course__facts dd { margin: 0; font-size: 0.9rem; color: var(--text); }

.course__toggle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--red);
  background: transparent;
  border: 1px solid rgba(255,46,46,0.4);
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.course__toggle::after { content: "  ↓"; }
.course.open .course__toggle::after { content: "  ↑"; }
.course__toggle:hover { background: rgba(255,46,46,0.1); border-color: var(--red); }
.course__enroll { padding: 11px 22px; font-size: 0.9rem; }


/* ============================================================
   10. ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__media .img-main {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line);
}
.about__media .img-sub {
  position: absolute;
  right: -24px; bottom: -34px;
  width: 52%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 4px solid var(--ink);
}
.about__badge {
  position: absolute;
  top: -26px; left: -26px;
  background: var(--grad-hot);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: 0 20px 40px -16px rgba(255,46,46,0.6);
}
.about__badge .big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 0.9;
  color: #fff;
}
.about__badge .small {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
}
.about__list { display: grid; gap: 18px; margin: 30px 0 34px; }
.about__list li { display: flex; gap: 14px; align-items: flex-start; }
.about__list .tick {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,46,46,0.14);
  border: 1px solid rgba(255,46,46,0.4);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 0.8rem;
  margin-top: 3px;
}
.about__list b { font-family: var(--font-head); display: block; margin-bottom: 2px; }
.about__list span.txt { color: var(--muted); font-size: 0.96rem; }


/* ============================================================
   11. PLACEMENTS / HIRING PARTNERS
   ============================================================ */
.placements__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.pstat {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.pstat .num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pstat .label { font-family: var(--font-head); color: var(--muted); margin-top: 8px; font-size: 0.92rem; }

/* Logo marquee rows */
.logos { display: grid; gap: 18px; }
.logos__row { overflow: hidden; white-space: nowrap; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos__track { display: inline-flex; gap: 16px; animation: scrollX 38s linear infinite; }
.logos__row:nth-child(2) .logos__track { animation-direction: reverse; animation-duration: 44s; }
.logo-pill {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  padding: 16px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  white-space: nowrap;
}


/* ============================================================
   12. ALUMNI TESTIMONIALS
   ============================================================ */
.alumni__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tcard:hover { transform: translateY(-6px); border-color: rgba(255,46,46,0.4); }
.tcard__quote {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: rgba(255,46,46,0.4);
  margin-bottom: 14px;
}
.tcard__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { color: var(--text); font-size: 1rem; margin-bottom: 24px; }
.tcard__person { display: flex; align-items: center; gap: 14px; }
.tcard__person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,46,46,0.5); }
.tcard__person b { font-family: var(--font-head); display: block; font-size: 1rem; }
.tcard__person small { color: var(--muted); font-size: 0.84rem; }


/* ============================================================
   13. CONTACT + FORM + MAP
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact__info .lead { margin-bottom: 30px; }
.contact__items { display: grid; gap: 18px; margin-bottom: 30px; }
.cinfo {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.cinfo:hover { border-color: rgba(255,46,46,0.4); transform: translateX(4px); }
.cinfo__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-hot);
  display: grid; place-items: center;
  color: #fff;
}
.cinfo__icon svg { width: 20px; height: 20px; }
.cinfo b { font-family: var(--font-head); display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cinfo a, .cinfo span { color: var(--text); font-size: 1rem; }

.contact__map {
  margin-top: 8px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact__map iframe { width: 100%; height: 240px; border: 0; display: block; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.9); }

/* Enquiry form */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
}
.form h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 6px; }
.form .sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,46,46,0.18);
}
.field select option { background: var(--surface-2); color: #fff; }
.form .btn { width: 100%; margin-top: 8px; }
.form__note { text-align: center; color: var(--muted-2); font-size: 0.82rem; margin-top: 14px; }


/* ============================================================
   14. FOOTER
   ============================================================ */
.footer { background: #050506; padding: 72px 0 30px; border-top: 1px solid var(--line); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo img { height: 52px; margin-bottom: 20px; }
.footer p.about-txt { color: var(--muted); font-size: 0.96rem; max-width: 40ch; }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: var(--text); font-size: 0.98rem; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--red); }
.footer__badges { display: flex; gap: 10px; margin-top: 18px; }
.footer__badges span {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-2);
  font-size: 0.86rem;
}


/* ============================================================
   15. FLOATING BUTTONS
   ============================================================ */
.floats {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fbtn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.6);
  transition: transform 0.3s var(--ease);
}
.fbtn:hover { transform: scale(1.08); }
.fbtn svg { width: 28px; height: 28px; }
.fbtn--wa { background: #25d366; }
.fbtn--call { background: var(--grad-hot); }
.fbtn--wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  animation: pulse-wa 2.2s infinite;
}
.fbtn { position: relative; }
@keyframes pulse-wa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Toast (form confirmation) */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 120%);
  z-index: 200;
  background: var(--surface-2);
  border: 1px solid rgba(255,46,46,0.5);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.7);
  transition: transform 0.5s var(--ease);
}
.toast.show { transform: translate(-50%, 0); }


/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .courses__grid { grid-template-columns: repeat(2, 1fr); }
  .alumni__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 0 36px;
    background: rgba(12,12,15,0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav.open .nav__links { transform: translateX(0); }
  .nav__links a { font-size: 1.25rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav__actions .btn--ghost { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 64px; }
  .about__media { max-width: 460px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .placements__stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 84px 0; }
  .container { padding: 0 18px; }
  .why__grid,
  .courses__grid,
  .alumni__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { gap: 18px 36px; }
  .hero__stat .num { font-size: 2.2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media .img-sub { width: 46%; right: 0; }
  .about__badge { top: -18px; left: -10px; padding: 14px 16px; }
  .about__badge .big { font-size: 1.9rem; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* Animations OFF (toggled by the Tweaks panel) */
.no-anim *,
.no-anim *::before,
.no-anim *::after {
  animation: none !important;
  transition: none !important;
}
.no-anim .reveal { opacity: 1 !important; transform: none !important; }
