/* ==========================================================================
   Namma MBBS - NEET Webinar Landing Page Styles (neet_webinar.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Typography Rules
   -------------------------------------------------------------------------- */
:root {
  --webinar-primary: #0d1959;
  --webinar-secondary: #fe5000;
  --webinar-cyan: #1face2;
  --webinar-blue: #1f4ee2;
  --webinar-light-blue: #c4e5f1;
  --webinar-bg-light: #f8fafc;
  --webinar-text: #000000;
  --webinar-border: #e6e6e6;
  --webinar-font-serif: "Crimson Pro", Georgia, serif;
  --webinar-font-sans: "Poppins", system-ui, -apple-system, sans-serif;
  --webinar-gradient-btn: linear-gradient(90deg, #1face2 0%, #1f4ee2 100%);
  --webinar-gradient-orange: linear-gradient(90deg, #f8b63e 0%, #f87f3e 100%);
}

/* Base Adjustments */
html {
  width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  font-family: var(--webinar-font-sans);
  color: var(--webinar-text);
  background-color: #ffffff;
  overflow-x: clip;
}

/* Clip decorative glows that sit as siblings of .webinar-hero */
#main-content {
  position: relative;
  width: 100%;
  overflow-x: clip;
}

img,
svg,
video {
  max-width: 100%;
}

.webinar-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

/* Decorative Background Glows */
.webinar-hero-glow-1 {
  position: absolute;
  width: min(800px, 90vw);
  height: min(800px, 90vw);
  right: -200px;
  top: 100px;
  background: var(--webinar-cyan);
  opacity: 0.15;
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.webinar-hero-glow-2 {
  position: absolute;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  left: -200px;
  top: 200px;
  background: var(--webinar-cyan);
  opacity: 0.15;
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   2. Hero Section
   -------------------------------------------------------------------------- */
.webinar-hero {
  position: relative;
  padding-top: calc(var(--header-total-height, 90px) + 2rem);
  padding-bottom: 0rem;
  overflow: hidden;
}

.webinar-hero__content {
  padding-bottom: 4rem;
}

.webinar-hero__watermark {
  position: absolute;
  font-family: var(--webinar-font-serif);
  font-weight: 700;
  font-size: clamp(120px, 24vw, 350px);
  line-height: 1;
  color: var(--webinar-light-blue);
  opacity: 0.35;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  bottom: -56px;
  right: 0px;
  white-space: nowrap;
}

.webinar-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
}

@media (min-width: 992px) {
  .webinar-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.webinar-hero__title {
  font-family: var(--webinar-font-serif);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--webinar-primary);
  margin-bottom: 1.25rem;
}

.webinar-hero__title-highlight {
  color: var(--webinar-secondary);
}

.webinar-hero__subtitle {
  font-family: var(--webinar-font-sans);
  font-weight: 400;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
  max-width: 605px;
}

/* Hero CTA Buttons */
.webinar-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.webinar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 60px;
  font-family: var(--webinar-font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.webinar-btn--outline {
  border: 1px solid var(--webinar-primary);
  color: var(--webinar-primary);
  background: transparent;
}

.webinar-btn--outline:hover {
  background: rgba(13, 25, 89, 0.05);
  color: var(--webinar-primary);
}

.webinar-btn--primary {
  background: var(--webinar-gradient-btn);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(31, 158, 226, 0.3);
}

.webinar-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 158, 226, 0.4);
  color: #ffffff;
}

.webinar-btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  gap: 0.5rem;
}

.webinar-btn--whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
}

/* Timer Box */
.webinar-timer {
  max-width: 440px;
}

.webinar-timer__label {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.webinar-timer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.webinar-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 55px;
}

.webinar-timer__num {
  font-family: var(--webinar-font-serif);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--webinar-primary);
}

.webinar-timer__text {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.webinar-timer__sep {
  font-family: var(--webinar-font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

/* Hero Media / Doctor Image */
.webinar-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .webinar-hero__media {
    display: none !important;
  }
}

.webinar-hero__img-wrap {
  position: relative;
  max-width: 440px;
  width: 100%;
  border-radius: 16px;
  overflow: visible;
}

.webinar-hero__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.webinar-live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 30px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .webinar-live-badge {
    left: 12px;
    top: 12px;
    padding: 5px 12px;
  }
}

.webinar-live-dot {
  width: 10px;
  height: 10px;
  background-color: #ff0000;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: webinarPulse 1.8s infinite;
}

@keyframes webinarPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.webinar-live-text {
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: var(--webinar-primary);
}

/* --------------------------------------------------------------------------
   3. Stats / Trust Bar Section
   -------------------------------------------------------------------------- */
.webinar-stats {
  padding: 3rem 0;
  background: #ffffff;
}

.webinar-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

@media (min-width: 992px) {
  .webinar-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 2rem 0;
  }
}

.webinar-stat-card {
  text-align: center;
  position: relative;
  padding: 0.75rem 1rem;
  min-height: 80px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .webinar-stat-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    border-right: 1px dashed rgba(0, 0, 0, 0.25);
  }
}

.webinar-stat-card__val {
  font-family: var(--webinar-font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--webinar-primary);
  margin-bottom: 0.35rem;
}

.webinar-stat-card__desc {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   4. Student Admissions Success Grid / Testimonials
   -------------------------------------------------------------------------- */
.webinar-students {
  padding: 5rem 0;
  background: #fcfdfe;
}

.webinar-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.webinar-section-title {
  font-family: var(--webinar-font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--webinar-primary);
  margin-bottom: 1rem;
}

.webinar-section-subtitle {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

.webinar-students__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 3rem 0 2rem;
}

@media (min-width: 640px) {
  .webinar-students__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .webinar-students__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.webinar-student-card {
  position: relative;
  height: 266px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.webinar-student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.webinar-student-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webinar-student-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1rem;
  color: #ffffff;
}

.webinar-student-card__name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.webinar-student-card__meta {
  font-size: 0.8125rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.webinar-student-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--webinar-gradient-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(248, 127, 62, 0.4);
}

/* --------------------------------------------------------------------------
   5. Why Choose Section (Circular Hub Diagram)
   -------------------------------------------------------------------------- */
.webinar-why {
  padding: 3rem 0;
  background: #ffffff;
}

.webinar-why__diagram {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 3rem 0 6rem;
}

.webinar-why__diagram-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1101 / 394;
}

.webinar-why__hub {
  position: absolute;
  left: 49.14%;
  top: 54.31%;
  transform: translate(-50%, -50%);
  width: 27.211%;
  aspect-ratio: 1 / 1;
}

.webinar-why__hub-glow {
  position: absolute;
  inset: -35%;
  background: #1fa9e2;
  opacity: 0.12;
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
}

.webinar-why__hub-circle {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px dashed #000000;
  border-radius: 50%;
}

.webinar-why__hub-logo {
  width: 60%;
  max-width: 223px;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.webinar-why__hub-icon {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.webinar-why__hub-icon--zoom {
  left: 5.6%;
  top: 21.9%;
  width: 15.6%;
  height: 15.6%;
}

.webinar-why__hub-icon--youtube {
  left: 100%;
  top: 47.8%;
  width: 15.6%;
  height: 11.9%;
}

.webinar-why__hub-icon--webex {
  left: 25.6%;
  top: 94.7%;
  width: 15.6%;
  height: 15.6%;
}

.webinar-why__item {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.webinar-why__item--quota {
  left: 15.71%;
  top: 11.17%;
  width: 29.61%;
  text-align: right;
}

.webinar-why__item--neet {
  left: 75.66%;
  top: 9.39%;
  width: 27.61%;
  text-align: left;
}

.webinar-why__item--choice {
  left: 86.38%;
  top: 50%;
  width: 27.25%;
  text-align: left;
}

.webinar-why__item--documents {
  left: 13.4%;
  top: 71.57%;
  width: 26.79%;
  text-align: right;
}

.webinar-why__item--performance {
  left: 78.75%;
  top: 90.61%;
  width: 28.16%;
  text-align: center;
}

.webinar-why__item-title {
  font-family: var(--webinar-font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--webinar-primary);
  margin-bottom: 0.5rem;
}

.webinar-why__item-desc {
  font-family: var(--webinar-font-sans);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #000000;
}

@media (max-width: 991px) {
  .webinar-why__diagram {
    padding: 1rem 0 2rem;
  }

  .webinar-why__diagram-stage {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .webinar-why__hub {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 500px;
    height: auto !important;
    aspect-ratio: auto !important;
    margin: 0 auto 10px auto;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(13, 25, 89, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .webinar-why__hub-glow {
    display: none !important;
  }

  .webinar-why__hub-circle {
    position: static !important;
    inset: auto !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: auto !important;
    width: auto !important;
    height: auto !important;
  }

  .webinar-why__hub-logo {
    width: 130px;
    height: auto;
    max-width: 100%;
    display: block !important;
  }

  .webinar-why__hub-icon {
    position: static !important;
    transform: none !important;
    width: 26px !important;
    height: 26px !important;
    display: inline-block;
  }

  .webinar-why__item {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 500px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-left: 4px solid var(--webinar-secondary);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    text-align: left !important;
  }

  .webinar-why__item--neet {
    border-left-color: var(--webinar-cyan);
  }

  .webinar-why__item--choice {
    border-left-color: var(--webinar-secondary);
  }

  .webinar-why__item--documents {
    border-left-color: #009347;
  }

  .webinar-why__item--performance {
    border-left-color: var(--webinar-blue);
  }

  .webinar-why__item-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    color: #0d1959;
    margin-bottom: 4px;
  }

  .webinar-why__item-desc {
    font-size: 13px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
  }
}

/* --------------------------------------------------------------------------
   6. Interactive Features & Mentor Spotlight
   -------------------------------------------------------------------------- */
.webinar-features-mentor {
  padding: 2rem 0;
}

/* Interactive Feature Pills */
.webinar-feature-pills-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
  width: 100%;
}

.webinar-feature-pills-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.webinar-feature-pill {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  height: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 70px;
  max-width: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.webinar-feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.webinar-feature-pill--orange {
  background: linear-gradient(90deg, #f8b63e 0%, #f87f3e 100%);
}

.webinar-feature-pill--blue {
  background: linear-gradient(90deg, #1face2 0%, #1f57e2 100%);
}

.webinar-feature-pill--purple {
  background: linear-gradient(90deg, #9e1f63 0%, #7d1f63 100%);
}

.webinar-feature-pill__dot {
  width: 8px;
  height: 8px;
  background: #fffdfa;
  border-radius: 50%;
  flex-shrink: 0;
}

.webinar-feature-pill__text {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}

/* Video Preview Container */
.webinar-video-preview {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3.5rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  background: #000000;
}

.webinar-video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.webinar-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.webinar-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.webinar-video-play-icon {
  width: 48px;
  height: 48px;
  display: block;
}

@media (max-width: 768px) {
  .webinar-feature-pill {
    height: auto;
    padding: 8px 16px;
  }

  .webinar-feature-pill__text {
    font-size: 12px;
    line-height: 18px;
  }

  .webinar-video-play-btn {
    width: 48px;
    height: 48px;
  }

  .webinar-video-play-icon {
    width: 38px;
    height: 38px;
  }
}

/* --------------------------------------------------------------------------
   Learn From the Experts Section
   -------------------------------------------------------------------------- */
.webinar-experts {
  padding: 4rem 0 5rem 0;
  background: #ffffff;
}

.webinar-experts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 70px;
  justify-items: center;
}

.webinar-expert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 250px;
}

.webinar-expert-card__img-wrapper {
  position: relative;
  width: 240px;
  height: 239px;
  margin-bottom: 24px;
  overflow: visible;
}

.webinar-expert-card__img-wrapper--blue {
  background: #e8f1f8;
}

.webinar-expert-card__img-wrapper--pink {
  background: #fdebf3;
}

.webinar-expert-card__img-wrapper--green {
  background: #e5f4ed;
}

.webinar-expert-card__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 285px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  pointer-events: none;
}

.webinar-expert-card__name {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0d1959;
  margin-bottom: 6px;
}

.webinar-expert-card__role {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  width: 100%;
  max-width: 250px;
  margin: 0 auto 20px auto;
}

@media (max-width: 900px) {
  .webinar-experts {
    padding: 2.5rem 0;
  }

  .webinar-experts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 75px 20px;
    padding-top: 50px;
  }
}

@media (max-width: 540px) {
  .webinar-experts__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
  }

  .webinar-expert-card {
    max-width: 100%;
  }

  .webinar-expert-card__img-wrapper {
    width: 155px;
    height: 155px;
    margin-bottom: 16px;
  }

  .webinar-expert-card__img {
    height: 185px;
    max-width: 170px;
  }

  .webinar-expert-card__name {
    font-size: 14px;
    line-height: 20px;
  }

  .webinar-expert-card__role {
    font-size: 12px;
    line-height: 17px;
    max-width: 165px;
    margin-bottom: 16px;
  }
}

/* --------------------------------------------------------------------------
   7. Dual Target Audience (Students vs Parents)
   -------------------------------------------------------------------------- */
.webinar-audience {
  padding: 4rem 0 5rem 0;
  background: #ffffff;
}

.webinar-audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .webinar-audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.webinar-audience-card {
  position: relative;
  height: 374px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.webinar-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.webinar-audience-card--student {
  background-image:
    linear-gradient(180deg, rgba(248, 182, 62, 0) 53.48%, #f87f3e 100%),
    linear-gradient(180deg, rgba(13, 25, 89, 0) 50%, #0d1959 100%),
    url("../images/audience_students.png");
  background-size: cover;
  background-position: center;
}

.webinar-audience-card--parent {
  background-image:
    linear-gradient(180deg, rgba(31, 172, 226, 0) 61.1%, #1f57e2 100%),
    linear-gradient(180deg, rgba(13, 25, 89, 0) 50%, #0d1959 100%),
    url("../images/audience_parents.png");
  background-size: cover;
  background-position: center;
}

.webinar-audience-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 30px;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.webinar-audience-card__heading {
  font-family: "Crimson Pro", var(--webinar-font-serif);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
  margin: 0;
}

.webinar-audience-card__text {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 768px) {
  .webinar-audience-card {
    height: 320px;
  }

  .webinar-audience-card__content {
    padding: 20px;
  }

  .webinar-audience-card__heading {
    font-size: 20px;
    line-height: 24px;
  }

  .webinar-audience-card__text {
    font-size: 13px;
    line-height: 19px;
  }
}

/* --------------------------------------------------------------------------
   8. Takeaways Banner & Free E-Book Callout
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   8. Takeaways Banner & Free E-Book Callout
   -------------------------------------------------------------------------- */
.webinar-takeaways {
  position: relative;
  padding: 5rem 0;
  background-color: #ffffff;
  background-image: url("../images/takeaways_banner_bg.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Subtle tile pattern */
.webinar-takeaways__pattern {
  position: absolute;
  inset: 0;
  background-image: url("../images/boxes-white.svg");
  background-repeat: repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* Soft green glow only behind the ebook area (left) — not a full-width wash */
.webinar-takeaways__blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  -webkit-filter: blur(180px);
  pointer-events: none;
  z-index: 1;
}

.webinar-takeaways__blur--green-dark {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: #009347;
  opacity: 0.14;
}

.webinar-takeaways__blur--green-light {
  display: none;
}

.webinar-takeaways__container {
  position: relative;
  z-index: 2;
}

.webinar-takeaways__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .webinar-takeaways__content-grid {
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 4rem;
  }
}

/* Takeaways list (right on desktop) */
.webinar-takeaways__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.webinar-takeaway-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.webinar-takeaway-row__icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex-shrink: 0;
  margin-top: 2px;
}

.webinar-takeaway-row__text-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.webinar-takeaway-row__title {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

.webinar-takeaway-row__desc {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  margin: 0;
}

/* E-Book Pill Banner & Book Image (left on desktop) */
.webinar-ebook-banner-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 200px;
  padding: 40px 0 0px 0;
}

.webinar-ebook-layer {
  display: none;
  position: absolute;
  left: 30px;
  top: 10px;
  width: 220px;
  height: 260px;
  background: #009347;
  opacity: 0.4;
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
}

.webinar-ebook-img {
  position: absolute;
  left: 20px;
  bottom: -30px;
  width: 220px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.webinar-ebook-banner-wrapper:hover .webinar-ebook-img {
  transform: translateY(-6px) scale(1.02);
}

.webinar-ebook-pill {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 53px 20px 160px;
  width: 100%;
  max-width: 420px;
  min-height: 140px;
  background:
    linear-gradient(90deg, #009147 0%, #007947 100%),
    linear-gradient(89.45deg, #d2dd23 2.02%, #91cd23 99.52%), #0d1959;
  border-radius: 100px;
  position: relative;
  z-index: 2;
  margin-left: 90px;
}

.webinar-ebook-pill__text {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 992px) {
  .webinar-takeaways {
    padding: 2.5rem 0;
  }

  .webinar-ebook-banner-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 35px;
    min-height: auto;
    margin-bottom: 1.5rem;
  }

  .webinar-ebook-img {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    top: auto;
    bottom: auto;
    width: 160px;
    margin: 0 auto -35px auto;
    z-index: 3;
    display: block;
  }

  .webinar-ebook-banner-wrapper:hover .webinar-ebook-img {
    transform: translateY(-4px);
  }

  .webinar-ebook-pill {
    margin-left: 0;
    padding: 50px 20px 20px 20px;
    border-radius: 24px;
    text-align: center;
    max-width: 100%;
  }

  .webinar-ebook-layer {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
  }
}

/* --------------------------------------------------------------------------
   9. Past Webinars Showcase & Student Quote
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   9. Webinars and Beyond Section
   -------------------------------------------------------------------------- */
.webinar-past {
  padding: 4rem 0 5rem 0;
  background: #ffffff;
}

.webinar-past__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.webinar-past__text-col {
  width: 406px;
  max-width: 100%;
}

.webinar-past__title {
  font-family: "Crimson Pro", var(--webinar-font-serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: #0d1959;
  margin-bottom: 24px;
}

.webinar-past__subtitle {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.webinar-past__video-col {
  width: 444px;
  max-width: 100%;
}

.webinar-video-card {
  position: relative;
  width: 444px;
  height: 250px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  background: #000000;
}

.webinar-video-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   10. Testimonial Evidence Section
   -------------------------------------------------------------------------- */
.webinar-testimonials {
  padding: 4rem 0 5rem 0;
  background: #ffffff;
}

.webinar-testimonials__title {
  font-family: "Crimson Pro", var(--webinar-font-serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.25;
  text-align: center;
  color: #0d1959;
  margin-bottom: 3.5rem;
}

.webinar-testimonials__grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.webinar-testimonial-card {
  box-sizing: border-box;
  width: 440px;
  height: 250px;
  max-width: 100%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.webinar-testimonial-card--video {
  background: #000000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.webinar-testimonial-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.webinar-testimonial-card--written {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.webinar-testimonial-card__quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 26px;
  height: 56px;
}

.webinar-testimonial-card__avatar-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 80px;
  overflow: hidden;
  margin-bottom: 20px;
}

.webinar-testimonial-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webinar-testimonial-card__text {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  max-width: 361px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. FAQ Accordion & WhatsApp CTA Section
   -------------------------------------------------------------------------- */
.webinar-faq {
  position: relative;
  padding: 5rem 0;
  background: #ffffff;
  overflow: hidden;
}

.webinar-faq__blur {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 446px;
  height: 446px;
  background: #1face2;
  opacity: 0.3;
  filter: blur(250px);
  -webkit-filter: blur(250px);
  pointer-events: none;
  z-index: 1;
  display: none;
}

.webinar-faq__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 820px;
  margin: 0 auto;
}

.webinar-faq__title {
  font-family: "Crimson Pro", var(--webinar-font-serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  text-align: center;
  color: #0d1959;
  margin: 0;
}

.webinar-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.webinar-faq__item {
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
}

.webinar-faq__summary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.webinar-faq__summary::-webkit-details-marker {
  display: none;
}

.webinar-faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.webinar-faq__item[open] .webinar-faq__icon {
  transform: rotate(45deg);
}

.webinar-faq__body {
  padding-top: 14px;
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.7);
}

.webinar-faq-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.webinar-faq-cta__note {
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #0d1959;
  margin: 0;
}

.webinar-btn--whatsapp {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  gap: 10px;
  width: min(100%, 340px);
  height: 52px;
  background:
    linear-gradient(120.27deg, #009347 22.23%, #007747 98.14%),
    linear-gradient(89.45deg, #d2dd23 2.02%, #91cd23 99.52%), #0d1959;
  border-radius: 60px;
  font-family: "Poppins", var(--webinar-font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.webinar-btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 147, 71, 0.3);
}

.webinar-btn__whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .webinar-past__flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .webinar-testimonials__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .webinar-past__text-col {
    width: 100%;
    max-width: 500px;
    height: auto !important;
    min-height: auto !important;
    text-align: center;
  }

  .webinar-past__video-col,
  .webinar-testimonial-card,
  .webinar-video-card {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
}

@media (max-width: 992px) {
  html,
  body,
  #main-content,
  .webinar-hero,
  .webinar-stats,
  .webinar-students,
  .webinar-why,
  .webinar-features-mentor,
  .webinar-experts,
  .webinar-audience,
  .webinar-takeaways,
  .webinar-past,
  .webinar-testimonials,
  .webinar-faq {
    max-width: 100% !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }

  .webinar-container {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .webinar-hero__watermark,
  .webinar-hero-glow-1,
  .webinar-hero-glow-2,
  .webinar-takeaways__blur,
  .webinar-faq__blur,
  .site-header__actions {
    display: none !important;
  }

  .webinar-hero__content {
    padding-bottom: 2rem;
  }

  .webinar-stats,
  .webinar-students,
  .webinar-why,
  .webinar-features-mentor,
  .webinar-experts,
  .webinar-audience,
  .webinar-takeaways,
  .webinar-past,
  .webinar-testimonials,
  .webinar-faq {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .webinar-section-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .webinar-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .webinar-btn {
    width: 100%;
    text-align: center;
  }

  .webinar-timer__unit {
    min-width: 44px;
  }

  .webinar-timer__num {
    font-size: 1.75rem;
  }

  .webinar-timer__text {
    font-size: 0.6875rem;
  }

  .webinar-timer__sep {
    font-size: 1.5rem;
  }

  .webinar-btn--whatsapp {
    width: 100%;
    max-width: 340px;
  }
}
