/* ══════════════════════════════════════════════════════
   GERMAN WITH DEEP — Logo-Matched Theme
   Exact logo colors:
   Black  #111111  — primary bg, text
   White  #FFFFFF  — text on dark, sections
   Red    #CC0000  — German flag red (accent 1)
   Yellow #F5C200  — German flag gold (accent 2)
   Warm   #F7F5F0  — off-white bg for light sections
   ══════════════════════════════════════════════════════ */

:root {
  --black:   #111111;
  --black2:  #1A1A1A;
  --black3:  #242424;
  --white:   #FFFFFF;
  --warm:    #F7F5F0;
  --red:     #CC0000;
  --red2:    #E00000;
  --yellow:  #F5C200;
  --yellow2: #FFCF00;
  --gray:    #888888;
  --gray2:   #EEEEEE;
  --text:    #222222;
  --text2:   #555555;

  --font-head: 'Nunito', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif:'Playfair Display', serif;

  --radius:   14px;
  --radius-sm:8px;
  --shadow:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:0 8px 36px rgba(0,0,0,0.13);
  --shadow-lg:0 20px 60px rgba(0,0,0,0.20);
  --tr:       0.3s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--text); background:var(--warm); overflow-x:hidden; line-height:1.7; }
img  { max-width:100%; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }

.container { max-width:1180px; margin:0 auto; padding:0 28px; }
.section    { padding:96px 0; }
.center     { text-align:center; }

/* ── Typography ── */
.eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.72rem; font-weight:800; letter-spacing:.22em;
  text-transform:uppercase; color:var(--red); margin-bottom:12px;
}
.eyebrow::before,
.eyebrow::after { content:''; display:block; width:24px; height:2.5px; background:var(--red); border-radius:2px; }

.section-title {
  font-family:var(--font-head);
  font-size:clamp(1.9rem,3.5vw,2.8rem);
  font-weight:800; line-height:1.18; color:var(--black); margin-bottom:16px;
}
.section-title .r { color:var(--red); }
.section-title .y { color:var(--yellow); }
.section-title.light { color:var(--white); }

.section-lead { font-size:1.02rem; color:var(--text2); line-height:1.75; max-width:560px; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 28px; border-radius:50px;
  font-family:var(--font-body); font-weight:700; font-size:.9rem;
  cursor:pointer; border:2.5px solid transparent;
  transition:var(--tr); letter-spacing:.02em; white-space:nowrap;
}
.btn-red  { background:var(--red); color:var(--white); border-color:var(--red); }
.btn-red:hover { background:var(--red2); border-color:var(--red2); transform:translateY(-2px); box-shadow:0 8px 24px rgba(204,0,0,.3); }
.btn-yellow { background:var(--yellow); color:var(--black); border-color:var(--yellow); }
.btn-yellow:hover { background:var(--yellow2); border-color:var(--yellow2); transform:translateY(-2px); box-shadow:0 8px 24px rgba(245,194,0,.35); }
.btn-black { background:var(--black); color:var(--white); border-color:var(--black); }
.btn-black:hover { background:var(--black2); transform:translateY(-2px); }
.btn-outline { background:transparent; color:var(--black); border-color:var(--black); }
.btn-outline:hover { background:var(--black); color:var(--white); }
.btn-outline-white { background:transparent; color:var(--white); border-color:rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color:var(--yellow); color:var(--yellow); }
.btn-white { background:var(--white); color:var(--black); border-color:var(--white); }
.btn-white:hover { background:var(--yellow); border-color:var(--yellow); }

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:18px 0; transition:var(--tr);
}
.navbar.scrolled {
  background:var(--white);
  box-shadow:0 2px 24px rgba(0,0,0,.10);
  padding:12px 0;
}
.navbar:not(.scrolled) .logo-dark  { display:none; }
.navbar:not(.scrolled) .logo-light { display:block; }
.navbar.scrolled .logo-light { display:none !important; }
.navbar.scrolled .logo-dark  { display:block !important; }

.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo img { height:110px; width:auto; }

.nav-links { display:flex; align-items:center; gap:30px; }
.nav-links a {
  font-weight:600; font-size:.88rem; letter-spacing:.01em;
  color:rgba(255,255,255,.88); transition:var(--tr); position:relative;
}
.navbar.scrolled .nav-links a { color:var(--text); }
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2.5px; background:var(--yellow); border-radius:2px; transition:var(--tr);
}
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-links a:hover { color:var(--yellow); }
.navbar.scrolled .nav-links a:hover { color:var(--red); }
.navbar.scrolled .nav-links a::after { background:var(--red); }

.nav-cta {
  background:var(--yellow) !important; color:var(--black) !important;
  padding:9px 20px !important; border-radius:50px; font-weight:700 !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--yellow2) !important; transform:translateY(-1px); }

.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:26px; height:2.5px; background:var(--white); border-radius:2px; transition:var(--tr); }
.navbar.scrolled .hamburger span { background:var(--black); }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════════════════
   HERO — Black bg, logo personality
   ══════════════════════════════════════════════════════ */
/* .hero {
  min-height:100vh; position:relative;
  background:var(--black);
  display:flex; align-items:center; overflow:hidden;
} */

/* .hero {
  min-height:100vh;
  position:relative;

  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('images/home_banner.jpeg') center/cover no-repeat;

  display:flex;
  align-items:center;
  overflow:hidden;
} */

/* ── HERO — Desktop banner ── */
.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('images/home_banner.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── HERO — Mobile banner (swap at 768px) ── */
/* @media (max-width: 768px) {
  .hero {
    background:
      url('images/bannerphone.jpeg') center top / cover no-repeat;
    min-height: 100svh;
    align-items: flex-end;
  }
} */

/* German flag stripe at very top */
.hero-flag-stripe {
  position:absolute; top:0; left:0; right:0;
  height:5px; display:flex;
}
.stripe-black { flex:1; background:#111; }
.stripe-red   { flex:1; background:var(--red); }
.stripe-gold  { flex:1; background:var(--yellow); }

/* Diagonal yellow accent shape */
.hero-shape {
  position:absolute; right:0; top:0; bottom:0; width:42%;
  background:linear-gradient(135deg, transparent 0%, rgba(245,194,0,.06) 100%);
  clip-path:polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events:none;
}
.hero-shape::after {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(245,194,0,.03) 40px, rgba(245,194,0,.03) 41px
  );
}

/* Floating German words bg */
.hero-words { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hw {
  position:absolute; font-family:var(--font-head); font-weight:900;
  color:rgba(255,255,255,.028); user-select:none;
  animation:hwDrift linear infinite;
}
.hw1 { font-size:6rem; top:8%;  left:2%;  animation-duration:24s; }
.hw2 { font-size:4rem; top:22%; right:6%; animation-duration:18s; animation-delay:-5s; }
.hw3 { font-size:5rem; top:55%; left:10%; animation-duration:27s; animation-delay:-10s; }
.hw4 { font-size:7rem; top:68%; right:8%; animation-duration:21s; animation-delay:-3s; }
.hw5 { font-size:3.5rem; top:40%; left:48%; animation-duration:30s; animation-delay:-7s; }
@keyframes hwDrift {
  0%   { transform:translateY(0)    rotate(-2deg); opacity:.03; }
  50%  { opacity:.06; }
  100% { transform:translateY(-40px) rotate(2deg);  opacity:.03; }
}

/* Animated dots grid */
.hero-dots {
  position:absolute; inset:0; pointer-events:none;
  /* background-image:radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); */
  background-size:32px 32px;
  animation:dotScroll 20s linear infinite;
}
@keyframes dotScroll { from{background-position:0 0;} to{background-position:32px 32px;} }

.hero-content { position:relative; z-index:2; padding-top:100px; max-width:680px;margin-left:70px; padding: 0 20px; margin-top: 150px; }

/* Pill badge */
.hero-pill {
  display:inline-flex; align-items:center; gap:10px;
  /* background:rgba(245,194,0,.12); border:1.5px solid rgba(245,194,0,.35); */
  color:var(--yellow); font-size:.76rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
  padding:7px 18px; border-radius:50px; margin-bottom:28px;
  animation:fadeInDown .7s ease both;
}
.pill-dot { width:7px; height:7px; border-radius:50%; background:var(--yellow); animation:blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }

/* Hero title */
.hero-title {
  font-family:var(--font-head);
  font-size:clamp(3rem,6vw,5.6rem);
  font-weight:900; line-height:1.07; margin-bottom:24px;
  display:flex; flex-direction:column; gap:2px;
}
.ht1 { color:var(--white); animation:fadeInUp .7s ease .1s both; }
.ht2 {
  display:inline-flex; align-items:center; gap:0;
  animation:fadeInUp .7s ease .2s both;
}
/* Logo-style colored letters: Ge-r-man */
.ht-w { color:var(--white); }
.ht-r { color:var(--red); }
.ht-y { color:var(--yellow); }
.ht3 { color:var(--white); font-size:60%; font-family:var(--font-serif); font-style:italic; animation:fadeInUp .7s ease .3s both; }

.hero-sub {
  color:rgba(255,255,255,.6); font-size:1.05rem; max-width:520px;
  margin-bottom:40px; animation:fadeInUp .7s ease .4s both; line-height:1.75;
}

.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:60px; animation:fadeInUp .7s ease .5s both; }

/* Stats */
.hero-stats { display:flex; align-items:center; gap:36px; flex-wrap:wrap; animation:fadeInUp .7s ease .6s both; }
.hstat { display:flex; flex-direction:column; }
.hstat-num { font-family:var(--font-head); font-size:2rem; font-weight:900; color:var(--yellow); line-height:1; }
.hstat-lbl { font-size:.7rem; font-weight:600; color:rgba(255,255,255,.4); letter-spacing:.1em; text-transform:uppercase; margin-top:3px; }
.hstat-div { width:1px; height:42px; background:rgba(255,255,255,.1); }

/* Hero right image zone */
.hero-img-zone {
  position:absolute; right:0; bottom:0; top:0; width:42%;
  display:flex; align-items:flex-end; justify-content:center;
  z-index:1; pointer-events:none; overflow:hidden;
}
/* PATH: images/hero-deep.png — transparent PNG of Deep Dey */
.hero-img-zone img {
  height:88%; max-height:720px; width:auto;
  object-fit:contain; object-position:bottom;
  animation:heroFloat 5s ease-in-out infinite;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.hero-img-placeholder {
  height:70%; display:flex; align-items:flex-end; justify-content:center; opacity:.08;
}
@keyframes heroFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }

/* Scroll mouse */
.hero-scroll {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px; z-index:3;
}
.scroll-mouse {
  width:22px; height:36px; border:2px solid rgba(255,255,255,.25); border-radius:11px;
  display:flex; justify-content:center; padding-top:6px;
}
.scroll-wheel { width:3px; height:7px; background:var(--yellow); border-radius:2px; animation:scrollW 2s ease-in-out infinite; }
@keyframes scrollW { 0%{transform:translateY(0);opacity:1;} 100%{transform:translateY(10px);opacity:0;} }
.hero-scroll span { font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════
   FLAG TICKER — uses actual German flag colors
   ══════════════════════════════════════════════════════ */
.ticker-wrap { overflow:hidden; padding:0; display:flex; }
.ticker-stripe-blk { height:14px; background:var(--black); flex:1; }
.ticker-stripe-red { height:14px; background:var(--red); flex:1; }
.ticker-stripe-yel { height:14px; background:var(--yellow); flex:1; }

/* Main ticker band */
.ticker-band { background:var(--red); overflow:hidden; padding:12px 0; }
.ticker-track {
  display:inline-flex; gap:40px;
  animation:tickerRoll 22s linear infinite;
}
.ticker-track span {font-weight:600; font-size:.58rem; letter-spacing:.12em; text-transform:uppercase; color:var(--white); white-space:nowrap; }
@keyframes tickerRoll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════ */
.about-wrap { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1.25fr; gap:80px; align-items:center; }

.about-img-col { position:relative; }
.about-img-box {
  border-radius:var(--radius); overflow:hidden;
  aspect-ratio:3/4; background:var(--black);
  box-shadow:var(--shadow-lg); position:relative;
}
/* PATH: <img src="images/deep-dey-about.jpg" alt="Deep Dey"> */
.about-img-box img { width:100%; height:100%; object-fit:cover; object-position:top; }
.about-img-ph {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:14px;
}
.ph-initial { font-family:var(--font-head); font-size:9rem; font-weight:900; color:rgba(245,194,0,.2); line-height:1; }
.ph-label { font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.15); }

/* Yellow corner accent */
.about-img-box::before {
  content:''; position:absolute; bottom:-10px; right:-10px;
  width:70px; height:70px; background:var(--yellow); border-radius:var(--radius-sm);
  z-index:-1;
}
.about-img-box::after {
  content:''; position:absolute; top:-10px; left:-10px;
  width:50px; height:50px; background:var(--red); border-radius:var(--radius-sm);
  z-index:-1;
}

/* Floating badge cards */
.float-badge {
  position:absolute; background:var(--white); border-radius:var(--radius-sm);
  padding:13px 18px; box-shadow:var(--shadow-md);
  display:flex; align-items:center; gap:12px;
  animation:fbFloat 5s ease-in-out infinite;
  /* top: 540px;
    left: 361px; */
}
.float-badge:nth-of-type(1) { bottom:24px; left:-26px; animation-delay:0s; }
.float-badge:nth-of-type(2) { top:36px;    left:-26px;  animation-delay:-2.5s; }
/* .float-badge2{
  left:370px;
  bottom:10px
} */
/* @media(max-width:420px){
  .float-badge2  {     left: 270px;
 }
} */



@keyframes fbFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
.fb-icon { width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.fb-icon.yellow { background:#FFF8DC; }
.fb-icon.red    { background:#FFF0F0; }
.fb-num  { font-family:var(--font-head); font-size:1.15rem; font-weight:900; color:var(--black); line-height:1; }
.fb-lbl  { font-size:.7rem; color:var(--gray); font-weight:500; }

/* About text */
.about-feats { display:flex; flex-direction:column; gap:18px; margin:28px 0 36px; }
.about-feat  { display:flex; align-items:flex-start; gap:14px; }
.feat-dot {
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.feat-dot.y { background:#FFF8DC; }
.feat-dot.r { background:#FFF0F0; }
.feat-dot.b { background:#F0F0FF; }
.feat-dot.g { background:#F0FFF0; }
.feat-txt strong { display:block; font-weight:700; font-size:.94rem; color:var(--black); margin-bottom:2px; }
.feat-txt span   { font-size:.84rem; color:var(--text2); }

/* ══════════════════════════════════════════════════════
   LEVELS — Black cards with red/yellow accents
   ══════════════════════════════════════════════════════ */
.levels-wrap { background:var(--black); }
.levels-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:3px; }
.level-card {
  background:var(--black2); padding:36px 24px; text-align:center;
  transition:var(--tr); cursor:pointer; position:relative; overflow:hidden;
}
.level-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  transition:var(--tr); transform:scaleX(0);
}
.level-card.lc-a1::before { background:var(--yellow); }
.level-card.lc-a2::before { background:var(--yellow); }
.level-card.lc-b1::before { background:var(--red); }
.level-card.lc-b2::before { background:var(--red); }
.level-card.lc-c1::before { background:linear-gradient(90deg,var(--red),var(--yellow)); }
.level-card:hover::before  { transform:scaleX(1); }
.level-card:hover { background:var(--black3); transform:translateY(-4px); }

.level-tag {
  display:inline-block; font-size:.68rem; font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; padding:3px 12px; border-radius:50px; margin-bottom:14px;
}
.level-tag.y { background:rgba(245,194,0,.15); color:var(--yellow); }
.level-tag.r { background:rgba(204,0,0,.15);   color:#FF6666; }
.level-tag.g { background:rgba(245,194,0,.08); color:var(--yellow); border:1px solid rgba(245,194,0,.2); }

.level-name {
  font-family:var(--font-head); font-size:2.2rem; font-weight:900;
  color:var(--white); margin-bottom:10px;
}
.level-desc { font-size:.84rem; color:rgba(255,255,255,.45); line-height:1.6; }

/* ══════════════════════════════════════════════════════
   WHY US — White bg, black cards with color accents
   ══════════════════════════════════════════════════════ */
.why-wrap { background:var(--warm); }
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:22px; }
.why-card {
  background:var(--white); border-radius:var(--radius); padding:34px 28px;
  border:2px solid var(--gray2); transition:var(--tr); position:relative; overflow:hidden;
}
.why-card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  transform:scaleX(0); transform-origin:left; transition:var(--tr);
}
.why-card.c-y::after { background:var(--yellow); }
.why-card.c-r::after { background:var(--red); }
.why-card:hover { border-color:var(--black); transform:translateY(-5px); box-shadow:var(--shadow-md); }
.why-card:hover::after { transform:scaleX(1); }

.why-icon {
  width:54px; height:54px; border-radius:14px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
}
.why-icon.y { background:#FFF8DC; }
.why-icon.r { background:#FFF0F0; }
.why-icon svg { width:26px; height:26px; }

.why-title { font-family:var(--font-head); font-size:1.05rem; font-weight:800; color:var(--black); margin-bottom:10px; }
.why-desc  { font-size:.86rem; color:var(--text2); line-height:1.65; }

/* ══════════════════════════════════════════════════════
   BATCHES — Black table
   ══════════════════════════════════════════════════════ */
.batches-wrap { background:var(--white); }
.batch-tbl-wrap { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.batch-tbl { width:100%; border-collapse:collapse; }
.batch-tbl th {
  background:var(--black); color:var(--yellow);
  font-size:.74rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  padding:18px 22px; text-align:left;
}
.batch-tbl td { padding:15px 22px; font-size:.9rem; color:var(--text2); border-bottom:1px solid var(--gray2); }
.batch-tbl tr:last-child td { border-bottom:none; }
.batch-tbl tr:hover td { background:var(--warm); }
.batch-tbl td:first-child { font-weight:700; color:var(--black); }
.badge-online { display:inline-block; background:#25D366;   color:var(--white);    border-radius:50px; padding:3px 12px; font-size:.73rem; font-weight:700; }
/* .badge-both   { display:inline-block; background:rgba(245,194,0,.15); color:#B8900A; border-radius:50px; padding:3px 12px; font-size:.73rem; font-weight:700; } */

/* ══════════════════════════════════════════════════════
   TESTIMONIALS — Black bg
   ══════════════════════════════════════════════════════ */
.testi-wrap { background:var(--black); }
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:22px; }
.tcard {
  background:var(--black2); border:1px solid rgba(255,255,255,.07);
  border-radius:var(--radius); padding:32px 28px; transition:var(--tr);
  position:relative; overflow:hidden;
}
.tcard::before { content:'"'; position:absolute; top:16px; right:20px; font-family:var(--font-serif); font-size:5rem; color:rgba(245,194,0,.12); line-height:1; pointer-events:none; }
.tcard:hover { border-color:rgba(245,194,0,.3); transform:translateY(-4px); }
.tcard-stars { color:var(--yellow); font-size:.95rem; margin-bottom:14px; letter-spacing:2px; }
.tcard-text  { font-style:italic; color:rgba(255,255,255,.65); font-size:.95rem; line-height:1.75; margin-bottom:20px; }
.tcard-name  { font-weight:700; font-size:.9rem; color:var(--white); }
.tcard-role  { font-size:.76rem; color:rgba(255,255,255,.35); margin-top:3px; }

/* ══════════════════════════════════════════════════════
   CTA BANNER — Black with yellow accent, NOT red
   ══════════════════════════════════════════════════════ */
.cta-banner {
  background:var(--black); padding:80px 0;
  position:relative; overflow:hidden;
  border-top:4px solid var(--yellow);
}
.cta-banner::before {
  content:'LOS GEHTS';
  position:absolute; right:-20px; top:50%; transform:translateY(-50%);
  font-family:var(--font-head); font-size:9rem; font-weight:900;
  color:rgba(255,255,255,.03); user-select:none; white-space:nowrap; pointer-events:none;
}
/* Red left accent bar */
.cta-banner::after {
  content:''; position:absolute; left:0; top:0; bottom:0; width:6px;
  background:linear-gradient(to bottom, var(--red), var(--yellow));
}
.cta-inner {
  position:relative; z-index:2;
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap;
}
.cta-text h2 {
  font-family:var(--font-head); font-size:clamp(1.7rem,3vw,2.5rem);
  font-weight:900; color:var(--white); margin-bottom:12px;
}
.cta-text h2 span { color:var(--yellow); }
.cta-text p { color:rgba(255,255,255,.6); font-size:.96rem; max-width:480px; }

/* ══════════════════════════════════════════════════════
   FOOTER — Black
   ══════════════════════════════════════════════════════ */
.footer { background:#0A0A0A; padding:70px 0 0; }
.footer-flag { display:flex; height:4px; }
.footer-flag div { flex:1; }
.ff-b { background:var(--black2); }
.ff-r { background:var(--red); }
.ff-y { background:var(--yellow); }

.footer-grid { display:grid; grid-template-columns:1.7fr 1fr 1fr 1fr; gap:48px; margin:52px 0 48px; }
.footer-brand .fl { height:120px; margin-bottom:20px; }
.footer-brand p { font-size:.86rem; color:rgba(255,255,255,.4); line-height:1.75; max-width:255px; }

.footer-col h4 { font-size:.72rem; font-weight:800; letter-spacing:.15em; text-transform:uppercase; color:var(--yellow); margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:.87rem; color:rgba(255,255,255,.4); transition:var(--tr); }
.footer-col ul a:hover { color:var(--white); }
.fc-item { margin-bottom:12px; }
.fc-item strong { display:block; font-size:.67rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; color:var(--yellow); margin-bottom:3px; }
.fc-item a, .fc-item span { font-size:.86rem; color:rgba(255,255,255,.4); transition:var(--tr); }
.fc-item a:hover { color:var(--white); }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06); padding:22px 0;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.25); }
.footer-socials { display:flex; gap:10px; }
.fsoc {
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.07); display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.4); font-size:.85rem; transition:var(--tr);
}
.fsoc:hover { background:var(--yellow); color:var(--black); }

/* ══════════════════════════════════════════════════════
   PAGE HERO — inner pages
   ══════════════════════════════════════════════════════ */
.page-hero {
  background:var(--black); padding:150px 0 78px;
  position:relative; overflow:hidden;
}
.page-hero-flag { position:absolute; top:0; left:0; right:0; height:4px; display:flex; }
.page-hero-flag .pf1 { flex:1; background:var(--black2); }
.page-hero-flag .pf2 { flex:1; background:var(--red); }
.page-hero-flag .pf3 { flex:1; background:var(--yellow); }

.page-hero::after {
  content:''; position:absolute; top:-60px; right:-60px;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle, rgba(245,194,0,.12) 0%, transparent 70%);
  pointer-events:none;
}
.page-hero-content { position:relative; z-index:2; }
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:16px; font-size:.78rem; color:rgba(255,255,255,.35); }
.breadcrumb a { color:var(--yellow); }
.breadcrumb a:hover { text-decoration:underline; }
.page-hero h1 {
  font-family:var(--font-head); font-size:clamp(2.3rem,5vw,4rem);
  font-weight:900; color:var(--white); margin-bottom:16px; line-height:1.12;
}
.page-hero h1 .r { color:var(--red); }
.page-hero h1 .y { color:var(--yellow); }
.page-hero p { color:rgba(255,255,255,.55); font-size:1.02rem; max-width:520px; }





/* ══════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════ */
.milestones-wrap { background:var(--black); }
.milestone-row { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; }
.mstone { background:var(--black2); padding:44px 24px; text-align:center; transition:var(--tr); }
.mstone:hover { background:var(--black3); }
.mstone:nth-child(odd)  .mstone-num { color:var(--yellow); }
.mstone:nth-child(even) .mstone-num { color:var(--red); }
.mstone-num { font-family:var(--font-head); font-size:3rem; font-weight:900; line-height:1; margin-bottom:8px; transition:var(--tr); }
.mstone-lbl { font-size:.78rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.35); }

/* Teacher card — solo */
.teacher-card {
  max-width:360px; margin:0 auto; border-radius:var(--radius);
  overflow:hidden; background:var(--white); border:2px solid var(--gray2);
  box-shadow:var(--shadow-md); text-align:center; transition:var(--tr);
}
.teacher-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.tc-img {
  height:300px; background:var(--black);
  display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative;
}
/* PATH: <img src="images/deep-dey-teacher.jpg" alt="Deep Dey"> */
.tc-img img { width:100%; height:100%; object-fit:cover; object-position:top; }
.tc-img-ph { display:flex; flex-direction:column; align-items:center; gap:10px; }
.tc-initial { font-family:var(--font-head); font-size:7rem; font-weight:900; color:rgba(245,194,0,.25); line-height:1; }
.tc-img-ph span { font-size:.7rem; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.15); }
.tc-top-bar { height:4px; display:flex; }
.tc-top-bar div { flex:1; }
.tc-info { padding:26px 24px 30px; }
.tc-name { font-family:var(--font-head); font-size:1.5rem; font-weight:900; color:var(--black); margin-bottom:4px; }
.tc-role { font-size:.75rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--red); margin-bottom:13px; }
.tc-bio  { font-size:.87rem; color:var(--text2); line-height:1.65; }

/* ══════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════ */
.scard-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.scard {
  border-radius:var(--radius); background:var(--white); border:2px solid var(--gray2);
  overflow:hidden; transition:var(--tr);
}
.scard:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--black); }
.scard-head {
  background:var(--black); padding:28px 26px;
  position:relative; overflow:hidden;
}
.scard-head::after {
  content:attr(data-ltr); position:absolute; right:-8px; top:-8px;
  font-family:var(--font-head); font-size:7rem; font-weight:900;
  color:rgba(255,255,255,.04); line-height:1; user-select:none; pointer-events:none;
}
.scard-badge { display:inline-block; background:rgba(245,194,0,.18); color:var(--yellow); font-size:.68rem; font-weight:800; padding:3px 12px; border-radius:50px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:11px; }
.scard-badge.r { background:rgba(204,0,0,.18); color:#FF7777; }
.scard-name { font-family:var(--font-head); font-size:1.4rem; font-weight:900; color:var(--white); }
.scard-body { padding:26px; }
.scard-body p { color:var(--text2); font-size:.88rem; margin-bottom:18px; line-height:1.65; }
.scard-pills { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:22px; }
.pill { background:var(--warm); border:1px solid var(--gray2); border-radius:50px; padding:4px 13px; font-size:.75rem; font-weight:600; color:var(--gray); }

/* ══════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════ */
.gallery-wrap { background:var(--white); }
.gallery-tabs { display:flex; gap:4px; margin-bottom:44px; border-bottom:2.5px solid var(--gray2); }
.gtab {
  padding:12px 30px; font-weight:700; font-size:.88rem;
  cursor:pointer; border:none; background:none; color:var(--gray);
  position:relative; margin-bottom:-2.5px; transition:var(--tr);
}
.gtab::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2.5px; background:var(--black); transform:scaleX(0); transition:var(--tr); }
.gtab.active { color:var(--black); }
.gtab.active::after { transform:scaleX(1); }
.gallery-panel { display:none; }
.gallery-panel.active { display:block; }

/* Photo masonry */
.photo-masonry { columns:3; gap:14px; }
.photo-item { break-inside:avoid; margin-bottom:14px; border-radius:10px; overflow:hidden; position:relative; cursor:pointer; }
/* .photo-item:hover .photo-overlay { opacity:1; } */
/* PATH: replace .photo-slot with <img src="images/gallery/PHOTO.jpg" loading="lazy" alt="..." /> */
.photo-slot {
  background:linear-gradient(135deg, var(--black) 0%, var(--black3) 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  color:rgba(255,255,255,.1);
}
.photo-slot.h-sm { height:200px; }
.photo-slot.h-md { height:260px; }
.photo-slot.h-lg { height:320px; }
.photo-slot.h-xl { height:380px; }
.photo-slot .ps-icon { font-size:2rem; }
.photo-slot .ps-text { font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; }
/* .photo-overlay { position:absolute; inset:0; background:rgba(204,0,0,.7); display:flex; align-items:center; justify-content:center; opacity:0; transition:var(--tr); font-size:1.8rem; color:var(--white); } */

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Image */
#lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 10px;
}

/* Close button */
.lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Arrows */
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.lb-prev { left: 30px; }
.lb-next { right: 30px; }

.lb-prev:hover, .lb-next:hover, .lb-close:hover {
  color: #F5C200;
}

/* Video cards */
.video-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:22px; }
.vcard { border-radius:var(--radius); overflow:hidden; background:var(--black); box-shadow:var(--shadow); transition:var(--tr); }
.vcard:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.vthumb { position:relative; aspect-ratio:16/9; background:var(--black2); display:flex; align-items:center; justify-content:center; overflow:hidden; }
/* PATH: <iframe src="https://www.youtube.com/embed/VIDEO_ID" title="..." allowfullscreen loading="lazy"></iframe> */
.vthumb iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }
.vthumb-ph { text-align:center; color:rgba(255,255,255,.18); }
.vthumb-ph span { font-size:2.8rem; display:block; margin-bottom:8px; }
.vthumb-ph p { font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; }
.vinfo { padding:18px 20px; }
.vinfo-title { font-weight:700; font-size:.9rem; color:var(--white); margin-bottom:5px; }
.vinfo-sub { font-size:.76rem; color:rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-wrap { background:var(--white); }
.contact-grid { display:grid; grid-template-columns:1fr 1.45fr; gap:70px; align-items:start; }
.cinfo h3 { font-family:var(--font-head); font-size:1.75rem; font-weight:900; color:var(--black); margin-bottom:10px; }
.cinfo .section-lead { margin-bottom:34px; }
.cinfo-item { display:flex; gap:15px; align-items:flex-start; margin-bottom:24px; }
.cinfo-icon { width:46px; height:46px; border-radius:12px; flex-shrink:0; background:var(--warm); display:flex; align-items:center; justify-content:center; }
.cinfo-icon svg { width:20px; height:20px; }
.cinfo-item strong { display:block; font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--gray); margin-bottom:4px; }
.cinfo-item a, .cinfo-item span { font-size:.93rem; color:var(--black); font-weight:500; }
.cinfo-item a:hover { color:var(--red); }

.cform-card { background:var(--warm); border-radius:var(--radius); padding:44px 38px; border:2px solid var(--gray2); box-shadow:var(--shadow); }
.cform-title { font-family:var(--font-head); font-size:1.55rem; font-weight:900; color:var(--black); margin-bottom:6px; }
.cform-sub { color:var(--text2); font-size:.87rem; margin-bottom:28px; }
.form-group { margin-bottom:17px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
.form-group label { display:block; font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--gray); margin-bottom:7px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:12px 16px;
  border:2px solid var(--gray2); border-radius:10px;
  font-family:var(--font-body); font-size:.9rem; color:var(--text);
  background:var(--white); transition:var(--tr); outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--black); box-shadow:0 0 0 3px rgba(0,0,0,.06);
}
.form-group textarea { resize:vertical; min-height:110px; }
.form-submit { width:100%; padding:14px; background:var(--black); color:var(--white); border:none; border-radius:10px; font-family:var(--font-body); font-size:.95rem; font-weight:800; cursor:pointer; transition:var(--tr); letter-spacing:.02em; }
.form-submit:hover { background:var(--red); }
.form-success { display:none; text-align:center; padding:20px; background:rgba(0,160,80,.07); border-radius:10px; color:#006600; font-weight:700; margin-top:14px; font-size:.88rem; }

.map-block { background:var(--warm); border-radius:var(--radius); height:280px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; border:2px solid var(--gray2); margin-top:48px; }
.map-block svg { opacity:.25; width:44px; height:44px; }
.map-block p { color:var(--gray); font-size:.88rem; }

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal   { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal-l { opacity:0; transform:translateX(-36px); transition:opacity .75s ease, transform .75s ease; }
.reveal-r { opacity:0; transform:translateX(36px);  transition:opacity .75s ease, transform .75s ease; }
.reveal.visible, .reveal-l.visible, .reveal-r.visible { opacity:1; transform:none; }

@keyframes fadeInDown { from{opacity:0;transform:translateY(-18px);}to{opacity:1;transform:none;} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:none;} }

/* ══════════════════════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════════════════════ */
.wa-fab { position:fixed; bottom:26px; right:26px; width:56px; height:56px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 24px rgba(37,211,102,.45); z-index:999; animation:waF 3s ease-in-out infinite; transition:var(--tr); }
.wa-fab:hover { transform:scale(1.12); }
.wa-fab svg { width:28px; height:28px; fill:var(--white); }
@keyframes waF { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-5px);} }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media(max-width:1024px){
  .about-grid   { grid-template-columns:1fr; gap:48px; }
  .about-img-col { max-width:420px; margin:0 auto; }
  .footer-grid  { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .milestone-row{ grid-template-columns:1fr 1fr; }
  .hero-img-zone{ display:none; }
  .photo-masonry{ columns:2; }
}
@media(max-width:768px){
  .section { padding:68px 0; }
  .nav-links {
    position:fixed; top:0; right:-100%; width:280px; height:100vh;
    background:var(--white); flex-direction:column; justify-content:center;
    align-items:flex-start; padding:80px 36px; gap:24px;
    transition:right .4s cubic-bezier(.4,0,.2,1);
    box-shadow:-10px 0 40px rgba(0,0,0,.15);
  }
  .nav-links.open { right:0; }
  .nav-links a { color:var(--text) !important; font-size:1.05rem; }
  .hamburger { display:flex; }
  .hero-title { font-size:clamp(2.5rem,9vw,3.8rem); }
  .cta-inner  { flex-direction:column; text-align:center; }
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
  .milestone-row { grid-template-columns:1fr 1fr; }
  .form-row   { grid-template-columns:1fr; }
  .cform-card { padding:26px 20px; }
  .photo-masonry { columns:1; }
}
@media(max-width:480px){
  .hero-btns  { flex-direction:column; }
  .milestone-row { grid-template-columns:1fr; }
  .levels-grid   { grid-template-columns:1fr 1fr; }
  .hero-stats    { gap:20px; }
}

/* ----------------- */

.page-hero {
  height: 600px;
  position: relative;
  background: url('images/about_banner.jpeg') no-repeat center center/cover;
  min-height: 300px; /* adjust height */
  display: flex;
  align-items: center;
  color: #fff;
}

/* Optional dark overlay (recommended) */
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.page-hero-content {
  margin-left: 125px;
  position: relative;
  z-index: 2;
}

/* .----------------------- */

/* 🔥 Main grid fix */
.levels-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ FIXED 2 */
  gap: 25px;
  margin-top: 40px;
  width: 100%;
}

/* 🔥 Each banner */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* 🔥 Image fix */
/* .banner img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
} */
 .banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center; /* ya left */
}

/* 🔥 Hover Effects */
.banner:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.banner:hover img {
  transform: scale(1.08);
}

@media (max-width: 600px) {
  .levels-banners {
    grid-template-columns: 1fr;
  }
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.course-btn {
  background: var(--yellow);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  /* box-shadow: 0 8px 25px rgba(245,194,0,0.3); */
}

.course-btn:hover {
  background: var(--yellow2);
  transform: translateY(-3px);
}

/* ── STUDENT RESULTS SLIDER ─────────────────────────── */
/* NEW */
.results-wrap {
  background: #1c1c1c;
  border-top: 3px solid var(--yellow, #f5c200);
  border-bottom: 3px solid var(--yellow, #f5c200);
}


.results-slider-outer {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  user-select: none;
}

.results-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.result-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  box-sizing: border-box;
}

.result-slide img {
  width: 100%;
  max-width: 520px;
  height: 420px;
  object-fit: contain;
  border-radius: 12px;
  background: #1C1C1C;
  box-shadow: 0 8px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,0.08);
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-slide img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 0 2px var(--yellow, #f5c200);
}

/* Show 3 slides at once on desktop */
@media (min-width: 900px) {
  .result-slide { min-width: 33.333%; }
  .result-slide img { max-width: 100%; height: 340px; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .result-slide { min-width: 50%; }
  .result-slide img { height: 360px; }
}

/* Arrows */
.rs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--yellow, #f5c200);
  color: #111;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  transition: background .2s, transform .2s;
}
.rs-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.rs-prev { left: 12px; }
.rs-next { right: 12px; }

/* Dots */
.rs-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: nowrap;   /* ❌ NO MULTI LINE */
  overflow: hidden;
}
.rs-dots span {
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.rs-dots span.active {
  width: 22px;              /* 🔥 pill style */
  height: 8px;
  border-radius: 20px;
  background: var(--yellow);
  opacity: 1;
}

.rs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .25s, transform .25s;
  border: none;
}
.rs-dot.active {
  background: var(--yellow, #f5c200);
  transform: scale(1.4);
}

/* ── Footer Social Icons ── */
.footer-socials { display:flex; gap:12px; align-items:center; }

.fsoc {
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55);
  transition:var(--tr); text-decoration:none;
  border:1.5px solid rgba(255,255,255,.1);
}
.fsoc:hover { transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,.3); }
.fsoc svg { width:20px; height:20px; fill:currentColor; }

/* Instagram hover — gradient */
.fsoc.fsoc-insta:hover {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color:transparent; color:#fff;
}
/* WhatsApp hover — green */
.fsoc.fsoc-wa:hover {
  background:#25D366; border-color:#25D366; color:#fff;
}
/* Email hover — red */
.fsoc.fsoc-mail:hover {
  background:var(--red); border-color:var(--red); color:#fff;
}

/* Footer credit line */
.footer-credit {
  font-size:.75rem; color:rgba(255,255,255,.25); text-align:right;
}
.footer-credit a {
  color:var(--yellow); font-weight:600;
  text-decoration:none; transition:var(--tr);
}
.footer-credit a:hover { color:var(--white); text-decoration:underline; }

/* YouTube hover — red */
.fsoc.fsoc-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
}

/* Mobile stacking */
@media(max-width:600px){
  .footer-bottom { flex-direction:column; text-align:center; gap:10px; }
  .footer-credit { text-align:center; }
}

@media (max-width: 768px) {

  .hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 100px 15px 40px;
    gap: 10px;
  }

  /* LEFT CONTENT */
  .hero-content {
    width: 45%;
    margin: 0;
    padding: 0;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .ht3 {
    font-size: 16px;
  }

  .hero-sub {
    font-size: 12px;
    line-height: 1.5;
  }

  /* BUTTON FIX */
  .hero-btns {
    flex-direction: column;
    gap: 8px;
  }

  .hero-btns .btn {
    width: 100%;
    font-size: 12px;
    padding: 10px;
  }

  /* STATS HIDE (space bachane ke liye) */
  .hero-stats {
    display: none;
  }

  /* 🔥 RIGHT IMAGE */
  .hero-img-zone {
    position: relative;
    width: 55%;
    display: flex;
    justify-content: center;
  }

  .hero-img-zone img {
    max-width: 110%;
    height: auto;
  }

  /* scroll remove */
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 768px) {

  .banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: left; /* 🔥 important */
  }

} 

/* ===== REVIEWS SECTION ===== */
.reviews-section {
background: linear-gradient(135deg,#111,#1a1a1a);
padding: 80px 0;
color: #fff;
text-align: center;
}

.review-title {
font-size: 36px;
margin-bottom: 20px;
}

.review-top {
margin-bottom: 40px;
}

.google-rating {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}

.rating-num {
font-size: 28px;
font-weight: bold;
}

.stars {
color: #F5C200;
letter-spacing: 3px;
}

/* ===== SLIDER ===== */
.review-slider {
position: relative;
overflow: hidden;
margin-top: 40px;
padding: 0 60px; /* 🔥 arrows ke liye space */
}

.review-track {
display: flex;
gap: 20px;
transition: transform 0.5s ease;
will-change: transform;
}

/* ===== CARD ===== */
.review-card {
flex: 0 0 calc((100% - 40px) / 3); /* 🔥 PERFECT 3 CARDS */
  max-width: calc((100% - 40px) / 3);
  padding: 22px 18px;
  background: #fff;
  color: #111;
  border-radius: 14px;
  text-align: center;
}

.review-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== AVATAR ===== */
.review-avatar img {
width: 65px;
height: 65px;
border-radius: 50%;
margin-bottom: 12px;
}

.review-avatar.circle {
width: 65px;
height: 65px;
background: #7a8c95;
color: #fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:20px;
margin:0 auto 12px;
}

.review-avatar.purple {
background: purple;
}

/* ===== TEXT ===== */
.review-text {
font-size: 13px;
margin: 12px 0;
color: #444;
line-height: 1.5;
}

.read-more {
color: #bfa200;
font-weight: 600;
font-size: 13px;
display:inline-block;
margin-bottom: 12px;
text-decoration: none;
}

.read-more:hover {
text-decoration: underline;
}

/* ===== USER ===== */
.review-user span {
font-weight: bold;
display:block;
}

.review-user small {
color: gray;
font-size: 12px;
}

/* ===== DOTS ===== */
.dots {
display: flex;
justify-content: center;
margin-top: 25px;
gap: 6px;
}

.dots span {
width: 6px;
height: 6px;
background: #666;
border-radius: 50%;
opacity: 0.5;
transition: 0.3s;
}

.dots span.active {
width: 18px;
border-radius: 10px;
background: #F5C200;
opacity: 1;
}

/* ===== ARROWS ===== */
.arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #F5C200;
border: none;
width: 42px;
height: 42px;
border-radius: 50%;
cursor: pointer;
z-index: 10;
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
}

.arrow.left {
left: 10px;
}

.arrow.right {
right: 10px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

.reviews-section {
padding: 50px 15px;
}

.review-title {
font-size: 26px;
}

.review-slider {
padding: 0 10px;
}



.review-card {
flex: 0 0 100%;
max-width: 100%;
padding: 18px 14px;
}

.review-text {
font-size: 12px;
}

.arrow {
width: 36px;
height: 36px;
}

.arrow.left {
left: 5px;
}

.arrow.right {
right: 5px;
}
}

/* 🔥 Different colors for avatars */
.review-card:nth-child(1) .review-avatar { background: #ff6b6b; }
.review-card:nth-child(2) .review-avatar { background: #6c5ce7; }
.review-card:nth-child(3) .review-avatar { background: #00b894; }
.review-card:nth-child(4) .review-avatar { background: #fdcb6e; }
.review-card:nth-child(5) .review-avatar { background: #e17055; }
.review-card:nth-child(6) .review-avatar { background: #0984e3; }
.review-card:nth-child(7) .review-avatar { background: #00cec9; }
.review-card:nth-child(8) .review-avatar { background: #e84393; }
.review-card:nth-child(9) .review-avatar { background: #2d3436; }

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.short-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  height: 420px; /* FIXED HEIGHT like shorts */
}

/* IMAGE FIX */
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* important */
  object-position: center;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.short-card:hover img {
  transform: scale(1.05);
}

/* DARK OVERLAY (like youtube) */
.short-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  z-index: 2;
}

/* MOBILE FIX */
/* @media (max-width: 768px) {
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .short-card {
    height: 300px;
  }
} */

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.short-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  background: #000;
}

/* PERFECT SHORTS RATIO */
.short-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .short-card {
    height: 300px;
  }
}

/* ══════════════════════════════════════════════
   COURSE CARDS — Individual (A1–C1 + Kids)
   ══════════════════════════════════════════════ */
.courses-section { background: var(--warm); padding: 96px 0; }
.courses-section .section-header { text-align: center; margin-bottom: 52px; }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.course-featured {
  position: absolute;
  top: 14px; right: 0;
  background: var(--yellow);
  color: var(--black);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 5px 16px 5px 12px;
  border-radius: 4px 0 0 4px;
  z-index: 3;
}
.course-featured::after {
  content: '';
  position: absolute;
  bottom: -7px; right: 0;
  border-left: 8px solid #B8900A;
  border-bottom: 7px solid transparent;
}
.course-banner-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.course-card-body {
  padding: 5px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-name {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}
.course-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.course-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
}
.course-meta-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cmi-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: #555;
  background: #f0f4ff;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 500;
}
.cmi-tag svg { width: 14px; height: 14px; flex-shrink: 0; }
.course-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 13px;
  background: transparent;
  border: 2px solid var(--black);
  border-radius: 10px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}
.course-btn:hover { background: var(--black); color: var(--yellow); }
.course-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.course-btn:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   COMBO COURSES SECTION
   ══════════════════════════════════════════════ */
.combo-section { background: var(--black); padding: 96px 0; }

.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.combo-card {
  background: var(--black2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.combo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,194,0,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.combo-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}
.combo-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.combo-title .ct-highlight { color: var(--yellow); }

.combo-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.combo-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .83rem;
}
.combo-detail-row .cd-label {
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 7px;
}
.combo-detail-row .cd-label svg { width: 13px; height: 13px; opacity: .6; }
.combo-detail-row .cd-val {
  font-weight: 700;
  color: var(--white);
}
.combo-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 4px 0 16px;
}
.combo-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.combo-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
}
.combo-price-label {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.3;
}
.combo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}
.combo-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.combo-btn svg { width: 15px; height: 15px; transition: transform 0.3s; }
.combo-btn:hover svg { transform: translateX(4px); }

/* Exam + Interview special cards */
.combo-card.special-card {
  border-color: rgba(204,0,0,.25);
  background: linear-gradient(135deg, #1a0000 0%, var(--black2) 100%);
}
.combo-card.special-card .combo-badge {
  background: var(--red);
  color: #fff;
}
.combo-card.special-card .combo-price { color: #ff8080; }

/* ══════════════════════════════════════════════
   SCHOOL STUDENTS SECTION
   ══════════════════════════════════════════════ */
.school-section { background: var(--warm); padding: 96px 0; }

.school-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.school-intro-text .section-lead { margin-bottom: 24px; }
.school-intro-text ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.school-intro-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text2);
}
.school-intro-text ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.school-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.school-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 22px;
  border: 2px solid var(--gray2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.school-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--black), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.school-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}
.school-card:hover::before { transform: scaleX(1); }

.school-grade-badge {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.school-class {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 6px;
}
.school-rate {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 6px;
}
.school-strength {
  font-size: .78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.school-strength svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .school-intro { grid-template-columns: 1fr; gap: 32px; }
  .school-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
/* @media (max-width: 768px) {
  .combo-grid { grid-template-columns: 1fr 1fr; }
  .school-cards-grid { grid-template-columns: repeat(2, 1fr); }
} */
@media (max-width: 580px) {
  .courses-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr; }
  .school-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .school-cards-grid { grid-template-columns: 1fr; }
}

.course-desc{
  font-size:14px;
  color:#666;
  margin:8px 0 12px;
}

.course-duration{
  font-size:13px;
  color:#888;
  margin-left:10px;
}

.course-extra{
  margin-top:5px;
  margin-bottom: 5px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.extra-item{
  font-size:14px;
  color:#333;
}

.price-box{
  position:absolute;
  right:15px;
  /* bottom:-20px; */
  top: 250px;
  background:#fff;
  padding:10px 14px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  text-align:center;
}

.price{
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
}

.exam-section{
  padding:80px 20px;
  background:linear-gradient(135deg,#f8fafc,#eef3ff);
  text-align:center;
}

.exam-header h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.exam-header p{
  color:#666;
  margin-bottom:40px;
}

/* GRID */
.exam-logos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:30px;
  align-items:center;
}

/* CARD */
.logo-card{
  padding:10px;
  display:flex;
  justify-content:center;
  align-items:center;
  transition:all 0.4s ease;
  animation:float 4s ease-in-out infinite;
}

.logo-card img{
  width:100%;
  transition:all 0.3s ease;
}

/* HOVER EFFECT 🔥 */
.logo-card:hover img{
  transform:scale(1.15);
  filter:drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* FLOAT ANIMATION */
@keyframes float{
  0%{ transform:translateY(0px); }
  50%{ transform:translateY(-8px); }
  100%{ transform:translateY(0px); }
}

/* STAGGER ANIMATION */
.logo-card:nth-child(2){
  animation-delay:0.5s;
}
.logo-card:nth-child(3){
  animation-delay:1s;
}
.logo-card:nth-child(4){
  animation-delay:1.5s;
}

/* INITIAL STATE */
.wow-card{
  opacity:0;
  transform:translateY(60px) scale(0.95);
  transition:all 0.8s cubic-bezier(.2,.65,.3,1);
}

/* ACTIVE */
.wow-card.show{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* HOVER WOW EFFECT */
.course-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM */
.course-card img{
  transition:0.4s;
}
.course-card:hover img{
  transform:scale(1.08);
}

/* PRICE POP */
.course-card:hover .price-box{
  transform:scale(1.1);
  box-shadow:0 10px 25px rgba(0,150,255,0.3);
}

/* STAGGER DELAY 🔥 */
.wow-card:nth-child(1){ transition-delay:0.1s; }
.wow-card:nth-child(2){ transition-delay:0.2s; }
.wow-card:nth-child(3){ transition-delay:0.3s; }
.wow-card:nth-child(4){ transition-delay:0.4s; }
.wow-card:nth-child(5){ transition-delay:0.5s; }
.wow-card:nth-child(6){ transition-delay:0.6s; }

/* BACKGROUND GLOW */
.exam-section{
  padding:80px 20px;
  text-align:center;
  background:radial-gradient(circle at top,#eef2ff,#f8fafc);
  overflow:hidden;
}

/* HEADING ANIMATION */
.wow-fade{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.wow-fade.show{
  opacity:1;
  transform:translateY(0);
}

/* LOGO GRID */
.exam-logos{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
  margin-top:40px;
}

/* LOGO STYLE */
.logo-card{
  transition:all 0.4s ease;
  animation:float 4s ease-in-out infinite;
}

/* IMAGE */
.logo-card img{
  width:190px;
  transition:all 0.4s ease;
  /* filter:grayscale(100%); */
}

/* HOVER 🔥 */
.logo-card:hover img{
  transform:scale(1.2);
  filter:grayscale(0%);
  filter:drop-shadow(0 10px 25px rgba(0,150,255,0.4));
}

/* ZOOM ENTRY */
.wow-zoom{
  opacity:0;
  transform:scale(0.7) translateY(40px);
  transition:all 0.6s ease;
}

.wow-zoom.show{
  opacity:1;
  transform:scale(1) translateY(0);
}

/* FLOAT ANIMATION */
@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
  100%{transform:translateY(0)}
}

/* STAGGER DELAY */
.logo-card:nth-child(1){transition-delay:0.2s}
.logo-card:nth-child(2){transition-delay:0.4s}
.logo-card:nth-child(3){transition-delay:0.6s}
.logo-card:nth-child(4){transition-delay:0.8s}

@media (max-width: 768px) {

  /* HERO — use mobile banner, content at bottom */
  .hero {
    background:
      url('images/bannerphone.jpeg') center top / cover no-repeat;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 48px;
  }

  /* Dark gradient overlay from bottom so text is readable */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 20%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Push content above the gradient */
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    margin-top: 175px;
  }

  /* Title smaller on mobile */
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.1;
  }

  .ht3 { font-size: 55%; }

  .hero-sub {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
  }

  /* Buttons stacked on mobile */
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-btns .btn {
    width: 100%;
    font-size: 13px;
    padding: 12px 16px;
    justify-content: center;
  }

  /* Stats — show 3 in a row */
  .hero-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
  }
  .hstat-num { font-size: 1.3rem; }
  .hstat-lbl { font-size: .6rem; }
  .hstat-div { height: 30px; }

  /* HIDE the desktop teacher image on mobile — banner has it built in */
  .hero-img-zone { display: none !important; }

  /* Hide scroll indicator */
  .hero-scroll { display: none; }

  /* Hide decorative elements */
  .hero-flag-stripe { z-index: 3; }
  .hero-dots { display: none; }
  .hero-shape { display: none; }
}