/* ===============================
   GLOBAL
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* USED IN <body> */
body {
  font-family: 'Segoe UI', sans-serif;
  background : linear-gradient(#e6f7ff 50%,#e9fff3 50%);
  color: #083344;
  margin: 0;
}

/* REGISTER BUTTON (HERO / SECTION) */
.register-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(76, 201, 74, 0.4);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.register-btn:hover {
  background: linear-gradient(135deg, #43b943, #279a46);
  transform: translateY(-2px);
  color: #ffffff;
}


/* ===============================
   HERO SECTION (.hero)
   =============================== */
.hero {
   min-height: 100vh;
  background: linear-gradient(180deg, #eafcff, #f6ffff); 
  display: flex;
  align-items: center;
  overflow: hidden;
}

.price-bar {
  background: #e0fbff !important;
}

/* USED: hero-badge */
.hero-badge {
   background: #0ea5e9; 
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
}

/* USED: hero heading */
.hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero h1 span {
  color: #4cc94a;
}

/* USED: hero paragraph */
.hero p {
  font-size: 18px;
  color: #475569;
  margin-top: 15px;
}

/* USED: hero-list */
.hero-list {
  margin-top: 20px;
}

.hero-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
}

.hero-list li::before {
  content: "✔";
  color: #4cc94a;
  margin-right: 8px;
}

/* USED: hero button */
.hero-btn {
  margin-top: 30px;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/* ===============================
   HERO IMAGE SLIDER
   =============================== */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 650px;
  margin: auto;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slider img.active {
  opacity: 1;
}

/* ===============================
   RESULT SECTION (.result-section)
   =============================== */
.result-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f4fcff, #ffffff);
}

/* USED: section-title */
.section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.section-title span {
  color: #4cc94a;
}

/* USED: section-sub */
.section-sub {
  text-align: center;
  color: #64748b;
}

/* USED: info-card */
.info-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}
/* ======================================
   MOBILE VIEW FIX
   ====================================== */
@media (max-width: 768px) {

  /* HERO IMAGE SLIDER */
  .hero-slider {
    max-width: 100%;
    height: 320px;        /* mobile height */
    margin: 0 auto 30px;
  }

  .hero-slider img {
    object-fit: contain; /* image cut aagama */
  }

  /* RESULT SECTION */
  .result-section {
    padding: 60px 16px;  /* side spacing */
  }

  /* SECTION TITLE */
  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-sub {
    font-size: 15px;
    margin-top: 8px;
  }

  /* INFO CARD */
  .info-card {
    padding: 18px;
    border-radius: 14px;
  }
}

/* ===============================
   MEDIA GRID
   =============================== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.media-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card {
  grid-column: span 2;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   CTA SECTION
   =============================== */
.cta-section {
  background: #0d5c63;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

/* why invisalign code */


/* .why-invisalign-section {
  background: linear-gradient(180deg, #f4fbff, #ffffff);
} */

/* PAGE BACKGROUND */
/* body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4fbff; */
/* } */
/*  */
/* SECTION */
.why-invisalign-section {
  background: linear-gradient(#e6f7ff 50%, #e9fff3 50%);
color: #083344;

}

/* CARD */
/* WHY INVISALIGN – CARD */
.why-invisalign-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

/* HOVER */
.why-invisalign-card:hover {
  transform: translateY(-12px) scale(1.03) rotate(0.3deg);
}



/* TITLE */
.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #083344;
}

/* TEXT */
.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ICON */
.icon {
  width: 44px;
  height: 30px;
  background: #4cc94a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 15px;
}
html, body {
  overflow-x: hidden;
}

/* ===============================
   MAIN FLEX – EQUAL HEIGHT FIX
================================ */
.combined-layout {
  display: flex;
  gap: 50px;
  align-items: stretch;   /* 🔥 left & right same height */
}

/* LEFT & RIGHT */
.combined-left,
.combined-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===============================
   PREVIEW ROW
================================ */
.preview-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

/* ===============================
   REMOVE CARD BACKGROUND
================================ */
.media-card {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ===============================
   QR & AD IMAGE – STABLE SIZE
================================ */
.qr-card img {
  width: 250px;
  height: 300px;
  object-fit: contain;
}

.ad-card img {
  width: 250px;
  height: 300px;
  object-fit: contain;
}

/* ===============================
   VIDEO – PERFECT HEIGHT FIX
================================ */
.video-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card video {
  width: 220px;           /* 🔒 fixed width */
  height: 600px;          /* 🔥 fixed height */
  /* object-fit: contain;    ❌ no zoom */
  background: #000;
  border-radius: 16px;
}
/* ===============================
   PREVIEW ROW – BALANCED LOOK
================================ */
.preview-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;   /* 🔥 bottom aligned – professional */
}

/* ===============================
   COMMON MEDIA CARD HEIGHT
================================ */
.qr-card,
.ad-card,
.video-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   QR CODE – CLEAN & SCANNABLE
================================ */
.qr-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* ===============================
   AD POSTER – SAME HEIGHT FEEL
================================ */
.ad-card img {
  width: 200px;
  height: 280px;
  object-fit: contain;
}

/* ===============================
   VIDEO – NOT TOO TALL, NOT SHORT
================================ */
.video-card video {
  width: 200px;
  height: 400px;          /* 🔥 same visual height as ad */
  object-fit: contain;   /* ❌ no crop */
  background: #000;
  border-radius: 16px;
}



/* ===============================
   RIGHT CARD CONTENT CENTER
================================ */
.combined-right {
  justify-content: space-between; /* content + button balanced */
}

/* ===============================
   MOBILE FIX
================================ */
@media (max-width: 768px) {
  .combined-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .preview-row {
    flex-direction: column;
  }

  .video-card video {
    width: 100%;
    max-width: 260px;
    height: 500px;
  }
}

/* ===============================
   REGISTER BUTTON (SAFE)
================================ */
.preview-register-btn {
  align-self: center;
  margin-top: 30px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(76, 201, 74, 0.35);
  transition: all 0.3s ease;
}

.preview-register-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #43b943, #279a46);
}
.video-card video {
  width: 220px;
  height: 500px;
  object-fit: cover;          /* 🔥 zoom aagum */
  transform: scale(1.08);     /* 🔥 slight zoom (safe) */
   background: #000;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .video-card video {
    width: 100%;
    max-width: 260px;
    height: 360px;
    transform: scale(1);   /* mobile-la extra zoom vendam */
  }
}




/* JUMP PARALLAX */
.jump-card {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
}

.jump-card.show {
  opacity: 1;
  animation: jumpIn 0.9s cubic-bezier(.22,1,.36,1) forwards;
}


@keyframes jumpIn {
  0% {
    transform: translateY(80px) scale(0.95);
  }
  60% {
    transform: translateY(-12px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
 /* ///tranform your smile/// */

 /* HERO BACKGROUND */
.hero-bg {
  min-height: 80vh;
  background: linear-gradient(
      90deg,
      rgba(240, 252, 255, 0.95),
      rgba(240, 252, 255, 0.85)
    ),
    url("/images/hero-bg.png"); /* optional image */
  background-size: cover;
  background-position: center;
}

/* TITLE */
.hero-title {
  font-size: 44px;
  font-weight: 700;
  color: #083344;
}

/* SUB TITLE */
.hero-subtitle {
  font-size: 18px;
  color: #475569;
  margin-top: 10px;
  max-width: 480px;
}

/* BUTTON GREEN (Bootstrap override) */
.btn-success {
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(76, 201, 74, 0.4);
}

.btn-success:hover {
  background: linear-gradient(135deg, #43b943, #279a46);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

/* //smile-section//*/
/* ===============================
   SMILE SECTION
   =============================== */

.smile-section {
  padding: 70px 20px;
  
}


/* TITLE */
.smile-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #083344;
}

.smile-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 15px auto 60px;
  color: #64748b;
  font-size: 16px;
}

/* GRID */
.smile-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* ===============================
   LEFT & RIGHT CARD
   =============================== */
.smile-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.smile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.smile-card h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #0a3c47;
}

/* LIST */
.smile-card ul {
  list-style: none;
  padding: 0;
}

.smile-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #475569;
}

.smile-card ul li::before {
  content: "✔";
  color: #4cc94a;
  margin-right: 8px;
}

/* RIGHT CARD FEATURES */
.feature {
  margin-top: 10px;
  font-size: 15px;
  color: #475569;
}

.feature span {
  color: #4cc94a;
  font-weight: bold;
  margin-right: 6px;
}

/* ===============================
   CENTER IMAGE CARD
   =============================== */
.smile-image {
  background: #ffffff;
  padding: 18px;
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.smile-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #e6f9f0;
}

/* ===============================
   CTA
   =============================== */
.smile-cta {
  text-align: center;
  margin-top: 60px;
}

/* ===============================
   MOBILE VIEW
   =============================== */
/* @media (max-width: 992px) {
  .smile-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .smile-image img {
    width: 220px;
    height: 220px;
  }
} */



/* //before ater video clip// */

/* VIDEO CARD – GRID FRIENDLY */
/* .video-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 10px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
} */

/* .video-card:hover {
  transform: translateY(-6px);
} */

/* VIDEO */
/* .video-card video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
} */

/* PAGE BASE */
/* ===============================
   BASE
   =============================== */
/* BASE */
/* body {
  font-family: 'Segoe UI', sans-serif;
  background: #083344;
  margin: 0;
} */

/* SECTION */
.results-section {
  padding: 50px 0 120px;
}

/* CENTER + SIDE GAP */
.results-section .container {
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
}

/* HEADING */
.results-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.underline {
  width: 70px;
  height: 4px;
  background: #f4c430;
  margin-top: 12px;
  border-radius: 10px;
}

/* VIDEO CARD */
/* .video-card {
   background: #0f4c5c;             
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
} */

.video-card:hover {
  transform: translateY(-6px);
}

/* IFRAME */
.video-card iframe {
  border-radius: 12px;
  border: none;
}

/* MOBILE */
@media (max-width: 576px) {
  .results-title {
    font-size: 26px;
  }

  .results-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}





/* //How Invisalign Works// */
/* body {
  font-family: 'Segoe UI', sans-serif;
  background: lightcyan;
  margin: 0;
} */
/* SECTION */
.works-section {
  padding: 40px 15px 110px;
   background : linear-gradient(#e6f7ff 50%,#e9fff3 50%);
}
/* ///How Invisalign Works  */
/* TITLE LINE */
.title-line {
  width: 60px;
  height: 4px;
  background: #f4c430;
  margin: 10px auto 0;
  border-radius: 10px;
}
.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  max-width: 1000px;      /* 👈 width kammi */
  margin: auto;  
}

/* Step badge */
.step-badge {
  display: inline-block;
  background: #4cc94a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Image */
.step-img-alt {
  max-width: 200px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.register-btn {
  display: inline-block;        /* 🔥 important */
  width: auto;                  /* 🔥 width control */
  min-width: 260px;             /* optional – nice size */
  max-width: 320px;             /* optional – limit */
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  margin: 30px auto;
}


/* Mobile */
@media (max-width: 768px) {
  .step-img-alt {
    margin-top: 15px;
    max-width: 180px;
  }
}



/* //doctor section */
/* SECTION BACKGROUND */
.doctor-section {
   background: #063b4c; 
}

/* UNDERLINE */
.underline {
  width: 70px;
  height: 4px;
  background: #f4c430;
  border-radius: 10px;
}

/* IMAGE WRAPPER */
.doctor-img-wrapper {
  position: relative;
  width: 70%;
  aspect-ratio: 1 / 1;
}

/* DOTTED RING */
.doctor-img-wrapper .ring {
  position: absolute;
  inset: -12px;
  border: 2px dashed #f4c430;
  border-radius: 50%;
}

/* IMAGE */
.doctor-img-wrapper img {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 6px;
}

/* CONTENT CARD */
.doctor-card {
   background: #ffffff; 
  border-radius: 22px;
  color: #333;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.doctor-card p {
  font-size: 15px;
  line-height: 1.3;
}
/* ===============================
   PRICE BAR – FINAL FIX
   =============================== */
.price-bar {
  background-color: #e0fbff !important;
  padding: 18px 0;
}

.price-bar * {
  background: transparent !important;
}
/* ===============================
   YOUTUBE VIDEO CARD
   =============================== */
/* .youtube-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 40px;
}

.youtube-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* VIDEO IFRAME */
/* .youtube-card iframe {
  border: none;
  width: 100%;
  height: 100%;
  
} */

/* CONTENT */
/* .youtube-card-content {
  padding: 20px;
  text-align: center;
  
}

.youtube-card-content h5 {
  font-weight: 700;
  color: #083344;
  margin-bottom: 8px;
}

.youtube-card-content p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}  */
/* /// Smile Simulation Image */

/* IMAGE + QR CARD */
.media-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  height: 75%;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* YOUTUBE CARD */
.youtube-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.youtube-card:hover {
  transform: translateY(-6px);
}

.youtube-content {
  padding: 18px;
  text-align: center;
}

.youtube-content h5 {
  font-weight: 700;
  color: #083344;
  margin-bottom: 8px;
}

.youtube-content p {
  font-size: 14px;
  color: #64748b;
}

/* INFO CARDS */
.info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  height: 120%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  
}

/* CENTER REGISTER BUTTON */
.register-main-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  padding: 16px 42px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 20px 40px rgba(76,201,74,0.4);
}

.register-main-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}
/* ===============================
   GLOBAL CARD HOVER EFFECT
   =============================== */

/* Apply hover to ALL cards */
.media-box,
.info-card,
.youtube-card {
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Hover animation */
.media-box:hover,
.info-card:hover,
.youtube-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* Extra smooth for mobile */
@media (max-width: 768px) {
  .media-box:hover,
  .info-card:hover,
  .youtube-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
}
/* CONTAINER */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

/* CARD BASE */
.stat-box {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* LEFT COLOR STRIP */
.stat-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 14px 0 0 14px;
}

/* TEXT */
.stat-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-box h2 span {
  font-size: 16px;
  font-weight: 500;
}

.stat-box p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

/* COMMON CARD STYLE */
.media-box,
.youtube-card,
.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* LEFT COLOR STRIP */
.media-box::before,
.youtube-card::before,
.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 14px 0 0 14px;
}

/* HOVER EFFECT */
.media-box:hover,
.youtube-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}
 /* .info-card:nth-child(1)::before {
  background: #22c55e;
}
.info-card:nth-child(2)::before {
  background: #3b82f6;
}
.info-card:nth-child(3)::before {
  background: #f97316;
}
.media-box:nth-child(1)::before {
  background: #6366f1;
}
.media-box:nth-child(1)::before {
  background: #6366f1;
}
.youtube-card::before {
  background: #ef4444;
}

.youtube-card::before {
  background: blue;
} */ */

/* YouTube text spacing */
.youtube-content {
  padding-top: 15px;
}

.youtube-content h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

/* ===============================
   GLOBAL MOBILE RESPONSIVE FIX
   =============================== */

@media (max-width: 992px) {

  /* HERO */
  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-list li {
    font-size: 14px;
  }

  /* HERO SLIDER IMAGE */
  .hero-slider {
    max-width: 100%;
    height: auto;
  }

  .hero-slider img {
    position: relative;
    height: auto;
  }

  /* PREVIEW SECTION */
  .media-box,
  .youtube-card,
  .info-card {
    height: auto !important;
    padding: 16px;
  }

  .media-box img {
    max-width: 100%;
    height: auto;
  }

  /* YOUTUBE */
  .youtube-card iframe {
    height: auto;
  }

  .youtube-content h5 {
    font-size: 16px;
  }

  .youtube-content p {
    font-size: 14px;
  }

  /* INFO CARDS */
  .info-card h5 {
    font-size: 16px;
  }

  .info-card p {
    font-size: 14px;
  }

  /* REGISTER BUTTON */
  .register-main-btn,
  .register-btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
  }

  /* SMILE GRID → STACK */
  .smile-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .smile-image img {
    width: 200px;
    height: 200px;
  }

  /* STEP SECTION */
  .step-card {
    padding: 18px;
  }

  .step-img-alt {
    max-width: 160px;
    margin: 15px auto 0;
    display: block;
  }

  /* RESULTS VIDEO GRID */
  .video-card {
    padding: 10px;
  }

  /* REMOVE HORIZONTAL SCROLL */
  body {
    overflow-x: hidden;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 576px) {

  h2 {
    font-size: 22px;
  }

  .preview-title {
    font-size: 24px;
  }

  .smile-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .doctor-card p {
    font-size: 14px;
  }
}
/* ===============================
   WHY CHOOSE DR NEEMZ
   =============================== */

.why-neemz-section {
   background: #073b52; 
  padding: 50px 16px 60px;
}

.why-container {
  max-width: 420px;
  margin: auto;
  text-align: center;
}

.why-title {
  color: #083344;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}

.why-title span {
  color: #7ee081;
}

.why-subtitle {
  color: #083344;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 28px;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

  .why-item {
  display: flex;
  align-items: center;
  background: #f0fbff;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: center;
  transition: all 0.3s ease;
} 

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.check {
  background: #22c55e;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.why-item p {
  font-size: 14px;
  font-weight: 600;
  color: #083344;
  margin: 0;
}

/* TRUST NOTE */
.trust-note {
  margin-top: 20px;
  padding: 14px;
  background: #ecfeff;
  border-radius: 14px;
}

.trust-note p {
  font-size: 14px;
  font-weight: 600;
  color: #0f766e;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.why-cta {
  display: block;
  margin-top: 28px;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #ffffff;
  padding: 16px 0;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(76,201,74,0.45);
}

.why-cta:hover {
  transform: translateY(-3px);
}


/* TABLET+ */
@media (min-width: 768px) {
  .why-container {
    max-width: 600px;
  }
}

.why-choose-section {
  /* background: #063b4c; */
  padding: 70px 16px;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}

.section-title span {
  color: #4cc94a;
}

.section-subtitle {
  text-align: center;
  margin-top: 10px;
  color: #cfe7ee;
  font-size: 16px;
}

.why-card-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.why-card {
  background: #e9f9ff;
  color: #083344;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;   /* 👈 THIS */
  text-align: center;    /* 👈 THIS */
}


.why-card.highlight {
  background: #dff6ee;
  font-style: italic;
}

.cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 18px 40px rgba(76,201,74,0.45);
}

/* Desktop */
@media (min-width: 768px) {
  .why-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===============================
   PRICING / EMI SECTION
   =============================== */

.pricing-section {
  background: linear-gradient(180deg, #f0fbff, #ecfff4);
}

.section-tag {
  color: #0ea5e9;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #083344;
  margin-top: 8px;
}

.section-subtitle {
  max-width: 520px;
  margin: 10px auto 0;
  color: #64748b;
}

/* CARD */
/* .pricing-card {
  background: #ffffff;
  max-width: 520px;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12); */
/* } */

/* LIST */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  background: #eefcff;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #083344;
  display: flex;
  align-items: center;
}

.pricing-list li::before {
  content: "✔";
  background: #22c55e;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

/* EMI LOGOS */
.emi-partners {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
}

.emi-partners img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(10%);
}

/* BUTTON */
.pricing-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(76,201,74,0.4);
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* MOBILE */
@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .pricing-card {
    padding: 22px 18px;
  }

  .pricing-list li {
    font-size: 14px;
  }
}

.faq-section {
  /* background: #063b4c; */
  padding: 50px 16px;
  text-align: center;
  color: #083344;
}

.faq-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 30px;
}

.faq-underline {
  width: 60px;
  height: 68px;
  /* background: #facc15; */
  margin: 10px auto 30px;
  border-radius: 10px;
}

/* .faq-container {
  max-width: 420px;
  margin: auto;
} */

/* CARD */
.faq-card {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #083344;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ANSWER (HIDDEN DEFAULT) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #475569;
  transition: all 0.35s ease;
}

/* ACTIVE */
.faq-card.active .faq-answer {
  max-height: 140px;
  padding: 0 20px 18px;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-card.active .arrow {
  transform: rotate(180deg);
}

/* CTA */
.faq-cta {
  display: block;
  margin: 30px auto 0;
  max-width: 420px;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  padding: 16px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}
.pricing-faq-combined {
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* pricing sedikit perusa */
  gap: 60px;
  align-items: start;
}
.pricing-side {
  display: flex;
  justify-content: center;
}
/* .faq-side {
  display: flex;
  justify-content: center;
} */


@media (max-width: 992px) {
  .pricing-faq-combined {
    grid-template-columns: 1fr; /* top to bottom */
    gap: 50px;
  }
}

.preview-section span{
  color: #22C55E;
}
.smile-section span{
   color: #22C55E;
}
.text-center span{
  color: #22C55E;
}
.register-btn {
  display: flex;
  justify-content: center;
  text-align: center;
  
}
/* PARALLAX BASE */
.parallax-item {
  transform: translateX(80px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform;
}

/* .col-lg-4 {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
}
.col-lg-4::before {
  background: #3b82f6;
}

/* ORANGE */
/* .col-lg-4 {
  background: linear-gradient(135deg, #fff4e5, #ffffff);
}
.col-lg-4::before {
  background: #f97316;
} */

/* RED */
/* .col-lg-4 {
  background: linear-gradient(135deg, #fff1f2, #ffffff);
}
.col-lg-4::before {
  background: #ef4444;
} */ 
/* ===============================
   TOP FLOAT BAR (NO NAVBAR)
================================ */
.top-float {
  position: fixed;          /* 🔥 always visible */
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 9999;
  pointer-events: none;     /* hero content block aagama */
}

/* ===============================
   TOP HERO BAR (SCROLL AAGUM)
================================ */
.top-float {
  position: absolute;      /* 🔥 key change */
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 10;
}

/* LOGO */
.top-logo {
  height: 55px;
}

/* MORE INFO BUTTON */
.top-info-btn {
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(34,197,94,0.35);
  transition: all 0.3s ease;
}

.top-info-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .top-float {
    top: 10px;
    padding: 0 16px;
  }

  .top-logo {
    height: 42px;
  }

  .top-info-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}




/* FOOTER SECTION */
.footer-section {
  position: relative;
  padding: 80px 20px 50px;
  background: linear-gradient(135deg, #031b34, #052c4f);
  overflow: hidden;
}

/* WAVE EFFECT */
.footer-wave {
  position: absolute;
  inset: 0;
  background: url("/images/wave-pattern.svg") center/cover no-repeat;
  opacity: 0.12;
}

/* CONTENT */
.footer-content {
  position: relative;
  z-index: 2;
}

/* LOGO CARD */
.footer-logo-card {
  background:black;
  display: inline-flex;
  padding: 20px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  margin-bottom: 30px;
  animation: floatLogo 4s ease-in-out infinite;
}

.footer-logo-card img {
  max-height:50px;
}



/* COPYRIGHT */
.footer-copy {
  color: #cbd5e1;
  font-size: 14px;
  letter-spacing: 0.4px;
}

/* MOBILE */
@media (max-width: 576px) {
  .footer-logo-card {
    padding: 16px 30px;
  }

  .footer-logo-card img {
    max-height: 60px;
  }
}
/* ===============================
   🔥 FINAL MOBILE FIX
   =============================== */

@media (max-width: 768px) {

  /* REMOVE FIXED HEIGHTS */
  .hero,
  .media-box,
  .info-card,
  .youtube-card {
    min-height: auto !important;
    height: auto !important;
  }

  /* HERO */
  .hero {
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  /* TOP LOGO BAR */
  .top-overlay {
    position: relative;
    padding: 10px 16px;
    flex-direction: column;
    gap: 10px;
  }

  .top-logo {
    height: 60px;
  }

  /* BUTTONS FULL WIDTH */
  .register-btn,
  .register-main-btn,
  .pricing-btn,
  .why-cta,
  .faq-cta {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 16px;
  }

  /* PREVIEW SECTION */
  .media-box,
  .youtube-card,
  .info-card {
    padding: 16px;
  } 

  /* YOUTUBE FIX */
  .ratio iframe {
    width: 100%;
    height: 100%;
  }

  /* SMILE SECTION */
  .smile-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .smile-image img {
    width: 200px;
    height: 200px;
  }

  /* STEP SECTION */
  .step-card {
    padding: 18px;
  }

  .step-img-alt {
    max-width: 160px;
    margin: 12px auto 0;
    display: block;
  }

  /* FAQ */
  .faq-container {
    max-width: 100%;
  }

  /* FOOTER */
  .footer-logo-card img {
    max-height: 60px;
  }

  /* REMOVE HORIZONTAL SCROLL */
  body {
  width: 100%;
  overflow-x: hidden;
}

}


/* WHY INVISALIGN – SAME HEIGHT */
.why-invisalign-card-sm {
  height: 100%;
  min-height: 190px;              /* 👈 equal height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}



/* ===============================
   MOBILE PERFECT FIX
   =============================== */
@media (max-width: 768px) {

  .why-invisalign-card-sm {
    min-height: auto;             /* 🔥 mobile auto */
    padding: 18px;
  }

  .media-box-sm,
  .youtube-card-sm {
    min-height: auto;
  }

  .media-box-sm img {
    max-height: 180px;
  }
}

  .media-card {
  height: 280px;          
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}  

/* IMAGE */
  .media-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}  



 .media-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
} 

/* 🔥 ONLY FOR YOUTUBE CARD */
 .media-card.video {
  aspect-ratio: 9 / 16;   
} 

/* iframe full fill */
 .media-card iframe {
  width: 100%;
  height: 100%;
  border: none;
} 
.why-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}
.why-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f2a44;
  margin-bottom: 10px;
}

.why-title span {
  color: #2ecc71;
}

.why-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}
.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 36px;   /* 👈 reduced */
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.why-neemz-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;   /* 👈 earlier romba perusa irundhudhu */
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;      /* 👈 slightly reduced */
  line-height: 1.5;
}



.trust-note {
  grid-column: span 2;
  margin-top: 16px;
  padding: 18px;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .why-neemz-section {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 26px 22px;
  }
}

/* ===============================
   COMBINED WRAPPER
================================ */
 /* .pricing-faq-combined{
  display:flex;
  gap:60px;
  max-width:1200px;
  margin:100px auto;
  padding:0 20px;
  align-items:flex-start; */
/* } */ */

/* LEFT & RIGHT SAME WIDTH */
/* .pricing-side,
.faq-side{
  flex:1;
} */

/* ===============================
   COMMON CARD DESIGN (SAME FOR BOTH)
================================ */
.pricing-card,
.faq-container{
  background:#ffffff;
  border-radius:28px;
  padding:40px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

/* ===============================
   PRICING LIST STYLE
================================ */
.pricing-list{
  list-style:none;
  padding:0;
  margin:0 0 28px;
}

.pricing-list li{
  background:#f2fffb;
  padding:18px 22px;
  border-radius:16px;
  margin-bottom:18px;
  font-weight:500;
}

/* ===============================
   EMI PARTNERS
================================ */
.emi-partners{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:20px;
}

.emi-partners img{
  height:36px;
  object-fit:contain;
}

/* ===============================
   PRICING BUTTON
================================ */
.pricing-btn,
.faq-cta{
  display:block;
  text-align:center;
  margin-top:30px;
  background:#35c759;
  color:#fff;
  padding:16px 26px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 14px 35px rgba(53,199,89,0.35);
}

/* ===============================
   FAQ TITLE INSIDE CARD
================================ */
.faq-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:20px;
}

.faq-underline{
  display:none; /* remove outside underline for clean card look */
}

/* ===============================
   FAQ ITEMS (MATCH PRICING LIST)
================================ */
.faq-card{
  margin-bottom:18px;
}

.faq-question{
  width:100%;
  background:#f2fffb;
  border:none;
  padding:18px 22px;
  border-radius:16px;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-answer{
  padding:14px 22px 0;
  font-size:14px;
  display:none;
}

/* ===============================
   FAQ ACTIVE STATE (OPTIONAL)
================================ */
.faq-card.active .faq-answer{
  display:block;
}

.patient-review-section{
  background:linear-gradient(180deg,#eafff4,#f4fffb);
  padding:90px 20px;
  text-align:center;
}

/* HEADER */
.review-tag{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  color:#1fbf75;
  margin-bottom:10px;
}

.review-title{
  font-size:36px;
  font-weight:800;
  margin-bottom:12px;
}

.review-title span{
  color:#1fbf75;
}

.review-subtitle{
  font-size:16px;
  color:#666;
  max-width:520px;
  margin:0 auto 50px;
}

/* VIDEO CARD */
.review-video-card{
  position:relative;
  max-width:760px;
  margin:0 auto;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.18);
}

/* VIDEO */
.review-video-card video{
  width:100%;
  height:auto;
  display:block;
  border-radius:28px;
}

/* OVERLAY TEXT */
.video-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:22px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,0.65));
  color:#fff;
  text-align:left;
}

.video-overlay h4{
  font-size:20px;
  font-weight:700;
  margin-bottom:6px;
}

.video-overlay p{
  font-size:14px;
  opacity:0.9;
}
/* ===============================
   PATIENT REVIEW VIDEO FIX
================================ */

.review-video-card{
  position:relative;
  max-width:620px;
  margin:0 auto;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.18);
}

.review-video-card video{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  border-radius:28px;
}

@media (min-width:1024px){
  .review-video-card{
    max-width:580px;
  }
}
.review-video-card video{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:contain;   /* 🔥 IMPORTANT */
  background:#000;      /* black bars */
  border-radius:28px;
}


/* ===============================
   BEFORE & AFTER SECTION
================================ */
.results-section{
  padding:90px 0;
  background:#ffffff;
}

.video-card{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

/* ===============================
   PATIENT REVIEW SECTION
================================ */
.patient-review-section{
  background:linear-gradient(180deg,#eafff4,#f4fffb);
  padding:100px 20px;
  text-align:center;
}

.review-title span{
  color:#1fbf75;
}

.review-video-card{
  position:relative;
  max-width:580px;
  margin:50px auto 0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.18);
}

.patient-video{
  width:100%;
  aspect-ratio:16/9;
  object-fit:contain;
  background:#000;
  border-radius:28px;
}

/* Overlay */
.video-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:18px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,0.7));
  color:#fff;
  text-align:left;
}

/* ===== LAYOUT ===== */
.pricing-faq-wrapper{
  display:flex;
  gap:50px;
  max-width:1200px;
  margin:100px auto;
  padding:0 20px;
  align-items:stretch;
}

/* ===== CARD BASE ===== */
.card{
  flex:1;
  background:#fff;
  border-radius:28px;
  padding:40px;
  box-shadow:0 25px 70px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
}

/* ===== TEXT ===== */
.tag{
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  color:#1fbf75;
}

.title{
  font-size:26px;
  font-weight:800;
  margin:10px 0;
}

.title span{ color:#1fbf75; }

.subtitle{
  font-size:15px;
  color:#666;
  margin-bottom:24px;
}
/* //// */
/* ===== LAYOUT ===== */

.faq-card{
  padding-bottom: 7px;
}
.why-card.highlight{
  background: #ffffff;   /* white background */
}

/* ======================================
   MOBILE RESPONSIVE (GLOBAL)
   ====================================== */
/* FIX BOOTSTRAP ROW OVERFLOW (MOBILE) */
@media (max-width: 768px) {
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100%;
  }
}
@media (max-width: 768px) {

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
    max-width: 100%;
    word-break: break-word;
  }

  .hero p {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-list {
    padding-left: 0;
    margin: 20px auto;
    max-width: 320px;
    text-align: left;
  }
}



/* /////////////////////////////////////////////////////////////////// */
/* ===============================
   SECTION WRAPPER
================================ */
.results-review-combined {
  background:  #0b3b47; 
  padding: 80px 0;
}

/* ===============================
   FLEX LAYOUT – SAME HEIGHT
================================ */
.combined-video-layout {
  display: flex;
  gap: 10px;
  align-items: stretch; /* 🔥 SAME HEIGHT */
}

/* LEFT & RIGHT */
.combined-left,
.combined-right {
  flex: 1;
  background: #f3fff9; /* 🔥 SAME BG BOTH SIDES */
  padding: 20px;
  border-radius: 24px;
}

/* LEFT a bit wider */
.combined-left {
  flex: 1.4;
}

/* ===============================
   BEFORE / AFTER VIDEOS
================================ */
.video-card {
  background: #0b3b47;  
  padding: 14px;
  border-radius: 22px;
  margin-top: 38px;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ❌ crop illa */
  border-radius: 16px;
  background: #000;
  
}

/* ===============================
   PATIENT REVIEW – CENTERED
================================ */
.combined-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 🔥 vertical center */
  text-align: center;
}

/* REVIEW VIDEO FRAME */
.review-video-card {
  width: 320px;
  aspect-ratio: 9 / 16;
  margin-top: 25px;

  background: #000;
  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
}

/* ===============================
   PATIENT REVIEW – PERFECT VERTICAL
================================ */

/* ===============================
   REVIEW VIDEO CARD
================================ */
.review-video-card {
  width: 320px;
  height: 420px;          /* 👈 card height (adjust here) */
  margin: 30px auto 0;

  background: #000;
  border-radius: 26px;
  overflow: hidden;
  position: relative;

  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
}

/* ===============================
   VIDEO – ADJUSTABLE
================================ */
.patient-video {
  width: 100%;
  height: 150%;
  object-fit: cover;     /* 🔥 FULL SCREEN (no black sides) */
  object-position: center;
  background: #000;
}
.patient-video {
  object-fit: cover;
  transform: scale(1.1); /* 1.05 / 1.1 / 1.2 */
}
@media (max-width: 768px) {
  .review-video-card {
    width: 100%;
    max-width: 360px;
    height: 560px;       /* 🔥 reel style */
  }
}


/* TEXT OVERLAY */
.video-overlay {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .review-video-card {
    width: 100%;
    max-width: 320px;
    height: 560px;
  }
}
/* ===============================
   MOVE PATIENT REVIEW UP
================================ */

/* Section spacing reduce */
.patient-review-section {
  padding-top: 40px !important;   /* default irundha adha kammi pannum */
}

/* Card move up */
.review-video-card {
  margin-top: 70px !important;    /* already irundha gap reduce */
  transform: translateY(-50px);   /* 🔥 move UP */
}
/* ===============================
   ALIGN LEFT & RIGHT HEADINGS
================================ */

/* heading wrapper */
.section-heading {
  min-height: 120px;          /* 🔥 SAME HEIGHT */
  display: flex;
  flex-direction: column;
  justify-content: center;    /* vertical align */
}

/* left heading alignment */
.left-heading {
  align-items: flex-start;
}

/* right heading alignment */
.right-heading {
  align-items: flex-start;    /* 🔥 same baseline */
}

/* remove extra margins */
.section-heading h2 {
  margin-bottom: 10px;
}

/* subtitle spacing control */
.review-subtitle {
  margin-top: 6px;
  max-width: 420px;
}


/* ===============================
   MOBILE FULL WIDTH FIX
================================ */
@media (max-width: 768px) {

  /* remove desktop width limit */
  .container {
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* stack layout properly */
  .combined-layout {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  /* both cards full width */
  .combined-left,
  .combined-right {
    width: 100%;
  }

  /* cards should not look skinny */
  .combined-left > div,
  .combined-right > div {
    width: 100%;
  }

}

@media (max-width: 768px) {
  .review-video-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .patient-video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* ===============================
   MOBILE FULL PAGE FIX
================================ */
@media (max-width: 768px) {

  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* remove desktop container limit */
  .container,
  .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* main combined layout */
  .combined-layout {
    flex-direction: column;
    width: 100%;
    gap: 32px;
  }

  /* left & right sections full width */
  .combined-left,
  .combined-right {
    width: 100%;
    min-height: auto;
  }

}
@media (max-width: 768px) {

  .review-video-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 520px;   /* 🔥 full vertical feel */
  }

  .patient-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

}
@media (max-width: 768px) {
  .results-review-combined,
  .invisalign-combined-section {
    min-height: 100vh;  /* 🔥 top to bottom */
  }
}

/* ===============================
   MOBILE RESPONSIVE FIX – FINAL
================================ */
@media (max-width: 768px) {

  /* FULL WIDTH PAGE */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  /* STACK LEFT & RIGHT */
  .combined-video-layout {
    flex-direction: column;
    gap: 30px;
  }

  .combined-left,
  .combined-right {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }

  /* REMOVE DESKTOP HEIGHT FORCE */
  .section-heading {
    min-height: auto;
    align-items: flex-start;
  }

  /* BEFORE / AFTER VIDEO CARDS */
  .video-card {
    margin-top: 20px;
    padding: 10px;
  }

  .video-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  /* ===============================
     PATIENT REVIEW – MOBILE FIX
  ================================ */

  .combined-right {
    justify-content: flex-start;
  }

  .review-video-card {
    width: 100%;
    max-width: 320px;
    height: auto;                /* 🔥 remove fixed height */
    aspect-ratio: 9 / 16;        /* 🔥 vertical video */
    margin: 20px auto 0;
    transform: none !important;  /* 🔥 remove UP shift */
  }

  .patient-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* TEXT OVERLAY SAFE */
  .video-overlay {
    position: relative;
    bottom: auto;
    margin-top: 12px;
  }

  /* REMOVE EXTRA SECTION GAP */
  .patient-review-section {
    padding-top: 20px !important;
  }

}

/* ===============================
   VIDEO CENTER FIX 🔥
================================ */

/* video card container */
.video-card {
  display: flex;
  align-items: center;     /* 🔥 vertical center */
  justify-content: center; /* 🔥 horizontal center */
  padding: 12px;
  margin: 0 auto;          /* 🔥 remove left/right shift */
  background: #0b3b47;
  border-radius: 22px;
}

/* actual video */
.video-card video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;    /* 🔥 keeps ratio */
  object-fit: contain;     /* ❌ no crop */
  margin: 0 auto;          /* 🔥 force center */
  background: #000;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .video-card {
    width: 100%;
  }
}
/* ===============================
   PATIENT REVIEW – VIDEO FIX
================================ */

.review-video-card {
  width: 300px;
  height: 200px;
  margin: 30px auto 0;
  background: #000;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
}

.patient-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .review-video-card {
    width: 100%;
    max-width: 360px;
    height: 580px;
  }
}

/* ===============================
   SECTION BASE
================================ */
.invisalign-combined-section {
  background: linear-gradient(180deg, #f3fff9, #ecfff6);
}

/* ===============================
   MAIN FLEX
================================ */
.combined-layout {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

/* LEFT – PROFESSIONAL */
.combined-left {
  flex: 1.3;
}

/* RIGHT – TRENDING */
.combined-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===============================
   LEFT – WHY INVISALIGN CARDS
================================ */
.why-invisalign-card-sm {
   background: #ffffff; 
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-invisalign-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.why-invisalign-card-sm .icon {
  width: 42px;
  height: 42px;
  background-color: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 18px;
}

/* ===============================
   RIGHT – TRENDING PREVIEW STRIP
================================ */
.preview-trending {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

/* COMMON MEDIA CARD */
 .media-card {
  background: transparent;
  padding: 0;
} 

/* ===============================
   QR – SIZE CONTROL
================================ */
.qr-card img {
  width: 350px;        /* 🔧 adjust here */
  height: 200px;
  object-fit: contain;
}

/* ===============================
   AD CARD – SIZE CONTROL
================================ */
.ad-card img {
  width: 170px;        /* 🔧 adjust here */
  height: 520px;
  object-fit: contain;
  border-radius: 12px;
}

/* ===============================
   VIDEO – TRENDING MOBILE STYLE
================================ */
.video-card video {
  width: 170px;        /* 🔧 adjust here */
  height: 550px;
  object-fit: contain;
  background: #000;
  border-radius: 18px;
  
}

/* ===============================
   REGISTER BUTTON
================================ */
.preview-register-btn {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, #4cc94a, #2fa84f);
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(76,201,74,0.35);
  transition: all 0.3s ease;
}

.preview-register-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #43b943, #279a46);
} 
/* .why-invisalign-card-sm {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: none;
  border-radius: 16px;
} */


/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .combined-layout {
    flex-direction: column;
  }

  .preview-trending {
    flex-direction: column;
  }

  .video-card video {
    width: 100%;
    max-width: 260px;
    height: 360px;
  }
}


/* /////////////////////////////////////////////////////// */
/* SECTION BG */
.results-review-section {
  background: #0F5D63;
  padding: 80px 0;
}

/* MAIN LAYOUT */
.results-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* LEFT & RIGHT CARD */
.results-left,
.results-right {
  background: #f3fff9;
  border-radius: 28px;
  padding: 30px;
  flex: 1;
}

/* LEFT slightly wider */
.results-left {
  flex: 1.3;
}

/* TITLES */
.section-title {
  font-weight: 700;
  text-align: center;
}

.green {
  color: #2ecc71;
}

.underline {
  width: 60px;
  height: 4px;
  background: #f4c430;
  margin: 10px auto 30px;
  border-radius: 10px;
}

/* BEFORE AFTER GRID */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

/* VIDEO BOX */
.video-box {
  background: black;
  padding: 14px;
  border-radius: 20px;
  height: 200px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: #000;
}

/* RIGHT SIDE */
.results-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  color: #2ecc71;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* REVIEW VIDEO */
.review-video-box {
  width: 320px;
  height: 520px;
  background: #000;
  border-radius: 28px;
  margin: 25px auto;
  overflow: hidden;

  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.review-video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* REVIEW TEXT */
.review-text {
  color: #444;
  font-size: 14px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

  .results-layout {
    flex-direction: column;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .video-box {
    height: 200px;
  }

  .review-video-box {
    width: 100%;
    max-width: 320px;
    height: 480px;
  }
}

.hero-images.parallax {
  pointer-events: none;
}
.top-info-btn,
.register-btn {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}
/* PARALLAX IMAGE SHOULD NOT BLOCK CLICKS */
.hero-images.parallax,
.hero-images.parallax::before,
.hero-images.parallax::after {
  pointer-events: none;
}

/* CTA BUTTON ALWAYS CLICKABLE */
.top-info-btn {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}




  


