/* ============================================================
   BADA BUSINESS – Responsive Stylesheet
   Desktop base: 1440px | Mobile: 768px breakpoint
   Fonts: Bebas Neue (Coolvetica alt) + Outfit
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Bebas+Neue&family=Cormorant+Garamond:wght@700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-dark:     #39374d;
  --c-hero-bg:  #000000;
  --c-red:      #d8393c;
  --c-white:    #ffffff;
  --c-f5:       #f5f5f5;
  --c-ea:       #eaeaea;
  --c-f3:       #f3f3f3;
  --c-purple:   #6e63a1;
  --c-mid:      #5f5d70;
  --c-text:     #353535;
  --c-sub:      #cac9cf;
  --c-cream:    #fbfaf4;
  --c-ptag:     #f7f4fb;
  --c-gray2:    #f2f2f2;
  --c-trans-bg: #39374d;
  --c-gray: #797979;
  --c-bright-red: #e20a0b;
  --c-grad:     linear-gradient(90deg, #2d2d2d 0%, #000000 61%);
  --sh-btn:     0px 3.8px 13.3px 2.86px rgba(0,0,0,0.03);
  --sh-card:    0px 15px 24.9px -5px rgba(0,0,0,0.07);
  --sh-nav:     0px 4px 13.8px 6px rgba(0,0,0,0.13);
  --max-w:      1440px;
  --pad-x:      76px;
}

/* Gradient text-fill used on headings sitting over light backgrounds */
.grad-heading {
  background: var(--c-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  color: var(--c-dark);
  background: #fff;
  overflow-x: hidden;
  padding-bottom: 80px;
  letter-spacing: 1.2px;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Shared inner wrapper ---- */
.inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--c-white);
  height: 66px;
  box-shadow: var(--sh-nav);
  width: 100%;
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}
.nav-logo img { height: 45px; width: auto; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--c-dark);
  white-space: nowrap;
  line-height: normal;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--c-red); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--c-dark);
  border-radius: 1px;
}
.nav-cta-link {
  background: var(--c-red) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 20px;
  font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta-link:hover { background: #c02d30 !important; }
.nav-cta-link.active::after { display: none !important; }

/* Hamburger (hidden on desktop) */
.nav-mobile-only { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================================
   HERO
   Figma: bg #1a1830, 764px, Dr Vivek at center-left, text at sides
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  min-height: 764px;
  background: var(--c-hero-bg);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
/* Geometric angular shape (Rectangle 62 from Figma) */
.hero-rect-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left top;
  pointer-events: none;
  z-index: 2;
}
/* Full-width crowd photo overlay */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
/* Inner grid: left-text | vivek-photo | right-text+cta */
.hero-grid {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 440px 1fr;
  grid-template-rows: auto;
  align-items: center;
  min-height: 764px;
}
/* Left column */
.hero-left {
  padding: 120px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left .tag-india {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.46vw, 21px);
  color: rgba(255,255,255,0.85);
  line-height: normal;
  margin-bottom: 8px;
}
.hero-left .name {
  font-family: 'coolvetica', 'Outfit', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 4.58vw, 66px);
  color: var(--c-white);
  line-height: 100%;
  margin-bottom: 20px;
}
.hero-left .desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.81vw, 26px);
  color: var(--c-sub);
  line-height: 1.4;
  max-width: 390px;
}
/* Center: Dr Vivek photo */
.hero-vivek-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  min-height: 764px;
}
.hero-vivek {
  width: 100%;
  max-width: 505px;
  height: 679px;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  align-self: flex-end;
}
/* Right column */
.hero-right {
  padding: 120px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
}
.hero-right-text {
  font-family: 'coolvetica';
  font-weight: 400;
  font-size: clamp(44px, 5.21vw, 85px);
  color: var(--c-white);

  line-height: 88%;
  margin-bottom: 40px;
}
.hero-cta {
  width: min(355px, 100%);
  height: 64px;
  background: var(--c-bright-red);
  border: 0.5px solid rgba(255,255,255,.2);
  border-radius: 33px;
  box-shadow: var(--sh-btn);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hero-cta:hover { background: #b80809; }
.hero-cta span {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.54vw, 22px);
  color: var(--c-white);
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   EVENTS
   ============================================================ */
#events {
  background: #000;
  padding: 60px 0 50px;
}
.events-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.events-title {
  font-family: 'coolvetica';
  font-size: clamp(32px, 3.47vw, 50px);
  color: var(--c-white);
  text-align: center;
  margin-bottom: 28px;
}
/* Card + dots flex layout */
.event-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.event-card {
  position: relative;
  flex: 1 1 974px;
  max-width: 974px;
  aspect-ratio: 974 / 483;
  border: 1px solid #676767;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}
.event-card-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute; inset: 0;
}
.event-video-frame {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 14.74%;
  object-fit: cover;
  object-position: center;
}
.event-play-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 80px; height: 80px;
}
.event-play-circle {
  display: block;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  position: absolute; inset: 0;
}
.event-play-tri {
  display: block;
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #39374d;
}
.event-youtube {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: none;
  border: 0;
}
.event-card.playing .event-card-bg,
.event-card.playing .event-video-frame,
.event-card.playing .event-play-wrap { display: none; }
.event-card.playing .event-youtube { display: block; }

/* Vertical dots to the right of card */
.event-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 4px;
}
.ev-dot {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background .2s;
}
.ev-dot.active { background: var(--c-dark); }

/* ============================================================
   TRANSFORMATION BANNER
   ============================================================ */
#transformation {
  background: #000;
  position: relative;
  padding: 40px var(--pad-x);
}
#transformation .trans-card {
  position: relative;
  max-width: calc(var(--max-w) - 138px);
  margin: 0 auto;
  min-height: 567px;
  border-radius: 61px;
  overflow: hidden;
  background: linear-gradient(90deg, #2d2d2d 0%, #000000 61%);
  display: flex;
  align-items: center;
}
.trans-bg-img {
  position: absolute;
  right: 0; top: 0;
  width: 70%; height: 100%;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
  opacity: 0.7;
  border-radius: 0 53px 53px 0;
}
.trans-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 60px;
}
.trans-text1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.9vw, 41.828px);
  color: var(--c-white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.trans-text2 {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.47vw, 50px);
  color: var(--c-cream);
  line-height: 1;
}

/* ============================================================
   UNLOCK CTA
   ============================================================ */
#unlock {
  background: #000;
  padding: 50px 20px;
  display: flex; align-items: center; justify-content: center;
}
.unlock-btn {
  width: min(496px, 100%);
  height: 85px;
  background: var(--c-bright-red);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 43px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.unlock-btn:hover { background: #b80809; }
.unlock-btn span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.44vw, 35px);
  color: var(--c-white);
  text-align: center;

  white-space: nowrap;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  background: #000;
  padding: 0 0 60px;
}
.products-heading {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.47vw, 50px);
  color: var(--c-white);
  text-align: center;
  padding: 40px var(--pad-x) 40px;
}
.products-row {
  display: flex;
  gap: 53px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.product-card {
  width: 394px;
  flex: 0 0 394px;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
  background: var(--c-white);
}
.product-card-top {
  width: 100%; height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card-top img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-top img { transform: scale(1.04); }
.product-card-body {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 20px 24px;
}
.product-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 37px;
  color: var(--c-dark);
  text-align: center;
  line-height: 1.27;
  margin-bottom: 6px;
}
.product-divider {
  width: 80px; height: 2px;
  background: var(--c-dark);
  margin: 10px auto;
}
.product-by {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 16px;

  text-transform: uppercase;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 12px;
}
.product-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--c-dark);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.product-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 28px;
  background: var(--c-red);
  border-radius: 24px;
  box-shadow: var(--sh-btn);
  transition: background .2s;
}
.product-cta:hover { background: #c02d30; }
.product-cta span {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--c-white);

}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: #e3e3e3;
  padding: 60px 0 40px;
}
.test-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.test-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.47vw, 50px);
  text-align: center; margin-bottom: 10px;
}
.test-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: clamp(16px, 1.74vw, 25px);
  color: #000; text-align: center;
  margin-bottom: 36px;
}
.test-carousel {
  position: relative;
}
.test-track-outer { overflow: hidden; }
.test-track {
  display: flex; gap: 20px;
  transition: transform .4s ease;
}
.test-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  aspect-ratio: 260 / 292;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.test-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.test-video {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
  display: none;
}
.test-card.playing .test-thumb { display: none; }
.test-card.playing .test-video { display: block; }
.test-video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .25s;
  cursor: pointer;
}
.test-card.playing .test-video-overlay { opacity: 0; pointer-events: none; }
.test-play-circle {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.7);
}
.test-play-tri {
  position: absolute;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 39px; height: 39px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  background: rgb(255 255 255 / 55%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: box-shadow .2s;
}
.carousel-arrow:hover { box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.carousel-arrow img { width: 22px; height: 22px; object-fit: contain; }
.carousel-arrow.left  { left:  -10px; }
.carousel-arrow.right { right: -10px; }
.test-dots {
  display: flex; justify-content: center;
  align-items: center; gap: 10px;
  margin-top: 24px;
}
.sm-dot {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background .2s;
}
.sm-dot.active { background: var(--c-dark); }

/* ============================================================
   COURSES
   ============================================================ */
#courses {
  background: var(--c-f5);
  padding: 60px 0 70px;
}
.courses-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.courses-label {
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: clamp(15px, 1.84vw, 26.5px); color: var(--c-mid);
  text-align: center; margin-bottom: 6px;
}
.courses-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 3.17vw, 60px); color: var(--c-dark);
  text-align: center; line-height: 1;
  margin-bottom: 12px;
}
.courses-sub {
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: clamp(14px, 1.54vw, 22px); color: var(--c-mid);
  text-align: center; line-height: 1.5;
  max-width: 800px; margin: 0 auto 40px;
}
.courses-head-row {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.courses-section-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.47vw, 50px); color: var(--c-dark);
  flex: 1; text-align: center; margin-bottom: 0; line-height: 1;
}
.courses-carousel { position: relative; }
.courses-track-outer { overflow: hidden; }
.courses-track {
  display: flex; gap: 24px;
  transition: transform .4s ease;
}
.course-card {
  flex: 0 0 calc(20% - 20px);
  min-width: 220px;
  aspect-ratio: 258 / 341;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.course-card img.course-bg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.course-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 38%, transparent 68%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 18px;
  text-align: center;
  align-items: center;
}
.course-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}
.course-stamp-line {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  /* text-transform: uppercase; */
  color: #fff;
  line-height: 0.9;
}
.course-caption {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 11px;
  text-transform: uppercase;

  color: #fff; margin-top: 8px;
}
.course-know-more {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 18px;
  background: #1a1830;
  border-radius: 20px;
  box-shadow: var(--sh-btn);
  width: fit-content;
  border: 1px solid rgba(255,255,255,.5);
}
.course-know-more span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 13px;
  color: #fff;
}
.courses-nav {
  display: flex; align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.courses-nav .carousel-arrow {
  position: static; transform: none;
  width: 44px; height: 44px;
}
.courses-view-more {
  display: flex; align-items: center; justify-content: center;
  padding: 0 40px;
  height: 60px;
  width: fit-content;
  min-width: 200px;
  background: var(--c-grad);
  border-radius: 30px;
  box-shadow: var(--sh-btn);
  margin: 28px auto 0;
  gap: 10px;
  transition: opacity .2s;
}
.courses-view-more:hover { opacity: 0.85; }
.courses-view-more span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: clamp(16px, 1.74vw, 25px);
  color: #fff; 

}
.courses-view-more img { width: 18px; height: 18px; filter: invert(1) brightness(2); }

/* ============================================================
   GET READY
   ============================================================ */
#getready {
  background: var(--c-f5);
  padding: 60px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.getready-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.94vw, 42px);
  color: var(--c-dark);
  text-align: center;
}
.getready-btn {
  width: min(320px, 100%);
  height: 64px;
  background: var(--c-red);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.getready-btn:hover { background: #c02d30; }
.getready-btn span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: clamp(16px, 1.92vw, 27.7px);
  color: #fff; 
 
  white-space: nowrap;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--c-white);
  padding: 60px 0 80px;
  overflow: hidden;
}
.about-wrap {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.about-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  max-width: calc(100% - 268px);
}
.about-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.13vw, 45px);
  color: var(--c-text);
  line-height: 1.2;
  text-align: left;
}
.about-heading-chevron {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-gray2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--c-mid);
}
.about-grid {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.about-shape-col {
  flex: 1 1 auto;
  min-width: 0;
}
.about-shape-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1168 / 650;
  display: grid;
  grid-template-columns: 76% 24%;
  grid-template-rows: 56% 44%;
}
.about-card-main {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  background: var(--c-gray);
  border-radius: 24px 24px 0 24px;
  padding: 5% 0 5% 5%;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  z-index: 1;
}
.about-card-video {
  position: absolute;
  left: 76%;
  top: 56%;
  width: 24%;
  height: 44%;
  background: var(--c-gray);
  border-radius: 0 24px 24px 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.about-joint-notch, .about-joint-notch-right, .about-joint-notch-left {
  position: absolute;
  left: calc(76% - 32px);
  top: calc(56% - 32px);
  width: 64px;
  height: 64px;
  background: var(--c-gray);
  border-radius: 50%;
  pointer-events: none;
}
.about-joint-notch-right, .about-joint-notch-left { 
  background: white;
  z-index: 3;
  
}
.about-joint-notch-right {
    left: 76%;
    top: 47%;
}
.about-joint-notch-left {
  left: 71%;
  top: 56%;
}

.about-youtube {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: none;
  border: 0;
  border-radius: inherit;
  z-index: 2;
}
.about-card-video.playing .about-video-play,
.about-m-video-box.playing .about-video-play { display: none; }
.about-card-video.playing .about-youtube,
.about-m-video-box.playing .about-youtube { display: block; }
.about-video-play { position: relative; width: 22%; max-width: 64px; aspect-ratio: 1; }
.about-play-circle {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  background: #fff; position: absolute; inset: 0;
}
.about-play-tri {
  display: block; position: absolute; top: 50%; left: 56%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--c-purple);
}
.about-col-left {
  flex: 0 1 auto;
  max-width: 44%;
  min-width: 0;
}
.about-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}
.about-role-tag {
  display: flex;
  width: fit-content;
  align-items: center;
  height: 28px;
  /* background: rgba(255,255,255,0.18); */
  background: #E3E3E3;
  border-radius: 14px;
  margin: 0 0 8px 0;
  padding: 0 13px;
}
.about-role-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 12px;
  color: #353535;
  white-space: nowrap;
}
.about-col-photo {
  position: absolute;
  left: 45%;
  width: 27%;
  top: -6%;
  height: 75%;
  z-index: 2;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.about-vivek {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.about-trusted {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding-top: 8%;
  max-width: 85%;
}
.about-trusted h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: clamp(18px, 2.1vw, 32px);
  color: var(--c-text); line-height: 1.2;
  margin-bottom: 10px;
}
.about-ceo {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: clamp(13px, 1.25vw, 18px);
  color: var(--c-mid);
}
.about-col-right {
  flex: 0 0 240px;
  padding-top: 12px;
  margin: 10%;
  z-index: 4;
}
.about-stat-big {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--c-text);
  line-height: 1.15;
}
.about-stat-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: clamp(13px, 1.25vw, 17px);
  color: var(--c-mid); 

  margin-bottom: 4px;
  line-height: 1.4;
}
.about-stat-line {
  width: 80%; height: 1px;
  background: #ccc; margin: 16px 0;
}
.about-meet-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 22px;
  height: 48px;
  background: var(--c-gray2);
  border-radius: 24px;
  margin-top: 24px;
  transition: background .2s;
}
.about-meet-btn:hover { background: #e8e8e8; }
.about-meet-btn span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: clamp(13px, 1.15vw, 15px);
  color: var(--c-text); white-space: nowrap;
}

/* Mobile-only "About" layout — hidden by default, shown ≤767px */
.about-mobile-only { display: none; }

/* ============================================================
   WORLD RECORDS
   ============================================================ */
#records {
  background: var(--c-ea);
  padding: 52px 0 40px;
}
.records-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.records-sub {
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: clamp(14px, 1.84vw, 26.5px); color: var(--c-mid);
  margin-bottom: 4px;
}
.records-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.47vw, 50px); color: var(--c-dark);
  margin-bottom: 36px;
}
.records-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.records-track-wrap .carousel-arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
  margin: 0 4px;
}
.records-track-wrap .records-track-outer {
  flex: 1;
  min-width: 0;
}
.records-track-outer { overflow: hidden; padding: 0 60px; }
.records-cards {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.record-card {
  flex: 0 0 calc(25% - 16px);
  min-width: 200px;
  max-width: 286px;
  aspect-ratio: 286 / 334;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.record-card img { width: 100%; height: 100%; object-fit: cover; }

/* 4th record card: world-record video thumbnail */
.record-card-video {
  background: linear-gradient(135deg, #1a1830 0%, #39374d 100%);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.record-video-play {
  position: relative;
  width: 80px; height: 80px;
}
.record-play-circle {
  display: block;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  position: absolute; inset: 0;
}
.record-play-tri {
  display: block;
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 26px;
  border-color: transparent transparent transparent #fff;
}

/* ============================================================
   AWARDS
   ============================================================ */
#awards {
  background: var(--c-ea);
  padding: 0 var(--pad-x) 40px;
}
.awards-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.awards-card {
  max-width: calc(var(--max-w) - 138px);
  margin: 0 auto;
  background: var(--c-white);
  border-radius: 48px;
  box-shadow: var(--sh-card);
  padding: 30px 0 30px;
  overflow: hidden;
  position: relative;
}
.awards-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.47vw, 50px); color: var(--c-dark);
  text-align: center; margin-bottom: 24px;
}
.awards-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.awards-track-wrap .carousel-arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
  margin: 0 4px;
}
.awards-track-wrap .awards-track-outer {
  flex: 1;
  min-width: 0;
}
.awards-track-outer { overflow: hidden; padding: 0 60px; }
.awards-track {
  display: flex; gap: 32px;
  transition: transform .4s ease;
}
.award-img-card {
  flex: 0 0 calc(25% - 24px);
  min-width: 200px;
  aspect-ratio: 244 / 325;
}
.award-img-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
#clients {
  background: #000;
  padding: 50px 0 40px;
}
.clients-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.clients-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.47vw, 50px); color: var(--c-white);
  text-align: center; margin-bottom: 32px;
}
.clients-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.clients-track-wrap .carousel-arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
  margin: 0 4px;
}
.clients-track-outer { flex: 1; min-width: 0; overflow: hidden; }
.clients-logos {
  display: flex; gap: 0;
  transition: transform .4s ease;
}
.client-logo {
  flex: 0 0 200px;
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 20px;
  background: #fff;
  border-radius: 12px;
  margin: 5px;
}
.client-logo img { max-height: 80px; max-width: 160px; object-fit: contain; }
.clients-divider {
  height: 1px; background: #333;
  margin: 20px 0 0; max-width: 1300px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   FEATURED MEDIA
   ============================================================ */
#mediafeat {
  background: #000;
  padding: 40px var(--pad-x);
}
.mediafeat-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.mediafeat-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3.14vw, 45px); color: var(--c-white);
  text-align: center; white-space: normal;
  margin-bottom: 24px;
}
.mediafeat-player {
  position: relative;
  max-width: 791px;
  width: 100%;
  aspect-ratio: 791 / 421;
  background: #d9d9d9;
  border-radius: 40px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.mediafeat-circle { width: 90px; height: 90px; position: relative; z-index: 1; display: none; }
.mediafeat-tri { display: none; }
.mediafeat-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.mediafeat-youtube {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: none;
  border: 0;
}
.mediafeat-player.playing .mediafeat-bg,
.mediafeat-player.playing::before,
.mediafeat-player.playing::after { display: none; }
.mediafeat-player.playing .mediafeat-youtube { display: block; }
/* CSS play button for media section */
.mediafeat-player::before {
  content: '';
  display: block;
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  z-index: 1;
}
.mediafeat-player::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  width: 0; height: 0;
  border-style: solid;
  border-width: 18px 0 18px 32px;
  border-color: transparent transparent transparent #39374d;
  margin-left: 6px;
}

/* ============================================================
   PRESS LOGOS
   ============================================================ */
#press {
  background: #000;
  padding: 30px var(--pad-x) 40px;
}
.press-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.press-logos {
  display: flex; gap: 24px;
  align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.press-logo {
  flex: 0 0 240px;
  height: 90px;
  background: var(--c-white);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.press-logo img { max-height: 70px; max-width: 200px; object-fit: contain; }

/* ============================================================
   SEO CONTENT
   ============================================================ */
#seocontent {
  background: #000;
  padding: 50px 0;
}
.seocontent-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.seocontent-divider {
  height: 0; border: none;
  border-top: 1px solid #333;
  margin: 36px 0;
}
.seocontent-inner p {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.75vw, 25px); color: #fff;
  line-height: 1.4; margin-bottom: 16px;
  text-align: justify;

}
.seocontent-inner p.heading {
  font-weight: 700; font-size: clamp(15px, 1.85vw, 26px);
  margin-top: 8px; color: #fff;
  text-align: left;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  position: relative;
  min-height: 580px;
  background: #ededed;
}
.faq-bg { display: none; }
.faq-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--pad-x) 50px;
  position: relative; z-index: 1;
}
.faq-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 400; font-size: clamp(24px, 2.78vw, 40px);
  color: #000; text-align: center;
  margin-bottom: 20px;
}
.faq-search-wrap {
  max-width: 486px; width: 100%;
  height: 52px;
  background: var(--c-white);
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 0 auto 32px;
  display: flex; align-items: center;
  padding: 0 16px; gap: 8px;
}
.faq-search-wrap input {
  flex: 1; border: none; outline: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 16px;
  color: var(--c-dark); background: transparent;
}
.faq-list {
  max-width: 900px; width: 100%;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--c-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 60px;
  cursor: pointer;
  gap: 12px;
}
.faq-q .faq-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400; font-size: clamp(14px, 1.25vw, 18px);
  color: var(--c-dark);
}
.faq-q .faq-toggle {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 300;
  color: var(--c-dark); line-height: 1;
  transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: clamp(13px, 1.11vw, 16px);
  color: #555; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ============================================================
   LEAD FORM
   ============================================================ */
#leadform {
  background: #000;
  padding: 70px var(--pad-x) 60px;
}
.form-outer {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.form-card {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(84.85deg, #000000 2.81%, #2d2d2d 122.96%);
  border: 0.5px solid #fff;
  border-radius: 48px;
  padding: 50px 50px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.form-title {
  font-family: 'coolvetica', 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px); color: #fff;
  margin-bottom: 6px;
}
.form-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 15px;
  color: #cac9cf; margin-bottom: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1/-1; }
.form-grid > .form-group.age { max-width: 130px; }
.form-group label {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 13px; color: #fff;
}
.form-group input,
.form-group select {
  height: 46px;
  border: none; border-radius: 6px;
  padding: 0 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 14px;
  color: var(--c-dark); background: #fff;
  outline: none; transition: box-shadow .2s;
  width: 100%;
}
.form-group select{
  width: unset;
}
.form-group input:focus,
.form-group select:focus { box-shadow: 0 0 0 2px var(--c-red); }
.radio-row,
.radio-col { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.radio-col { flex-direction: column; align-items: flex-start; }
.radio-opt {
  display: flex; align-items: center; gap: 8px;
  padding: 0 14px; height: 36px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 4px;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 13px; color: #fff;
  transition: all .2s;
}
.radio-opt:has(input:checked) { border-color: var(--c-red); color: var(--c-red); background: rgba(216,57,60,.1); }
.radio-opt input { display: none; }
.phone-row { display: flex; gap: 8px; }
.phone-prefix {
  display: flex; align-items: center;
  height: 46px; padding: 0 12px;
  border: none; border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 13px; color: #989898;
  background: #fff; white-space: nowrap; flex-shrink: 0; gap: 4px;
}
.form-submit-btn {
  margin-top: 24px;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  padding: 0 32px; 
  height: 44px;
  background: var(--c-red);
  border-radius: 6px; 
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500; 
  font-size: 15px;
  color: #fff; 

  border: none; 
  transition: background .2s;
}
.form-submit-btn:hover { background: #c02d30; }

/* ============================================================
   COURSE DIRECTORY
   ============================================================ */
#directory {
  background: #000;
  padding: 50px 0 30px;
}
.dir-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.dir-section { margin-bottom: 8px; }
.dir-section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 18px;
  color: #fff; margin-bottom: 6px;
}
.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.dir-item {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 14px;
  color: #fff; line-height: 42px;
  cursor: pointer; transition: color .2s;
}
.dir-item:hover { color: var(--c-red); }
.dir-divider { height: 1px; background: #fff; margin: 6px 0 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #000;
  padding: 30px 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-link-btn {
  display: flex; align-items: center; justify-content: center;
  border-radius: 47px;
  background: var(--c-f3);
  border: 1px solid #ddd;
  padding: 0 24px;
  height: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400; font-size: clamp(14px, 1.47vw, 21px);
  color: #000; cursor: pointer;
  transition: background .2s;
}
.footer-link-btn:hover { background: #e8e8e8; }
.footer-bottom {
  background: var(--c-f3);
  padding: 30px 0 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  border-top: 1px solid #e0e0e0;
}
.footer-bottom .bb-coach-img { height: 100px; object-fit: contain; }
.footer-bottom .one-app-img  { height: 42px;  object-fit: contain; }
.footer-social img { height: 36px; }
.footer-apps { display: flex; align-items: center; gap: 14px; }
.footer-apps img { height: 40px; object-fit: contain; }
.footer-divider-line { width: min(1407px, 90%); height: 1px; background: #d0d0d0; }
.footer-copy {
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: 13px; color: #888; text-align: center;
  padding-bottom: 10px;
}

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
#sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000;
  height: 70px;
  display: flex; align-items: center; justify-content: center;
}
.sticky-inner {
  max-width: var(--max-w);
  width: 100%;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
}
.sticky-buttons {
  display: flex;
  gap: 12px;
  height: 52px;
}
.sticky-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 28px;
  background: #2d2d2d; cursor: pointer;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: clamp(13px, 1.1vw, 16px);
  text-transform: uppercase;
  color: #f7f4fb; 

  white-space: nowrap;
  transition: background .2s;
}
.sticky-whatsapp:hover { background: #1a1a1a; }
.sticky-book {
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
  background: var(--c-red); cursor: pointer;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: clamp(13px, 1.1vw, 16px);
  text-transform: uppercase;
  color: #f7f4fb; 

  white-space: nowrap;
  transition: background .2s;
}
.sticky-book:hover { background: #c02d30; }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
#scroll-top {
  position: fixed; right: 20px; bottom: 90px;
  background: var(--c-dark); color: #fff;
  border-radius: 50%; width: 44px; height: 44px;
  display: none;
  align-items: center; justify-content: center;
  font-size: 20px; z-index: 999;
  text-decoration: none; box-shadow: 0 2px 12px rgba(0,0,0,.2);
  transition: background .2s;
}
#scroll-top.show { display: flex; }
#scroll-top:hover { background: var(--c-red); }

/* ============================================================
   TABLET (1024px - 1199px)
   ============================================================ */
@media (max-width: 1199px) {
  :root { --pad-x: 40px; }

  .hero-grid {
    grid-template-columns: 1fr 360px 1fr;
  }
  .hero-vivek { max-width: 360px; height: auto; max-height: 560px; }

  .about-grid { gap: 20px; }
  .about-col-right { flex: 0 0 220px; }
  .about-heading-row { max-width: calc(100% - 248px); }
  .about-shape-wrap { min-height: 420px; }
  .about-name { font-size: 24px; }
  .about-role-tag { height: 26px; margin-bottom: 6px; }
  .about-role-text { font-size: 11px; }
  .about-joint-notch, .about-joint-notch-right, .about-joint-notch-left {
    width: 44px;
    height: 44px;
  }
  .about-joint-notch { left: calc(76% - 22px); top: calc(56% - 22px); }
  .about-joint-notch-right { left: calc(77% - 10px); top: calc(53% - 28px); }
  .about-joint-notch-left { left: calc(73% - 16px); top: calc(59% - 16px); }

  .about-col-left { max-width: 100%;}

  .courses-track .course-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 200px;
  }

  .records-cards .record-card {
    flex: 0 0 calc(50% - 12px);
    max-width: 280px;
  }

  .product-card { width: 340px; flex: 0 0 340px; }
  .products-row { gap: 30px; }
  .product-card-top { height: 260px; }

  /* Events: shrink card, keep dots */
  .event-layout { gap: 14px; }
}

/* ============================================================
   MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --pad-x: 20px; }

  body { padding-bottom: 70px; }

  /* ── Navbar ── */
  .nav-links {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--c-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 1001;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 18px; font-weight: 400;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta-link {
    background: transparent !important;
    color: var(--c-red) !important;
    padding: 14px 0 !important;
    border-radius: 0;
    font-weight: 500 !important;
  }
  .nav-hamburger { display: flex; }
  .nav-mobile-only { display: flex !important; }

  /* ── Hero ── */
  #hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding: 0;
    gap: 0;
  }
  .hero-left {
    grid-row: 2;
    grid-column: 1;
    padding: 0px 20px 16px;
    text-align: center;
    align-items: center;
    background: var(--c-hero-bg);
  }
  .hero-left .tag-india { font-size: 13px; margin-bottom: 4px; }
  .hero-left .name      { font-size: 42px; text-align: center; }
  .hero-left .desc      { font-size: 15px; text-align: center; max-width: 320px; }

  .hero-vivek-wrap {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 480px;
    min-height: 480px;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-vivek-wrap picture {
    z-index: 1;
  }
  .hero-vivek {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }
  .hero-vivek-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,24,48,0.45) 0%, rgba(26,24,48,0.45) 55%, var(--c-hero-bg) 100%);
    pointer-events: none;
  }

  .hero-right {
    grid-row: 3;
    grid-column: 1;
    padding: 0 20px 32px;
    align-items: center;
    text-align: center;
    background-color: var(--c-hero-bg);
  }
  .hero-right-text {
    font-size: 44px;

    line-height: 88%;
    margin-bottom: 24px;
    text-align: center;
  }
  .hero-cta { width: 100%; max-width: 260px; height: 44px; }
  .hero-cta span { font-size: 14px; }

  /* ── Events ── */
  .event-layout { flex-direction: column; gap: 12px; }
  .event-card { flex: none; width: 100%; max-width: 100%; border-radius: 6px; }
  .event-dots { flex-direction: row; }
  .event-play-wrap { width: 60px; height: 60px; }
  .event-play-circle { width: 60px; height: 60px; }
  .event-play-tri {
    border-width: 9px 0 9px 17px;
  }

  /* ── Transformation ── */
  #transformation { padding: 24px 20px; }
  #transformation .trans-card { min-height: 320px; border-radius: 28px; }
  .trans-bg-img { width: 100%; left: 0; opacity: 0.4; border-radius: 0 28px 28px 0; }
  .trans-content { padding: 0 20px; max-width: 60%; }
  .trans-text1 { font-size: 16px; }
  .trans-text2 { font-size: 20px; }

  /* ── Unlock ── */
  #unlock { padding: 20px; }
  .unlock-btn { height: 46px; width: min(320px, 100%); }
  .unlock-btn span { font-size: 14px; }

  /* ── Products ── */
  .products-heading { font-size: 28px; padding: 28px 20px 24px; }
  .products-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }
  .product-card { width: 100%; max-width: 394px; flex: none; }
  .product-card-top { height: 220px; }

  /* ── Testimonials ── */
  .test-inner { padding: 0 20px; }
  .test-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 160px;
  }
  .carousel-arrow.left  { left:  -6px; }
  .carousel-arrow.right { right: -6px; }
  .carousel-arrow { width: 32px; height: 32px; }
  .carousel-arrow img { width: 18px; height: 18px; }

  /* ── Courses ── */
  .courses-inner { padding: 0 20px; }
  .courses-sub { font-size: 15px; }
  .courses-track .course-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 160px;
  }

  /* ── Get Ready ── */
  .getready-title { font-size: 22px; }
  #getready { padding: 24px 20px; gap: 16px; }
  .getready-btn { height: 44px; }
  .getready-btn span { font-size: 14px; }
  .courses-view-more { height: 44px; padding: 0 24px; margin-top: 16px; }
  .courses-view-more span { font-size: 14px; }
  #courses { padding: 40px 0 28px; }

  /* ── About ── */
  .about-wrap { padding: 0 20px; }
  .about-heading-row {
    display: block;
    max-width: 100%;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #1a1a1a;
  }
  .about-heading { font-size: 24px; text-align: left; }
  .about-heading-chevron { display: none; }

  /* Desktop card layout is replaced by .about-mobile-only below */
  .about-grid { display: none; }

  .about-mobile-only { display: block; }

  .about-m-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .about-m-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  .about-m-tag {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    background: #E3E3E3;
    border-radius: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #353535;
    white-space: nowrap;
  }

  .about-m-stat {
    position: relative;
    margin: 0 -20px 0 0;
    padding: 14px 0 14px 20px;
    border: 1px solid #1a1a1a;
    border-right: none;
    border-radius: 999px 0 0 999px;
  }
  .about-m-stat + .about-m-stat { margin-top: 18px; }
  .about-m-stat .about-stat-big {
    font-size: 26px;
    line-height: 1.15;
  }
  .about-m-stat .about-stat-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--c-mid);
    line-height: 1.4;
  }

  .about-m-trusted { margin-top: 32px; }
  .about-m-trusted h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .about-m-trusted .about-ceo {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--c-mid);
  }

  .about-m-photo-box {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    background: #E3E3E3;
    border-radius: 24px;
    padding-top: 24px;
    display: flex;
    justify-content: center;
    overflow: visible;
  }
  .about-m-vivek {
    width: 78%;
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: -36px;
  }
  .about-m-video-box {
    position: relative;
    z-index: 1;
    margin-top: 5%;
    height: 170px;
    background: #E3E3E3;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Records ── */
  .records-inner { padding: 0 20px; }
  .records-track-outer { padding: 0 30px; }
  .record-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 140px; max-width: none;
  }

  /* ── Awards ── */
  #awards { padding: 0 20px 30px; }
  .awards-card { border-radius: 20px; padding: 20px 0; }
  .awards-track-outer { padding: 0 30px; }
  .award-img-card {
    flex: 0 0 calc(50% - 16px);
    min-width: 150px;
  }

  /* ── Client Logos ── */
  .clients-inner { padding: 0 20px; }
  .client-logo { flex: 0 0 calc(50% - 10px); height: 80px; }

  /* ── Media Featured ── */
  #mediafeat { padding: 30px 20px; }
  .mediafeat-player { border-radius: 20px; }
  .mediafeat-circle { width: 60px; height: 60px; }
  .mediafeat-tri { width: 26px; height: 26px; }

  /* ── Press ── */
  #press { padding: 24px 20px 30px; }
  .press-logos { gap: 12px; }
  .press-logo { flex: 0 0 calc(50% - 8px); height: 70px; }
  .press-logo img { max-width: 120px; max-height: 50px; }

  /* ── SEO ── */
  .seocontent-inner { padding: 0 20px; }
  .seocontent-inner p { font-size: 15px; }

  /* ── FAQ ── */
  .faq-inner { padding: 40px 20px 40px; }
  .faq-search-wrap { max-width: 100%; }
  .faq-q .faq-text { font-size: 14px; }

  /* ── Form ── */
  #leadform { padding: 50px 20px 40px; }
  .form-card { padding: 28px 20px 24px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-grid > .form-group.age { max-width: 100%; }
  .phone-row { flex-direction: row; }

  /* ── Directory ── */
  .dir-inner { padding: 0 20px; }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-item { font-size: 13px; line-height: 36px; }

  /* ── Footer ── */
  .footer-inner { padding: 0 20px; }
  .footer-links { gap: 10px; }
  .footer-link-btn { font-size: 14px; height: 42px; padding: 0 16px; }

  /* ── Sticky bar ── */
  #sticky-bar { height: 60px; }
  .sticky-inner { padding: 0 12px; justify-content: center; gap: 6px; }
  .sticky-buttons { height: 44px; }
  .sticky-whatsapp,
  .sticky-book { padding: 0 18px; font-size: 14px; }

  #scroll-top { right: 12px; bottom: 80px; width: 38px; height: 38px; font-size: 16px; }
}

/* ============================================================
   SMALL MOBILE (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero-right-text { font-size: 36px; }
  .hero-left .name  { font-size: 34px; }
  .test-card,
  .course-card,
  .record-card,
  .award-img-card { flex: 0 0 calc(100% - 4px); }
  .dir-grid { grid-template-columns: 1fr; }
  .products-row { padding: 0 12px; }
  .form-card { padding: 20px 16px 20px; }
}
