*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /* color */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-main: #c3aa8e;
  --color-darkMain: #a28980;
  --color-lightMain: #e7e0da;

  /* font weight */
  --fw-thin: 100;
  --fw-extraLight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: var(--fw-regular);
  overflow-x: hidden;
  color: #7a7a7a;
}

body.open {
  overflow: hidden;
}

ul,
ol {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
  display: inline-block;
  color: inherit;
}

/* 
=====================================
 GLOBAL COMPONENTS OPEN
===================================== 
*/

.heading h3 {
  color: var(--color-darkMain);
  font-weight: var(--fw-bold);
  font-size: 38px;
}
.heading h3 > span {
  font-weight: var(--fw-regular);
}

.darkBgButton {
  font-size: 20px;
  font-weight: var(--fw-medium);
  background-color: var(--color-darkMain);
  color: var(--color-white);
  border-radius: 20px;
  padding: 8px 25px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.darkBgButton::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-main);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.3s linear;
}

.darkBgButton:hover::after {
  width: 100%;
}
.darkBgButton:hover {
  color: var(--color-white);
}

/* 
=====================================
 GLOBAL COMPONENTS CLOSE
===================================== 
*/

/* ==============================  TOPBAR SECTION OPEN    ======================================== */
.topbar {
  background-color: var(--color-main);
}

.topbar p {
  color: var(--color-white);
}
.topbar a {
  color: var(--color-white);
}
/* ==============================  TOPBAR SECTION CLOSE    ======================================== */

/*  ==============================  NAV SECTION OPEN    ======================================== */

.navwrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navwrap__logo img {
  width: 200px;
}
.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 0 60%;
}

.menu .mainMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.menu .mainMenu .mainMenu__item {
  padding: 40px 15px;
  transition: all 0.5s linear;
}
.menu .mainMenu .mainMenu__item .mainMenu__link {
  color: var(--color-darkMain);
  font-weight: var(--fw-regular);
  transition: all 0.5s linear;
}
.menu .mainMenu .mainMenu__item:hover {
  background-color: #f9f8f7;
  padding: 40px 15px;
}

.header.scrollNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--color-white);
  transition: all 0.5s linear;
}
/* ************* DROP DOWN MENU OPEN ***************  */
.bigChild {
  position: relative;
}
.firstStepChild,
.secondStepChild,
.thirdStepChild {
  position: absolute;
  min-width: 250px;
  background-color: #f9f8f7;
  display: none; /* hidden by default */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.firstStepChild a,
.secondStepChild a,
.thirdStepChild a {
  display: flex;
  align-items: center;
  justify-content: space-between; /* push text left, icon right */
  padding: 15px 10px; /* same as the parent padding */
  min-width: 250px;
  transition: all 0.3s ease;
  color: var(--color-darkMain);
}

.firstStepChild a:hover,
.secondStepChild a:hover,
.thirdStepChild a:hover {
  background-color: #f2eeeb;
}
.firstStepChild {
  top: 100%;
  left: 0;
}

.secondStepChild {
  top: 0;
  left: 100%;
  right: 0;
}

.thirdStepChild {
  left: 100%;
  top: 0;
}
.mainMenu__item:hover > .firstStepChild {
  display: block;
}

.firstStepChild li:hover > .secondStepChild {
  display: block;
}

.secondStepChild li:hover > .thirdStepChild {
  display: block;
}

.firstStepChild li,
.secondStepChild li {
  position: relative;
}

/* ************* DROP DOWN MENU CLOSE ***************  */

.bookapp a {
  background-color: var(--color-darkMain);
  color: var(--color-white);
  border-radius: 20px;
  padding: 5px 10px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.bookapp a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-main);
  z-index: -1;
  transition: all 0.3s linear;
}

.bookapp a:hover::after {
  width: 100%;
}

/*  ==============================  NAV SECTION CLOSE    ======================================== */

/* ==============================  HERO SECTION OPEN    ======================================== */
.hero {
  position: relative;
  isolation: isolate;
}

.hero video {
  position: relative;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(195, 170, 142, 0.7);
  z-index: -1;
}

.hero__caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero__caption h2 {
  color: var(--color-white);
  font-size: 60px;
  font-weight: var(--fw-bold);
}

.hero__caption h2 > span {
  font-weight: var(--fw-regular);
}

.hero__caption h3 {
  color: var(--color-white);
  font-size: 25px;
  font-weight: var(--fw-regular);
}

.hero__caption h3 > span {
  font-weight: var(--fw-bold);
}
.hero__caption .heroBtn a {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero__caption .heroBtn a > span {
  font-weight: var(--fw-regular);
}

.hero__caption .heroBtn a::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-darkMain);
  z-index: -1;
  transition: all 0.3s linear;
}

.hero__caption .heroBtn a:hover::after {
  left: 0;
}
.hero__caption .heroBtn a:hover {
  color: var(--color-white);
}

.downArrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

/* ==============================  HERO SECTION CLOSE    ======================================== */

/* ==============================  WHY CHOOSE US SECTION OPEN    ======================================== */
.customStack {
  --stack-top: clamp(110px, 12vh, 160px);
  --peek: 37px;
  --initial-gap: 28px;
  --shadow-soft: 0 11px 9px rgb(105 105 105 / 12%);
  --radius: 20px;
}

.customStack .stack__cards {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
}

.customStack .card {
  position: sticky;
  z-index: 1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  border: none;
  padding: 100px;
  box-shadow: none;
  transform-origin: top center;
  transform: scale(1);
  transition: transform 0.9s ease, box-shadow 0.5s ease;
  margin-bottom: 30px;
  background: none;
}
.customStack .card:nth-child(1) {
  top: var(--stack-top);
  z-index: 2;
}
.customStack .card:nth-child(2) {
  top: calc(var(--stack-top) + var(--peek));
  z-index: 3;
}
.customStack .card:nth-child(3) {
  top: calc(var(--stack-top) + var(--peek) * 2);
  z-index: 4;
}
.customStack .card:nth-child(4) {
  top: calc(var(--stack-top) + var(--peek) * 3);
  z-index: 5;
}
.customStack .card:nth-child(5) {
  top: calc(var(--stack-top) + var(--peek) * 4);
  z-index: 6;
}
.customStack .card:nth-child(6) {
  top: calc(var(--stack-top) + var(--peek) * 5);
  z-index: 7;
}
.customStack .card::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -22px;
  height: 46px;
  border-radius: 60px;
  filter: blur(22px);
  background: radial-gradient(
    60% 100% at 50% 0%,
    rgba(46, 33, 29, 0.18),
    rgba(46, 33, 29, 0)
  );
  opacity: 0.9;
  pointer-events: none;
}

.customStack .card.is-stuck {
  transform: scale(0.94);
}

@media (prefers-reduced-motion: reduce) {
  .customStack .stack__cards {
    --runway: var(--initial-gap) !important;
  }
  .customStack .card {
    position: relative;
    top: 0;
    transform: none !important;
  }
}

.whyChoose {
  background-color: var(--color-lightMain);
  padding-top: 100px;
  padding-bottom: 80px;
}
.whyChoose .heading {
  text-align: center;
}

.whyChoose .heading h5 {
  font-style: italic;
  color: var(--color-darkMain);
  font-weight: var(--fw-medium);
  font-size: 20px;
}

.whychooseCard {
  margin-top: 50px;
}

.card__stack {
  position: relative;
  width: 100%;
  min-height: calc(180px + 250px);
}
.card:nth-child(odd) .card__item {
  background-color: #f2eeea;
}

.card:nth-child(even) .card__item {
  background-color: var(--color-white);
  border: 1px solid var(--color-darkMain);
}

.card__item {
  position: absolute;
  width: 100%;
  min-height: 200px;
  border-radius: 30px;
  transition: transform 0.3s ease, z-index 0s ease 0.3s;
  cursor: pointer;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: -1px -4px 14px 1px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: -1px -4px 14px 1px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: -1px -4px 14px 1px rgba(0, 0, 0, 0.22);
}
.card__item__left {
  flex: 1 0 30%;
}
.card__item__left h4 {
  font-weight: var(--fw-bold);
  color: var(--color-darkMain);
  font-size: 30px;
}
.card__item__left h4 > span {
  font-weight: var(--fw-regular);
}
.card__item__right {
  flex: 1 0 60%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.card__item__right::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 140%;
  background-color: var(--color-darkMain);
}

.card__item__right .card__icon {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--color-darkMain);
  flex: 1 0 auto;
}

.card__item__right .card__icon img {
  width: 50px;
}
.card__item__right p {
  text-wrap: wrap;
  color: #7a7a7a;
}

.whyChoose .bookBtn {
  text-align: center;
}

/* ==============================  WHY CHOOSE US SECTION CLOSE    ======================================== */

/* ==============================  THE SMILE ARCHITECT SECTION OPEN    ======================================== */

.smileArchit {
  margin-top: 80px;
}
.smileArchit .heading {
  margin-bottom: 60px;
}

.smileArchit__left h5 {
  font-weight: var(--fw-bold);
  font-size: 30px;
  color: var(--color-darkMain);
}
.smileArchit__left h6 {
  font-weight: var(--fw-medium);
  font-size: 20px;
  color: var(--color-darkMain);
}
.dacName {
  margin-bottom: 40px;
}
.topPara {
  color: var(--color-darkMain);
}
.smileArchit__left .dacReadMore {
  margin-top: 50px;
}
.smileArchit__left .dacReadMore a {
  color: var(--color-darkMain);
  text-decoration: underline;
}

.smileArchit .smileArchit__right img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
}

/* ==============================  THE SMILE ARCHITECT SECTION CLOSE    ======================================== */

/*   ==============================   TESTIMONIAL SECTION OPEN    ======================================== */
.testomonial {
  margin-top: 80px;
  background-color: var(--color-lightMain);
  padding-block: 50px;
}

.imageReview img {
  width: 120px;
  margin-top: 25px;
}
.testomonialInner {
  margin-top: 50px;
  position: relative;
}
.testomonialInner .swiper-slide {
  background-color: var(--color-white);
  border-radius: 15px;
  padding: 60px 20px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  box-shadow: -3px 12px 45px -26px rgba(0, 0, 0, 0.31);
  -webkit-box-shadow: -3px 12px 45px -26px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: -3px 12px 45px -26px rgba(0, 0, 0, 0.31);
}

.testomonialInner .swiper-slide-fully-visible {
  visibility: visible;
  opacity: 1;
}
.testoSlide {
  padding-block: 50px;
}
.testomonialInner .swiper-slide-next {
  position: relative;
  transform: scale(1.2) !important;
}
.testomonialInner .swiper-slide-next h4,
.testomonialInner .swiper-slide-next h5,
.testomonialInner .swiper-slide-next p {
  transform: scale(0.8);
}

.testomonialInner .swiper-slide h4 {
  font-size: 27px;
  color: var(--color-darkMain);
  font-weight: var(--fw-bold);
}

.testomonialInner .swiper-slide h5 {
  font-size: 22px;
  color: var(--color-darkMain);
  font-weight: var(--fw-regular);
}
.testomonialInner .swiper-slide p {
  font-style: italic;
  font-size: 17px;
}

.testomonialInner .smallInfo {
  color: var(--color-darkMain);
  text-align: center;
  font-weight: var(--fw-medium);
  font-style: italic;
  margin-top: 70px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 40px;
}

.testomonialInner .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-darkMain);
  height: 14px;
  width: 14px;
}

/*   ==============================   TESTIMONIAL SECTION CLOSE    ======================================== */

/* ==============================  COMPREHENSIVE CARE SECTION OPEN    ========================================  */
.carewrap {
  margin-top: 60px;
  position: relative;
  isolation: isolate;
}
.carewrap::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: rgba(195, 170, 142, 0.7);
}

.carewrap video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  position: relative;
  z-index: -1;
}

.careInner {
  position: absolute;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 90vh;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.careInner .heading h3 {
  text-align: center;
  color: var(--color-white);
}

.careInnerCards {
  display: flex;
  flex: 1;
  height: 100%; /* Make sure this takes full height */
  margin-top: 50px;
}

.careCrad {
  padding: 30px;
  flex: 1;
  border-right: 1px solid white;
  height: 100%; /* Stretch the height */
  transition: all 0.3s linear;
}
.careCrad:hover {
  background-color: var(--color-white);
}
.careCrad:hover .number {
  background-color: var(--color-darkMain);
}
.careCrad:hover h4 {
  color: var(--color-darkMain);
}
.careCrad:last-child {
  border: none;
}
.careCrad .number {
  font-weight: var(--fw-bold);
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  border-radius: 20px;
  padding: 4px 25px;
  margin-bottom: 25px;
}
.careCrad h4 {
  color: var(--color-white);
  font-size: 30px;
  font-weight: var(--fw-bold);
}
.careCrad .bookBtn {
  position: absolute;
  bottom: 20px;
}
.careCrad .bookBtn a {
  background-color: var(--color-main);
  font-size: 16px;
}
.careCrad .bookBtn a:hover::after {
  background-color: var(--color-darkMain);
}

.cardHidden {
  display: none;
}
.careCrad:hover .cardHidden {
  display: block;
}
/* ==============================  COMPREHENSIVE CARE SECTION CLOSE    ========================================  */

/* ==============================  INSTAGRAM SECTION OPEN    ======================================== */
.instagramApi {
  margin-top: 80px;
}
.instagramApiInner {
  margin-top: 40px;
}

.instagramApi h5 {
  font-style: italic;
  color: var(--color-darkMain);
  font-weight: var(--fw-medium);
  font-size: 20px;
}

/* ==============================  INSTAGRAM SECTION CLOSE    ======================================== */

/*  ==============================  BLOG SECTION OPEN    ======================================== */

.homeBlog {
  margin-top: 80px;
  overflow: hidden;
}
.homeBlog .homeBlog__left {
  padding-left: 80px;
}
.homeBlog .homeBlog__left .heading {
  margin-bottom: 30px;
}

.homeBlog__right .imageWrap {
  width: 100%;
  height: 100%;
}

.homeBlog__right .imageWrap img {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 20px;
}
.homeBlog__right .date {
  font-size: 13px;
  font-weight: var(--fw-medium);
}
.homeBlog__right .borderBtn {
  margin-top: 20px;
}
.homeBlog__right .borderBtn a {
  border: 2px solid var(--color-darkMain);
  padding: 8px 20px;
  border-radius: 20px;
  color: var(--color-darkMain);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.homeBlog__right .borderBtn a::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-darkMain);
  z-index: -1;
  transition: all 0.3s linear;
}

.homeBlog__right .borderBtn a:hover::after {
  left: 0;
}
.homeBlog__right .borderBtn a:hover {
  color: var(--color-white);
}

/*  ==============================  BLOG SECTION CLOSE    ======================================== */

/*  ==============================  LET'S PLAN SECTION OPEN    ======================================== */

.homePlan {
  margin-top: 80px;
  background-color: rgba(195, 170, 142, 0.2);
  border-radius: 30px 30px 0 0;
  padding-top: 60px;
}

.homePlan h5 {
  font-style: italic;
  color: var(--color-darkMain);
  font-weight: var(--fw-medium);
  font-size: 20px;
}

.homePlan__map {
  margin-top: 60px;
}

/*  ==============================  LET'S PLAN SECTION CLOSE    ======================================== */

/*  ==============================  FOOTER SECTION OPEN    ======================================== */

.footer {
  background-color: var(--color-darkMain);
  padding-block: 40px;
}

.footer__logo img {
  width: 200px;
}

.footer__infos .whatsapp,
.footer__infos .email,
.footer__infos .location {
  color: var(--color-white);
  font-size: 16px;
  line-height: 2;
}

.footer__infos .whatsapp a,
.footer__infos .email a {
  transition: all 0.5s linear;
}
.footer__infos .whatsapp a:hover,
.footer__infos .email a:hover {
  text-decoration: underline;
}
.footer__infos .whatsapp i,
.footer__infos .email i,
.footer__infos .location i {
  font-size: 17px;
}

.footer__openHour h4,
.footer__socialLinks h4 {
  font-size: 20px;
  font-weight: var(--fw-black);
  color: var(--color-white);
}
.footer__openHour ul {
  padding-left: 15px;
  margin-top: 30px;
}
.footer__openHour ul li {
  color: var(--color-white);
  list-style-type: disc;
}
.footer__socialLinks ul {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}
.footer__socialLinks ul li a {
  background-color: var(--color-white);
  height: 35px;
  width: 35px;
  font-size: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s linear;
}

.footer__socialLinks ul li:hover a {
  transform: rotate(360deg);
}

.footerBar {
  background-color: var(--color-white);
  text-align: center;
  padding-block: 15px;
}
.footerBar p {
  margin-bottom: 0;
}

/* ==============================  FOOTER SECTION CLOSE    ======================================== */

/*  ================== PAGE HEADER OPEN ======================== */
.pageHeader {
  position: relative;
  background-size: cover;
  background-position: center center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  isolation: isolate;
}

.pageHeader .pageHeader__content {
  text-align: center;
  padding-bottom: 50px;
}

.pageHeader .pageHeader__content h2 {
  color: var(--color-white);
  font-size: 50px;
  font-weight: var(--fw-regular);
}
.pageHeader .pageHeader__content h2 > span {
  font-weight: var(--fw-bold);
}

.pageHeader .pageHeader__content p {
  color: var(--color-white);
  font-size: 25px;
  font-style: italic;
}

.pageHeader .pageHeader__content .pageBtn a {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pageHeader .pageHeader__content .pageBtn a > span {
  font-weight: var(--fw-regular);
}
.pageHeader .pageHeader__content .pageBtn a::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-darkMain);
  z-index: -1;
  transition: all 0.3s linear;
}
.pageHeader .pageHeader__content .pageBtn a:hover::after {
  left: 0;
}
.pageHeader .pageHeader__content .pageBtn a:hover {
  color: var(--color-white);
}

/* ================== PAGE HEADER CLOSE ======================== */

/*  ================== ABOUT US  OPEN ======================== */
.aboutTop {
  margin-top: 80px;
}

.aboutTop__left .headIcon {
  margin-bottom: 40px;
}

.aboutTop__left .colorDetail {
  font-style: italic;
  font-weight: var(--fw-medium);
  color: var(--color-darkMain);
}
.aboutTop__left .heading {
  color: var(--color-darkMain);
  font-weight: var(--fw-regular);
  font-size: 38px;
}
.aboutTop__left .heading span {
  font-weight: var(--fw-bold);
}
.aboutTop__right {
  margin-left: 40px;
}
.aboutTop__right .imageCard {
  position: relative;
  height: 500px;
}

.aboutTop__right .imageCard .aboutback {
  border-radius: 50px 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 400px;
  object-fit: cover;
}
.aboutTop__right .imageCard .aboutfront {
  border-radius: 0 0 0 50px;
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 400px;
  object-fit: cover;
  z-index: 2;
}

.aboutTop__right p {
  color: var(--color-darkMain);
  font-size: 22px;
  font-style: italic;
  padding-left: 50px;
  padding-top: 30px;
}

/*  ================== ABOUT US  CLOSE ======================== */

/* ================== MEET DR. OPEN ======================== */

.meetDoctor {
  background-color: var(--color-lightMain);
  margin-top: 80px;
  padding-block: 50px;
}

.meetDoctor__left img {
  border-radius: 40px;
  width: 100%;
  height: 650px;
  object-fit: cover;
}
.meetDoctor__right .heading {
  margin-bottom: 40px;
}

.meetDoctor__right {
  margin-left: 50px;
}
.meetDoctor__right .heading h3 {
  color: var(--color-darkMain);
  font-weight: var(--fw-regular);
  font-size: 38px;
}
.meetDoctor__right .heading h3 span {
  font-weight: var(--fw-bold);
}

.meetDoctor__right .heading h4 {
  color: var(--color-darkMain);
}

.meetDoctor__right .playVideo {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  margin-top: 40px;
}

.meetDoctor__right .playVideo img {
  width: 50px;
  object-fit: contain;
}

.meetDoctor__right .playVideo p {
  color: var(--color-darkMain);
  font-weight: var(--fw-medium);
  font-size: 22px;
  margin-bottom: 0;
}

.meetDoctor__quote {
  margin-top: 50px;
  text-align: center;
}

.meetDoctor__quote h4 {
  font-weight: var(--fw-semiBold);
  color: var(--color-darkMain);
  margin-bottom: 40px;
}

.meetDoctor__quote h4 span {
  font-style: italic;
}

/* ================== MEET DR. CLOSE ======================== */

/* missionVission */

.missionVission {
  position: relative;
  padding-top: 30px;
}
.missionVission::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 260px;
  background-color: var(--color-lightMain);
  top: 0;
  left: 0;
  z-index: -1;
}
.missionVission .twoCard {
  background-color: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 3px 0px 34px -14px rgba(0, 0, 0, 0.61);
  -webkit-box-shadow: 3px 0px 34px -14px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 3px 0px 34px -14px rgba(0, 0, 0, 0.61);
}

.missionVission .twoCard img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.twoCard__info {
  padding: 30px;
  min-height: 220px;
}

.missionVission .twoCard .twoCard__info h3 {
  color: var(--color-darkMain);
  font-weight: var(--fw-regular);
  font-size: 27px;
}
.missionVission .twoCard .twoCard__info h3 span {
  font-weight: var(--fw-bold);
}

.chooseUs {
  margin-top: 80px;
}
.chooseUs .heading {
  text-align: center;
}

.chooseInner {
  margin-top: 50px;
}

.chooseCard {
  background-color: var(--color-lightMain);
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
}
.chooseCard .icon {
  background-color: var(--color-darkMain);
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: 0 auto;
}
.chooseCard .icon img {
  width: 40px;
}
.chooseCard .cardHeading h4 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: var(--fw-regular);
  color: var(--color-darkMain);
}

.chooseCard .cardHeading h4 > span {
  font-weight: var(--fw-bold);
}

/* ==============================  Explore Our Clinic SECTION OPEN    ======================================== */

.exploreClinic {
  margin-top: 80px;
}

.exploreClicnic .swiper-slide img {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}

.exploreClicnic {
  position: relative;
}

.exploreClinic .swiper-button-next::after,
.exploreClinic .swiper-rtl .swiper-button-prev::after,
.exploreClinic .swiper-button-prev::after,
.exploreClinic .swiper-rtl .swiper-button-next::after {
  content: "";
}
.exploreClinic .swiper-button-next,
.exploreClinic .swiper-button-prev {
  background-color: var(--color-darkMain);
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.exploreClinic .swiper-button-next i,
.exploreClinic .swiper-button-prev i {
  font-size: 30px;
  color: var(--color-white);
}

/* ==============================  Explore Our Clinic SECTION CLOSE    ======================================== */

/* leftHeadingHader */

.pageHeader.leftHeadingHader .pageHeader__content {
  text-align: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
}

.serviceTop {
  margin-top: 80px;
}

.serviceTop__left img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
}

.servicesTop__right {
  padding-left: 50px;
}
.servicesTop__right .heading {
  margin-bottom: 30px;
}

.multiBtn {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.multiBtn .darkBtn {
  font-size: 20px;
  font-weight: var(--fw-medium);
  background-color: var(--color-darkMain);
  color: var(--color-white);
  border-radius: 20px;
  padding: 8px 25px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.multiBtn .darkBtn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-main);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.3s linear;
}

.multiBtn .darkBtn:hover::after {
  width: 100%;
}
.multiBtn .darkBtn:hover {
  color: var(--color-white);
}

.multiBtn .lightBtn {
  font-size: 20px;
  font-weight: var(--fw-medium);
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 20px;
  padding: 8px 25px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.multiBtn .lightBtn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-darkMain);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.3s linear;
}

.multiBtn .lightBtn:hover::after {
  width: 100%;
}
.multiBtn .lightBtn:hover {
  color: var(--color-white);
}

/* ================== Hygiene Appointment OPEN ======================== */

.hygineWrap {
  margin-top: 80px;
}

.leftContentP {
  margin-top: 40px;
}

.leftContentP ul {
  margin-top: 50px;
}
.hygineWrap__left {
  padding-right: 50px;
}
.hygineWrap__right img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
}
.hygineWrap__left ul {
  margin-left: 10px;
}
.hygineWrap__left ul li {
  list-style: disc;
}
.servicesTop__right ul {
  margin-left: 10px;
  margin-bottom: 20px;
}
.servicesTop__right ul li {
  list-style: disc;
}

.offer {
  margin-top: 80px;
}

.offer .offerWrap {
  background: url("../images/offer-bg.jpg");
  background-position: center center;
  background-size: cover;
  border-radius: 35px;
  padding: 20px 50px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.offer .offerWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(162, 137, 128, 0.7);
  z-index: -1;
}
.offer__right {
  position: relative;
}

.offer__right::before {
  content: "";
  position: absolute;
  left: -50px;
  background-color: var(--color-white);
  height: 100%;
  width: 2px;
}

.offer__left h3 {
  color: var(--color-white);
  font-size: 35px;
}

.offerCoupon h5 {
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 35px;
  border: 3px dashed var(--color-white);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
}
.offerInfo {
  margin-top: 15px;
}
.offerInfo p {
  color: var(--color-white);
  font-size: 20px;
}

.offer__right p {
  color: var(--color-white);
  font-size: 20px;
}

.offer__right h5 {
  color: var(--color-white);
  font-size: 20px;
}
.offer__right .bookBtn {
  margin-top: 30px;
}
.offer__right .bookBtn a {
  background-color: var(--color-main);
}
.offer__right .bookBtn a:hover::after {
  background-color: var(--color-darkMain);
}

.bookIn {
  margin-top: 80px;
  margin-bottom: 30px;
  text-align: center;
}

.bookIn .heading {
  margin-bottom: 20px;
}

.bookIn p strong {
  color: var(--color-darkMain);
}
.bookIn .bookBtn {
  margin-top: 25px;
  margin-bottom: 25px;
}

.controlInfo {
  color: var(--color-darkMain);
}
