@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Roboto:wght@400;500;600&display=swap');

:root {
  --main-color: #c39bc3;
  --dark-main-color: #b05bb0;
  --cosmetic-color: #620d62;
  --white: #fff;
  --text: #333;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  padding-top: 90px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}
/* ================= HEADER ================= */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  height: 100px;
}


.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 135px;
  width: auto;
  object-fit: contain;
}


.main-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.main-menu a:hover {
  color: #6f116f;
}


.btn-main {
  background: #6f116f;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  background: #580d58;
}


.dropdown-custom {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.dropdown-menu-custom a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu-custom a:last-child {
  border-bottom: none;
}

.dropdown-custom:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  top: 100%;
}


.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {

.main-header {
    width: 100%;
}

.header-inner {
    height: 88px;
}

.logo img {
    height: 110px;
}

.dropdown-custom {
    position: relative;
    left: -125px;
}
/* toggle icon */
.menu-toggle {
    display: block;
    margin-right: 30px;
}

/* hide appointment button */
.header-btn {
    display: none;
}

/* mobile menu */

.main-menu {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 15px 15px;
}

.main-menu.active {
    display: flex;
}

/* FIX: all menu left align */

.main-menu a,
.dropdown-toggle-custom {
    padding: 15px 20px;
    width: 100%;
    border-bottom: 1px solid #eee;
    display: block;
    font-size: 15px;
    text-align: left;      /* important fix */
}

/* FIX: services also left */

.dropdown-toggle-custom {
    text-align: left !important;
    margin: 0;
}

/* dropdown menu */

.dropdown-menu-custom {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0;
    background: #f8f8f8;
    border-radius: 0;
}

    .dropdown-menu-custom.active {
        display: block;
        margin-right: -200px;
    }

.dropdown-menu-custom a {
    padding: 12px 30px;
    font-size: 14px;
}

}
/* ================= HERO SECTION ================= */

.hero-section {
  padding-top: 0;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content,
.hero-content * {
  user-select: text;
  -webkit-user-select: text;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 16px;
  margin: 20px 0;
}

.hero-tag {
  display: inline-block;
  background: #6f116f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
}

.hero-content .btn-main {
  background: #6f116f;
  padding: 14px 30px;
  border-radius: 10px;
  display: inline-block;
}

.review-logos {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: center;
}

.review-item {
  display: flex;
  flex-direction: column;
}

.review-item img {
  height: 80px;
  width: auto;
}

.review-item p {
  font-size: 15px;
  margin-top: 5px;
  color: #fff;
}

/* allow text selection inside slider */

.heroSwiper,
.heroSwiper * {
  user-select: text !important;
  -webkit-user-select: text !important;
}

/* prevent swiper from blocking text selection */

.swiper-slide {
  pointer-events: auto;
}

/* ================= TABLET ================= */

@media (max-width:992px) {

  .hero-slide {
    min-height: 600px;
    background-position: 65% center;
  }

  .hero-content h1 {
    font-size: 34px;
  }

}

/* ================= MOBILE FIX ================= */

@media (max-width:768px) {

  .hero-slide {
    min-height: 520px;
    background-size: cover;
    background-position: top center;
    padding: 70px 20px 40px;
    text-align: center;
    height: 500px;
  }

  .hero-content {
    max-width: 100%;
    margin: auto;
    margin-top: 100px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content .btn-main {
    padding: 12px 22px;
    font-size: 14px;
  }

  .review-logos {
    justify-content: center;
    gap: 20px;
  }

  .review-item img {
    height: 40px;
  }

}

/* Counter section */
.stats-section {
  padding: 60px 0;
  background: #f2f2f2;
}

.stat-box {
  position: relative;
  padding: 30px 15px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #620d62;
  margin: 0;
  line-height: 1.2;
}

.stat-text {
  font-size: 16px;
  margin-top: 8px;
  color: #222;
  font-weight: 500;
  line-height: 1.4;
}


@media(max-width:991px) {

  .stat-box {
    padding: 25px 10px;
  }

  .stat-number {
    font-size: 42px;
  }

}

@media(max-width:767px) {

  .stats-section {
    padding: 40px 0;
  }

  .stat-box {
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-text {
    font-size: 13px;
    margin-top: 6px;
  }

  .stats-section .row>div {
    margin-bottom: 20px;
  }

}

/*************** Doctor Section ******************************/
.doctor-section {
  background: #fff;
}

.doctor-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.doctor-image {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

.doctor-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  max-width: 80%;
}

.doctor-card h3 {
  color: #620d62;
  font-weight: 700;
  margin-bottom: 5px;
}

.doctor-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.doctor-title {
  font-size: 38px;
  font-weight: 700;
  color: #620d62;
  margin-bottom: 15px;
}

.doctor-desc {
  color: #000000;
  margin-bottom: 20px;
  text-align: justify;
}

.doctor-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.doctor-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.doctor-list li::before {
  content: "✚";
  position: absolute;
  left: 0;
  top: 0;
  color: #b3002d;
  font-weight: bold;
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #620d62;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-readmore span {
  background: #fff;
  color: #b3002d;
  border-radius: 50%;
  padding: 5px 10px;
}

/* RESPONSIVE */
@media(max-width:991px) {

  .doctor-title {
    font-size: 28px;
  }

  .doctor-card {
    max-width: 90%;
    padding: 15px;
  }

}


/* MOBILE FIX */
@media(max-width:576px) {

  .doctor-section {
    padding: 40px 0;
  }

  .doctor-image-wrapper {
    border-radius: 20px;
    overflow: visible;
  }

  .doctor-image {
    border-radius: 20px;
  }

  /* remove absolute positioning */
  .doctor-card {

    position: relative;

    bottom: auto;
    left: auto;

    margin-top: -40px;

    margin-left: auto;
    margin-right: auto;

    max-width: 90%;

    padding: 15px;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(10px);

  }

  .doctor-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .doctor-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .btn-readmore {
    padding: 10px 18px;
    font-size: 14px;
  }

}

/* SECTION */
.membership-section {

  padding: 60px 0;

  background: #fff;

}


/* TITLE */
.membership-title {

  font-size: 40px;

  font-weight: 700;

  color: #620d62;

  margin-bottom: 40px;

}


/* CARD */
.membership-card {

  background: #fff;

  border: 1px solid #eee;

  border-radius: 14px;

  padding: 20px;

  height: 120px;

  display: flex;

  align-items: center;

  justify-content: center;

}


/* IMAGE */
.membership-card img {

  max-height: 60px;

}


/* DESKTOP GRID */
.membership-grid {

  display: grid;

  grid-template-columns: repeat(7, 1fr);

  gap: 20px;

}


/* MOBILE SLIDER */
.membership-slider {

  display: none;

}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px) {

  .membership-grid {

    grid-template-columns: repeat(4, 1fr);

  }

}


/* MOBILE */
@media(max-width:576px) {

  /* hide grid */
  .membership-grid {

    display: none;

  }

  /* show slider */
  .membership-slider {

    display: block;

    overflow: hidden;

  }

  /* track */
  .membership-track {

    display: flex;

    gap: 15px;

    width: max-content;

    animation: scrollMembership 25s linear infinite;

  }

  /* card */
  .membership-card {

    min-width: 130px;

    height: 85px;

    padding: 15px;

  }

  /* image */
  .membership-card img {

    max-height: 45px;

  }

}


/* INFINITE SMOOTH SCROLL */
@keyframes scrollMembership {

  0% {

    transform: translateX(0);

  }

  100% {

    transform: translateX(-50%);

  }

}


/* ================= SECTION WRAPPER ================= */
.risk-section {
  padding: 80px 0;
  background: #620d62;
  color: #fff;

}

.risk-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;

}

.risk-desc-main {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
  color: #f1f5f9;

}

.risk-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;

}

.risk-list {
  width: 100%;
}


.risk-item {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;

}

.risk-item h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;

}

.risk-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #e2e8f0;
  display: none;

}

.risk-item.active {
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid #ffffff;

}


.risk-item.active .risk-desc {
  display: block;

}


.risk-item:hover {
  background: rgba(255, 255, 255, 0.08);

}

.risk-image {
  width: 100%;
}

.risk-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: #fff;
  display: block;

}

/* ================= TABLET ================= */

@media (max-width: 991px) {
  .risk-section {
    padding: 60px 0;
  }

  .risk-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .risk-image {
    order: -1;
  }

}

@media (max-width: 576px) {

  .risk-section {
    padding: 50px 0;
  }

  .risk-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .risk-desc-main {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .risk-wrapper {
    gap: 20px;
  }

  .risk-item {
    padding: 16px 18px;
  }

  .risk-item h4 {
    font-size: 16px;
  }

  .risk-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .risk-image img {
    border-radius: 16px;
  }

}

/* News Section  */
.media-section {
  width: 100%;
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
}

.media-slider {
  width: 100%;
  overflow: hidden;
}

.media-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  transition: transform 0.6s ease;
}

.media-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
  .media-track {
    gap: 50px;
  }

  .media-logo {
    width: 120px;
    height: 60px;
  }

  .media-logo img {
    max-height: 45px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .media-track {
    gap: 40px;
  }

  .media-logo {
    width: 100px;
    height: 50px;
  }

  .media-logo img {
    max-height: 40px;
  }
}

/* News Section */

/* About Section */
.about-section {
  padding: 80px 0;
  background: #f4f5f7;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-small {
  color: #7a2d91;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
}

.about-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;

}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(135deg, #620d62, #620d62);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.about-images {
  position: relative;
  padding-left: 60px;
}

.about-img-big {
  position: relative;
  z-index: 1;
}

.about-img-big img {
  width: 100%;
  border-radius: 40px;
}

.about-img-small {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 55%;
  z-index: 2;
}

.about-img-small img {
  width: 100%;
  border-radius: 30px;
  border: 8px solid #fff;
}

.about-badge {
  position: absolute;
  top: 80px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: #620d62;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.about-badge span {
  font-size: 32px;
  font-weight: 700;
}

.about-badge p {
  margin: 0;
  font-size: 16px;
}

@media(max-width:991px) {

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-top: 50px;
    padding-left: 40px;
  }

  .about-img-small {
    width: 60%;
  }

  .about-badge {
    width: 120px;
    height: 120px;
    left: 0;
  }

}

@media(max-width:576px) {

  .about-title {
    font-size: 30px;
  }

  .about-img-small {
    width: 70%;
    bottom: -20px;
  }

  .about-badge {
    width: 90px;
    height: 90px;
    top: -20px;
  }

  .about-badge span {
    font-size: 18px;
  }

  .about-badge p {
    font-size: 12px;
  }

}

/* Transformation Section */

.transformation-section {
  padding: 80px 0;
  background: #fff;
}

.transformation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.transformation-small {
  color: #7a2d91;
  font-weight: 600;
}

.transformation-title {
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0;
}

.transformation-text {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}


/* Slider */

.transformation-slider {
  position: relative;
}

.transformation-track-wrapper {
  overflow: hidden;
}

.transformation-track {
  display: flex;
  gap: 20px;
  transition: transform .5s ease;
}



.transformation-card {
  min-width: calc(50% - 10px);
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  background: transparent;
  /* background remove */
}

/* single image card */

.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* image cut nahi hogi */
  border-radius: 18px;
  display: block;
  background: #fff;
}


/* If card has two images (before/after layout) */

.transformation-card img:first-child:last-child {
  position: relative;
}


/* Two image layout */

.transformation-card img:nth-child(1):not(:last-child) {
  width: 48%;
  height: 320px;
  object-fit: contain;
  position: absolute;
  top: 60px;
  left: 15px;
  transform: rotate(-5deg);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.transformation-card img:nth-child(2) {
  width: 48%;
  height: 320px;
  object-fit: contain;
  position: absolute;
  top: 60px;
  right: 15px;
  transform: rotate(5deg);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Slider arrows */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #7a2d91;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.slider-arrow.left {
  left: -20px;
}

.slider-arrow.right {
  right: -20px;
}


@media(max-width:991px) {

  .transformation-wrapper {
    grid-template-columns: 1fr;
  }

  .transformation-card {
    min-width: 100%;
    height: 350px;
  }

  .slider-arrow {
    display: none;
  }

}

@media(max-width:480px) {

  .transformation-section {
    padding: 30px 0;
  }

  .transformation-title {
    font-size: 25px;
  }

  .transformation-text {
    text-align: justify;
    margin-bottom: 0px;
  }
  
  .transformation-track {
  display: flex;
  gap: 0px;
  transition: transform .5s ease;
}

}

/* Journey SECTION */
.journey-section {
  background: #620d62;
  padding: 100px 20px;
  color: #fff;
  width: 100%;
}

.journey-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
}


.journey-main-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 80px;
}

.journey-timeline {
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%);
}

.journey-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  margin-bottom: 80px;
}

.journey-left {
  text-align: right;
  padding-right: 40px;
}

.journey-left h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.journey-center {
  display: flex;
  justify-content: center;
  position: relative;
}

.journey-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.journey-icon::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: -1;
}

.journey-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.journey-right {
  padding-left: 40px;
}

.journey-right p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.journey-mobile-title {
  display: none;
}

@media(max-width:991px) {

  .journey-main-title {
    font-size: 26px;
    text-align: left;
    margin-bottom: 40px;
  }

  .journey-timeline::before {
    display: none;
  }

  .journey-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .journey-left {
    display: none;
  }

  .journey-center {
    flex-shrink: 0;
  }

  .journey-icon {
    width: 60px;
    height: 60px;
  }

  .journey-icon::before {
    width: 90px;
    height: 90px;
  }

  .journey-right {
    padding-left: 0;
  }

  .journey-mobile-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .journey-right p {
    font-size: 15px;
  }
}

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
  background: #f4f5f7;
  padding: 100px 0;
  overflow: hidden;
}

.testimonial-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonial-subtitle {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.google-stars {
  color: #f4b400;
  font-size: 22px;
  margin: 10px 0;
}

.testimonialSwiper {
  width: 100%;
  padding: 0px 0;
}

.testimonialSwiper .swiper-wrapper {
  align-items: center;
}

.testimonialSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  width: 420px;
  max-width: 100%;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  opacity: 0.4;
  transform: scale(0.85);
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.swiper-slide-prev .testimonial-card,
.swiper-slide-next .testimonial-card {
  opacity: 0.6;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #6ab04c;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-header h6 {
  font-size: 18px;
  margin: 0;
}

.stars {
  color: #f4b400;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-top: 20px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #777;
}

/* ================= ARROWS ================= */

.testimonial-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 55px;
  height: 55px;
  background: #6a1b9a;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-title {
    font-size: 26px;
  }

  .testimonial-card {
    width: 90%;
    padding: 22px;
    transform: scale(1) !important;
    opacity: 1 !important;
  }

  .user-avatar {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 42px;
    height: 42px;
  }
}

/* ================= WHY DOCTOR SECTION ================= */

.why-doctor-section {
  padding: 100px 0;
  background: #ffff;
}

.doctor-image-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.doctor-image-box img {
  width: 100%;
  display: block;
  border-radius: 25px;
}

.doctor-info {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.86);
  padding: 20px;
  border-radius: 15px;
  max-width: 80%;
}

.doctor-info h4 {
  margin: 0;
  font-size: 20px;
  color: #620d62;
}

.doctor-info p {
  margin: 6px 0;
  font-weight: 500;
}

.doctor-info small {
  font-size: 13px;
  color: #555;
}


.why-content {
  padding-left: 40px;
}

.why-content h2 {
  font-size: 36px;
  font-weight: 600;
  color: #620d62;
  margin-bottom: 30px;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.why-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #620d62;
  font-weight: bold;
}

.counter-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.counter-box h3 {
  font-size: 38px;
  color: #620d62;
  margin: 0;
}

.counter-box p {
  margin: 5px 0 0;
  font-size: 14px;
}

@media (max-width: 768px) {

  .why-doctor-section {
    padding: 40px 15px;
    background: #ffffff;
  }

  .doctor-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .doctor-image-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
  }

  .doctor-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(98, 13, 98, 0.25);
    border-radius: 20px;
  }

  .doctor-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    padding: 15px;
    border-radius: 12px;
    z-index: 2;
  }

  .doctor-info h4 {
    font-size: 18px;
    color: #620d62;
    margin-bottom: 5px;
  }

  .doctor-info p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
  }

  .doctor-info small {
    font-size: 12px;
    color: #555;
  }

  .why-content {
    margin-top: 30px;
    padding-left: 0;
  }

  .why-content h2 {
    font-size: 22px;
    line-height: 1.3;
    color: #620d62;
    margin-bottom: 20px;
  }

  .why-list li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 28px;
    color: #333;
  }

  .why-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #620d62;
    font-weight: bold;
  }

  .counter-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 10px;
  }

  .counter-box {
    text-align: center;
    flex: 1;
  }

  .counter-box h3 {
    font-size: 20px;
    color: #620d62;
    margin: 0;
  }

  .counter-box p {
    font-size: 11px;
    margin-top: 5px;
    line-height: 1.3;
    color: #444;
  }
}


/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 100px 0;
  background: #f4f5f7;
}

.faq-header h5 {
  color: #620d62;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #620d62;
  border-radius: 20px;
  margin-bottom: 25px;
  padding: 25px 30px;
  transition: 0.3s ease;
  color: #fff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}

.faq-icon {
  width: 35px;
  height: 35px;
  background: #ffffff;
  color: #620d62;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .faq-section {
    padding: 60px 15px;
  }

  .faq-header h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-item {
    padding: 18px 20px;
  }

}


/* ================= CONSULT SECTION ================= */

.consult-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.consult-container {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.consult-image {
  flex: 1;
}

.consult-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consult-form-area {
  flex: 1;
  padding: 60px 50px;
  background: #ffffff;
}

.consult-tag {
  background: #620d62;
  color: #fff;
  padding: 6px 18px;
  font-size: 14px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
}

.consult-form-area h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #620d62;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #620d62;
  background: #ffffff;
  font-size: 15px;
}

.consult-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  background: #fff;
}

.consult-form textarea {
  height: 120px;
  resize: none;
}

.consult-form button {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background: #620d62;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.consult-form button:hover {
  background: #c298c6;
  color: #fff;
}

@media (max-width: 992px) {

  .consult-container {
    flex-direction: column;
  }

  .consult-image img {
    height: 350px;
  }

  .consult-form-area {
    padding: 40px 25px;
  }

  .consult-form-area h2 {
    font-size: 24px;
  }

}


/* ================= FOOTER ================= */

.main-footer {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.footer-links a {
  color: #bdbdbd;
  margin-right: 20px;
  text-decoration: none;
  font-size: 14px;
}

.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fff;
}

.footer-quick-links a {
  color: #fff;
  text-decoration: none;
}

.footer-quick-links a:hover {
  color: #e69a2e;
}

.quick-title {
  font-weight: 600;
  margin-right: 10px;
}


.footer-links a:hover {
  color: #fff;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #620d62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  text-decoration: none;
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}


.footer-box img {
  width: 170px;
  margin-bottom: 0px;
}

.footer-box p {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
}

.footer-box h5 {
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-box h5::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #e69a2e;
  position: absolute;
  bottom: -6px;
  left: 0;
}


.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #fff;
}


.footer-box iframe {
  width: 100%;
  border: 0;
  margin-top: 10px;
  border-radius: 6px;
}


.footer-bottom {
  background: #000;
  margin-top: 50px;
  border-top: 1px solid #222;
}

.footer-bottom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 20px 0;
}

.footer-developed {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.footer-developed a {
  color: #e69a2e;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
  color: #bdbdbd;
  font-size: 14px;
}

.footer-bottom a {
  color: #bdbdbd;
  text-decoration: none;
}

.footer-policy{
  text-align: right;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 40px;
}

.footer-policy:hover{
  color: #e69a2e;
}



@media(max-width:992px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}

@media (max-width:768px) {


  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }


  .footer-quick-links {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 8px;
  }


  .footer-quick-links span {
    margin: 0 4px;
  }


  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
  }


  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }


  .logo-box img {
    margin: auto;
    display: block;
  }

  .footer-box p {
    text-align: center;
  }


  .footer-box h5 {
    text-align: center;
  }


  .footer-box h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-box iframe {
    height: 150px;
  }

  .footer-bottom-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
}


}


/* ================= MOBILE BOTTOM BAR ================= */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}

.mobile-bottom-bar a {
  width: 50%;
  padding: 14px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #620d62;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }
}



.vertical-book-btn {
  position: fixed;
  right: -58px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #620d62;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .vertical-book-btn {
    right: -57px;
  }
}

/* ================= HERO SECTION  ================= */

.laser-hero {
  position: relative;
  background: #d8cfb5;
  overflow: hidden;
}

.laser-bg {
  position: relative;
  text-align: right;
}

.laser-bg img {
  width: 55%;
  height: 650px;
  object-fit: cover;
}

.laser-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 520px;
}

.laser-card {
  background: #F6F2E991;
  backdrop-filter: blur(0px);
  padding: 50px;
  border-radius: 25px;
}

.laser-line {
  width: 40px;
  height: 3px;
  background: #620d62;
  display: block;
  margin-bottom: 20px;
}

.laser-card h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.3;
}

.laser-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.laser-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #620d62;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.laser-btn:hover {
  background: #620d62;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

  .laser-bg img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .laser-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: -400px;
    padding: 0 15px 18px;
  }

  .laser-card {
    padding: 30px;
    border-radius: 20px;
  }

  .laser-card h1 {
    font-size: 26px;
  }

  .laser-card p {
    font-size: 14px;
  }

  .laser-btn {
    width: 100%;
    text-align: center;
  }
}


/* ================= CONSULT SECTION ================= */

.consult-section {
  background: #ffff;
  padding: 100px 0;
}

.consult-wrapper {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.consult-left {
  width: 60%;
  padding-top: 25px;
}

.consult-left h2 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.consult-left p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.consult-right {
  width: 40%;
}

.consult-box {
  background: #ad79ad;
  padding: 30px 40px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.consult-box h3 {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.consult-line {
  width: 60px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 0 auto 30px;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.consult-form textarea {
  height: 100px;
  resize: none;
}

.consult-form button {
  background: #620d62;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.consult-form button:hover {
  background: #620d62;
}

@media (max-width: 992px) {

  .consult-section {
    padding: 30px 0;
  }

  .consult-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .consult-left,
  .consult-right {
    width: 100%;
  }

  .consult-left h2 {
    font-size: 25px;
  }

  .consult-box {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .consult-box h3 {
    font-size: 22px;
  }
}

/* ================= INFO SECTION ================= */
.info-section {
  background: #620d62;
  padding: 110px 0;
}

.info-wrapper {
  width: 75%;
  margin: auto;
  text-align: center;
}

.info-wrapper h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 35px;
  color: #fff;
}

.info-wrapper p {
  font-size: 17px;
  line-height: 1.9;
  color: #fff;
  max-width: 1000px;
  margin: auto;
}


@media (max-width: 992px) {

  .info-section {
    padding: 70px 0;
  }

  .info-wrapper {
    width: 90%;
  }

  .info-wrapper h2 {
    font-size: 25px;
  }

  .info-wrapper p {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
  }
}


/* ================= BREAST COST SECTION ================= */

.breast-cost-section {
  background: #f5f5f5;
  padding: 100px 0;
}

.breast-cost-wrapper {
  width: 75%;
  margin: auto;
}

.breast-cost-wrapper h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #111;
}

.breast-cost-table {
  width: 100%;
  border-collapse: collapse;
}

.breast-cost-table thead {
  background: #620d62;
  color: #fff;
}

.breast-cost-table th {
  padding: 18px 25px;
  text-align: left;
  font-size: 18px;
}

.breast-cost-table td {
  padding: 18px 25px;
  font-size: 17px;
  color: #222;
}

.breast-cost-table tbody tr:nth-child(even) {
  background: #e9e9e9;
}

.breast-cost-table tbody tr:hover {
  background: #f2f2f2;
  transition: 0.3s ease;
}

@media (max-width: 992px) {

  .breast-cost-wrapper {
    width: 90%;
  }

  .breast-cost-wrapper h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .breast-cost-table th,
  .breast-cost-table td {
    font-size: 14px;
    padding: 12px 10px;
  }

  .table-responsive {
    overflow-x: auto;
  }
}

/* ================= BENEFITS SECTION ================= */

.benefits-section {
  background: #ffffff;
  padding: 80px 0;
}

.benefits-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #111;
}

.benefits-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.benefits-content {
  flex: 1;
}

.benefits-intro {
  font-size: 17px;
  margin-bottom: 20px;
  color: #444;
}

.benefits-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.benefits-list li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 8px;
  color: #222;
}

.benefits-closing {
  font-size: 16px;
  color: #444;
}

.benefits-image {
  flex: 1;
  position: relative;
}

.benefits-image img {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.image-accent {
  position: absolute;
  width: 85%;
  height: 85%;
  background: #620d62;
  right: -25px;
  bottom: -25px;
  z-index: 1;
}

@media (max-width: 992px) {

  .benefits-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .benefits-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .benefits-content {
    order: 1;
  }

  .benefits-image {
    order: 0;
  }

  .benefits-intro,
  .benefits-closing {
    text-align: center;
  }

  .benefits-list li {
    font-size: 15px;
  }

  .image-accent {
    right: -10px;
    bottom: -10px;
    width: 90%;
    height: 90%;
  }
}

/* *********************Risk Section  *******************/
.risks-section {
  background: #f7f7f7;
  padding: 100px 0;
}

.risks-heading {
  text-align: center;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #111;
}

.risks-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.risks-image {
  flex: 1;
  position: relative;
}

.risks-image img {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.risks-image .image-accent {
  position: absolute;
  width: 85%;
  height: 85%;
  background: #620d62;
  left: -25px;
  bottom: -25px;
  z-index: 1;
}

.risks-content {
  flex: 1;
}

.risks-content p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #333;
}

.risks-list {
  padding-left: 20px;
  margin-bottom: 25px;
}

.risks-list li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .risks-section {
    padding: 50px 0;
  }

  .risks-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .risks-wrapper {
    flex-direction: column;
    gap: 35px;
  }

  .risks-content {
    order: 1;
  }

  .risks-image {
    order: 1;
  }

  .risks-image .image-accent {
    position: absolute;
    width: 93%;
    height: 93%;
    background: #620d62;
    left: -16px;
    bottom: -12px;
    z-index: 1;
  }
}

/* ================= SECTION BACKGROUND ================= */

.doctor-section {
  background: #f2f2f2;
  padding: 100px 0;
}

/* CENTER CONTAINER */
.doctor-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* MAIN BOX */
.doctor-box {
  display: flex;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}


.doctor-left {
  width: 50%;
  background: #c58b8b;
  position: relative;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.doctor-header {
  position: absolute;
  top: 50px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.doctor-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.plus {
  background: #fff;
  color: #c58b8b;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.top-badge {
  position: absolute;
  top: 110px;
  left: 60px;
  background: #fff;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.doctor-img {
  max-height: 550px;
  margin-top: 140px;
  position: relative;
  z-index: 2;
  display: block;
}

.bottom-badge {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.c1 {
  width: 140px;
  height: 140px;
  top: 150px;
  right: 80px;
}

.c2 {
  width: 180px;
  height: 180px;
  bottom: 100px;
  left: 60px;
}


.doctor-right {
  width: 50%;
  padding: 60px 20px;
  background: #f7f7f7;
}

.doctor-right input,
.doctor-right textarea,
.doctor-right select {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 22px;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.doctor-right input:focus,
.doctor-right textarea:focus,
.doctor-right select:focus {
  border-color: #620d62;
  outline: none;
}

.doctor-right button {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #620d62;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.doctor-right button:hover {
  background: #a95e5e;
}


@media (max-width: 992px) {

  .doctor-box {
    flex-direction: column;
  }

  .doctor-left,
  .doctor-right {
    width: 100%;
  }

  .doctor-right {
    padding: 40px 25px;
  }

  .doctor-img {
    margin-top: 100px;
    max-height: 420px;
  }

  .bottom-badge {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
  }

  .circle {
    display: none;
  }
}

/* ================= ABOUT DOCTOR SECTION ================= */

.about-doctor-section {
  padding: 20px 0;
  background: #fff;
  padding-bottom: 0px;
}

/* LEFT CONTENT */

.about-doctor-title {
  font-size: 48px;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.2;
}

.about-doctor-subtitle {
  font-size: 26px;
  margin: 15px 0 25px;
  font-weight: 500;
}

.about-doctor-list {
  padding-left: 20px;
}

.about-doctor-list li {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}

.about-doctor-image-box {
  text-align: right;
}

.about-doctor-img {
  max-width: 420px;
  width: 100%;
  height: auto;
}


@media(max-width:992px) {

  .about-doctor-title {
    font-size: 36px;
  }

  .about-doctor-subtitle {
    font-size: 22px;
  }

  .about-doctor-img {
    max-width: 350px;
  }

}

@media(max-width:768px) {

  .about-doctor-section {
    padding: 50px 0;
    text-align: center;
    padding-bottom: 0px;
  }

  .about-doctor-content {
    margin-bottom: 30px;
  }

  .about-doctor-title {
    font-size: 28px;
  }

  .about-doctor-subtitle {
    font-size: 20px;
  }

  .about-doctor-list {
    text-align: left;
  }

  .about-doctor-image-box {
    text-align: center;
  }

  .about-doctor-img {
    max-width: 280px;
  }

}

/* ===== SECTION ===== */
.appoint-layout-sec {
  background: #6f0d63;
  padding: 80px 0;
  color: #fff;
}

.appoint-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
}

.appoint-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.appoint-line {
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin: 25px 0;
}

.appoint-form-col input,
.appoint-form-col select,
.appoint-form-col textarea {
  width: 100%;
  height: 55px;
  margin-bottom: 15px;
  border: none;
  padding: 0 15px;
  border-radius: 6px;
}

.appoint-form-col textarea {
  height: 120px;
}

.appoint-form-col button {
  width: 100%;
  height: 55px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
}

.doctor-title-main {
  font-size: 38px;
  font-weight: 700;
}

.doctor-degree-main {
  margin-top: 10px;
  font-weight: 600;
}

.doctor-line {
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin: 20px 0;
}

.appoint-doctor-col p {
  margin-bottom: 18px;
  line-height: 1.7;
}

.doctor-call-main {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

@media(max-width:992px) {

  .appoint-grid {
    grid-template-columns: 1fr;
  }

  .appoint-title {
    font-size: 32px;
  }

  .doctor-title-main {
    font-size: 30px;
  }

}


/* ===== CERTIFICATES SECTION ===== */

.certificates-section {
  padding: 80px 0;
  background: #f7f7f7;
}

.certificates-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* GRID */

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */

.certificate-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  border: 1px solid #e6e6e6;
  text-align: center;
  transition: 0.3s;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.certificate-img {
  max-width: 100%;
  height: auto;
}

/* ===== MOBILE ===== */

@media(max-width:992px) {

  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .certificates-title {
    font-size: 30px;
  }

}

/* ===== VISION MISSION SECTION ===== */

.vm-section {
  padding: 80px 0;
  background: #fff;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.vm-image {
  width: 100%;
  height: auto;
}

.vm-box {
  border-left: 6px solid #7a166d;
  padding-left: 25px;
  margin-bottom: 40px;
}

.vm-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vm-list {
  margin-top: 15px;
  padding-left: 20px;
}

.vm-list li {
  margin-bottom: 10px;
}

/* RESPONSIVE */

@media(max-width:992px) {

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-title {
    font-size: 28px;
  }

  .vm-image {
    max-width: 500px;
    margin: auto;
    display: block;
  }

}

/* ================= BEFORE AFTER SECTION ================= */

.before-after-section {
  padding: 80px 0;
  background: #fff;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.before-after-card {
  width: 100%;
}

.before-after-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform .3s ease;
}

/* hover effect */

.before-after-card img:hover {
  transform: scale(1.04);
}


@media(max-width:991px) {

  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}


@media(max-width:600px) {

  .before-after-section {
    padding: 50px 0;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}


/* ================= CONTACT HERO ================= */

.contact-hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
}


.contact-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

/* content */

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  padding: 0 20px;
}

.contact-hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 10px;
}

.contact-hero-content p {
  font-size: 18px;
  color: #ff6b00;
  font-weight: 500;
}

/* mobile */

@media(max-width:768px) {

  .contact-hero {
    height: 260px;
  }

  .contact-hero-content h1 {
    font-size: 36px;
  }

}


/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-small {
  color: #b67dc7;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0 25px;
}

.contact-item {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.contact-item i {
  color: #8a2d91;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  margin-top: 20px;
}


.contact-form-box {
  border: 1px solid #d7a0e6;
  padding: 40px;
}

.contact-form-box h3 {
  font-size: 36px;
  margin: 10px 0 25px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #1f2933;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}


/* RESPONSIVE */

@media(max-width:991px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

}

.media-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.media-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #1f2933;
}

.media-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.media-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.media-item img {
  max-width: 100%;
  height: auto;
  transition: all .3s ease;
}

.media-item img:hover {
  transform: scale(1.08);
}

@media(max-width:991px) {

  .media-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

}

@media(max-width:600px) {

  .media-title {
    font-size: 22px;
  }

  .media-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

}

.blog-section {
  padding: 80px 0;
  background: #f7f7f7;
}

.blog-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 18px;
  padding: 15px;
  margin: 0;
  line-height: 1.4;
}

.blog-card a {
  padding: 0 15px 20px;
  display: inline-block;
  color: #6f116f;
  font-weight: 600;
  text-decoration: none;
}


.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}


.sidebar-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.sidebar-card h4 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}
.search-box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
}

.search-box button {
  background: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}


.blog-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-category-list li {
  margin-bottom: 15px;
}

.blog-category-list a {
  display: block;
  background: #eef0f3;
  padding: 15px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: .3s;
}

.blog-category-list a:hover {
  background: #6f116f;
  color: #fff;
  transform: translateX(4px);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.stars {
  color: #ffb400;
  margin-bottom: 10px;
}

.review-item {
  display: none;
}

.review-item.active {
  display: block;
}

@media(max-width:992px) {

  .blog-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    margin-top: 30px;
  }

}

@media(max-width:768px) {

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

}


@media(max-width:480px) {

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 50px 0;
  }

  .blog-card h3 {
    font-size: 16px;
  }

}

/* ================= BLOG DETAILS PAGE ================= */

.article-area {
  padding: 80px 0;
  background: #f7f7f7;
}
.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.article-main {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.article-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
  display: block;
}

.article-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-main p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 120px;
  align-self: start;
}


.side-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.side-title {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 700;
}


.side-search {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}


.side-search input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
  font-size: 14px;
}


.side-search button {
  border: none;
  background: #fff;
  padding: 0 15px;
  cursor: pointer;
}


.recent-blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-blog-list li {
  margin-bottom: 12px;
}

.recent-blog-list a {
  display: block;
  background: #eef0f3;
  padding: 14px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: .3s;
}

.recent-blog-list a:hover {
  background: #6f116f;
  color: #fff;
  transform: translateX(4px);
}


.side-card form input,
.side-card form textarea,
.side-card form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.side-card form textarea {
  min-height: 120px;
  resize: none;
}
.side-card form button {
  width: 100%;
  background: #6f116f;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}


.side-card form button:hover {
  background: #530d53;
}


@media(max-width:992px) {

  .article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .article-sidebar {
    position: relative;
    top: 0;
  }

}

@media(max-width:768px) {

  .article-area {
    padding: 60px 0;
  }

  .article-heading {
    font-size: 28px;
  }

  .article-main {
    padding: 25px;
  }

}

@media(max-width:480px) {
  .article-heading {
    font-size: 24px;
  }
  .article-main p {
    font-size: 15px;
  }
  .side-card {
    padding: 20px;
  }

}