/* ============================================================
   GAME MAKERS OF INDIA — MAIN STYLESHEET
   A dark-navy, blueprint-grid design language pulled straight
   from the course thumbnail: bold rounded type, a warm yellow
   accent, soft glow shapes and rounded panels.
   ============================================================ */

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --navy-950: #080d1c;
  --navy-900: #0b1430;
  --navy-800: #10193b;
  --navy-700: #152250;
  --navy-600: #1c2e63;

  --yellow:      #ffc738;
  --yellow-deep: #ef9f0e;
  --blue-glow:   #3d63ff;
  --blue-soft:   #7fa2ff;
  --purple:      #9b7bf0;
  --coral:       #ff5c72;

  --ink:    #0b1430;
  --white:  #f4f6fd;
  --muted:  #91a1cc;
  --muted-dim: #5c6a94;

  --line: rgba(140, 170, 255, 0.12);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 18px 40px -14px rgba(3, 8, 20, 0.55);
  --shadow-yellow: 0 14px 30px -10px rgba(239, 159, 14, 0.45);

  --font-display: 'Baloo 2', 'Segoe UI', sans-serif;
  --font-body: 'Sora', 'Segoe UI', sans-serif;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--yellow); color: var(--ink); }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb {
  background: var(--navy-600);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-glow); }

/* ── BLUEPRINT GRID BACKDROP (shared) ───────────────────── */
.grid-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 40%, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 40%, transparent 90%);
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, 92%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 20px;
  background: rgba(11, 20, 48, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(140, 170, 255, 0.16);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.nav-logo {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}
.nav-logo .logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--yellow), var(--yellow-deep));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: var(--shadow-yellow);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(140, 170, 255, 0.1);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  white-space: nowrap;
  box-shadow: var(--shadow-yellow);
  transition: transform 0.2s ease;
}
.nav-cta:hover { transform: translateY(-2px); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .site-nav { justify-content: space-between; }
}

/* ── LANGUAGE SWITCH ─────────────────────────────────────── */
.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-switch { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(140, 170, 255, 0.1);
  border: 1px solid rgba(140, 170, 255, 0.22);
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lang-btn:hover { background: rgba(140, 170, 255, 0.18); }

.lang-caret { font-size: 10px; transition: transform 0.2s ease; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  background: var(--navy-800);
  border: 1px solid rgba(140, 170, 255, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  list-style: none;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-menu li {
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-menu li:hover { background: rgba(140, 170, 255, 0.12); color: var(--white); }
.lang-menu li[aria-selected="true"] { color: var(--yellow); background: rgba(255, 199, 56, 0.1); }

@media (max-width: 860px) {
  .nav-right { gap: 8px; }
  .lang-btn span#langSwitchLabel { display: none; }
  .lang-btn { padding: 9px 11px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
}
@media (max-width: 380px) {
  .nav-cta { display: none; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--navy-700) 0%, var(--navy-950) 65%);
  padding: 150px 24px 90px;
}

.hero .glow-blob.gb-1 { width: 520px; height: 520px; top: -140px; left: -120px; background: var(--blue-glow); }
.hero .glow-blob.gb-2 { width: 420px; height: 420px; bottom: -80px; right: -100px; background: var(--yellow-deep); opacity: 0.18; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  width: 100%;
}

/* ── HERO MEDIA (thumbnail) ─────────────────────────────── */
.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  order: 2;
}

.thumb-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(155deg, rgba(140,170,255,0.35), rgba(140,170,255,0.05));
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
  width: 100%;
}
.thumb-frame:hover { transform: rotate(0deg) translateY(-4px); }

.thumb-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  display: block;
}

/* ── VIDEO PREVIEW (thumbnail + play button) ─────────────── */
.thumb-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
}
.thumb-media-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 13, 28, 0.02), rgba(8, 13, 28, 0.34)),
    linear-gradient(180deg, rgba(8, 13, 28, 0), rgba(8, 13, 28, 0.28));
  pointer-events: none;
  z-index: 1;
}
.thumb-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  background: rgba(8, 13, 28, 0.62);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 38px -18px rgba(3, 8, 20, 0.85);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  z-index: 3;
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 199, 56, 0.34);
}
.play-btn::after {
  display: none;
}
.play-btn i {
  position: relative;
  z-index: 1;
  width: 0.82em;
  height: 0.82em;
  margin-left: 4px;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(8, 13, 28, 0.76);
  border-color: rgba(255, 199, 56, 0.42);
}

.play-btn-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 199, 56, 0.28);
  animation: ringPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes ringPulse {
  0%   { transform: scale(0.78); opacity: 0.85; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 480px) {
  .play-btn { width: 58px; height: 58px; font-size: 18px; }
}

.thumb-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  background: rgba(8, 13, 28, 0.76);
  border: 1px solid rgba(255, 199, 56, 0.34);
  color: #ffe68a;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 28px -18px rgba(3, 8, 20, 0.8);
  backdrop-filter: blur(8px);
  letter-spacing: 0.2px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: var(--shadow-yellow);
  letter-spacing: 0.3px;
}
.hero-badge i { font-size: 12px; }

/* ── HERO TEXT ───────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  order: 1;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-display);
  line-height: 1.05;
}

.title-line1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 700;
  color: var(--white);
}

.title-line2 {
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--blue-soft);
}

.title-line3 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
}

.hero-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  background: rgba(140, 170, 255, 0.1);
  border: 1px solid rgba(140, 170, 255, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
}

/* ── CHARACTER SHOWCASE ──────────────────────────────────── */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 150px;
  --player-left: 26px;
  --player-bottom: 16px;
  --enemy-right: 20px;
  --enemy-bottom: 8px;
  --shot-distance: 224px;
  background: linear-gradient(180deg, rgba(140,170,255,0.08), transparent);
  border: 1px solid rgba(140,170,255,0.14);
  border-radius: var(--radius-md);
  margin: 4px 0;
  overflow: hidden;
}

.showcase-char {
  position: absolute;
  bottom: 14px;
  z-index: 3;
}
.showcase-char img { filter: drop-shadow(0 10px 16px rgba(0,0,0,0.45)); }

/* decorative tree platforms standing on the ground line */
.showcase-tree {
  position: absolute;
  bottom: 30px;
  height: 108px;
  width: auto;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.tree-1 { left: 4px; height: 92px; }
.tree-2 { left: 46%; transform: translateX(-50%); height: 116px; }
.tree-3 { right: 6px; height: 96px; }

@media (max-width: 480px) {
  .showcase-tree { display: none; }
}

#heroChar {
  left: var(--player-left);
  bottom: var(--player-bottom);
  animation: floatY 3.2s ease-in-out infinite;
}
.player-sprite { width: 82px; height: auto; }

.enemy-char {
  right: var(--enemy-right);
  bottom: var(--enemy-bottom);
  animation: floatY 3.6s ease-in-out infinite 0.4s;
}
.enemy-sprite { width: 198px; height: auto; transform: scaleX(-1); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── SHOOTING EFFECT (player fires at enemy) ─────────────── */
.muzzle-flash {
  position: absolute;
  top: 51px;
  right: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff6d6 0 20%, var(--yellow) 28% 48%, transparent 58%),
    conic-gradient(from 20deg, transparent 0 12%, rgba(255,255,255,0.9) 12% 17%, transparent 17% 30%, rgba(255,199,56,0.95) 30% 38%, transparent 38% 100%);
  opacity: 0;
  transform: scale(0.4);
  transform-origin: center;
  animation: muzzlePulse 2.6s ease-in-out infinite;
}

.bullet {
  position: absolute;
  top: 58px;
  right: -4px;
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff7cf 0%, var(--yellow) 58%, rgba(255,199,56,0) 100%);
  box-shadow: 0 0 9px 2px rgba(255, 199, 56, 0.78);
  opacity: 0;
  animation: bulletFly 2.6s linear infinite;
}

.hit-flash {
  position: absolute;
  top: 50px;
  left: 56px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 10%, var(--yellow) 12% 26%, var(--coral) 34% 46%, transparent 68%),
    conic-gradient(from 8deg, transparent 0 8%, #fff 8% 12%, transparent 12% 25%, var(--yellow) 25% 31%, transparent 31% 46%, #fff 46% 51%, transparent 51% 68%, var(--coral) 68% 74%, transparent 74% 100%);
  opacity: 0;
  transform: scale(0.3);
  transform-origin: center;
  animation: hitFlash 2.6s linear infinite;
}

@keyframes muzzlePulse {
  0%, 8%   { opacity: 0; transform: scale(0.4); }
  10%      { opacity: 1; transform: scale(1); }
  18%, 100%{ opacity: 0; transform: scale(0.4); }
}

@keyframes bulletFly {
  0%, 9%   { opacity: 0; transform: translateX(0); }
  11%      { opacity: 1; transform: translateX(0); }
  31%      { opacity: 1; transform: translateX(var(--shot-distance)); }
  33%, 100%{ opacity: 0; transform: translateX(var(--shot-distance)); }
}

@keyframes hitFlash {
  0%, 30%  { opacity: 0; transform: scale(0.3) rotate(0deg); }
  33%      { opacity: 1; transform: scale(1.1) rotate(18deg); }
  43%, 100%{ opacity: 0; transform: scale(0.35) rotate(36deg); }
}

@media (max-width: 480px) {
  .hero-showcase {
    --player-left: 18px;
    --player-bottom: 14px;
    --enemy-right: 14px;
    --enemy-bottom: 6px;
    --shot-distance: 138px;
  }
  .muzzle-flash { top: 39px; right: -8px; width: 15px; height: 15px; }
  .bullet { top: 45px; right: -3px; width: 15px; height: 4px; }
  .hit-flash { top: 40px; left: 44px; width: 32px; height: 32px; }
}

/* ── CTA BUTTONS ─────────────────────────────────────────── */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-yellow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(244, 246, 253, 0.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-purple {
  background: linear-gradient(135deg, var(--purple), #6f4fd6);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(155, 123, 240, 0.55);
}
.btn-coral {
  background: linear-gradient(135deg, var(--coral), #d6304a);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(255, 92, 114, 0.55);
}
.btn-ghost-yellow {
  background: rgba(255, 199, 56, 0.12);
  color: var(--yellow);
  border-color: rgba(255, 199, 56, 0.4);
}

.hero-email {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-email a:hover { color: var(--yellow); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media, .hero-content { order: initial; align-items: center; text-align: center; }
  .hero-media { align-items: center; }
  .hero-cta, .hero-title, .hero-sub { align-items: center; }
  .hero-sub { max-width: 100%; }
  .thumb-frame { max-width: 480px; }
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section {
  padding: 110px 24px;
  position: relative;
}
.section-alt { background: var(--navy-900); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--yellow);
  background: rgba(255, 199, 56, 0.1);
  border: 1px solid rgba(255, 199, 56, 0.28);
  padding: 5px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
}

.section-title .accent { color: var(--yellow); }

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
}

/* ── COURSE INTRO GRID ───────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width:860px){ .intro-grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--navy-800);
  border: 1px solid rgba(140,170,255,0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.intro-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.intro-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #c4cdec;
}

.highlight { color: var(--yellow); font-weight: 600; }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 20px;
  align-content: stretch;
}

.stat-card {
  min-height: 172px;
  padding: 34px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(140,170,255,0.08), rgba(8,13,28,0.08)),
    var(--navy-800);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,199,56,0.4);
  box-shadow: 0 24px 50px -18px rgba(3, 8, 20, 0.75);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(150deg, rgba(255, 199, 56, 0.18), rgba(61, 99, 255, 0.12));
  color: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 199, 56, 0.18);
}
.stat-num  { font-family: var(--font-display); font-size: 32px; line-height: 1; color: var(--white); font-weight: 800; }
.stat-num.lang-full { font-size: 22px; }
.stat-label{ font-size: 13px; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; }

/* ── LEARN GRID ──────────────────────────────────────────── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.learn-card {
  background: var(--navy-800);
  border: 1px solid rgba(140,170,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.learn-card::before {
  content: attr(data-item);
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted-dim);
}
.learn-card:hover {
  border-color: rgba(255,199,56,0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 17px;
  background: linear-gradient(150deg, rgba(255,199,56,0.18), rgba(61,99,255,0.12));
  color: var(--yellow);
}
.card-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ── PLATFORM GRID ───────────────────────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 44px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  border: 1px solid rgba(140,170,255,0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.platform-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
}
.udemy .platform-icon   { background: rgba(155, 123, 240, 0.16); color: var(--purple); }
.youtube .platform-icon { background: rgba(255, 92, 114, 0.16); color: var(--coral); }

.platform-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}
.platform-desc { font-size: 14.5px; color: var(--muted); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 600;
}
.contact-item a:hover { color: var(--yellow); }
.c-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 199, 56, 0.12);
  color: var(--yellow);
  font-size: 16px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  padding: 60px 24px 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(140,170,255,0.1);
}

.tree-row {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  opacity: 0.9;
  pointer-events: none;
}
.tree {
  width: 0; height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 46px solid var(--navy-950);
  position: relative;
}
.tree::after {
  content: '';
  position: absolute;
  bottom: -46px; left: -14px;
  width: 28px; height: 12px;
  background: var(--navy-950);
}
.tree.tall { border-bottom-width: 60px; border-left-width: 26px; border-right-width: 26px; }
.tree.short { border-bottom-width: 34px; border-left-width: 16px; border-right-width: 16px; opacity: 0.7; }

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}
.footer-links a { color: var(--muted); font-weight: 600; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy {
  font-size: 13.5px;
  color: var(--muted-dim);
}
.footer-copy i { color: var(--coral); }

/* ── SHARED PAGE HERO (feedback / thank-you) ────────────── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--navy-700) 0%, var(--navy-950) 70%);
  padding: 160px 24px 70px;
  text-align: center;
  gap: 16px;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 17px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  max-width: 480px;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HINDI (DEVANAGARI) FONT SWITCH ──────────────────────── */
body.lang-hi {
  --font-display: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
  --font-body: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
}
body.lang-hi .title-line3 { text-transform: none; }

/* ── EXTRA RESPONSIVE FIXES (phone) ──────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 130px 16px 70px; }
  .hero-showcase { height: 110px; max-width: 100%; }
  .player-sprite { width: 58px; }
  .enemy-sprite { width: 156px; }
  .hero-cta { justify-content: center; width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .thumb-chip { font-size: 12px; padding: 6px 11px; top: 12px; right: 12px; }
  .section { padding: 80px 18px; }
  .learn-grid { grid-template-columns: 1fr; }
  .platform-card { padding: 32px 20px; }
}
