/*Common CSS*/
/* html{ font-size: 62.5%;}
*{outline: none; box-sizing: border-box;}
*::-moz-selection{background:#3079ed; color:#fff; text-shadow:none;}  */

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 400;
  background: #fff;
}

.mobileTrigger {
  display: none;
}

/* .container {
  max-width: 92%;
} */


.comman-heading .tag {
  font-size: 10.5px;
  color: #663399;
  letter-spacing: 1px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}

/* Small Tag */
.comman-heading .tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #6a3da3;
  position: absolute;
  left: 0;
  top: 45%;
}

/* Heading */
.comman-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.comman-heading h2 span {
  font-weight: 600;
  color: #663399;
  font-family: 'Playfair Display', serif;
}

/* Paragraph */
.comman-heading p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
  max-width: 600px;
}

/* Top Header */

.top-header-section {
  background: #fff;
}

.top-header {
  padding: 8px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 170px;
  /* height: 40px; */
  /* background: #ddd; */
}

.logo img {
  width: 100%;
}

.logo a {
  width: 100%;
  height: 100%;
  display: block;
}

/* Call Button */
.call-btn {
  background: #663399;
  border: 2px solid #a16cc7;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.6s;
}

.call-btn .icon-phone {
  width: 16px;
  fill: #fff;
}

.call-btn:hover {
  background: #663399;
  border: 2px solid #663399;
}

.call-btn span {
  font-weight: 700;
}

.call-btn small {
  font-size: 14px;
  font-weight: 700;
}

/* Navigation */

.for-sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar-section {
  background: #eee;
}

/* .main-nav {
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}

.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
} */

.navbar {
  padding: 10px 0 12px;
  background: #eee;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #4A4A4A;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.6s;
  font-weight: 600;
}

/* Active Menu */
.navbar ul li a.active,
.navbar ul li a:hover {
  background: #E4D8F4;
  color: #663399;
  font-weight: 600;
}

/* Section */
section {
  padding: 60px 0;
  scroll-margin-top: 100px;
}

/* Section Background */
.hero {
  /* background: linear-gradient(to right, #f1d2e1, #f9f6f1); */
  background: linear-gradient(80deg, #f1d2e1 10%, #f9f6f1 60%, #f1d2e1 100%);
  color: #fff;
  padding-top: 150px;
}

.hero.hero-bg-img .hero-wrapper {
  padding: 3rem 0;
}

.hero.hero-bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  background-color: #cddbdb;
}


/* Tags */
.hero-wrapper .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.hero-wrapper .tag {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.05);
}

/* Heading */
.hero-wrapper h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  color: #663399;
  margin-bottom: 20px;
}

.hero h1 span {
  /* font-size: 44px; */
  /* color: #4b2a6d; */
  font-family: 'Playfair Display', serif;
}

/* Paragraph */
.hero p {
  font-size: 16px;
  line-height: 1.4;
  color: #5c5c5c;
  margin-bottom: 35px;
}

/* Stats */
.hero-wrapper .stats {
  display: flex;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  overflow: hidden;
}

.hero-wrapper .stat {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:last-child {
  border-right: none;
}

.hero-wrapper .stat h3 {
  font-size: 28px;
  color: #8e44ad;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.hero-wrapper .stat p {
  /* font-size: 13px; */
  color: #5c5c5c;
  display: block;
  margin: 3px auto 0;
  max-width: 130px;
  line-height: 1.3;
}

.hero {
  padding-bottom: 0;
}

/* Layout */
.hero-wrapper {
  display: flex;
  gap: 0 1rem;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.hero-left {
  flex: 45 1 0%;
  max-width: calc(45% - 0.67rem);
  padding-right: 5%;
}

.hero-image {
  position: relative;
  flex: 25 1 0%;
  max-width: calc(25% - 0.67rem);

}

/* .hero-gynae .hero-image:before , */
/* .hero-pediatrics:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0%;
  width: 100%;
  height: 44px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  filter: blur(8px);
   
  transform: rotate(-2deg);

} */
hero-pediatrics:before {
  display: none;
}

.hero-form {
  flex: 30 1 0%;
  max-width: calc(30% - 0.67rem);
}

/* For full responsiveness, make columns 100% wide on mobile */
@media (max-width: 768px) {

  .hero-left,
  .hero-image {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-form {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.hero-image img {
  max-width: 100%;
  /* filter: drop-shadow(-10px 10px 15px rgba(0, 0, 0, 0.3)); */

}

/* Right Form */
.hero-form {
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  color: #333;
  padding: 20px;
  border-radius: 18px;
}

/* Form Text */
.hero-form small {
  color: #7a4da1;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 12px;
}

.hero-form h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0;
  font-size: 22px;
}

.hero-form p {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/* Inputs */
.hero-form .input-box{
   margin-bottom: 12px;
}
.hero-form .input {
  width: 100%;
  padding: 10px 12px;
 
  border-radius: 10px;
  border: 1px solid #ddd4ee;
  background: #F8F4FF;
  font-size: 14px;
  color: #999;
}


.select-box {
  position: relative;
}

/* Custom Arrow */
.hero-form .select-box::after {
  content: "\25BC";
  /* ▼ */
  position: absolute;
  right: 14px;
  top: 40%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #666;
}


.hero-form .select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd4ee;
  background: #F8F4FF;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #999;
}

/* Row */
.hero-form .row {
  display: flex;
  gap: 10px;
  margin: 0;
}

 
/* alert */
.hero-form .alert { 
  font-size: 14px; 
  padding:  .75rem 1.5rem .75rem 1rem;
}
 .hero-form .alert-dismissible .btn-close{padding: 15px;}
/* validations */
.hero-form .valid-feedback,
.hero-form .invalid-feedback,
.hero-form .warning-feedback {
  font-size: 13px;
  margin: 0;
  padding: 0 6px;
  font-weight: 600;

}
 

.phone-input-field {
  position: relative;

  /* .input {
    margin: 0;
  } */
}

.phone-input-field .otp-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #663399;
  border: none;
  font-weight: bold;
  font-size: 14px;
  background-color: transparent;
  cursor: pointer;
  /* text-transform: capitalize; */
  padding: 4px 10px;
}

.otp-box {
  font-size: 0px;
  line-height: 1;
}

.otp-fields {
  display: flex;
  gap: 0 10px;
}

.otp-box label {
  color: #666;
  font-weight: 600;
  flex: 1 0 100%;
  margin-bottom: 6px;
  font-size: 14px;
}

.otp-box .input {
  flex: 1;

  text-align: center;
}

/* .hero-form .row input {
  flex: 1;
} */

/* Button */
.hero-form .btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #6a2c91, #8e44ad);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
  transition: 0.6s;
}
.hero-form .btn-invalid {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero-form .btn:hover:not(.btn-invalid) {
  background: linear-gradient(90deg, #8e44ad, #6a2c91);
  color: #f2f2f2;
}

/* Privacy */
.hero-form .privacy {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  color: #888;
}

.hero-form .privacy a {
  text-decoration: underline;
  color: #663399;
}



/* Section */
.surgery-section {
  background: #f8f4ef;
}

/* Layout */
.surgery-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left */
.surgery-section .left {
  flex: 1.1;
}

/* Feature Cards */
.surgery-section .features {
  margin-top: 30px;
}

.surgery-section .card {
  display: flex;
  gap: 15px;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid #e2d9f3;
  background: #fff;
  margin-bottom: 10px;
  align-items: center;
  transition: 0.3s;
  flex-flow: wrap;
}

.surgery-section .card:hover {
  transform: translateY(-3px);
}

/* Icon */
.surgery-section .icon {
  width: 40px;
  height: 40px;
  background: #E4D8F4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Text */
.surgery-section .card h3 {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 600;
}

.surgery-section .card p {
  font-size: 13px;
  color: #4a4a4a;
  margin: 0;
}

/* Right Image */
.surgery-section .right {
  flex: 1;
}

.surgery-section .image-box {
  width: 100%;
  /* height: 360px; */
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #dcd2f5, #c7d8f3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dummy Image */
.surgery-section .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Grid */
.choose-section .choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.choose-section .card {
  background: #f8f4ef;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e5daf5;
  position: relative;
  transition: 0.3s;
}

.choose-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #6b3fa0;
  border-radius: 14px 14px 0 0;
}

.choose-section .card:hover {
  transform: translateY(-5px);
}

/* Icon */
.choose-section .icon {
  width: 65px;
  height: 65px;
  padding: 5px;
  background: #f0e8fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  margin-bottom: 15px;
}

.choose-section .icon img {
  max-width: 100%;
}

/* Card Text */
.choose-section .card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  /* font-family: 'Playfair Display', serif; */
}

.choose-section .card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Tags */
.choose-section .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choose-section .tags span {
  background: #efe8fb;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #6b3fa0;
  font-weight: 600;
}

/* Bottom Banner */
.choose-section .banner {
  margin-top: 40px;
  background: linear-gradient(90deg, #5b2c83, #7a46a5);
  border-radius: 16px;
  padding: 25px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.choose-section .banner-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1.5;
}

.choose-section .badge {
  width: 55px;
  aspect-ratio: 1 / 1;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #a88bc4;
  background: #72508e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.choose-section .banner h4 {
  font-size: 18px;
  font-weight: 600;
}

.choose-section .banner p {
  font-size: 14px;
  opacity: 0.9;
}

.choose-section .banner-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: end;
}

.choose-section .banner-tags span {
  /* border: 1px solid rgba(255,255,255,0.5); */
  border: 1px solid #a88bc4;
  background: #72508e;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}



.treat-section {
  background: #f8f4ef;
}

/* Header */
.treat-section .treat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}


.treat-section .view-btn {
  border: 1px solid #6b3fa0;
  padding: 9px 25px;
  border-radius: 10px;
  background: transparent;
  color: #6b3fa0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: 0.6s;
}

.treat-section .view-btn:hover {
  background: #663399;
  color: #fff;
}

/* Layout */
.treat-section .treat-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Filter */
.treat-section .filters {
  width: 270px;
}

.treat-section .filter {
  background: #E4D8F4;
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  text-align: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
  font-size: 13px;
  border: 1px solid #DDD4EE;
  font-weight: 600;
}

.treat-section .filter.active {
  background: #663399;
  border: 1px solid #663399;
  color: #fff;
}

.treat-section .count {
  background: rgba(255, 255, 255, 0.3);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

/* Right Grid */
.treat-section .treat-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.treat-section .item {
  background: #fff;
  border: 1px solid #e2d9f3;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.treat-section .item.item-heading-para {
  align-items: start;
}

.treat-section .item p {
  margin: 0;
}

.treat-section .item h6 {
  position: relative;
  font-weight: 600;
}

.treat-section .item.item-heading-para h6:before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  display: block;
  width: 8px;
  height: 8px;
  background: #6b3fa0;
  border-radius: 50%;
}

.treat-section .item-heading-para .dot {
  visibility: hidden;
}

.treat-section .dot {
  min-width: 8px;
  min-height: 8px;
  background: #6b3fa0;
  border-radius: 50%;
}


.surgical-section .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: 20px;
  padding: 20px 0 0;
}

.surgical-section.facilities-technology .cards-wrapper {
  grid-template-columns: repeat(4, 1fr);
}

.surgical-section .card {
  background: #f8f4ef;
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  border: 1px solid #ddd4ee;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.surgical-section .card:hover {
  transform: translateY(-5px);
}

.surgical-section .icon {
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  background: #E4D8F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.surgical-section .card h4 {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
  /* font-family: 'Playfair Display', serif; */
}

.surgical-section .card p {
  font-size: 13px;
  color: #777;
}

.surgical-section .card-tag {
  display: inline-flex;
  margin-top: 10px;
  background: #e4d8f4;
  color: #6633b1;
  padding: 5px 25px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.surgical-section .show-more {
  margin: 30px 0;
  padding: 12px;
  text-align: center;
  border: 1px dashed #663399;
  border-radius: 12px;
  cursor: pointer;
  color: #663399;
  background: #E4D8F4;
  font-size: 13px;
  font-weight: 600;
}

.surgical-section .hidden {
  display: none;
}


.specialists-section {
  background: #f8f4ef;
}

/* GRID */
.specialists-section .specialists-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.specialists-section .doctor-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px 25px 20px;
  border: 2px solid #eee;
  position: relative;
  transition: 0.3s;
}

.specialists-section .doctor-card:hover {
  transform: translateY(-5px);
  /* border-color: #7b61ff; */
}

/* TOP BORDER EFFECT */
.specialists-section .doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #663399;
  border-radius: 18px 18px 0 0;
}

.specialists-section .doc-img {
  width: 70px;
  height: 70px;
  background: #eae4ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.specialists-section .doctor-card h4 {
  margin: 10px 0 2px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
}

/* .specialists-section .role {
  font-size: 12px;
  color: #663399;
  font-weight: 600;
  margin: 0;
} */

/* BADGES */
.specialists-section .badges {
  margin: 1px 0;
}

.specialists-section .exp {
  background: #efeaff;
  color: #663399;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  margin-right: 5px;
  font-weight: 600;
}

.specialists-section .loc {
  background: #e6fff4;
  color: #1c9c6d;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}

/* BUTTON */
.specialists-section .btn {
  background: #663399;
  border: 1px solid #663399;
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.6s;
}

.specialists-section .btn:hover {
  background: #fff;
  color: #663399;
}

/* INFO BOX */
.specialists-section .info-box {
  margin-top: 25px;
  border: 1.5px dashed #663399;
  padding: 15px 80px 15px 20px;
  border-radius: 12px;
  color: #663399;
  background: #E4D8F4;
  display: flex;
  gap: 15px;
  align-items: center;
}

.specialists-section .info-box p {
  font-size: 12.5px;
  color: #663399;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.specialists-section .info-box p span {
  font-size: 10px;
  color: #4a4a4a;
  display: block;
  font-weight: 400;
  margin-top: 3px;
}

.specialists-section .info-box p span.angleimg {
  display: none;
}

/* CTA */
.specialists-section .cta {
  margin-top: 30px;
  background: linear-gradient(135deg, #3D1A6E 0%, #5C3A71 100%);
  color: #fff;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.specialists-section .cta h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}

.specialists-section .cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}


.specialists-section .cta-btn {
  background: #663399;
  border: 1px solid #663399;
  padding: 8px 30px;
  border-radius: 12px;
  cursor: pointer;
  color: white;
  box-shadow: 0 4px 14px rgba(102, 51, 153, .35);
  font-size: 14px;
  display: flex;
  gap: 10px;
  transition: 0.6s;
}

.specialists-section .cta-btn:hover {
  background: #fff;
  color: #663399;
  transform: translateY(-2px);
}

.specialists-section .cta-btn i {
  font-size: 22px;
}

.specialists-section .cta-btn div {
  font-weight: 600;
}

.specialists-section .cta-btn span {
  font-size: 12px;
  font-weight: 400;
  display: block;
}


.testimonial-section .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}


/* RATING BOX */
.rating-wrapper {
  display: flex;
  justify-content: flex-end;
}

.rating-box {
  background: linear-gradient(135deg, #663399, #5C3A71);
  border-radius: 16px;
  padding: 20px 25px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 340px;
  box-shadow: 0 8px 24px rgba(102, 51, 153, .3);
}

/* LEFT BOX */
.rating-left {
  background: rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .22);
  flex-shrink: 0;
}

.rating-left h2 {
  font-size: 42px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  /* font-family: 'Playfair Display', serif; */
}

.stars {
  color: #ffc107;
  margin-top: 8px;
  letter-spacing: 2px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3);
}

/* RIGHT TEXT */
.rating-right h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.rating-right p {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  line-height: 1;
}



/* SWIPER FIX */
.testimonialSlider {
  overflow: hidden;
}

.testimonialSlider .swiper-wrapper .swiper-slide {
  height: auto;
}

.testimonialSlider .swiper-slide {
  transform: scale(0.9);
  opacity: .95;
  transition: .4s ease;
}

.testimonialSlider .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

/* COMMON CARD */
.testimonialSlider .t-card {
  background: #F8F4EF;
  border: 1px solid #DDD4EE;
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
  display: flex;
  gap: 1rem 0;
  flex-direction: column;
  justify-content: space-around;
}

.testimonialSlider .stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.testimonialSlider .review {
  font-size: 13.5px;
  color: #4A4A4A;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

/* USER */
.testimonialSlider .user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonialSlider .avatar {
  width: 42px;
  height: 42px;
  background: #E4D8F4;
  border: 1.5px solid #DDD4EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonialSlider .avatar.vidBg {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

.t-flex {
  display: flex;
  flex-direction: column;
}

.t-name {
  font-size: 13px;
  font-weight: 700;
  color: #2C2C2C;
}

.t-name.wt {
  color: #fff;
}

.t-sub {
  font-size: 11px;
  color: #7A7A9A;
  margin-top: 2px;
}

/* VIDEO CARD */
.testimonialSlider .video-card {
  border-radius: 18px;
  overflow: hidden;
  background: #222;
  color: #fff;
}

/* TOP (GRADIENT) */
.testimonialSlider .video-top {
  height: 150px;
  background: linear-gradient(135deg, #3D1A6E, #7B2D82);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.testimonialSlider .play-btn {
  width: 45px;
  height: 45px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.testimonialSlider .time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #000;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
}

/* VIDEO */
.testimonialSlider .video {
  display: none;
  width: 100%;
}

/* BOTTOM */
.testimonialSlider .video-bottom {
  padding: 5px 15px 15px;
  background: linear-gradient(#333, #222);
}

.testimonialSlider .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8);
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.testimonialSlider .t-quote {
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, .7);
  font-size: 12.5px;
}





.faq-section {
  background: #f8f4ef;
}

.faq-flexSection {
  display: flex;
  gap: 40px;
}

/* LEFT SIDE */
.faq-section .faq-left {
  flex: 1;
}

.faq-section .faq-btn {
  background: #663399;
  border: 1px solid #663399;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.6s
}

.faq-section .faq-btn:hover {
  background: #fff;
  color: #663399;
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.faq-section .faq-right {
  flex: 2;
}

.faq-section .accordion {
  border-radius: 12px;
}

.faq-section .accordion-item {
  background: #fff;
  border: 1px solid #DDD4EE;
  border-radius: 12px;
  margin-bottom: 14px;
}

.faq-section .accordion-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  color: #2C2C2C;
  border-radius: 12px;
  gap: 10px;
}

.faq-section .accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #663399;
}

.faq-section .accordion-content {
  padding: 12px 20px 16px;
  font-size: 13px;
  color: #4A4A4A;
  line-height: 1.6;
  background: white;
  border-radius: 0 0 12px 12px;
  /* display: none; */
  height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0;
}

.faq-section .accordion-item.active {
  border: 1px solid #663399;
}

.faq-section .accordion-item.active .accordion-icon {
  background: #663399;
  color: #fff;
}

.faq-section .accordion-item.active .accordion-content {
  padding: 12px 20px 16px;
  height: auto;
  /* overflow: visible; */
  /* display: block; */
}

/* FIRST ITEM ACTIVE */
.faq-section .accordion-item.active .accordion-header {
  background: #E4D8F4;
  color: #663399;
  border-radius: 12px 12px 0 0;
}


/*************************************/
.network-section {
  background: linear-gradient(135deg, #3D1A6E 0%, #5C3A71 100%);
  color: #fff;
  padding: 100px 0;
}

/* HEADER */

.network-section .comman-heading .tag {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;

}

.network-section .comman-heading .tag::before {
  background: rgba(255, 255, 255, .7);
}

.network-section .comman-heading h2 {
  color: #fff;
}

.network-section .comman-heading h2 span {
  color: #E4B8F0;
}

.network-section .comman-heading p {
  color: rgba(255, 255, 255, .65);
  max-width: unset;
}

/* GRID */
.network-section .network-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
}

/* CARD */
.network-section .network-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 15px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.network-section .network-card:hover {
  transform: translateY(-5px);
}

.network-section .network-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1.3;
}

.network-section .network-card p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
  margin-bottom: 6px;
}

/* TAG */
.network-section .network-grid .tag {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8);
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 8px;
}

/* SWIPER hidden on desktop */
/* .network-section .swiper {
  display: none;
} */


/* OUTER BACKGROUND */
.cta-wrapper {
  /* background: linear-gradient(135deg, #4a1f6d, #5f3a87); */
  padding: 40px 0px;
}

/* INNER CARD */
.cta-wrapper .cta-box {
  margin: auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(6px);
}

/* TEXT */
.cta-wrapper .cta-text h2 {
  margin: 0;
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.cta-wrapper .cta-text p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

/* BUTTON */
.tab-wrapper .tab-btn,
.cta-wrapper .cta-btn {
  background: white;
  color: #663399;
  font-size: 14px;
  font-weight: 900;
  padding: 14px 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: 0.6s;
}

.tab-wrapper .tab-btn:active,
.tab-wrapper .tab-btn:hover,
.cta-wrapper .cta-btn:hover {
  background: #663399;
  color: #fff;
  transform: translateY(-2px);
}

.faq-mobile-btn {
  display: none;
}

/******************INPUT Select********************/
input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border-radius: 10px;
}

input[type="date"] {
  position: relative;
  color: #999;
  height: 38px;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* Hide default icon (iOS) */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: left;
}

.date-field {
  position: relative;
}

.calendar-icon {
  position: absolute;
  right: 8px;
  top: 40%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
}







.doctor-section {
  padding: 30px 20px 0;
  /* background: #f5f3f8; */
  position: relative;
}

.doctor-section .doctor-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doctor-section .doc-top {
  display: flex;
  gap: 15px;
}

.doctor-section .doc-img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}

.doctor-section .doc-info h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}

.doctor-section .role {
  font-size: 13px;
  color: #797979;
  margin-bottom: 10px;
}

.doctor-section .meta span {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

.doctor-section .doc-btns {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.doctor-section .btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 25px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.doctor-section .btn.outline {
  border: 1px solid #663399;
  color: #663399;
  background: unset;
}

.doctor-section .btn.outline:hover {
  border: 1px solid #663399;
  color: #fff;
  background: #663399;
}

.doctor-section .btn.fill {
  background: #663399;
  color: #fff;
}

.doctor-section .btn.fill:hover {
  border: 1px solid #663399;
  color: #fff;
  background: #7a3eb1;
}

/* Swiper spacing */
.doctor-section .swiper-slide {
  height: auto;
}




/* Default arrow hide */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

.testimonial-container {
  position: relative;
}

/* Custom Arrow Design */
.networkSwiper .custom-arrow,
.testimonial-container .custom-arrow,
.doctor-section .custom-arrow {
  width: 42px;
  height: 42px;
  background: #663399;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.networkSwiper .custom-arrow:hover,
.testimonial-container .custom-arrow:hover,
.doctor-section .custom-arrow:hover {
  background: #663399;
}

.networkSwiper .custom-arrow {
  position: relative;
  margin: 6px 3px;
  right: 0;
  left: 0;
  float: inline-end;
}

/* Position adjust */
/* .networkSwiper .swiper-button-prev, */
.testimonial-container .swiper-button-prev,
.doctor-section .swiper-button-prev {
  left: -10px;
}

/* .networkSwiper .swiper-button-next, */
.testimonial-container .swiper-button-next,
.doctor-section .swiper-button-next {
  right: -10px;
}



.thankyou-msg {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.2;
  color: #4b2a6d;
  margin: 50px 0;
  text-align: center;
  text-transform: capitalize;
}

/* DESKTOP GRID */
@media(min-width:768px) {
  /* .testimonialSlider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  } */
}


@media(min-width:768px) {
  .network-section {
    padding: 70px 0 60px;
  }
}

@media (min-width: 1024px) and (max-width: 1240px) {
  .navbar ul {
    gap: 5px;
  }

  .surgery-section .card {
    align-items: start;
  }

  .surgery-section .card-content {
    flex: 1;
  }

  .choose-section .banner-left {
    flex: 1.3;
  }

  .choose-section .banner-tags {
    flex: 1;
    justify-content: end;
  }

}

.child-care-pages {

  .comman-heading .tag,
  .comman-heading h2 span,
  .faq-section .accordion-item.active .accordion-header,
  .surgical-section .icon,
  .cta-wrapper .cta-btn,
  .hero-form small,
  .hero-form .privacy a,
  .phone-input-field .otp-btn,
  .hero-wrapper .stat h3,
  .hero-wrapper h1 {
    color: #00939D;
  }

  .doctor-section .meta span svg path {
    fill: #00939D;
  }

  .choose-section .icon,
  .surgical-section .icon {
    background-color: #fff;
  }

  .specialists-section,
  .surgical-section .card,
  .choose-section .card,
  .faq-mobile-btn,
  .faq-section,
  .faq-mobile-btn,

  .testimonialSlider .t-card,
  .treat-section {
    background: linear-gradient(0deg, rgba(184, 233, 235, .35), rgba(184, 233, 235, .2), rgba(184, 233, 235, .3));
  }

  .faq-mobile-btn {
    border-color: rgba(184, 233, 235, 0.5);
  }

  .hero-form .select,
  .hero-form .input {
    background-color: rgba(184, 233, 235, 0.2);
    border-color: rgba(184, 233, 235, 0.5);
  }

  .faq-section .accordion-icon,
  .faq-section .accordion-item.active .accordion-header {

    background-color: rgba(184, 233, 235, 0.7);
  }

  .doctor-section .btn.outline {
    border-color: #00939D;
    color: #00939D;
  }

  .faq-section .accordion-item.active,
  .doctor-section .btn.fill:hover,
  .specialists-section .btn {
    border-color: #00939D;
  }

  .faq-section .accordion-icon,
  .navbar ul li a.active,
  .navbar ul li a:hover {
    background: #bcf5f9;
    color: #00939D;
  }

  .doctor-section .custom-arrow:hover,
  .cta-wrapper .cta-btn:hover,
  .networkSwiper .custom-arrow:hover,
  .doctor-section .custom-arrow:hover,
  .faq-section .faq-btn:hover,
  .doctor-section .btn.fill:hover,
  .doctor-section .btn.outline:hover {
    background: #00939D;
    color: #fff;
  }

  .mobileTrigger ul li,
  .faq-section .accordion-item.active .accordion-icon,
  .doctor-section .btn.fill,
  .comman-heading .tag::before,
  .treat-section .item.item-heading-para h6:before,
  .choose-section .card::before {
    background: #00939D;
  }

  .doctor-section .custom-arrow,
  .faq-section .faq-btn,
  .choose-section .badge,
  .choose-section .banner-tags span,
  .treat-section .filter.active,
  .networkSwiper .custom-arrow,
  .testimonial-container .custom-arrow,
  .call-btn {
    background: #028992;
    border-color: #037a83;
  }

  .network-section {
    background: #037a83;
  }

  .testimonial-container .custom-arrow:hover,
  .call-btn:hover {
    background: #25a6af;
  }

  .choose-section .banner,
  .rating-box,
  .hero-form .btn {
    background: linear-gradient(90deg, #25a6af, #00939D);
  }

  .hero-form .btn:hover {
    background: linear-gradient(90deg, #037a83, #0dc1ce);
  }

  .network-section .comman-heading .tag::before {
    background-color: #0ad0de;
  }

  .network-section .comman-heading .tag,
  .network-section .comman-heading h2 span {
    color: #0ad0de;
  }

}

/* BRAND PAGE */

.brand-page {

  .comman-heading .tag,
  .comman-heading h2 span,
  .faq-section .accordion-item.active .accordion-header,
  .cta-wrapper .cta-btn,
  .hero-form small,
  .phone-input-field .otp-btn,
  .hero-form .privacy a,
  .hero-wrapper .stat h3,
  .hero-wrapper h1 {
    color: #472f7b;
  }

  .doctor-section .meta span svg path {
    fill: #00acad;
  }

  .choose-section .icon,
  .surgical-section .icon {
    background-color: #ffffff;
  }

  .surgical-section .card,
  .choose-section .card,
  .testimonialSlider .t-card {
    background: linear-gradient(135deg, #f6f4f8 10%, #f3fcfc 60%, #f7f6f9 100%);
  }

  .specialists-section,
  .faq-mobile-btn,
  .faq-section,
  .treat-section {
    background: linear-gradient(135deg, #f7f3fe 10%, #ebfdfd 60%, #e8e3f1 100%);
    /* background: linear-gradient(135deg,
        rgba(71, 47, 123, 0.28),
        rgba(0, 172, 173, 0.08)); */
  }

  .faq-mobile-btn {
    border-color: rgba(0, 172, 173, 0.3);
  }

  .hero-form .select,
  .hero-form .input {
    background-color: rgba(0, 172, 173, 0.08);
    border-color: rgba(71, 47, 123, 0.2);
  }

  .tab-btn {
    color: #472f7b;
    background: rgba(0, 172, 173, 0.1);
  }

  /* .faq-section .accordion-icon, */
  .mobileTrigger ul li,
  .faq-section .accordion-item.active .accordion-header {
    background: linear-gradient(135deg, #472f7b, #00acad);
    color: #fff;
  }

  .call-btn:hover,
  .tab-btn.active,
  .tab-btn:hover,
  .navbar ul li a.active,
  .navbar ul li a:hover,
  .cta-wrapper .cta-btn:hover,
  .testimonial-container .custom-arrow:hover,
  .doctor-section .custom-arrow:hover,
  .faq-section .faq-btn:hover,
  .doctor-section .btn.fill:hover,
  .doctor-section .btn.outline:hover {
    background: linear-gradient(135deg, #472f7b, #00acad);
    color: #fff;

  }

  .doctor-section .btn.outline {
    border-color: #472f7b;
    /* color: #472f7b; */
  }

  .faq-section .accordion-item.active,
  .doctor-section .btn.fill:hover,
  .specialists-section .btn {
    border-color: #472f7b;
  }

  .faq-section .accordion-item.active .accordion-icon {
    background: linear-gradient(135deg, #9672e8, #423266);
  }

  .call-btn,
  .testimonial-container .custom-arrow,
  .doctor-section .custom-arrow,
  .doctor-section .btn.fill,
  .treat-section .filter.active,
  .comman-heading .tag::before,
  .treat-section .item.item-heading-para h6:before,
  .choose-section .card::before {
    transition: 0.3s;
    border: 0;
    background: linear-gradient(45deg, #472f7b, #00acad);
  }

  .faq-section .faq-btn,
  .choose-section .badge,
  .choose-section .banner-tags span {
    background: linear-gradient(135deg, #472f7b, #9372dc);
    border-color: #9372dc;
  }

  .network-section {
    background: linear-gradient(90deg, #472f7b, #00acad);
  }

  .choose-section .banner,
  .rating-box,
  .hero-form .btn {
    background: linear-gradient(110deg, #472f7b, #00acad);
    color: #fff;
  }

  .hero-form .btn:hover {
    background: linear-gradient(90deg, #3a2566, #008c8c);
  }

  .network-section .comman-heading .tag::before {
    background-color: #00acad;
  }

  .network-section .comman-heading .tag,
  .network-section .comman-heading h2 span {
    color: #1edada;
  }
}

.tab-wrapper {
  .tab-buttons {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 15px;
  }

  .tab-btn {
    /* padding: 10px 16px;
  border: none;
  background: #b5b5b5; */
    cursor: pointer;
    white-space: nowrap;
    /* border-radius: 6px; */
  }

  /* .tab-btn.active {
  background: #5a5a5a;
  color: #fff;
} */

  .tab-content {
    display: none;
    /* padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px; */
  }

  .tab-content.active {
    display: block;
  }
}