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

body {
  font-family: 'Inter', sans-serif;
}

/* HEADER */

#mainHeader {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(120deg, #2664c0, #20c997, #0d2242);
  background-size: 300% 300%;
  animation: gradientFlow 18s ease infinite;
  transition: all 0.4s ease;
}

#mainHeader.scrolled {
  background: linear-gradient(120deg, #0d6efd, #20c997, #0d6efd);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}


.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 10px 40px;   /* was 18px — this was the bloat */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  background: rgba(32, 201, 151, 0.35);   /* soft teal glass */
  padding: 5px 10px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}




.brand img {
  height: 42px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #150dfd;
}

.brand-sub {
  font-size: 11px;
  color: #e63946;
  letter-spacing: 0.8px;
}

/* NAV */

.nav-links a {
  margin: 0 16px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links a:hover {
  color: #eafff6;
}

.nav-container {
  background: transparent;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0d6efd;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }
}





/* SOCIALS */

.nav-socials a {
  margin-left: 12px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.brand {
  animation: slideFade 0.7s cubic-bezier(.25,.8,.25,1) forwards;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand img {
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.06);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  min-height: 100vh;
  padding: 140px 60px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #0d6efd, #20c997);
  color: white;
}

.hero-left {
  max-width: 550px;
}

.hero-left h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  line-height: 1.2;
}

.hero-left p {
  margin: 20px 0;
  font-size: 18px;
  opacity: 0.95;
}

.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: #0d6efd;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* Right Images */

.hero-right {
  width: min(450px, 100%);
  height: auto;
  aspect-ratio: 1.2;
}


.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}


.img1 { top: 0; left: 40px; }
.img2 { top: 60px; right: 0; }
.img3 { bottom: 0; left: 0; }
.img4 { bottom: 40px; right: 60px; }


.image-stack:hover .img {
  transform: scale(1.05);
}

/* HEXAGON IMAGE STYLE */

.image-stack .img {
  width: clamp(120px, 22vw, 210px);
  aspect-ratio: 1;
  object-fit: cover;
  clip-path: polygon(
    25% 5%, 75% 5%,
    100% 50%,
    75% 95%, 25% 95%,
    0% 50%
  );
  border: 6px solid rgba(255,255,255,0.7);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.trust-section{
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f7fbff, #ffffff);
    overflow: hidden;
}

/* Hemisphere animated glow */
.bg-hemisphere{
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32,201,151,0.35), rgba(13,110,253,0.25), transparent 70%);
    top: -200px;
    right: -200px;
    animation: hemiPulse 6s ease-in-out infinite;
    filter: blur(25px);
    z-index: 0;
}

@keyframes hemiPulse{
    0%{ transform: scale(1); }
    50%{ transform: scale(1.25); }
    100%{ transform: scale(1); }
}

/* Main Card */
.trust-card{
    position: relative;
    max-width: 1150px;
    margin: auto;
    background: white;
    border-radius: 22px;
    padding: 60px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    z-index: 2;
}

/* Slider container */
.trust-slider{
    position: relative;
    min-height: 360px;
}

/* Slides */
.trust-slide{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease;
}

.trust-slide.active{
    opacity: 1;
    transform: translateY(0);
}

/* Text */
.trust-text{
    flex: 1;
}

.trust-text h2{
    font-size: 36px;
    color: #0d6efd;
}

.trust-text p{
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Button */
.trust-btn{
    display: inline-block;
    margin-top: 24px;
    padding: 12px 30px;
    background: linear-gradient(120deg,#0d6efd,#20c997);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* Image Card */
.trust-image-card{
    flex: 1;
    background: #f7fbff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Image */
.trust-image-card img{
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
}

/* Mobile Fix */
@media(max-width:900px){
    .trust-card{
        padding: 35px 22px;
    }

    .trust-slide{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .trust-text h2{
        font-size: 26px;
    }

    .trust-image-card img{
        max-width: 260px;
    }
}


.therapy-section {
  padding: 100px 60px;
  background: linear-gradient(120deg, #0d6efd, #20c997);
  background-size: 200% 200%;
  animation: gradientFlow 25s ease infinite;
  text-align: center;
}

.therapy-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  color: white;
}

.therapy-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 25px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.therapy-card {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: 0.5s ease;
}

.therapy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.therapy-card span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
  text-shadow: 
    0 4px 12px rgba(0,0,0,0.6),
    0 0 10px rgba(32,201,151,0.6);
  transition: 0.4s ease;
}

.therapy-card:hover span {
  transform: translateY(-8px);
}


.therapy-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.therapy-card:hover::before {
  background: rgba(13,110,253,0.4);
}

.select-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #fd3d0d;
  font-weight: 600;
}



.product-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #f3f9ff, #ecfdfb);
}

.product-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 40px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.product-filters button {
  padding: 10px 22px;
  border-radius: 25px;
  border: 2px solid #0d6efd;
  background: white;
  color: #0d6efd;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-filters button:hover,
.product-filters button.active {
  background: #0d6efd;
  color: white;
  box-shadow: 0 6px 20px rgba(13,110,253,0.3);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 18px;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}



.product-card h3 {
  padding: 15px;
  font-size: 18px;
}

.product-card a {
  display: block;
  margin: 10px auto 20px;
  width: 80%;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(120deg,#0d6efd,#20c997);
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.product-card {
  position: relative;
  padding: 25px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.product-info p {
  font-size: 13px;
  color: #555;
  margin: 6px 0;
}

.product-info .tag {
  display: inline-block;
  background: #e9f1ff;
  color: #0d6efd;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.view-btn {
  display: block;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(120deg,#0d6efd,#20c997);
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.product-img-box {
  height: 200px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease;
}


.product-img.active {
  opacity: 1;
}
.product-grid {
  transition: opacity 0.3s ease;
}


.product-grid { opacity: 0; }
.product-grid.show { opacity: 1; }

.product-card {
  animation: none;
}

.product-grid.show .product-card {
  animation: fadeUp 0.6s ease forwards;
}

.product-section {
  position: relative;
  padding: 110px 60px;
  background: linear-gradient(135deg, #f3f9ff, #ecfdfb);
  overflow: hidden;
}
.product-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(120deg, #0d6efd, #20c997);
  border-radius: 50%;
  opacity: 0.1;
  top: -100px;
  right: -150px;
  z-index: 1;
} 

.product-section > * {
  position: relative;
  z-index: 2;
}


.product-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}

.bg-orb.blue {
  background: #0d6efd;
  top: 10%;
  left: 5%;
}

.bg-orb.teal {
  background: #20c997;
  bottom: 15%;
  right: 8%;
}

.bg-orb.cyan {
  background: #4fd1c5;
  top: 40%;
  right: 30%;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(20px); }
  100% { transform: translateY(0) translateX(0); }
}

.product-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.25) 40%,
    transparent 60%
  );
  animation: sweep 8s linear infinite;
  pointer-events: none;
}

@keyframes sweep {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
.product-filters {
  position: relative;
}

.filter-indicator {
  position: absolute;
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border-radius: 3px;
  bottom: -10px;
  transition: 0.4s ease;
}
.product-card:hover {
  box-shadow:
    0 0 0 1px rgba(13,110,253,0.2),
    0 15px 40px rgba(13,110,253,0.35),
    0 0 30px rgba(32,201,151,0.35);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13,110,253,0.4), rgba(32,201,151,0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 0.15;
}

.presence-section {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

.presence-bg {
  position: absolute;
  inset: 0;
 background-image:
  linear-gradient(120deg, rgba(13,110,253,0.6), rgba(32,201,151,0.6)),
  url("/images/ui/pharma.webp");

  animation: bgSlowZoom 25s ease-in-out infinite alternate;
}

@keyframes bgSlowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.presence-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px;
}

.presence-panel {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.map-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.india-map {
  width: min(420px, 90%);
  opacity: 0.9;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
}



/* Markers */
.marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.8);
  animation: pulse 2s infinite;
}

.marker.hq {
  width: 16px;
  height: 16px;
  background: #ffd43b;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.8); }
  70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Info Panel */
.info-panel h2 {
  font-size: 34px;
  color: #fff;
}

.subtitle { color: #eef; margin: 10px 0 30px; }

.hq-box {
  background: rgba(255,255,255,0.2);
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 30px;
  color: #fff;
}

.regions {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  color: #fff;
}

.presence-panel {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.presence-section.show .presence-panel {
  opacity: 1;
  transform: translateY(0);
}

.india-map {
  animation: mapFloat 8s ease-in-out infinite;
}

@keyframes mapFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.marker.hq {
  animation: hqPulse 1.6s infinite;
}

@keyframes hqPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,212,59,0.8); }
  70% { box-shadow: 0 0 0 18px rgba(255,212,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,212,59,0); }
}
.about-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 60px;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13,110,253,0.6), rgba(32,201,151,0.6)),
    url("/images/ui/ui.jpg") center/cover no-repeat;
  z-index: 0;
}
.about-stack {
  position: relative;
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 40px;
  z-index: 2;
}

.about-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
  box-shadow: 0 0 20px rgba(13,110,253,0.35);
}

.about-card img {
  width: clamp(140px, 28%, 220px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

@media (max-width: 700px) {

  .about-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-card img {
    width: 100%;
    max-width: 340px;
  }

  .about-card.split.right {
    flex-direction: column;
  }
}


.split.right { flex-direction: row-reverse; }

.about-section.show .about-card {
  opacity: 1;
  transform: translateY(0);
}
.about-card.split.right {
  justify-content: space-between;
}

.about-card.split.right > div {
  margin-right: auto;
}

/* Glow Flicker */
.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13,110,253,.6), rgba(32,201,151,.6));
  opacity: 0;
  animation: flicker 6s infinite;
  pointer-events: none;
}

@keyframes flicker {
  0%,100% { opacity: 0; }
  40% { opacity: .15; }
  60% { opacity: .25; }
  80% { opacity: .1; }
}

.contact-section {
  position: relative;
  min-height: 90vh;
  padding: 100px 60px;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13,110,253,0.65), rgba(32,201,151,0.65)),
    url("/images/ui/pharma2.webp") center/cover no-repeat;
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-info {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px;
  color: white;
}

.contact-tagline {
  margin: 15px 0 30px;
  opacity: 0.9;
}

.contact-block {
  margin-bottom: 18px;
}

.contact-form {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 90px;
  resize: none;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(120deg,#0d6efd,#20c997);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.contact-wrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.contact-section.show .contact-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.top-contact-strip {
  width: 100%;
  background: white;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  font-size: 14px;
}

.strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.strip-logo {
  height: 38px;
}

.strip-tagline {
  font-weight: 600;
  color: #0d6efd;
  white-space: nowrap;
}

.strip-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.strip-office {
  color: #333;
  white-space: nowrap;
}

.strip-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.strip-socials::before {
  content: "Follow us on";
  margin-right: 6px;
  font-weight: 500;
  color: #444;
}

.strip-socials a {
  width: 28px;
  height: 28px;
  background: #0d6efd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease;
}

.strip-socials a:hover {
  background: #20c997;
  transform: translateY(-2px);
}

/* ===== GLOBAL RESPONSIVE ===== */

img {
  max-width: 100%;
  height: auto;
}

section {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 1100px) {
  .trust-content {
    flex-direction: column;
    text-align: center;
  }

  .presence-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 40px;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-right {
    margin-top: 30px;
  }

  .nav-container {
    padding: 10px 16px;
  }

  .nav-links {
    display: none;  /* later add hamburger */
  }

  .therapy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .hero-left h1 {
    font-size: 28px;
  }

  .therapy-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .trust-section,
  .product-section,
  .therapy-section,
  .contact-section,
  .about-section {
    padding: 60px 20px;
  }

  .about-card {
    flex-direction: column;
  }

  .about-card img {
    width: 100%;
    height: 180px;
  }

  .top-contact-strip {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.why-choose-section{
    position: relative;
    padding: 100px 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,180,170,0.35), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(30,120,255,0.35), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(0,200,180,0.25), transparent 50%),
        linear-gradient(135deg, #062c4d, #0b5fa5, #0aa6a6);
    color: white;
    overflow: hidden;
}

.why-choose-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff0f' d='M0,160L48,154.7C96,149,192,139,288,144C384,149,480,171,576,176C672,181,768,171,864,149.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,0L1392,0L1344,0L1248,0L1152,0L1056,0L960,0L864,0L768,0L672,0L576,0L480,0L384,0L288,0L192,0L96,0L48,0L0,0Z'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events:none;
}


/* Title */
.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 40px;
}

.floating-bg span{
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #1fd1c7, #0b5fa5);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.45;
    animation: float 14s infinite ease-in-out alternate;
}

/* Individual sizes + speeds */
.floating-bg span:nth-child(1){
    width: 120px;
    height: 120px;
    left: 5%;
    top: 60%;
    animation-duration: 18s;
}

.floating-bg span:nth-child(2){
    width: 80px;
    height: 80px;
    left: 18%;
    top: 20%;
    animation-duration: 14s;
}

.floating-bg span:nth-child(3){
    width: 140px;
    height: 140px;
    left: 45%;
    top: 70%;
    animation-duration: 20s;
}

.floating-bg span:nth-child(4){
    width: 100px;
    height: 100px;
    left: 70%;
    top: 15%;
    animation-duration: 16s;
}

.floating-bg span:nth-child(5){
    width: 60px;
    height: 60px;
    left: 88%;
    top: 55%;
    animation-duration: 12s;
}

.floating-bg span:nth-child(6){
    width: 90px;
    height: 90px;
    left: 30%;
    top: 85%;
    animation-duration: 17s;
}

.floating-bg span:nth-child(7){
    width: 110px;
    height: 110px;
    left: 60%;
    top: 45%;
    animation-duration: 19s;
}

@keyframes float{
    0%{ transform: translateY(0) translateX(0); }
    50%{ transform: translateY(-80px) translateX(40px); }
    100%{ transform: translateY(0) translateX(0); }
}


/* Slider */
.why-slider{
    max-width: 1100px;
    margin: auto;
    position: relative;
    min-height: 360px;
}

/* Slides */
.why-slide{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
    pointer-events: none
}

.why-slide.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: none;
}
/* Tablet */
@media (max-width: 900px){
    .why-slide{
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 30px;
    }
  }
/* Text */
.why-text h3{
    font-size: 34px;
    margin-bottom: 14px;
}

.why-text p{
    font-size: 17px;
    max-width: 500px;
}

@media (max-width: 600px){
    .why-text h3{
        font-size: 24px;
    }

    .why-text p{
        font-size: 14px;
        line-height: 1.5;
    }
}

.why-img{
    width: 420px;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
    background: #ffffff15;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.why-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px){
    .why-img{
        width: 100%;
        max-width: 420px;
        height: 240px;
        margin: auto;
    }}


/* Counter */
.counter-box{
    font-size: 64px;
    font-weight: 800;
    margin: 10px 0;
    color: #ffd166;
}

/* Growth chart */
.growth-chart{
    margin-top: 20px;
    width: 300px;
}

.growth-chart polyline{
    fill: none;
    stroke: #ffd166;
    stroke-width: 4;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 2.5s forwards;
}

@keyframes drawLine{
    to{ stroke-dashoffset: 0; }
}

/* Revenue bars */
.revenue-bars{
    display: flex;
    gap: 14px;
    align-items: flex-end;
}


/* Parallax */
.parallax{
    transition: transform 0.15s ease;
}


.doctor-testimonial-section{
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f6fbff, #ffffff, #f1f9ff);
}

/* Animated flowing gradient layer */
.doctor-testimonial-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(0,180,170,0.18), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(30,120,255,0.18), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(0,200,180,0.12), transparent 50%);
    animation: bgFlow 18s linear infinite alternate;
}

/* Floating luminous balls */
.doctor-testimonial-section::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,200,180,0.35), transparent 28%),
        radial-gradient(circle at 70% 30%, rgba(30,120,255,0.30), transparent 30%),
        radial-gradient(circle at 40% 75%, rgba(0,180,170,0.28), transparent 32%),
        radial-gradient(circle at 90% 85%, rgba(30,120,255,0.25), transparent 35%);
    animation: orbDrift 24s ease-in-out infinite alternate;
}

/* Smooth gradient motion */
@keyframes bgFlow{
    0%{ transform: translate(0,0); }
    100%{ transform: translate(-80px, 60px); }
}

/* Orb floating movement */
@keyframes orbDrift{
    0%{ transform: translate(0,0); }
    100%{ transform: translate(100px, -70px); }
}



.testimonial-slider{
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.testimonial-track{
    display: flex;
    gap: 25px;
    animation: slideDoctors 18s linear infinite;
}

.doctor-card{
    min-width: 300px;
    background: white;
    padding: 26px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.doctor-card p{
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.doctor-card h4{
    margin-top: 12px;
    color: #0b5394;
}

.doctor-card span{
    font-size: 13px;
    color: #777;
}

@keyframes slideDoctors{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
}

.pulse-orb{
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0,200,180,0.45), rgba(0,200,180,0.15), transparent 70%);
    border-radius: 50%;
    top: 25%;
    left: 70%;
    filter: blur(12px);
    animation: pulseGlow 7s ease-in-out infinite;
}

@keyframes pulseGlow{
    0%{ transform: scale(1); opacity: 0.45; }
    50%{ transform: scale(1.5); opacity: 0.7; }
    100%{ transform: scale(1); opacity: 0.45; }
}
