:root {
  --primary: #f07fb3; /* Theme Pink */
  --secondary: #2e3a8c; /* Theme Blue */
  --text-color: #64748b; /* Light Gray Text */
  --bg-light: #f8fafc; /* Light Background */
  --white: #ffffff;
  --font-main: "Quicksand", sans-serif;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Quicksand, sans-serif;
}
body {
  font-family: var(--font-main);
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}

/* ================= UTILITY CLASSES ================= */
.container {

  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad {
  padding: 90px 0;
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-white {
  background-color: var(--white);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.flex-row {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}

/* Column Widths (Simple Grid System) */
.col-lg-6 {
  width: 50%;
  padding: 0 15px;
}
.col-lg-4 {
  width: 33.333%;
  padding: 0 15px;
}
.col-lg-8 {
  width: 66.666%;
  padding: 0 15px;
}
.col-lg-5 {
  width: 41.666%;
  padding: 0 15px;
}
.col-lg-7 {
  width: 58.333%;
  padding: 0 15px;
}
.col-lg-3 {
  width: 25%;
  padding: 0 15px;
}
.col-sm-6 {
  width: 50%;
  padding: 0 15px;
}
.w-40 {
  width: 40%;
}
.w-60 {
  width: 60%;
}

/* Spacing Helpers */
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-30 {
  margin-bottom: 30px;
}
.ms-2 {
  margin-left: 8px;
}
.ms-30 {
  margin-left: 30px;
}
.pl-lg-30 {
  padding-left: 30px;
}
.pl-lg-50 {
  padding-left: 50px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-primary {
  color: var(--primary) !important;
}
.text-warning {
  color: var(--primary);
}
.fw-bold {
  font-weight: 700;
}

/* Typography */
.sub-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.section-desc {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--text-color);
}
.mini-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.btn-white {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  background-color: var(--primary);
  color: var(--white);
}
.link-btn {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

/* ================= 1. HERO SECTION ================= */
.hero-swiper {
  position: relative;
  height: 95vh;
  min-height: 920px;
  overflow: hidden;
  background: #1d275f;
  margin-top: -60px;
  border-bottom: none;
  width: 100%;
}

/* Hide any seam between hero and the next section */
.hero-swiper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #fff;
  z-index: 3;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px; /* Offset sticky header */
}

.hero-slide-1 {
  background: linear-gradient(130deg, #1d275f 0%, #2e3a8c 45%, #3b4fa0 100%);
}

.hero-accent {
  color: var(--primary);
}

.hero-slide-2 {
  background: linear-gradient(130deg, #1d275f 0%, #2e3a8c 45%, #3b4fa0 100%);
}

.hero-slide-3 {
  background: linear-gradient(130deg, #1d275f 0%, #2e3a8c 50%, #243075 100%);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 39, 95, 0.88) 0%, rgba(29, 39, 95, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px;
}

.hero-title {
  font-size: 85px;
  font-weight: 700;
  line-height: 102px;
  color: rgb(255, 255, 255);
}

.hero-desc {
  margin-top: 10px;
  font-size: 20px;
  color: var(--white);
  max-width: 550px;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Swiper Content Grid Layouts for Slide 2 and 3 */
.mbp-hero-slide-content,
.tcp-hero-slide-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  width: 100%;
  text-align: left;
}

/* Swiper Pagination & Navigation Overrides */
.hero-swiper-pagination {
  bottom: 30px !important;
  z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary) !important;
  width: 28px;
  border-radius: 5px;
}

.hero-swiper-next,
.hero-swiper-prev,
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}


/* ================= 2. ABOUT US ================= */
.about-images-wrapper {
  position: relative;
}
.img-main {
  width: 90%;
  border-radius: 20px;
  object-fit: cover;
}
.img-overlap {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  border-radius: 20px;
  border: 10px solid var(--white);
  object-fit: cover;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 30px;
}
.btn-video {
  color: var(--secondary);
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.play-icon {
  color: var(--primary);
  font-size: 20px;
}

/* ================= 3. SERVICES TABS ================= */
.custom-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-btn {
  background: var(--white);
  border: none;
  padding: 20px 30px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-family: var(--font-main);
}
.tab-btn.active,
.tab-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  background: var(--white);
  border-radius: 25px;
  padding: 30px;
  gap: 30px;
  align-items: stretch;
}
.service-card .img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
  align-self: stretch;
  background: #eef3f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.service-card .img-box .service-img {
  transform: scale(1.04);
  transition: transform 0.3s ease;
}

.service-card .img-box .service-img-ivf {
  object-position: center center;
}

.service-card .img-box .service-img-iui {
  object-position: center center;
  transform: scale(1.04);
}

.service-card .img-box .service-img-icsi {
  object-position: center center;
}
.btn-book {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}
.service-card .info-box h3 {
  font-size: 26px;
  color: var(--secondary);
  margin-bottom: 15px;
}
.check-list {
  list-style: none;
  margin-top: 20px;
}
.check-list li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list li i {
  color: var(--primary);
  font-size: 20px;
}

/* ================= 4. DOCTOR & SKILLS ================= */
.skills-list {
  list-style: none;
  margin-bottom: 20px;
  row-gap: 15px;
}
.skills-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.skills-list li a {
  color: var(--secondary);
  text-decoration: none;
}
.skills-list li a:hover {
  color: var(--primary);
}
.rounded-image {
  border-radius: 25px;
}

.doctor-highlight-media {
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eef3f8;
  margin-left: auto;
}

.doctor-highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.doctor-highlight-content .section-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 14px;
}

.doctor-highlight-content .section-desc {
  max-width: 760px;
}

/* ================= 5. WHY CHOOSE US ================= */
.icon-ring {
  font-size: 40px;
  color: var(--primary);
  margin-right: 15px;
  animation: ring 2s infinite ease-in-out;
}
@keyframes ring {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}
.h-450 {
  height: 450px;
}
.object-cover {
  object-fit: cover;
}
.image-card {
  position: relative;
}

/* Keep both Why Choose Us images visually balanced */
#why-choose-us .image-card {
  height: 450px;
  aspect-ratio: auto;
}

#why-choose-us .image-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= 6. TEAM SECTION ================= */
.team-col {
  margin-bottom: 30px;
}
.team-card {
  position: relative;
  overflow: hidden;
}
.team-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-img img {
  width: 100%;
  transition: 0.5s;
}
.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 50px);
  background: var(--primary);
  padding: 10px 25px;
  border-radius: 30px;
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: 0.4s;
}
.team-social a {
  color: var(--white);
  font-size: 16px;
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translate(-50%, 0);
}
.team-card:hover .team-img img {
  transform: scale(1.05);
}
.team-info h3 {
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 5px;
}
.team-info span {
  font-size: 15px;
  color: var(--text-color);
}

.home-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 18px;
}

.home-team-grid .doctor-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(46, 58, 140, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-team-grid .doctor-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-team-grid .doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(46, 58, 140, 0.14);
}

.home-team-grid .doctor-image-wrap {
  aspect-ratio: 5 / 4;
  min-height: 280px;
  overflow: hidden;
  background: #eef3f8;
}

.home-team-grid .doctor-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-team-grid .doctor-info {
  padding: 18px;
}

.home-team-grid .doctor-info h3 {
  margin: 0 0 6px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.home-team-grid .role {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.home-team-grid .desc {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ================= 7. TESTIMONIALS ================= */
.testi-card {
  background: var(--white);
  border-radius: 25px;
  padding: 50px;
  gap: 40px;
  margin: 20px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
.absolute-quote {
  margin-bottom: 20px;
  display: block;
  font-size: 45px;
  color: rgba(31, 140, 157, 0.2);
}
.testi-text {
  font-size: 22px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}
.testi-name {
  font-size: 24px;
  margin-bottom: 5px;
}
.testi-role {
  font-size: 16px;
}
.testi-img img {
  border-radius: 20px;
  border-bottom-right-radius: 100px;
  width: 100%;
}
.testi-rating {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-swiper {
    height: auto;
    min-height: 760px;
  }
  .hero-slide {
    height: auto;
    min-height: 760px;
    padding: 100px 0 80px;
  }

  .mbp-hero-slide-content,
  .tcp-hero-slide-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .mbp-index-right,
  .tcp-index-right {
    margin: 0 auto;
  }


  .hero-bg-video {
    object-position: 62% center;
  }

  .col-lg-6,
  .col-lg-4,
  .col-lg-8,
  .col-lg-5,
  .col-lg-7,
  .w-40,
  .w-60 {
    width: 100%;
    padding: 0 15px;
  }
  .pl-lg-30,
  .pl-lg-50 {
    padding-left: 15px;
  }
  .mb-mob-30 {
    margin-bottom: 30px;
  }
  .mb-mob-40 {
    margin-bottom: 40px;
  }
  .hero-title {
    font-size: 50px;
  }
  .flex-row {
    flex-direction: column;
  }
  .service-card .img-box img {
    height: 100%;
  }
  .testi-card {
    padding: 30px;
  }
  .testi-img {
    display: none; /* Simplifies layout on mobile */
  }
  .testi-content {
    width: 100%;
  }

  .home-team-grid {
    grid-template-columns: repeat(2, minmax(0, 330px));
    justify-content: center;
  }

  .doctor-highlight-media {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .doctor-highlight-row {
    flex-direction: column-reverse !important;
    align-items: center;
    gap: 24px;
  }

  .doctor-highlight-content {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 420px;
    background: #1d275f;
    padding: 80px 0 50px;
    align-items: flex-start;
  }

  .hero-bg-video {
    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(135deg, rgba(29, 39, 95, 0.82) 0%, rgba(29, 39, 95, 0.55) 100%);
  }

  .hero-container {
    padding-top: 20px;
  }

  .hero-text-box {
    max-width: 100%;
  }

  .col-sm-6 {
    width: 100%;
  }
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .contact-inline {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
  .contact-inline .call-box {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .contact-inline .icon-ring {
    font-size: 28px;
    margin-right: 8px;
  }
  .ms-30 {
    margin-left: 0;
  }
  .img-overlap {
    bottom: -20px;
    width: 60%;
  }

  .home-team-grid {
    grid-template-columns: minmax(0, 340px);
    justify-content: center;
  }

  .doctor-highlight-media {
    width: min(100%, 360px);
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .doctor-highlight-img {
    object-position: center top;
  }

  .doctor-highlight-content .section-title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .doctor-highlight-content .section-desc {
    margin-bottom: 18px;
  }

  .service-card .img-box {
    aspect-ratio: 4 / 3;
  }

  .service-card .img-box .service-img {
    transform: scale(1.02);
  }

  .service-card .img-box .service-img-iui {
    object-position: 78% center;
    transform: scale(1.05);
  }

  .h-450 {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  #why-choose-us .image-card {
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 220px;
    overflow: hidden;
  }

  #why-choose-us .h-450 {
    height: 100%;
    max-height: 220px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  #why-choose-us .row.align-items-center > .col-lg-5 {
    order: 2;
  }

  #why-choose-us .row.align-items-center > .col-lg-7 {
    order: 1;
  }

  #why-choose-us .mt-lg-50 {
    margin-top: 0;
  }

  .home-team-grid .doctor-image-wrap,
  .home-testi-img {
    aspect-ratio: 4 / 3;
  }

  .home-team-grid .doctor-image-wrap img,
  .home-testi-img img {
    height: 100%;
    min-height: 0;
  }

  .img-overlap {
    max-width: 60%;
    height: auto;
  }

  .about-images-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .img-main {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
  }

  .img-overlap {
    width: 48%;
    bottom: -10px;
    right: 8px;
    border-width: 6px;
  }

  #why-choose-us .image-card,
  #why-choose-us .h-450 {
    max-height: 190px !important;
    aspect-ratio: 16 / 10 !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 68svh;
    min-height: 420px;
  }

  .hero-bg-video {
    object-fit: contain;
    object-position: center center;
  }

  .img-main {
    max-height: 220px;
  }

  #why-choose-us .image-card,
  #why-choose-us .h-450 {
    max-height: 250px !important;
  }
}

/* ================= HOME EXTRA SECTIONS ================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.stat-card {
  background: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}
.stat-card h3 {
  font-size: 44px;
  color: var(--secondary);
  margin-bottom: 6px;
}
.stat-card p {
  color: var(--text-color);
  font-weight: 500;
}

.ivf-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ivf-step-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 18px;
}
.step-no {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.ivf-step-card h4 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 18px;
}

.benefits-head {
  margin-bottom: 36px;
}
.benefits-tag {
  display: inline-block;
  background: #2f56cb;
  color: #ffffff;
  font-size: 28px;
  font-style: italic;
  line-height: 1;
  padding: 7px 14px;
  margin-bottom: 16px;
}

.benefits-main-title {
  color: #2e3a8c;
  margin-bottom: 0;
}
.benefits-scroll-wrap {
  --steps: 6;
  position: relative;
  height: calc(100vh + (var(--steps) - 1) * 65vh);
}
.benefits-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;.benefit-card:not(:first-child){
  margin-top:40px;
}
}

.benefits-stage {
  position: relative;
  min-height: clamp(380px, 54vh, 560px);
  overflow: hidden;
}
.benefit-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fd 100%);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: left;
  border: 1px solid #d9e2f0;
  box-shadow: 0 14px 30px rgba(46, 58, 140, 0.08);
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
  transition: opacity 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.benefit-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  border-color: rgba(240, 127, 179, 0.42);
  animation: benefitCardInDown 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.benefits-stage.dir-up .benefit-card.active {
  animation-name: benefitCardInUp;
}
.benefit-card.active:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(46, 58, 140, 0.16);
  border-color: rgba(240, 127, 179, 0.55);
}
.benefit-card i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 12px;
  transition: transform 0.28s ease, color 0.28s ease;
}
.benefit-card.active:hover i {
  transform: scale(1.1) rotate(-6deg);
  color: #e45aa0;
}
.benefit-card h4 {
  color: var(--secondary);
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--text-color);
  font-size: 16px;
  margin: 0;
}
.benefit-points {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-color);
}
.benefit-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.benefit-points li::before {
  content: "\2713";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: #e870ac;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}
.benefits-counter {
  margin-top: 18px;
  text-align: center;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.06em;
}
@keyframes benefitCardInDown {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes benefitCardInUp {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .benefit-card {
    transition: none;
    animation: none !important;
  }
}

.cta-mini-card {
  background: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
}
.cta-mini-card h3 {
  color: var(--secondary);
  font-size: 28px;
  margin-bottom: 10px;
}
.cta-mini-card p {
  margin-bottom: 20px;
}

.faq-wrap-home {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item-home {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q-home {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-q-home i {
  color: var(--primary);
}
.faq-a-home {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: 0.25s ease;
}
.faq-item-home.active .faq-a-home {
  max-height: 120px;
  padding: 0 18px 16px;
}
.faq-item-home.active .faq-q-home i {
  transform: rotate(45deg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.news-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(46, 58, 140, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 127, 179, 0.35);
  box-shadow: 0 16px 34px rgba(46, 58, 140, 0.12);
}
.news-card h4 {
  color: var(--secondary);
  font-size: 22px;
  margin-bottom: 8px;
}
.news-card p {
  margin-bottom: 16px;
  line-height: 1.6;
}
.news-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #dd62a2);
  color: var(--white);
  margin-bottom: 12px;
}
.news-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(240, 127, 179, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.news-link {
  color: var(--secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
}
.news-link:hover {
  color: var(--primary);
}
.news-card-cta {
  background: var(--white);
  color: inherit;
}
.news-card-cta h4,
.news-card-cta p {
  color: inherit;
}
.news-card-cta .news-badge {
  color: var(--primary);
  background: rgba(240, 127, 179, 0.12);
}
.news-card-cta .news-icon {
  background: linear-gradient(135deg, var(--primary), #dd62a2);
}
.news-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  color: var(--white);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  margin-top: auto;
  width: fit-content;
}
.news-cta-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

@media (max-width: 1024px) {
  .stats-grid,
  .ivf-steps-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-stage {
    min-height: clamp(400px, 57vh, 620px);
  }
}

@media (max-width: 768px) {
  .stats-grid,
  .ivf-steps-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .stat-card h3 {
    font-size: 34px;
  }

  .benefits-scroll-wrap {
    height: calc(100vh + (var(--steps) - 1) * 85vh);
  }

  .benefits-stage {
    min-height: clamp(430px, 60vh, 680px);
  }
}

/* ================= HOME TESTIMONIAL (SERVICES STYLE) ================= */
.home-testimonial-slider {
  overflow: hidden;
  position: relative;
}

.home-testimonial-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.home-testimonial-slide {
  min-width: min(920px, 88vw);
  flex: 0 0 min(920px, 88vw);
}

.home-testimonial-controls {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.home-testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.home-testi-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.home-testi-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.home-testi-btn:focus-visible {
  outline: 3px solid rgba(26, 62, 180, 0.25);
  outline-offset: 2px;
}

.home-testi-card {
  background: var(--white);
  border-radius: 25px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.home-testi-text {
  font-size: 20px;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.home-testi-name {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 4px;
}

.home-testi-role {
  font-size: 15px;
  color: var(--text-color);
}

.home-testi-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
}

.home-testi-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .home-testimonial-slide {
    min-width: min(700px, 92vw);
    flex: 0 0 min(700px, 92vw);
  }

  .home-testi-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 8px;
  }

  .home-testimonial-track {
    gap: 12px;
    will-change: transform;
  }

  .home-testimonial-slide {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .home-testi-card {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 14px;
    border-radius: 18px;
    gap: 12px;
  }

  .home-testi-text {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .home-testi-name {
    font-size: 20px;
    word-break: break-word;
  }

  .home-testi-role {
    font-size: 14px;
  }

  .home-testi-img {
    aspect-ratio: 16 / 10;
    max-height: 190px;
    border-radius: 14px;
    overflow: hidden;
  }

  .home-testi-img img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
  }

  .home-testimonial-controls {
    gap: 10px;
    margin-top: 14px;
  }

  .home-testi-btn {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .home-testi-card {
    padding: 16px 12px;
    gap: 10px;
  }

  .home-testi-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .home-testi-name {
    font-size: 22px;
  }

  .home-testi-img {
    max-height: 170px;
  }
}




.about-more-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.about-more-content.is-open {
  max-height: 220px;
  opacity: 1;
  margin: -10px 0 18px;
}
.about-more-content p {
  margin-bottom: 10px;
  color: var(--text-color);
}
.about-more-content p:last-child {
  margin-bottom: 0;
}

/* Final mobile hero override */
@media (max-width: 768px) {
  .hero-swiper {
    margin-top: 0 !important;
    height: auto !important;
    min-height: 980px !important;
    background: #1d275f !important;
    border-bottom: none !important;
  }

  .hero-slide {
    height: auto !important;
    min-height: 980px !important;
    padding: 60px 0 40px !important;
    align-items: center !important;
  }

  .mbp-hero-slide-content,
  .tcp-hero-slide-content {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center !important;
  }

  .mbp-index-left,
  .tcp-index-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mbp-index-desc,
  .tcp-index-desc {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }

  .mbp-index-pills,
  .tcp-index-pills {
    justify-content: center;
    margin-bottom: 20px !important;
  }

  .mbp-index-actions,
  .tcp-index-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .mbp-index-actions .btn,
  .tcp-index-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mbp-index-stat-card,
  .tcp-index-stat-card {
    padding: 24px 16px !important;
    gap: 16px !important;
    max-width: 320px !important;
    margin: 0 auto;
  }

  .mbp-index-percent,
  .tcp-index-percent {
    font-size: 3.5rem !important;
  }

  .hero-swiper + .section-pad {
    padding-top: 40px;
  }

  .hero-container {
    padding: 0 20px !important;
  }
}

@media (max-width: 480px) {
  .hero-swiper {
    min-height: 920px !important;
    padding: 0 !important;
  }

  .hero-slide {
    min-height: 920px !important;
    padding: 50px 0 30px !important;
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 1.25 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-swiper + .section-pad {
    padding-top: 34px;
  }
}

/* ================= HOME POPUP MODAL ================= */
.ivf-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 40, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 12000;
}

.ivf-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ivf-popup-card {
  width: min(720px, 92vw);
  max-height: min(86vh, 620px);
  background: linear-gradient(135deg, #fff7fb 0%, #f8f4ff 45%, #eef5ff 100%);
  border-radius: 24px;
  border: 1px solid #e8ddf8;
  box-shadow: 0 26px 60px rgba(46, 58, 140, 0.22);
  position: relative;
  overflow: hidden;
}

.ivf-popup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(240, 127, 179, 0.2), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(90, 118, 255, 0.18), transparent 44%);
  pointer-events: none;
}

.ivf-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d7dff3;
  background: #ffffff;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.ivf-popup-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px 18px 16px;
  overflow: auto;
}

.ivf-popup-eyebrow {
  display: inline-block;
  color: #ef6ca9;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ivf-popup-copy h2 {
  color: var(--secondary);
  font-size: clamp(24px, 2.9vw, 36px);
  line-height: 1.12;
  margin: 0 0 8px;
}

.ivf-popup-copy p {
  color: #56688f;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 10px;
  max-width: 560px;
}

.ivf-popup-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.ivf-popup-icons span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e8ddf8;
  color: #f07fb3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ivf-popup-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ivf-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.ivf-popup-btn-primary {
  background: linear-gradient(135deg, #f07fb3, #df62a3);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(240, 127, 179, 0.35);
}

.ivf-popup-btn-outline {
  background: #ffffff;
  border: 1px solid #d5def2;
  color: var(--secondary);
}

.ivf-popup-art {
  height: 100%;
  max-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dfe7f6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.ivf-popup-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .ivf-popup-card {
    width: min(94vw, 620px);
    max-height: min(88vh, 700px);
  }

  .ivf-popup-content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 14px 14px;
    overflow-y: auto;
    max-height: inherit;
  }

  .ivf-popup-art {
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }

  .ivf-popup-btn {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .ivf-popup-overlay {
    padding: 10px;
  }

  .ivf-popup-card {
    width: 100%;
    max-height: 90vh;
    border-radius: 16px;
  }

  .ivf-popup-content {
    padding: 14px 12px 12px;
  }

  .ivf-popup-close {
    width: 34px;
    height: 34px;
    top: 10px;
    right: 10px;
  }

  .ivf-popup-copy h2 {
    font-size: clamp(21px, 7.2vw, 29px);
  }

  .ivf-popup-copy p {
    font-size: 14px;
    line-height: 1.45;
  }

  .ivf-popup-art {
    max-height: 170px;
  }

  .ivf-popup-actions {
    flex-direction: column;
  }

  .ivf-popup-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ivf-popup-content {
    gap: 8px;
  }

  .ivf-popup-icons {
    margin-bottom: 8px;
  }

  .ivf-popup-art {
    display: none;
  }
}


/* =====================================================
   HOMEPAGE — 50% Money Back IVF Program Banner
   ===================================================== */

.mbp-index-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(130deg, #1d275f 0%, #2e3a8c 45%, #3b4fa0 100%);
  box-shadow: 0 24px 64px rgba(46, 58, 140, 0.32);
}

.mbp-index-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(240, 127, 179, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.mbp-index-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding: 56px 52px;
}

/* LEFT SIDE */
.mbp-index-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mbp-index-title {
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
}

.mbp-index-accent {
  color: var(--primary); /* #f07fb3 */
}

.mbp-index-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}

.mbp-index-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 22px;
}

.mbp-index-desc strong {
  color: #fff;
}

.mbp-index-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mbp-index-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.mbp-index-pill i {
  color: var(--primary);
}

.mbp-index-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mbp-index-consult {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.mbp-index-consult:hover {
  color: var(--primary);
}

/* RIGHT SIDE — Stat Card */
.mbp-index-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mbp-index-stat-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mbp-idx-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: mbpIdxRingPulse 3.5s ease-in-out infinite;
}

.mbp-idx-ring-1 {
  width: 90px;
  height: 90px;
  border-color: rgba(240, 127, 179, 0.45);
  animation-delay: 0s;
}

.mbp-idx-ring-2 {
  width: 130px;
  height: 130px;
  border-color: rgba(255, 255, 255, 0.18);
  animation-delay: 0.7s;
}

.mbp-idx-ring-3 {
  width: 170px;
  height: 170px;
  border-color: rgba(240, 127, 179, 0.12);
  animation-delay: 1.4s;
}

@keyframes mbpIdxRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 0.45; }
}

.mbp-index-stat-inner {
  position: relative;
  z-index: 1;
}

.mbp-index-percent {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(240, 127, 179, 0.4);
}

.mbp-index-stat-lbl {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
}

.mbp-index-mini-stats {
  display: flex;
  gap: 16px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.mbp-idx-mini-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
}

.mbp-idx-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.mbp-idx-lbl {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 5px;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mbp-index-banner-content {
    grid-template-columns: 1fr;
    padding: 42px 36px;
    gap: 32px;
  }

  .mbp-index-stat-card {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .mbp-index-banner {
    border-radius: 18px;
  }

  .mbp-index-banner-content {
    padding: 32px 24px;
    gap: 28px;
  }

  .mbp-index-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .mbp-index-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mbp-index-pill {
    font-size: 0.78rem;
  }

  .mbp-index-percent {
    font-size: 3.5rem;
  }
}

/* =====================================================
   HOMEPAGE — 3 Cycle IVF Program Banner
   ===================================================== */
.tcp-index-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(130deg, #1d275f 0%, #2e3a8c 50%, #243075 100%);
  box-shadow: 0 24px 64px rgba(46, 58, 140, 0.28);
}

.tcp-index-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 80%, rgba(240, 127, 179, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.tcp-index-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding: 56px 52px;
}

/* LEFT SIDE */
.tcp-index-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.tcp-index-title {
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
}

.tcp-index-accent {
  color: var(--primary); /* #f07fb3 */
}

.tcp-index-tagline {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  line-height: 1.4;
}

.tcp-index-desc {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 22px;
}

.tcp-index-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tcp-index-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.tcp-index-pill i {
  color: var(--primary);
}

.tcp-index-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tcp-index-consult {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.tcp-index-consult:hover {
  color: var(--primary);
}

/* RIGHT SIDE — Stat Card */
.tcp-index-stat-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tcp-index-stat-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tcp-idx-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: tcpIdxRingPulse 3.5s ease-in-out infinite;
}

.tcp-idx-ring-1 {
  width: 90px;
  height: 90px;
  border-color: rgba(240, 127, 179, 0.4);
  animation-delay: 0s;
}

.tcp-idx-ring-2 {
  width: 130px;
  height: 130px;
  border-color: rgba(255, 255, 255, 0.16);
  animation-delay: 0.7s;
}

.tcp-idx-ring-3 {
  width: 170px;
  height: 170px;
  border-color: rgba(240, 127, 179, 0.1);
  animation-delay: 1.4s;
}

@keyframes tcpIdxRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 0.45; }
}

.tcp-index-stat-inner {
  position: relative;
  z-index: 1;
}

.tcp-index-percent {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(240, 127, 179, 0.4);
}

.tcp-index-stat-lbl {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
}

.tcp-index-mini-stats {
  display: flex;
  gap: 16px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.tcp-idx-mini-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
}

.tcp-idx-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.tcp-idx-lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 5px;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tcp-index-banner-content {
    grid-template-columns: 1fr;
    padding: 42px 36px;
    gap: 32px;
  }

  .tcp-index-stat-card {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .tcp-index-banner {
    border-radius: 18px;
  }

  .tcp-index-banner-content {
    padding: 32px 24px;
    gap: 28px;
  }

  .tcp-index-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .tcp-index-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .tcp-index-pill {
    font-size: 0.78rem;
  }

  .tcp-index-percent {
    font-size: 3.5rem;
  }
}
