@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");
:root {
  --bs-secondry-color: #95c122;
}
body {
  color: var(--bs-black);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}
body.open .navigation-menu__labels {
  translate: 0 0;
  visibility: visible;
}
a,
a:hover {
  color: var(--sr-body-color);
  text-decoration: none;
}
ul li,
p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767.98px) {
  ul li,
  p {
    font-size: 14px;
  }
}
img {
  max-width: 100%;
}
/* Chrome, Edge, Safari */
/* ::-webkit-scrollbar {
  width: 10px;
} */
/* ::-webkit-scrollbar-track {
  background: #bdb4eb;
} */
/* ::-webkit-scrollbar-thumb {
  background: #3F51B5;
  border-radius: 10px;
} */
/* ::-webkit-scrollbar-thumb:hover {
  background: #d81b60;
} */
/* Firefox */
/* * {
  scrollbar-width: thin;
  scrollbar-color: #3F51B5 #bdb4eb;
} */
::placeholder {
  color: var(--bs-black) !important;
  border-radius: 10px;
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--bs-black) !important;
}
::-ms-input-placeholder {
  color: var(--bs-black) !important;
}
.text-color {
  color: #007a75 !important;
}
.bg-color {
  background-color: #007a75 !important;
}
.bg-light {
  background-color: var(--bs-gray-200) !important;
}
.bg-dark {
  background-color: var(--bs-dark) !important;
}
.bg-gradient {
  background-image: linear-gradient(90deg, #0f7956, #007a75) !important;
  background-color: #007a75;
}
.bg-gradient2 {
  background: radial-gradient(circle at 50% 48%, #0f7956 30%, #007a75 100%);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #007a75;
}
.validation {
  color: var(--bs-danger);
  font-size: 14px;
}
@keyframes glowing {
  0% {
    background-color: #3F51B5;
    box-shadow: 0 0 3px #3F51B5;
  }
  50% {
    background-color: #ffc107;
    box-shadow: 0 0 40px #ffc107;
  }
  100% {
    background-color: #3F51B5;
    box-shadow: 0 0 3px #3F51B5;
  }
}
@keyframes glowing2 {
  0% {
    background-color: #ffc107;
    box-shadow: 0 0 3px #ffc107;
  }
  50% {
    background-color: #3F51B5;
    box-shadow: 0 0 40px #3F51B5;
  }
  100% {
    background-color: #ffc107;
    box-shadow: 0 0 3px #ffc107;
  }
}
.list-icon-check {
  padding-left: 0;
  list-style: none;
}
.list-icon-check li {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
  padding-left: 10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon-check li {
    align-items: start;
    padding-left: 10px;
  }
}
.list-icon-check li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--bs-black);
  position: relative;
  top: 0px;
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon-check li::before {
    font-size: 14px;
  }
}
.list-icon {
  padding-left: 0;
  list-style: none;
}
.list-icon li {
  display: flex;
  align-items: start;
  margin-bottom: 0.25rem;
  padding-left: 10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon li {
    align-items: start;
    padding-left: 10px;
  }
}
.list-icon li::before {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--bs-black);
  position: relative;
  top: 0px;
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon li::before {
    font-size: 14px;
  }
}




/* ================= HEADER BASE ================= */
header {
  position: absolute;
  width: 100%;
  z-index: 99;
}

/* Wrapper */
header .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* ================= LOGO ================= */
header .header_wrapper .logo img {
  max-width: 160px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

/* ================= MENU ================= */
header .header_wrapper .menu_top ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

header .header_wrapper .menu_top ul li {
  list-style: none;
}

header .header_wrapper .menu_top ul li a {
  padding-right: 35px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}

header .header_wrapper .menu_top ul li a:hover {
  color: #ffc107;
}

/* ================= PHONE BUTTON ================= */
header .header_wrapper .info {
  display: flex;
}

header .header_wrapper .info a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #3F51B5;
  padding: 5px 15px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: rgba(0,0,0,0.2) 0px 2px 8px;
  transition: 0.3s;
  animation: glowing 1500ms infinite;
  white-space: nowrap;
}

/* Icon */
header .header_wrapper .info a i {
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: #3F51B5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 16px;
}

/* ================= STICKY HEADER ================= */
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1b0686;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

header.sticky .header_wrapper {
  padding: 10px 0;
}

/* ✅ FIXED VISIBILITY */
header.sticky .header_wrapper .info a {
  background-color: #fff;
  color: #fff;
}

header.sticky .header_wrapper .info a i {
  background-color: #3F51B5;
  color: #fff;
}

/* ================= TABLET ================= */
/* ================= TABLET ================= */
@media (max-width: 991px) {

  header .header_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  /* Logo */
  header .logo {
    flex: 1;
    text-align: left;
  }

  /* Menu (full width below) */
  header .menu_top {
    width: 100%;
    order: 3; /* push below */
    margin-top: 10px;
  }

  header .menu_top ul {
    justify-content: center;
  }

  /* Phone */
  header .info {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {

  /* Force proper row layout */
  header .header_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* logo left, button right */
    align-items: center;
  }

  /* Hide menu */
  header .menu_top {
    display: none;
  }

  /* Logo */
  header .logo img {
    width: 110px;
  }

  /* Button */
  header .info a {
    font-size: 12px;
    padding: 4px 10px;
  }

  header .info a i {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  header.sticky .header_wrapper {
    flex-direction: row;
  }
}





.hero_section {
  position: relative;
  padding: 150px 0 140px;
  background-size: 100%;
  background-repeat: no-repeat;
  color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .hero_section {
    padding: 150px 0 50px;
    background-size: cover;
  }
}
.hero_section::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1100px;
  background-color: #1b0686;
  border-radius: 150px;
  rotate: 45deg;
  top: -400px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .hero_section::before {
    width: 100%;
    height: 1300px;
    rotate: inherit;
    top: 0;
    border-radius: 0;
  }
}
.hero_section .content {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content {
    z-index: 2;
    margin-bottom: 35px;
  }
}
.hero_section .content h1 {
  font-size: 80px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 7px;
  text-align: left;
  font-weight: 700;
  /*padding-bottom: 10px;*/
  margin-bottom: 10px;
  position: relative;
  color: #fff;
}
.hero_section .content h1 strong {
  color: #ffc107;
  text-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 {
    font-size: 35px;
    letter-spacing: 3px;
  }
}
.hero_section .content h1 em {
  font-style: normal;
}
.hero_section .content h1 span {
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #FFEB3B;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 span {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.hero_section .content .card_holder {
  display: flex;
  margin-top: 40px;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content .card_holder {
    display: block;
    margin-bottom: 40px;
  }
}
.hero_section .content .card_holder .reviews_box {
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content .card_holder .reviews_box {
    margin-bottom: 15px;
  }
}
.hero_section .content .card_holder .reviews_box .profile_display {
  display: flex;
  margin-right: 15px;
}
.hero_section .content .card_holder .reviews_box .profile_display img {
  width: 50px;
  margin-left: -20px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.hero_section .content .card_holder .reviews_box .content_rw img {
  width: 100px;
  margin-bottom: 5px;
}
.hero_section .content .card_holder .reviews_box .content_rw span {
  color: #fff;
  font-size: 16px;
  display: block;
  font-weight: 500;
}
.hero_section .content .card_holder .clients {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  padding-left: 20px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content .card_holder .clients {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 0;
    padding-top: 20px;
  }
}
.hero_section .content .card_holder .clients .number {
  font-size: 40px;
  font-weight: 700;
  color: #FFEB3B;
  margin-right: 10px;
}
.hero_section .content .card_holder .clients .text {
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero_section .appoinment_form {
  position: relative;
  background-color: #fff;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  border-radius: 30px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form {
    margin-bottom: 40px;
  }
}
.hero_section .appoinment_form::before {
  position: absolute;
  content: "";
  background-color: #bdb4eb;
  width: 200px;
  height: 200px;
  top: -15px;
  border-radius: 30px;
  left: -15px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form::before {
    top: -10px;
    left: -10px;
  }
}
.hero_section .appoinment_form::after {
  position: absolute;
  content: "";
  background-color: #bdb4eb;
  width: 200px;
  height: 200px;
  right: -15px;
  border-radius: 30px;
  bottom: -15px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form::after {
    right: -10px;
    bottom: -10px;
  }
}
.hero_section .appoinment_form .title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #3F51B5;
  padding: 10px 20px;
  color: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form .title {
    font-size: 15px;
  }
}
.hero_section .appoinment_form .title::after {
  content: "";
  border-top: 10px solid #3F51B5;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  width: 20px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.hero_section .appoinment_form .form-group {
  margin-bottom: 20px;
}
.hero_section .appoinment_form .form-group ::placeholder {
  color: #000;
}
.hero_section .appoinment_form .form-group .form-select,
.hero_section .appoinment_form .form-group .form-control {
  box-shadow: rgba(9, 30, 66, 0.15) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 0;
  border: none;
  height: auto;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 10px;
  color: #000;
}
.hero_section .appoinment_form .form-group textarea {
  resize: none;
}
.hero_section .appoinment_form .form-group .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.hero_section .appoinment_form .form-group .submit-btn #btnSubmit {
  border: none;
  background-color: #3F51B5;
  padding: 10px 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  width: auto;
  transition: 0.5s all;
}
.hero_section .appoinment_form .form-group .submit-btn #btnSubmit:hover {
  background-color: #ffc107;
  color: #3F51B5;
}




.benifits {
  position: relative;
  margin-top: -100px;
}
@media only screen and (max-width: 767.98px) {
  .benifits {
    margin-top: 30px;
  }
}
.benifits .benifitBox {
  color: #000;
  background-color: #fff;
  text-align: center;
  padding: 20px 15px;
  margin: 20px 0 0;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all ease 0.3s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.benifits .benifitBox::before {
  content: "";
  background: linear-gradient(45deg, #ffc107 49%, transparent 50%);
  height: 15px;
  width: 15px;
  position: absolute;
  left: 115px;
  top: -15px;
}
.benifits .benifitBox:hover .service-icon {
  transform: rotateY(360deg);
}
.benifits .benifitBox .service-count {
  color: #fff;
  background: linear-gradient(135deg, #FDBB26 25%, #ffcd44 26%, #ffcd44 40%, #FDBB26 41%, #FDBB26 47%, #ffcd44 48%, #ffcd44 60%, #FDBB26 61%);
  font-size: 90px;
  text-align: center;
  line-height: 130px;
  width: 100px;
  height: 140px;
  margin: -35px 0 0 0;
  display: block;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
}
.benifits .benifitBox .service-icon {
  color: #3F51B5;
  font-size: 60px;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: all 0.3s ease 0s;
}
.benifits .benifitBox .service-content {
  padding: 20px 0 0;
}
.benifits .benifitBox .title {
  color: #3F51B5;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 2px;
}
.benifits .benifitBox .description {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--bs-black);
}

.treatment {
  position: relative;
  padding: 70px 0;
}
@media only screen and (max-width: 767.98px) {
  .treatment {
    padding: 30px 0;
  }
}
.treatment .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .treatment .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 25px;
  }
}
.treatment .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.treatment .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.treatment .display {
  position: relative;
  z-index: 2;
  border-radius: 25px;
  overflow: hidden;
  margin-right: -20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
@media only screen and (max-width: 767.98px) {
  .treatment .display {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.treatment .content {
  padding: 20px;
  border-radius: 25px;
  background-color: #e3dff7;
  position: relative;
  margin-left: -20px;
  padding-left: 40px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; */
}
@media only screen and (max-width: 767.98px) {
  .treatment .content {
    margin-left: 0;
  }
}
/* .treatment .list-icon {
  padding-left: 0;
  list-style: none;
} */
.treatment .list-icon li::before {
    content: "\f00c"; /* check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #3F51B5;
}

.success_stories {
  position: relative;
  padding: 70px 0;
}
@media only screen and (max-width: 767.98px) {
  .success_stories {
    padding: 30px 0;
  }
}
.success_stories .title {
  font-weight: 600;
  font-size: 35px;
  position: relative;
  margin-bottom: 20px;
  font-family: "Merienda", sans-serif;
}
@media only screen and (max-width: 767.98px) {
  .success_stories .title {
    margin-bottom: 10px;
    font-size: 25px;
  }
}
.success_stories .title span {
  padding: 5px 15px;
  background-color: #ffc107;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.success_stories .card {
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  background-color: var(--bs-white);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  position: relative;
  display: block;
  transition: 0.5s all;
}
.success_stories .card img {
  width: 100%;
}
.success_stories .card .pattern {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.success_stories .card .pattern::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.success_stories .card .pattern .icon {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  color: #1b0686;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
}
.success_stories .card .pattern .icon::before {
  animation: pulse 2s infinite;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 0;
  left: 0;
}
.success_stories .card .pattern .icon i {
  filter: drop-shadow(1px 0 0 #e3dff7) drop-shadow(-1px 0 #e3dff7) drop-shadow(0 1px 0 #e3dff7) drop-shadow(0 -1px 0 #e3dff7) drop-shadow(1px 1px 0 #e3dff7) drop-shadow(1px -1px 0 #e3dff7) drop-shadow(-1px 1px 0 #e3dff7) drop-shadow(-1px -1px 0 #e3dff7);
}

.expert {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .expert {
    padding-bottom: 0;
    padding-top: 40px;
  }
  .success_stories .card .pattern .icon {
    width: 40px;
    height: 40px;
    font-size: 40px;
  }
}
.expert .expert-message {
  position: relative;
  border-right: 20px solid #ffc107;
  border-bottom: 20px solid #ffc107;
  padding: 30px;
  padding-left: 0;
}
.expert .expert-message::before {
  position: absolute;
  content: "";
  width: 340px;
  height: 20px;
  background-color: #ffc107;
  top: -20px;
  right: -20px;
}
/* .expert .expert-message .expeert-profile {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
} */
.expert .expert-message .expert-info {
  margin-top: 20px;
  text-align: right;
  border-right: 5px solid #ffc107;
  padding-right: 15px;
}
.expert .expert-message .expert-info h4 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
  font-weight: 600;
}
.expert .expert-message .expert-info span {
  font-style: italic;
}
.expert .expert-message .expert-details {
  position: relative;
  padding-top: 0;
}
.expert .expert-message .expert-details h4.main-title {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .expert .expert-message .expert-details h4.main-title {
    font-size: 30px;
    letter-spacing: 2px;
  }
}
.expert .expert-message .expert-details h4.main-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.expert .expert-message .expert-details h4.main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}

.doctors_section {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .doctors_section {
    padding: 30px 0;
  }
}
.doctors_section .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .doctors_section .title {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 1.5px;
  }
}
.doctors_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.doctors_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.doctors_section .doctor_profile {
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  background-color: var(--bs-white);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  position: relative;
  display: block;
  transition: 0.5s all;
}
@media only screen and (max-width: 767.98px) {
  .doctors_section .doctor_profile {
    margin-bottom: 20px;
  }
}
.doctors_section .doctor_profile .profile_pic img {
  width: 100%;
}
.doctors_section .doctor_profile:hover .profile_pic::before {
  opacity: 0.5;
}
.doctors_section .doctor_profile:hover .profile_pic span {
  display: block;
}
.doctors_section .doctor_profile h4 {
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
  color: var(--bs-black);
}
.doctors_section .doctor_profile span {
  font-style: italic;
  font-weight: 500;
}
.doctors_section .doctor_profile .profile_pic {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: 0.5s all;
}
.doctors_section .doctor_profile .profile_pic::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bs-black);
  opacity: 0;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}
.doctors_section .doctor_profile .profile_pic span {
  display: none;
  transition: 0.3s all;
  color: var(--bs-black);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 2;
  padding: 10px 20px;
  background-color: var(--bs-white);
  font-weight: 600;
}

.disease_type {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type {
    padding: 30px 0;
  }
}
.disease_type .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .title {
    font-size: 30px;
    padding-bottom: 10px;
    letter-spacing: 2px;
  }
}
.disease_type .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.disease_type .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.disease_type .treatment_box {
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.disease_type .treatment_box::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 250px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  background-color: #3F51B5;
  transition: 0.3s all;
  z-index: -1;
  border-radius: 25px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box::before {
    width: 50px;
    height: 100px;
  }
}
.disease_type .treatment_box::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 250px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background-color: #3F51B5;
  transition: 0.3s all;
  border-radius: 25px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box::after {
    width: 50px;
    height: 100px;
  }
}
.disease_type .treatment_box:hover::before {
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box:hover::before {
    left: -5px;
  }
}
.disease_type .treatment_box:hover::after {
  right: -10px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box:hover::after {
    right: -5px;
  }
}
.disease_type .treatment_box img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 20px;
}
.disease_type .treatment_box .content {
  padding: 0 5px;
}
.disease_type .treatment_box .content h3 {
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 0px;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box .content h3 {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
.disease_type a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: auto;
  background-color: #3F51B5;
  border: 2px solid #3F51B5;
  padding: 10px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.5s all;
  border: 2px solid #fff;
  animation: glowing 1500ms infinite;
  display: inline-block;
}
@media only screen and (max-width: 767.98px) {
  .disease_type a {
    font-size: 12px;
    padding: 2px;
    padding-right: 10px;
    letter-spacing: 0;
  }
}
.disease_type a img,
.disease_type a i {
  width: 40px;
  height: 40px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #3F51B5;
  margin-right: 10px;
  border-radius: 50%;
}
@media only screen and (max-width: 767.98px) {
  .disease_type a img,
  .disease_type a i {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

.testimonial_section {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .testimonial_section {
    padding: 30px 0;
  }
}
.testimonial_section .title {
  font-size: 45px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #000;
}
@media only screen and (max-width: 767.98px) {
  .testimonial_section .title {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2px;
  }
}
.testimonial_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.testimonial_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.testimonial_section .testimonial {
  text-align: center;
  margin: 0 20px;
}
.testimonial_section .testimonial .description {
  padding: 40px 30px;
  margin-bottom: 50px;
  border-top: 2px solid #3F51B5;
  border-left: 2px solid #3F51B5;
  font-size: 17px;
  color: #000;
  line-height: 30px;
  text-align: left;
  position: relative;
  font-style: italic;
}
.testimonial_section .testimonial .description::before {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  padding: 0 15px 5px 0;
  font-size: 50px;
  transform: rotate(180deg);
  color: #3F51B5;
  text-align: center;
  position: relative;
  top: -10px;
  left: 0;
}
.testimonial_section .testimonial .description::after {
  content: "";
  width: 50%;
  height: 2px;
  background: #3F51B5;
  position: absolute;
  bottom: 0;
  left: 0;
}
.testimonial_section .testimonial .testimonial-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial_section .testimonial .testimonial-content::before {
  content: "";
  width: 2px;
  height: 20px;
  background: #3F51B5;
  position: absolute;
  top: -52px;
  left: 50%;
}
.testimonial_section .testimonial .testimonial-content::after {
  content: "";
  width: 2px;
  height: 40px;
  background: #3F51B5;
  position: absolute;
  top: -72px;
  left: 50%;
  transform: skewX(-45deg);
  transform-origin: 100% 100% 0;
}
.testimonial_section .testimonial .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 7px;
}
.testimonial_section .testimonial .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.testimonial_section .testimonial .name {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: #3F51B5;
  letter-spacing: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 15px;
  margin: 0;
}
.testimonial_section .owl-carousel .owl-dots {
  margin-top: 30px;
  text-align: center;
}
.testimonial_section .owl-carousel .owl-dots button {
  margin: 0 5px;
}
.testimonial_section .owl-carousel .owl-dots button span {
  width: 15px;
  height: 10px;
  border-radius: 0;
  background: #3F51B5;
  display: inline-block;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}
.testimonial_section .owl-carousel .owl-dots button.active span {
  width: 35px;
  background: #000;
}

.media_partners {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .media_partners {
    padding: 30px 0;
    padding-bottom: 0;
  }
}
.media_partners .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .media_partners .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 25px;
  }
}
.media_partners .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.media_partners .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.media_partners .partners {
  margin: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  padding: 10px;
}
.media_partners .partners img {
  width: 100%;
}

.faq_section {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .faq_section {
    padding: 30px 0;
    padding-bottom: 0;
  }
}
.faq_section .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .faq_section .title {
    font-size: 30px;
    padding-bottom: 10px;
    letter-spacing: 2px;
  }
}
.faq_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.faq_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.faq_section .display {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .faq_section .display {
    margin-bottom: 40px;
  }
}
.faq_section .display img {
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  position: relative;
  z-index: 2;
}
.faq_section .display::before {
  content: "";
  position: absolute;
  right: -10px;
  height: 50%;
  width: 100px;
  border-radius: 20px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.faq_section .display::after {
  content: "";
  position: absolute;
  left: -10px;
  height: 50%;
  width: 100px;
  border-radius: 20px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.faq_section h5 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}
.faq_section h5 span {
  background-color: #3F51B5;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 18px;
  border-radius: 50%;
  font-weight: 700;
}
.faq_section h5 em {
  max-width: 75%;
  font-style: normal;
}




/* =========================
   MAIN FOOTER
========================= */
.new-footer {
    background: linear-gradient(135deg, #3F51B5, #1b0686);
    color: #fff;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

/* Glow Effect */
.new-footer::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    filter: blur(80px);
}

/* Overlay for readability */
.new-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.1)
    );
    z-index: 0;
}

.new-footer .container {
    position: relative;
    z-index: 2;
}

/* =========================
   LOGO
========================= */
.footer_logo {
    max-width: 160px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

/* =========================
   QUOTES
========================= */
.footer-quotes {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.footer-quotes li {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-social a {
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    transition: all 0.25s ease;
}

.footer-social a:hover {
    color: #ffd1dc;
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

/* =========================
   TITLES
========================= */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 5px;
}

.footer-title::after {
    content: '';
    width: 45px;
    height: 3px;
    background: #ffd1dc;
    display: block;
    margin-top: 6px;
    border-radius: 2px;
}

/* =========================
   LISTS (CONTACT + TIMINGS)
========================= */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-title + .footer-list {
    margin-top: 8px;
}

/* LIST ITEM STRUCTURE */
.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
    transition: all 0.25s ease;
}

.footer-list li:hover {
    transform: translateX(4px);
}

/* ICON */
.footer-list li i {
    color: #ffd1dc;
    font-size: 16px;
    margin-top: 3px;
    min-width: 18px;
}

/* TEXT BLOCK */
.footer-list li div {
    flex: 1;
}

/* LABEL */
.footer-list span {
    font-weight: 600;
    display: block;
}

/* =========================
   LINKS
========================= */
.new-footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.new-footer a:hover {
    color: #ffd1dc;
}

/* =========================
   NOTE TEXT
========================= */
.footer-note {
    font-size: 13px;
    opacity: 0.85;
}

/* =========================
   RIGHT COLUMN SPACING
========================= */
.col-lg-6:last-child {
    padding-left: 30px;
}

/* =========================
   DISCLAIMER
========================= */
.footer-disclaimer {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255,255,255,0.85);
    text-align: center;
}

.footer-disclaimer strong {
    color: #ffd1dc;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    /* margin-top: 50px; */
    padding: 18px 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    text-align: center;
}




/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp_float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp_float img {
    width: 30px;
    height: 30px;
}

.whatsapp_float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Pulse */
.whatsapp_float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

/* Tooltip */
.whatsapp_float::after {
    content: "Chat with us";
    position: absolute;
    left: 70px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp_float:hover::after {
    opacity: 1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .new-footer {
        padding: 40px 20px 0;
        text-align: center;
    }

    .footer-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social a {
        margin: 0 8px;
    }

    .col-lg-6:last-child {
        padding-left: 0;
    }

    .footer-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-list li i {
        margin-bottom: 5px;
    }

    .whatsapp_float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp_float img {
        width: 26px;
        height: 26px;
    }
}





.mobile-call-btn {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 15px;
  right: 15px;
  width: 200px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  animation: dropdownSlideIn 0.5s ease forwards;
}

/* Show button */
.mobile-call-btn.show {
  display: block;
}

/* Button link */
.mobile-call-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 16px;
  border-radius: 15px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.24);
}

/* Icon */
.mobile-call-btn a i {
  font-size: 20px;
  color: #007a75;
  margin-right: 6px;
}

/* Image behind button */
.mobile-call-btn img {
  position: absolute;
  width: 150px;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

/* Animation */
@keyframes dropdownSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 767.98px) {
  .mobile-call-btn {
    width: 150px;
    right: 10px;
    bottom: 10px;
  }

  .mobile-call-btn a {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 10px;
  }

  .mobile-call-btn img {
    width: 110px;
  }
}