@font-face {
  font-family: getty;
  src: url("./assets/GentySans-Regular.ttf");
}

:root {
  --header-bg: #00bfa6;
  --hero-bg: #f7f5ef;
  --text-white: #ffffff;
  --contact-bg: #ffd93d;
  --contact-hover: #f59e0b;
  --hero: #f7f5ef;
  --bg: #ffffff;
  --headline: #392f2f;
  --accent-pink: #ff6f91;
  --wave-fill: #ffffff;
  --muted: #7b726f;
  --teal-deep: #007f73;
  --text-light: #f1fff8;
  --white: #ffffff;
  --left-pad: 120px;
  --wave-right: #f7f1e8;
  --wave-height: 120px; /* overall wave block height */
  --wave-pink: #f57da4; /* pink accent color */
  --wave-cream: #fbf5ec; /* cream foreground color */
  --wave-pink-offset: -10px;
  --primary-pink: #ff6f91;
  --text-dark: #4a4a4a;
  --text-medium: #666666;
  --text-light: #888888;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --star-gold: #ffd700;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --blue: #4a90e2;
  --primary-pink: #ff6f91;
  --teal-primary: #00bfa6;
  --teal-dark: #00a693;
  --text-dark: #4a4a4a;
  --text-medium: #666666;
  --text-light: #888888;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border-light: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --contact-bg: #ffd93d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: getty;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--hero-bg);
  line-height: 1.6;
}

/* HEADER STYLES */
header {
  background: var(--header-bg);
  position: relative;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 1000;
}

.logo {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  opacity: 0.8;
}

.contact-btn {
  background: var(--contact-bg);
  color: #000;
  border: none;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  background: var(--contact-hover);
}

/* Mobile Menu Toggle */
#menu {
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text);
  z-index: 1001;
  font-size: 2rem;
  position: relative;
}
#menu:hover {
  color: var(--accent);
  transform: scale(1.1);
}

/* mobile menu */
.menuBar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 191, 166, 0.98);
  backdrop-filter: blur(10px);
  padding: 120px 40px 40px 40px;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.3s ease;
}

.menuBar nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 300px;
  align-items: center;
}

.menuBar a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  padding: 18px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  text-align: center;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.menuBar a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
.menuBar .cta-quote {
  background: var(--contact-bg);
  color: #000;
  border-color: var(--contact-bg);
}

.menuBar .cta-quote:hover {
  background: var(--contact-hover);
  border-color: var(--contact-hover);
}

/* close icon */
#closeMenu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#closeMenu:hover {
  color: var(--contact-bg);
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.2);
}

/* Wave Bottom Border */
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 30' preserveAspectRatio='none'><path d='M0 15 Q 30 0, 60 15 T120 15 T180 15 T240 15 V30 H0 Z' fill='%23f7f5ef'/></svg>")
    repeat-x;
  background-size: 120px 30px;
}
@media (max-width: 768px) {
  #menu {
    display: block;
    color: white;
  }

  .nav-links {
    display: none;
  }
}
/* HERO SECTION */
.hero {
  background: var(--hero-bg);
  min-height: 80vh;
  padding: 2rem 2%;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 1000px;
  position: relative;
  z-index: 3;
  padding-right: 2rem;
}

a {
  text-decoration: none;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 20vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--headline);
  position: relative;
}

.hero-sub {
  display: block;
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 2.5rem);
  color: var(--accent-pink);
  text-transform: uppercase;
  background: transparent;
  margin-bottom: 2rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--contact-bg);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(16, 16, 16, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
  justify-content: center;
  margin-bottom: 50px;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 16, 16, 0.12);
  background: var(--contact-hover);
}

.hero-figure {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  max-width: 500px;
}

.hero-figure img {
  width: 100%;
  max-width: 900px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

/* Decorative Elements */
.kids-menu {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: clamp(60px, 8vw, 100px);
  height: auto;
  z-index: 4;
  transform: rotate(15deg);
}

.clip-decoration {
  position: absolute;
  top: 10%;
  right: 15%;
  width: clamp(40px, 6vw, 60px);
  height: auto;
  z-index: 5;
}

.sparkles {
  position: absolute;
  top: 20%;
  left: 60%;
  width: clamp(30px, 5vw, 50px);
  height: auto;
  z-index: 4;
  animation: sparkle 2s ease-in-out infinite;
}

.sun-decoration {
  position: absolute;
  bottom: 30%;
  left: 25%;
  width: clamp(40px, 6vw, 60px);
  height: auto;
  z-index: 4;
}

.airplane {
  position: absolute;
  bottom: 25%;
  right: 10%;
  width: clamp(50px, 7vw, 70px);
  height: auto;
  z-index: 4;
  transform: rotate(-10deg) scaleX(-1);
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Bottom Waves */
.bottom-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(80px, 15vh, 140px);
  pointer-events: none;
  z-index: 5;
}
.bottom-waves-why {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(80px, 15vh, 140px);
  pointer-events: none;
  z-index: 5;
  transform: scaleX(-1);
}
.bottom-waves-trainer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(80px, 15vh, 140px);
  pointer-events: none;
  z-index: 5;
}
.bottom-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pink-wave {
  fill: #ff69b4;
}

.white-wave {
  fill: #ffffff;
}
.white-wave-why {
  fill: #ffffff;
}
.white-wave-trainer {
  fill: var(--hero-bg);
}
/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .hero {
    padding: 2rem 3%;
    gap: 1.5rem;
  }

  .hero-content {
    padding-right: 1rem;
  }

  .hero-figure {
    min-height: 350px;
  }
}

/* Mobile Responsive Design */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 4%;
    min-height: auto;
    gap: 2rem;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
    order: 1;
  }

  .hero-figure {
    width: 100%;
    max-width: 350px;
    min-height: 250px;
    order: 2;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin-bottom: 0.5rem;
  }

  .hero-sub {
    font-size: clamp(0.9rem, 5vw, 1.5rem);
    margin-bottom: 1.5rem;
  }

  .cta {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    min-width: 180px;
  }

  /* Reposition decorative elements for mobile */
  .kids-menu {
    bottom: 5%;
    left: 2%;
    width: clamp(40px, 8vw, 60px);
  }

  .clip-decoration {
    top: 5%;
    right: 5%;
    width: clamp(30px, 6vw, 40px);
  }

  .sparkles {
    top: 8%;
    right: 25%;
    left: auto;
    width: clamp(25px, 5vw, 35px);
  }

  .sun-decoration {
    bottom: 15%;
    left: 40%;
    width: clamp(30px, 6vw, 40px);
  }

  .airplane {
    bottom: 8%;
    right: 15%;
    width: clamp(35px, 7vw, 50px);
  }

  .bottom-waves {
    height: clamp(60px, 12vh, 100px);
  }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 2%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 12vw, 2.8rem);
    line-height: 1;
  }

  .hero-sub {
    font-size: clamp(0.8rem, 6vw, 1.2rem);
  }

  .cta {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-width: 160px;
  }

  /* Further adjust decorative elements */
  .kids-menu {
    width: clamp(35px, 10vw, 50px);
  }

  .clip-decoration {
    width: clamp(25px, 8vw, 35px);
  }

  .sparkles {
    width: clamp(20px, 6vw, 30px);
  }

  .sun-decoration {
    top: 76%;
    width: clamp(25px, 8vw, 35px);
  }

  .airplane {
    width: clamp(30px, 9vw, 40px);
  }

  .bottom-waves {
    height: clamp(50px, 10vh, 80px);
  }
}

/* Extra Small Screens */
@media (max-width: 320px) {
  .hero {
    padding: 1rem;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 0.9;
  }

  .hero-sub {
    font-size: 0.7rem;
  }

  .cta {
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
    min-width: 140px;
  }
}

/* High DPI/Retina Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-figure img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    flex-direction: row;
    min-height: 100vh;
    padding: 1rem 3%;
  }

  .hero-content {
    order: 1;
  }

  .hero-figure {
    order: 2;
    max-width: 300px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero-sub {
    font-size: clamp(0.8rem, 3vw, 1.2rem);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .sparkles {
    animation: none;
  }

  .cta {
    transition: none;
  }

  .cta:hover {
    transform: none;
  }
}

/* Focus styles for better accessibility */
.cta:focus {
  outline: 3px solid var(--accent-pink);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero {
    background: white !important;
    min-height: auto;
    padding: 2rem 0;
  }

  .bottom-waves {
    display: none;
  }

  .kids-menu,
  .clip-decoration,
  .sparkles,
  .sun-decoration,
  .airplane {
    display: none;
  }
}
footer::after {
  content: "";
  rotate: 180deg;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 30' preserveAspectRatio='none'><path d='M0 15 Q 30 0, 60 15 T120 15 T180 15 T240 15 V30 H0 Z' fill='%23f8f8f8'/></svg>")
    repeat-x;
  background-size: 120px 30px;
}

/* HERO SECTION */

/* WELCOME SECTION */
section.welcome {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1rem;
  background: #fff;
  position: relative;
  padding-top: 0;
}

section.head h1 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  color: #5a7df0; /* blue */
  text-align: center;
  margin-bottom: 1rem;
}

section.head p {
  max-width: 850px;
  margin: 0 auto 2rem auto;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  color: #222;
  text-align: center;
  line-height: 1.6;
}

/* Features grid */
section.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 3rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.feature {
  text-align: center;
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 0.8rem auto;
}

.feature p {
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

/* Illustration at bottom */
section.illustrate {
  text-align: center;
  margin-top: auto;
}

section.illustrate img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 600px) {
  section.features {
    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;
  }

  .circle {
    width: 70px;
    height: 70px;
  }
}

/* LEARN SECTION WAVE */
.learn-wave {
  height: 40px;
  transform: rotate(180deg);
  position: relative;
  background: linear-gradient(
    to left,
    var(--header-bg) 60%,
    var(--wave-right) 40%
  );
}

.learn-wave::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 40' preserveAspectRatio='none'><path d='M0 20 Q 30 0, 60 20 T120 20 T180 20 T240 20 V40 H0 Z' fill='white'/></svg>")
    repeat-x;
  background-size: 120px 40px;
}

/* LEARN SECTION */
.learn-section {
  display: flex;
  width: 100%;
  height: 90vh;
}

.learn-left {
  width: 60%;
  background: var(--header-bg);
  padding: 65px 120px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#learn-heading {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  margin: 6px 0 40px 0;
  color: var(--teal-deep);
  line-height: 1.02;
  letter-spacing: -0.4px;
}

.learn-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 780px;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
}

.icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.li-text {
  color: var(--hero-bg);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: 2px;
  line-height: 1.35;
  text-align: left;
  display: block;
}

.learn-right {
  width: 40%;
  display: flex;
  justify-content: center;
  background: #fff;
  position: relative;
  box-sizing: border-box;
}

.learn-figure {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.learn-figure img {
  display: block;
  width: 100%;
  height: 110%;
  object-position: center 30%;
}

.learn-right::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.03);
}
.why-it-works {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
}

.why-left {
  position: relative;
  width: 60%;
  overflow: hidden;
}

.why-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-right {
  width: 40%;
  padding: 20px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin: 40px auto;
}

.why-right h2 {
  font-size: 2.7rem;
  color: #00897b; /* teal */
  font-weight: 700;
  text-align: left;
  line-height: 3.5rem;
}

.why-right p,
.wul {
  font-size: clamp(0.95rem, 1.2vw, 3.1rem);
  line-height: 1.6;
  color: #333;
  text-align: left;
}
.wave-stack {
  width: 100%;
  height: var(--wave-height);
  overflow: hidden;
  line-height: 0;
  position: relative;
  pointer-events: none; /* decorative only */
}

/* SVG fills entire container and scales responsively */
.wave-stack .wavesvg {
  display: block;
  width: 100%;
  height: 100%;
}

/* path styles */
.wave-stack .wave-cream {
  fill: var(--wave-cream);
  transition: fill 0.2s;
}

/* pink is above cream; we nudge it vertically so it peeks correctly */
.wave-stack .wave-pink {
  fill: var(--wave-pink);
  transform: translateY(var(--wave-pink-offset));
  transform-origin: center;
  transition: transform 0.2s, fill 0.2s;
}

/* Example responsive tweak: smaller screens show shorter wave height */
@media (max-width: 900px) {
  :root {
    --wave-height: 100px;
    --wave-pink-offset: -8px;
  }
}
@media (max-width: 480px) {
  :root {
    --wave-height: 80px;
    --wave-pink-offset: -6px;
  }
}
/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .hero {
    padding: 40px 3%;
  }

  .learn-left {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 1000px) {
  .learn-left {
    padding-left: 48px;
    padding-right: 36px;
  }

  #learn-heading {
    font-size: 46px;
  }

  .li-text {
    font-size: 16px;
  }

  .icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 40px 5%;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    margin-top: 6px;
  }

  .hero-figure {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(32px, 7vw, 64px);
  }

  .hero-sub {
    font-size: clamp(18px, 4vw, 28px);
  }
  .fa {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .fa {
    margin-right: 0;
  }
  header {
    padding: 0 1rem;
    height: 70px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  header::after {
    height: 20px;
    background-size: 80px 20px;
  }

  .circle {
    width: 70px;
    height: 70px;
  }
  .why-it-works {
    flex-direction: column;
  }
}
.circle img {
  height: 100%;
  width: 100%;
}
@media (max-width: 760px) {
  .learn-section {
    flex-direction: column;
    min-height: auto;
  }
  .fa {
    margin-right: 0;
  }
  .learn-wave {
    background: var(--header-bg);
  }
  .learn-left,
  .learn-right {
    width: 100%;
  }

  .learn-left::before {
    right: 0;
  }

  .learn-left {
    padding: 48px 28px;
  }

  .learn-right {
    min-height: 300px;
  }

  #learn-heading {
    font-size: clamp(28px, 6vw, 36px);
    text-align: center;
    margin-bottom: 40px;
  }

  .learn-list {
    margin-top: 12px;
  }

  .learn-list li {
    align-items: center;
    gap: 14px;
  }

  .li-text {
    font-size: 15px;
    text-align: left;
  }

  .learn-figure img {
    object-position: center center;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 28px 5%;
    min-height: 420px;
  }

  .cta {
    font-size: 16px;
    padding: 10px 18px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
    line-height: 1;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0 0.75rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .mobile-menu {
    padding: 1rem 0.75rem;
  }

  section.head {
    padding: 0 0.5rem;
  }

  .learn-left {
    padding: 36px 20px;
  }
}

/* Larger screens */
@media (min-width: 1400px) {
  header {
    padding: 3.5rem 4rem;
  }

  .nav-links {
    gap: 3rem;
  }

  .hero {
    padding: 60px 3%;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.nav-links a:focus,
.contact-btn:focus,
.mobile-contact-btn:focus,
.cta:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-title {
    color: #000;
  }

  .hero-sub {
    color: #e91e63;
  }
}
.grid2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}
.containers {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  background: var(--bg);
}

.section-content,
.section-contents {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 500px;
}

.text-content {
  flex: 1;
  padding: 20px 0;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trainer-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.amitabh-image {
  width: 100%;
  height: 500px;
  margin-bottom: 70px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.section-title {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trainer-name {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00d4aa;
  margin-bottom: 30px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.description {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.achievements {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.ps {
  font-size: 1.3rem;
  color: #007f73;
  line-height: 1.8;
}

.highlight {
  color: var(--header-bg);
  font-weight: 600;
}

.image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 15px;
  font-style: italic;
  line-height: 1.4;
}
.section {
  position: relative;
}
.section-2 .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: center;
  margin-top: -100px;
}

.section-2 .description {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 25px;
  font-weight: 500;
}

.section-2 .achievements {
  font-size: 1.3rem;
  color: #444;
  font-weight: 500;
}

/* Second section styles */
.section-2 .section-title {
  color: #666;
}

.section-2 .trainer-name {
  color: #ff6b6b;
}

.section-2 .highlight {
  color: #ff6b6b;
}

/* Responsive design */
@media (max-width: 768px) {
  .section-2 .text-content {
    border-top: 2px solid black;
  }
  .section-content,
  .section-contents {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .section-contents {
    flex-direction: column-reverse;
  }
  .trainer-name {
    font-size: 2.5rem;
  }

  .trainer-image {
    max-width: 350px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .trainer-name {
    font-size: 2rem;
  }

  .description,
  .achievements {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }
}
.fa {
  text-align: center;
  margin-right: 28px;
}
.course-description-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--hero-bg);
  position: relative;
  overflow-x: hidden;
}
.cdi {
  position: absolute;
  bottom: -5%;
  right: -5%;
  opacity: 0.3;
}
.course-header {
  text-align: center;
  margin-bottom: 50px;
}

.course-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(255, 111, 145, 0.1);
}

.course-intro {
  font-size: 1.6rem;

  font-weight: 600;
  color: var(--text-medium);
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

.course-modules {
  margin: 0 auto;
  max-width: 900px;
}

.module {
  background: var(--bg-white);
  border: 2px solid;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-light);
}

.module:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-color: var(--primary-pink);
}

.module-header {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-white);
  transition: background-color 0.3s ease;
  position: relative;
}

.module-header:hover {
  background: var(--hover-bg);
}

.module-header.active {
  background: var(--hover-bg);
}

.module-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}
.module-titles,
.module-subtitles {
  font-size: 1.6rem;
  color: var(--text-medium, #666);
  line-height: 1.4;
  font-weight: 500;
}
.module-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pink);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 2px solid #e63e6b;
  color: #e63e6b;
}

.module-toggle:hover {
  background: #e63e6b;
  transform: scale(1.1);
}

.module-toggle::before,
.module-toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.module-toggle::after {
  transform: rotate(90deg);
}

.module-header.active .module-toggle::after {
  transform: rotate(0deg);
  opacity: 0;
}

.module-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--bg-white);
}

.module-content.active {
  max-height: 500px;
  padding: 0 28px 28px 28px;
}

.module-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 500;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-description-section {
    padding: 40px 15px;
  }

  .course-header {
    margin-bottom: 40px;
  }

  .course-title {
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .course-intro {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    padding: 0 10px;
  }

  .module {
    margin-bottom: 12px;
    border-radius: 8px;
  }

  .module-header {
    padding: 20px 20px;
    flex-direction: row;
    align-items: center;
  }

  .module-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
    letter-spacing: 0.5px;
    padding-right: 15px;
  }

  .module-toggle {
    width: 28px;
    height: 28px;
  }

  .module-toggle::before,
  .module-toggle::after {
    width: 14px;
    height: 2.5px;
  }

  .module-content.active {
    padding: 0 20px 20px 20px;
  }

  .module-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  .course-description-section {
    padding: 30px 12px;
  }

  .module-header {
    padding: 18px 16px;
  }

  .module-title {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    padding-right: 12px;
  }

  .module-content.active {
    padding: 0 16px 16px 16px;
  }

  .module-text {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .module,
  .module-header,
  .module-toggle,
  .module-content {
    transition: none;
  }
}

.module-header:focus {
  outline: 3px solid var(--primary-pink);
  outline-offset: 2px;
}

.module-toggle:focus {
  outline: 3px solid white;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .course-title {
    color: #d91e63;
    text-shadow: none;
  }

  .module-title {
    color: #d91e63;
  }

  .module {
    border: 3px solid #333;
  }
}

/* Animation for smooth reveal */
.course-description-section {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.level-modules-section {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 40px 20px;
}

.module-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.module-row:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 130px;
  right: 0;
  height: 1px;
  background: var(--border-light, #e5e5e5);
}

.level-badge {
  width: 150px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.level-1 {
  background: linear-gradient(135deg, #4ecdc4, #3ba99c);
}

.level-2 {
  background: linear-gradient(135deg, #4ecdc4, #3ba99c);
}

.level-3 {
  background: linear-gradient(135deg, #4ecdc4, #3ba99c);
}

.module-content-wrapper {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark, #333);
  margin-bottom: 5px;
}

.module-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark, #333);
}

.module-description {
  font-size: 1.1rem;
  color: var(--text-medium, #666);
  line-height: 1.4;
  font-weight: 500;
}

.module-left {
  flex: 0 0 45%;
  text-align: center;
}

.module-right {
  flex: 0 0 45%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .level-modules-section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  .module-row {
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }

  .module-row:not(:last-child)::after {
    display: none;
  }

  .level-badge {
    margin-bottom: 20px;
    margin-right: 0;
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }

  .module-content-wrapper {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .module-left,
  .module-right {
    flex: 1;
  }

  .module-title,
  .module-subtitle {
    font-size: 1.2rem;
  }

  .module-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .level-modules-section {
    padding: 20px 12px;
  }

  .level-badge {
    width: 70px;
    height: 70px;
    font-size: 0.9rem;
  }

  .module-title,
  .module-subtitle {
    font-size: 1.1rem;
  }

  .module-description {
    font-size: 0.95rem;
  }
}

/* Animation */
.level-modules-section {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.module-row {
  animation: slideInLeft 0.6s ease-out both;
}

.module-row:nth-child(2) {
  animation-delay: 0.1s;
}

.module-row:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .level-modules-section,
  .module-row {
    animation: none;
  }
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  rotate: 180deg;
  height: 30px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 30' preserveAspectRatio='none'><path d='M0 15 Q 30 0, 60 15 T120 15 T180 15 T240 15 V30 H0 Z' fill='%23f8f8f8'/></svg>")
    repeat-x;
  background-size: 120px 30px;
}
.banner {
  position: relative;
}
.faqs-section {
  width: 100%;
  background: var(--bg-light);
  padding: 0 20px 120px 20px;
  position: relative;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
}

.faqs-header {
  text-align: center;
  margin-bottom: 50px;
}

.faqs-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 111, 145, 0.1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.faq-item:hover {
  border-color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--primary-pink);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 111, 145, 0.05);
}

.faq-question:focus {
  outline: 3px solid var(--primary-pink);
  outline-offset: -3px;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pink);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle:hover {
  background: #e63e6b;
  transform: scale(1.1);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-question.active .faq-toggle::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--bg-white);
}

.faq-answer.active {
  max-height: 300px;
  padding: 0 28px 28px 28px;
}

.faq-answer-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 500;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}
.wave-separator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--teal-primary);
  overflow: hidden;
}

.wave-separator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'><path d='M0,30 Q150,0 300,30 T600,30 T900,30 T1200,30 V60 H0 Z' fill='%23f8f8f8'/></svg>")
    repeat-x;
  background-size: 300px 60px;
  animation: wave 8s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300px);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.gap {
  gap: 20px;
}

.banner h1 {
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 900;
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  z-index: 1;
  padding-top: 50px;
  text-align: center;
  color: var(--accent-pink);
}

.banner p {
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Card Styling */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card {
  border-color: rgba(255, 111, 145, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 111, 145, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--primary);
  font-weight: 700;
}

/* Contact List */
.contact-list {
  list-style: none;
  margin: 0 0 40px;
  display: grid;
  gap: 20px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: var(--text);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-list li:hover {
  background: #ff6f915b;
  border-color: #ff6f9109;
  transform: translateX(8px);
}

.contact-list li::before {
  font-size: 24px;
  min-width: 32px;
  text-align: center;
}

.contact-list li:nth-child(1)::before {
  content: "📞";
}
.contact-list li:nth-child(2)::before {
  content: "✉️";
}
.contact-list li:nth-child(3)::before {
  content: "📍";
}

/* Map */
.map {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s ease;
}

.map:hover iframe {
  filter: grayscale(0) contrast(1.2);
}

/* Form Styling */
.form {
  display: grid;
  gap: 24px;
  margin-bottom: 50px;
}

.form h3 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--primary);
  font-weight: 700;
}

/* Enhanced Input Styling */
.input {
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--primary);
  padding: 20px 24px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(255, 111, 145, 0.1);
  min-height: 64px;
}

.input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 111, 145, 0.1);
  transform: translateY(-2px);
}

.input::placeholder {
  color: var(--muted);
  font-weight: 400;
}

/* Enhanced Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: 16px;
  border: none;
  color: #1a1207;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 64px;
  position: relative;
  overflow: hidden;
  background: rgb(255, 111, 145);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  transition: left 0.6s ease;
}

.btn:hover {
  transform: translateY(-4px);
  border: 2px solid rgba(255, 111, 145, 0.4);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(-2px);
}

/* Loading state */
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading .ri-loader-4-line {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Form footer */
.tiny {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.muted {
  color: var(--muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card {
    padding: 24px;
  }

  .contact-list li {
    font-size: 16px;
    padding: 14px 16px;
  }

  .input {
    padding: 16px 20px;
    font-size: 16px;
    min-height: 56px;
  }

  .btn {
    padding: 16px 24px;
    font-size: 16px;
    min-height: 56px;
  }

  .map iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 60px 15px 100px 15px;
  }

  .faqs-header {
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .faq-toggle::before,
  .faq-toggle::after {
    width: 14px;
    height: 2.5px;
  }

  .faq-answer.active {
    padding: 0 24px 24px 24px;
  }
}

@media (max-width: 480px) {
  .faqs-section {
    padding: 50px 12px 80px 12px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer.active {
    padding: 0 20px 20px 20px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-question,
  .faq-toggle,
  .faq-answer {
    transition: none;
  }

  .wave-separator::before {
    animation: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .faqs-title {
    color: #d91e63;
    text-shadow: none;
  }

  .faq-item {
    border: 3px solid #333;
  }

  .faq-question {
    color: #d91e63;
  }
}

/* Animation on scroll */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.horizontal {
  display: flex;
  flex-direction: row;
}
/* Mobile menu improvements */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  #menu {
    display: block;
    color: white;
  }

  /* Hide desktop navigation */
  .nav-links {
    display: none;
  }

  /* Mobile menu bar improvements */
  .menuBar {
    background: rgba(0, 191, 166, 0.95);
    backdrop-filter: blur(20px);
  }
}
.menuBar.active {
  right: 0;
  display: flex;
}

.menuBar a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menuBar a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contact-bg);
}

/* Why section responsive fixes */
@media (max-width: 768px) {
  .why-it-works {
    flex-direction: column;
    min-height: auto;
  }

  .why-left {
    width: 100%;
    height: 300px;
    order: 2;
  }

  .why-right {
    width: 100%;
    padding: 30px 20px;
    order: 1;
    margin: 20px 0;
  }

  .why-right h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
  }

  .why-right p {
    text-align: center;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .wul {
    text-align: left;
    max-width: 300px;
    margin: 20px auto;
  }
}

/* Trainer section responsive improvements */
@media (max-width: 768px) {
  .section .section-content,
  .section .section-contents {
    gap: 30px;
    flex-direction: column-reverse;
    min-height: auto;
    padding: 40px 0;
  }

  .trainer-image,
  .amitabh-image {
    height: 350px;
    max-width: 100%;
  }

  .trainer-name {
    font-size: clamp(2rem, 6vw, 2.5rem);
    text-align: center;
  }

  .description,
  .achievements,
  .ps {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
  }
}

/* Course modules responsive improvements */
@media (max-width: 768px) {
  .level-modules-section {
    padding: 20px 15px;
  }

  .module-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 35px;
  }

  .level-badge {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .module-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .module-left,
  .module-right {
    flex: none;
    width: 100%;
  }
}

/* Contact form responsive improvements */
@media (max-width: 768px) {
  .grid2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-list li {
    text-align: center;
    gap: 8px;
    justify-content: center;
  }

  .map {
    margin-top: 20px;
  }

  .map iframe {
    height: 250px;
  }
}

/* Footer responsive improvements */

/* Small mobile improvements */
@media (max-width: 480px) {
  /* Hero section */
  .hero {
    padding: 20px 3%;
    gap: 1.5rem;
  }

  .hero-content {
    width: 100%;
    margin-top: 10%;
  }

  .hero-title {
    line-height: 0.9;
  }

  /* Welcome section */
  section.head h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  /* Learn section */
  .learn-left {
    padding: 30px 15px;
  }

  #learn-heading {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .learn-list li {
    gap: 12px;
    margin-bottom: 20px;
  }

  .li-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  /* Course section */
  .course-description-section {
    padding: 40px 10px;
  }

  .module-header {
    padding: 16px 18px;
  }

  .module-content.active {
    padding: 0 18px 18px 18px;
  }

  /* FAQs section */
  .faqs-section {
    padding: 40px 10px 60px 10px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .hero {
    padding: 15px 0;
  }

  .hero-title {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  .cta {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-width: 150px;
  }

  .learn-left {
    padding: 25px 12px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .module-header {
    padding: 14px 16px;
  }

  .faq-question {
    padding: 16px 18px;
  }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 70vh;
    flex-direction: row;
  }

  .learn-section {
    flex-direction: row;
    height: auto;
  }

  .learn-left,
  .learn-right {
    width: 50%;
  }

  .why-it-works {
    flex-direction: row;
  }

  .why-left,
  .why-right {
    width: 50%;
  }
}
.footer {
  background: var(--header-bg, #16b39b);
  padding: 50px 20px;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
}
/* Logo column */
.footer-logo img {
  max-width: 200px;
}

/* Titles */
.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: capitalize;
}

/* Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffd93d;
}

/* CTA button */
.footer-cta {
  margin-top: 30px;
  text-align: center;
}
.footer-cta-button {
  display: inline-block;
  background: #ffd93d;
  color: #333;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.footer-cta-button:hover {
  background: #f4c430;
}

/* --- Mobile View --- */
@media (max-width: 720px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-logo {
    flex-direction: row;
  }
  .footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
  }

  .footer-title {
    margin: 0;
    text-align: left;
  }

  .footer-content {
    text-align: right;
  }

  .footer-links {
    align-items: flex-end;
  }

  .programs-right {
    flex-direction: column;
  }

  /* CTA stays below */
  .footer-cta {
    margin-top: 20px;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
}

.whatsapp-float i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}
