@import url("./variables.css");

/* UTITLITY CLASSES */
.dark-text {
  color: var(--dark-alt) !important;
}


/* Header */



.header {
  /* background-color: var(--light); */
  background-color: var(--light);
}

.header .header-line {
  background: var(--primary);
  width: 100%;
  height: 5px;
}

.header .info-details {
  padding: 8px 0;
  background: var(--light);
}

.header .social-icons a {
  background: transparent;
  /* border: 2px solid var(--primary); */
  display: inline-block;
  /* height: 40px;
  width: 40px; */
  border-radius: 50%;
  text-align: center;
  /* line-height: 40px; */
  color: var(--primary);
  font-size: 16px;
  margin-left: 10px;
  transition: 0.5s all ease;
}

.header .social-icons a:first-child {
  margin-left: 0 !important;
}

.header .social-icons a i {
  font-size: 14px;
}

.header .social-icons a:hover {
  background: var(--light);
  color: var(--primary);
}

/* .header .info-details i {
  color: var(--primary);
  font-size: 25px;
} */

.header .info-details a {
  font-size: 14px;
  color: var(--dark);
  transition: 0.5s all ease;
}

.header .info-details a:hover {
  color: var(--primary);
}

.header .navbar {
  /* background-color: #e3e3e39c; */
  /* background-color: #333128; */
  background-color: var(--primary);
  position: relative;
}

.header .navbar .container {
  position: relative;
  /* min-height: 80px; */
  padding: 10px;
}


.header .navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .navbar .navbar-brand h4 {
  font-family: 'Berkshire Swash', cursive;
  font-size: 30px;
  font-weight: 600;
  /* color: var(--light); */
  color: var(--dark);
}

.navbar .navbar-brand .logo-name {
  padding-left: 90px;
}

/* .header .navbar .navbar-brand h4 span {
  color: var(--primary);
} */

.header .navbar .navbar-brand h6 {
  font-size: 18px;
  /* color: var(--primary) !important; */
  color: var(--dark) !important;
  padding-left: 5px;
  padding-top: 4px;
  color: var(--light-alt);
  font-family: 'Berkshire Swash', cursive;
}

.header .navbar .navbar-brand .logo-img {
  /* width: 100px; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  /* background: var(--light-alt); */
  background: #808080;
  padding: 10px 10px 0 10px;
  border-radius: 0 0 6px 6px;
  /* border-bottom: 4px solid var(--primary); */
}

.header .navbar .navbar-brand img {
  width: 70px;
  height: 100px;
  /* position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  background: #808080;
  border-radius: 0 0 6px 6px;
  border-bottom: 4px solid var(--primary); */
}

.header .navbar .navbar-nav .head-link {
  color: var(--dark-alt);
  /* color: var(--light); */
  padding: 10px 15px;
  font-weight: 500;
  transition: 0.5s all ease;
}

.header .navbar .navbar-nav .dropdown-menu {
  /* top: 0; */
  padding: 0;
  border: 0;
  border-bottom: 4px solid var(--primary);
}

.header .navbar .navbar-nav .dropend .submenu {
  left: 100%;
  top: 0;
}

.header .navbar .navbar-nav .drop-head {
  border-bottom: none !important;
}

.header .navbar .navbar-nav .dropdown-menu li a {
  padding: 10px 12px;
  display: inline-block;
  border-bottom: 1px dashed var(--dark-alt);
  transition: 0.5s all ease;
}

.header .navbar .navbar-nav .dropdown-menu li a:hover {
  color: var(--primary);
  background: var(--light-alt);
  border-color: var(--primary);
}

.header .navbar .navbar-nav .nav-link:hover {
  color: var(--light);
}

@media screen and (max-width: 768px) {
  .header .info-details .info-box {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .header .info-contacts {
    flex-direction: column;
    gap: 5px;
  }
}

.header .navbar-toggler {
  background-color: var(--light);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.header .navbar-collapse {
  /* padding: 10px; */
}

@media screen and (max-width: 992px) {
  .header .button {
    padding: 10px 15px;
  }
}

.header .icon {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .icon .fa-envelope {
  color: #333128;
  font-size: 14px;
}

.header .icon .fa-phone-alt {
  color: #333128;
  font-size: 14px;
}

.header .navbar-toggler-icon {
  width: 1.0em;
}

.appointment-button {
  background-color: #808080;
  border: 1.5px solid #808080;
}




/* Modal */
#appointmentModal .modal-content {
  border: 2px solid var(--primary);
  padding: 15px;
  background: transparent;
  border-radius: 10px;
}

#appointmentModal .modal-body {
  background: var(--light);
  border-radius: 10px;
}

#appointmentModal .modal-body h4 {
  text-align: center;
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 600;
  line-height: 130%;
  color: var(--primary);
}

#appointmentModal .modal-body .form-control {
  box-shadow: none;
  border: 1px solid var(--dark-alt);
  border-radius: 5px;
}

#appointmentModal .modal-body .button {
  padding: 12px 25px;
  width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  border-radius: 5px;
  background: var(--dark);
  color: var(--light);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

#appointmentModal .modal-body .dismiss-btn {
  position: absolute;
  right: -50px;
  top: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--dark);
  border: 0;
  outline: 0;
  border-radius: 0 5px 5px 0;
}

@media screen and (max-width: 1201px) {
  .header .navbar .navbar-nav .nav-link {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 991px) {
  .header .navbar .navbar-nav .nav-link {
    padding: 20px 10px;
  }

  .header .navbar-collapse {
    margin-top: 70px;
  }
}

/* Modal */

/* Hero */
.hero {
  min-height: 500px;
  height: 100vh;
  overflow: hidden;
  position: relative;
  transition: 0.5s all ease;
}

.hero .carousel,
.hero .carousel .carousel-inner,
.hero .carousel .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}

.hero .carousel .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-toggle {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--primary);
  opacity: 1;
  color: var(--dark-alt);
  border-radius: 6px;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
}

.hero:hover .hero-toggle {
  opacity: 1;
}

.hero .carousel .text {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  left: 100px;
  max-width: 500px;
  background: var(--light);
  padding: 15px;
  box-shadow: var(--shadow);
}

.hero .carousel .text p {
  margin-bottom: 35px;
  color: var(--dark-alt);
}

.hero .carousel .heading {
  font-size: 45px;
}

.hero .hero-heading {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--serif);
  line-height: 120%;
  color: var(--dark);
  /* letter-spacing: 0.6px; */
}

.hero .sub-heading {
  /* text-transform: uppercase; */
  font-weight: bold;
}

@media (max-width: 767px) {
  .hero {
    height: 60vh;
  }
}

.hero .container {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .hero .carousel .text {
    position: absolute;
    top: 70%;
    left: 10px;
    max-width: 400px;
    background: var(--light);
    padding: 20px;
  }

  .hero .hero-toggle {
    width: 35px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
  }
}

/* Banner */
.banner {
  height: 250px;
  position: relative;
  overflow: hidden;
  position: relative;
  text-align: start;
  transition: 0.5s all ease;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s all ease;
  background: #00000077;
}

.banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.banner .container h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--light);
  font-family: var(--serif);
  text-transform: capitalize;
}

.banner img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Banner */

/* About Us */

.about-us {
  background: url(../images/about-bg.png);
  background-size: cover;
  background-position: center;
}

.about-us .text p {
  margin-bottom: 35px;
}

.about-us .heading {
  font-size: 30px;
}

.about-us .heading {
  margin-bottom: 25px !important;
}

/* Boxes */
.boxes {
  background: var(--light-alt);
}

.boxes .card {
  border: 0;
  border-radius: 6px;
  position: relative;
  height: 350px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: 0.5s all ease;
}

.boxes .card:hover {
  transform: translateY(-10px);
}

.boxes .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s all ease;
  background: #00000077;
}

.boxes .card:hover::after {
  background: var(--primary);
}

.boxes .card .icon {
  background: #ffe373;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  font-size: 35px;
  border-radius: 50%;
  position: relative;
  margin: auto;
  color: var(--dark);
  z-index: 6;
  opacity: 0.8;
  margin-bottom: 20px;
  transition: 0.5s all ease;
}

.boxes .card:hover .icon {
  opacity: 1;
}

.boxes .card .box-img img {
  height: 360px;
  object-fit: cover;
  opacity: 1;
  transition: 0.5s all ease;
}

.boxes .card:hover .box-img img {
  opacity: 1;
}

.boxes .card .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px;
  padding: 20px;
  z-index: 4;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.boxes .card .text p {
  /* color: var(--light); */
  display: none;
}

.boxes .card:hover .text p {
  /* color: var(--light); */
  display: block;
}

/* .boxes .card .card-body {
  padding: 20px;
}

.boxes .card .card-body .icon {
  margin-bottom: 15px;
  display: none;
}

.boxes .card .card-body .icon img {
  width: 70px;
} */

.boxes .card .text h4 {
  font-size: 25px;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 15px;
  text-align: center;
  font-family: var(--serif);
  text-transform: capitalize;
}

.boxes .card:hover .text h4 {
  color: var(--dark);
}

/* Why Choose Us */
.why-choose-us {
  position: relative;
  background: #3b38387a;
  background: url(../images/why-choose-bg.png);
  background-size: cover;
  background-position: center;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000000a1;
  background-size: cover;
  background-position: center;
}

.why-choose-us .heading {
  position: relative;
  z-index: 2;
  color: var(--light);
}

/* .why-choose-us .choose-us-carousel {
  background: var(--light);
  border-radius: 6px;
  padding: 30px;
} */

.why-choose-us .card {
  border: 0;
  background: var(--light);
  position: relative;
  z-index: 4;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* .why-choose-us .card .icon {
  background: var(--light);
  border-radius: 50%;
  border: 2px dashed var(--primary);
  height: 100px;
  width: 100px;
  line-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
} */

.why-choose-us .card .icon {
  background: var(--primary);
  border-radius: 5px 0 0 5px;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 20px 10px;
}

.why-choose-us .card .icon img {
  width: 50px;
  filter: invert(1);
}

.why-choose-us .card h4 {
  color: var(--dark);
  font-size: 18px;
  /* text-align: center; */
  font-weight: 600;
  line-height: 28px;
  padding: 0 12px;
}

.why-choose-us p {
  position: relative;
  z-index: 4;
  color: var(--light);
}

.why-choose-us hr {
  position: relative;
  z-index: 4;
}

/* Testimonial */
.testimonial {
  background: var(--light);
}

.testimonial .reviews {
  background: var(--light);
  /* box-shadow: 0 0 15px 1px #0c0c0c28; */
  border-radius: 6px;
  padding: 0 50px;
}

.testimonial .reviews .person {
  background: var(--light-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  margin: 30px 30px;
  position: relative;
  z-index: 5;
  /* box-shadow: 0 0 10px 1px #0000000c; */
}

.testimonial .reviews .person-col {
  position: relative;
  z-index: 2;
}

.testimonial .reviews .person-col::after {

  content: "";

  background: var(--primary);
  position: absolute;
  height: 100%;
  width: 65%;
  top: 0;
  left: 62px;
  border-radius: 20px;
  z-index: 0;
  */
  /* transform: translate(-50%, -50%); */
}

/* .testimonial .reviews .person-col{
  border-top: 20px solid var(--primary);
  border-bottom: 20px solid var(--primary);
 border-radius: 20px;
} */
.testimonial .reviews .fa-quote-left {
  font-size: 35px;
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 0.4;
  color: var(--dark-alt);
}

.testimonial .reviews .fa-quote-right {
  font-size: 35px;
  position: absolute;
  bottom: -10px;
  right: 0;
  opacity: 0.4;
  color: var(--dark-alt);
}

.testimonial .reviews .person .info {
  text-align: center;
}

.testimonial .reviews .person .info h4 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial .reviews .person .info h5 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.testimonial .reviews .person .img img {
  margin-bottom: 15px;
}

.testimonial .reviews .review .text {
  position: relative;
}

.testimonial .reviews .review .text h2 {
  position: absolute;
  color: var(--dark);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 15px 0 0 0;
  display: inline-block;
  top: -80px;
  left: 0;
}

.testimonial .reviews .review .text h2::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 4px;
  background: var(--primary);
  top: 0px;
  left: -120px;
}

.testimonial .reviews .review .text p {
  padding: 0 60px;
}

.testimonial .reviews .testimonial-carousel .owl-nav button {
  display: inline-block;
  background: var(--dark);
  color: var(--light);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  font-size: 24px;
  transition: 0.5s all ease;
  padding: 0px 0px 45px 0px !important;
}

.testimonial .reviews .testimonial-carousel .owl-nav button:hover {
  background: var(--primary);
  color: var(--dark);
}

.testimonial .reviews .testimonial-carousel {
  position: relative;
}

.testimonial .reviews .testimonial-carousel .owl-nav {
  position: absolute;
  bottom: 12%;
  left: 44%;
  transform: translate(-50%, -50%);
  width: fit-content;
}

/* EDITED BY HRISHI */
.testimonial .carousel-control-next,
.testimonial .carousel-control-prev {
  width: fit-content;
  padding: 0;
  position: static;
  margin-top: 20px;
}

.testimonial .fa-quote-left {
  position: absolute;
  top: -50px;
  color: lightgray;
  left: 0;
  font-size: 50px;
}

.testimonial .fa-quote-right {
  position: absolute;
  bottom: 0px;
  color: lightgray;
  right: 20px;
  font-size: 50px;
}

.testimonial .carousel-control-prev,
.testimonial .carousel-control-next {
  background-color: var(--dark);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
  opacity: 1 !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  color: var(--dark);
  background-color: var(--primary);
}

/* Adjust the size and position of the icon inside the buttons */
.testimonial .carousel-control-prev-icon,
.testimonial .carousel-control-next-icon {
  display: none !important;
}

.testimonial-image-box {
  border: 30px solid var(--primary);
  border-left: 0;
  border-radius: 15px;
  border-right: 0;
  padding: 10px;
}

@media screen and (max-width:992px) {
  .testimonial-image-box {
    max-width: 400px;
  }
}


.testimonial h4 {
  color: var(--dark);
}

.testimonial h5 {
  color: var(--primary);
}

/* Footer */

.footer {
  /* background: var(--dark); */
  background: #808080;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .logo h4 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  font-family: 'Berkshire Swash', cursive;
  color: var(--primary);
}

.footer .logo h6 {
  font-size: 20px;
  padding-left: 5px;
  padding-top: 4px;
  font-family: 'Berkshire Swash', cursive;
  color: var(--light);
}

.footer .logo img {
  width: 80px;
}

.footer .f-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
  margin-bottom: 26px;
  font-family: var(--serif);
  position: relative;
  padding-bottom: 15px;
}

.footer .f-heading::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

.footer .footer-links li a {
  display: block;
  color: var(--light);
  font-size: 16px;
  margin-bottom: 18px;
  transform: 0.5s all ease;
}

.footer .footer-links li a:hover {
  color: var(--primary);
}

.footer h5 {
  color: var(--primary);
  font-weight: 600;
  text-transform: capitalize;
}

.footer p {
  font-size: 15px;
  color: var(--light);
}

.footer .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 45px;
  min-width: 45px;
  background: var(--primary);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: #333128;
  font-size: 20px;
  transition: 0.5s all ease;
}

.footer a {
  color: var(--light);
  word-wrap: break-word;
  font-weight: 500;
  transition: 0.5s all ease;
}

.footer h6 i {
  color: var(--dark);
  font-size: 24px;
  padding-right: 10px;
}

.footer .emergency-card h6 a {
  color: var(--light);
  margin-top: 10px;
  display: inline-block;
}

.footer .c-details h5 {
  color: var(--light);
  font-size: 18px;
  margin-bottom: 8px;
}

.footer .c-details .detail:hover .icon {
  background: var(--light);
  color: var(--dark);
}

.footer .c-details .detail:hover p a {
  color: var(--primary);
}

.footer .c-details hr {
  color: #e5e4de;
  margin: 12px 0;
}

.footer .emergency-card {
  /* background-color: #484848; */
  width: fit-content;
  padding: 30px;
  /* box-shadow: var(--shadow); */
  align-items: center;
  border: 1.5px solid var(--primary);
  border-radius: 6px;
}

@media screen and (max-width:430px) {
  .footer .footer-calls {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-calls .d-flex {
    align-self: flex-start;
  }
}

@media screen and (max-width:992px) {
  .footer .emergency-card {
    /* flex-direction: column; */
  }

  .medium-none {
    display: none;
  }
}

.footer .emergency-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .emergency-card .icon i {
  color: var(--dark-alt);
}

/* Copyright */

.copyright {
  background: #363636;
  padding: 15px 0;
}





.copyright p {
  color: var(--light);
  font-size: 14px;
}

.copyright p a {
  color: var(--primary);
}

.copyright .social-icons a {
  background: transparent;
  border: 2px solid var(--primary);
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  color: var(--primary);
  font-size: 16px;
  margin-left: 5px;
  transition: 0.5s all ease;
}

.copyright .social-icons a:hover {
  /* background: var(--light);
  border-color: var(--light);
  color: var(--primary); */
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

.copyright .social-icons {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .copyright .social-icons {
    text-align: left;
    margin-top: 10px;
  }
}

/* Edited by Neeraj */

/* CONTACT US PAGE */
.mapform {
  padding: 50px 0px 0px 0px;
}


@media screen and (max-width:992px) {
  .mapform .form {
    padding: 20px 15px;
  }
}


.mapform .form .sub-heading {
  font-weight: 600;
}

.mapform .form input {
  border-radius: 5px;
}

.mapform .form input:focus {
  outline: none;
  border: 2px solid var(--primary);
  box-shadow: none;
}

.mapform .form textarea:focus {
  outline: none;
  border: 2px solid var(--primary);
  box-shadow: none;
}

.mapform .form-heading {
  /* font-size: 27px; */
  font-weight: 600;
  /* font-family: var(--serif); */
  color: var(--dark);
  /* letter-spacing: 0.6px; */
}

.mapform .form-title {
  margin-bottom: 40px;
}

.mapform .card {
  border-radius: 15px;
  /* border: none; */
  box-shadow: var(--shadow);
}

.mapform .card .card-body {
  padding: 0px;
  height: 100%;
}

.mapform .map iframe {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.mapform .map {
  height: 100%;
}

.contact-info {
  padding: 0px 0px 80px 0px !important;
}

.contact-info .card {
  background-color: var(--light-alt);
  border: 0;
  border-radius: 5px;
  padding: 10px;
}

.contact-info .icon {
  min-height: 45px;
  min-width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: var(--light);
  font-size: 20px;
  transition: 0.5s all ease;
}

.contact-info .f-heading {
  padding: 0px 0px 15px 10px;
}

.contact-info a {
  color: var(--dark);
  font-weight: 500;
  transition: 0.5s all ease;
}

.contact-info h6 i {
  color: var(--primary);
  font-size: 24px;
  padding-right: 10px;
}

.contact-info h6 a:hover {
  color: var(--primary);
  font-weight: 500;
}

.contact-info .details h5 {
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info .c-details .detail:hover .icon {
  background: var(--dark);
  color: var(--dark);
}

.contact-info .c-details .detail:hover p a {
  color: var(--primary);
}

/* .contact-info .fa-map,
.contact-info .fa-envelope {
  min-height: 45px !important;
  min-width: 45px !important
} */

@media screen and (max-width:768px) {
  .contact-boxes {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

.address-icon {
  /* filter: invert(1); */
  width: 23px;
}

/* CONTACT US PAGE */

/* PATIENT REVIEWS PAGE */
.patient-review .nav-tabs {
  border-color: var(--primary);
}

.nav-tabs .nav-link {
  padding: 10px 20px;
}

.nav-tabs .nav-link.active {
  color: var(--primary) !important;
  border-color: var(--primary);
  border-bottom-color: var(--light);
  font-weight: 600;
}

.patient-review .tab-content {
  padding: 80px 0px;
}

.patient-review .tab-content .card-body {
  padding: 25px;
}

.patient-review .fa-quote-left {
  font-size: 25px;
  position: absolute;
  /* top: -10px; */
  left: 30px;
  opacity: 0.4;
  color: var(--dark-alt);
}

.patient-review .fa-quote-right {
  font-size: 25px;
  position: absolute;
  /* bottom: -10px; */
  right: 30px;
  opacity: 0.4;
  color: var(--dark-alt);
}

.patient-review .review-head {
  font-size: 25px;
  margin-bottom: 25px;
}

.patient-review .text p {
  padding: 0px 50px;
}

@media screen and (max-width:992px) {
  .patient-review .text p {
    padding: 0px 30px;
  }
}


.patient-review .text .info {
  padding: 0px 50px;
  margin-top: 25px;
}

.patient-review .text .info h4,
h5 {
  font-size: 18px;
  margin: 5px 0px;
}

.patient-review .text .info h5 {
  color: var(--primary);
  font-weight: 600;
}

.patient-review .sub-heading {
  font-size: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary);
}

.patient-review .patient-review-box .card {
  height: 300px;
  overflow-y: auto;
}

@media screen and (max-width:768px) {
  .patient-review .patient-review-box .card {
    height: 250px;
    overflow-y: auto;
  }
}



/* PATIENT REVIEWS PAGE */

/* ABOUT US PAGE */
.about .heading {
  font-size: 35px;
}

.about .heading span {
  font-size: 35px;
  color: var(--primary);
}

/* .about .image-about {
    background: url(../images/about-pattern.png);
    background-size: cover;
  } */

.about .about-info {
  margin-top: 25px;
}

.choose-us {
  padding: 0px 0px 80px 0px;
}

.choose-us .heading {
  font-size: 35px;
}

.choose-us .heading span {
  font-size: 35px;
  color: var(--primary);
}

.choose-us .card .icon {
  background: var(--primary);
  border-radius: 5px 0 0 5px;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 20px 10px;
}

.choose-us .card .icon img {
  width: 50px;
  filter: invert(1);
}

.choose-us .card h4 {
  color: var(--dark);
  font-size: 18px;
  /* text-align: center; */
  font-weight: 600;
  line-height: 28px;
  padding: 0 12px;
}

/* ABOUT US PAGE */

/* FACILITY PAGE */
.facilities {
  padding-top: 30px !important;
}

.facilities .heading {
  font-size: 35px;
}

.facilities .heading span {
  font-size: 35px;
  color: var(--primary);
}

.facility-box {
  background: var(--light);
  margin-top: 60px;
}

.facility-box .card {
  border: 0;
  border-radius: 6px;
  position: relative;
  height: 350px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: 0.5s all ease;
}

/* .facility-box .card:hover {
  transform: translateY(-10px);
} */

.facility-box .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s all ease;
  background: #00000077;
}

/* .facility-box .card:hover::after {
  background: var(--primary);
} */

.facility-box .card .icon {
  background: #ffe373;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  font-size: 35px;
  border-radius: 50%;
  position: relative;
  margin: auto;
  color: var(--dark);
  z-index: 6;
  opacity: 0.8;
  margin-bottom: 20px;
  transition: 0.5s all ease;
}

.facility-box .card:hover .icon {
  opacity: 1;
}

.facility-box .card .box-img img {
  height: 360px;
  object-fit: cover;
  opacity: 1;
  transition: 0.5s all ease;
}

.facility-box .card:hover .box-img img {
  opacity: 1;
}

.facility-box .card .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px;
  /* padding: 20px; */
  z-index: 4;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.facility-box .card .info-text {
  /* position: absolute;
  top: 50%;
  left: 50%; */
  /* transform: translate(-50%, -50%); */
  min-width: 300px;
  text-align: start;
  /* padding: 20px; */
  z-index: 4;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.facility-box .info-heading {
  font-size: 30px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: var(--serif);
  letter-spacing: 0.6px;
}

.facility-box .card .text p {
  /* color: var(--light); */
  display: none;
}

.facility-box .card:hover .text p {
  /* color: var(--light); */
  display: block;
}

.facility-box .card .text h4 {
  font-size: 25px;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 15px;
  text-align: center;
  font-family: var(--serif);
  text-transform: capitalize;
}

/* EDITED  BY HRISHIKESH */
/* .facilities .read-more-button {
  color: var(--primary);
  font-weight: bold;
} */

.facilities .content h4 {
  font-size: 20px;
  color: var(--dark);
}

.facilities .content i {
  font-size: 20px;
  color: var(--dark);
}

.facilities .wrapper {
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid var(--primary);
  height: 100%;
}

@media screen and (max-width: 992px) {

  #general-care .row,
  #womens-health .row {
    flex-direction: column-reverse;
  }
}

/* .facilities .facilities-card {
  flex: 1;
} */

/* .facilities .card-items {
  align-items: stretch;
} */

/* FACILITY PAGE */

/* OUR JOURNEY PAGE */
.journey {
  position: relative;
  padding: 100px 0;
}

.journey img {
  position: sticky;
  top: 100px;
}

.journey .vision-card {
  background-color: var(--light-alt);
  margin-top: 65px;
}

.journey .vision {
  background-color: var(--primary);
  border-top-right-radius: 50px;
  padding: 20px 15px;
}

.journey .mission {
  background-color: var(--light-alt);
  background-color: #484740;
  border-top-right-radius: 50px;
  padding: 20px 15px;
  color: var(--light);
}

.journey .card-head {
  margin-bottom: 30px !important;
  font-weight: 600;
}

.journey .card-text p {
  color: var(--light);
}

.journey .choose-us {
  margin-top: 60px;
  padding: 0px;
}

.journey li {
  /* list-style: disc; */
  color: var(--primary);
}

.journey li h5 {
  text-transform: capitalize;
  margin: 25px 0px 5px 0px;
  color: var(--primary);
  font-weight: 600;
}

.choose-us h5 {
  text-transform: capitalize;
  padding-bottom: 5px;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

.choose-us .choose-cards img {
  width: 60px;
  position: initial;
}

ul.timeline:before {
  content: " ";
  background: var(--primary);
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 98%;
  z-index: 3;
}

ul.timeline>li {
  margin: 40px 0;
  padding-left: 20px;
}

ul.timeline>li h5 {
  margin-left: 30px;
}

ul.timeline>li p {
  margin-left: 30px;
}

ul.timeline>li:before {
  content: " ";
  background: #fff;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary);
  left: 20px;
  width: 18px;
  height: 18px;
  z-index: 3;
}

@media screen and (max-width: 992px) {
  .journey .journey-first-box .row {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.journey .dark-text {
  color: var(--dark) !important;
}


/* OUR JOURNEY PAGE */

/* OUR DOCTORS PAGE */
.doctors .card {
  /* border: 0; */
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: 3px solid var(--primary);
}

.doctors .card .dr-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  padding: 20px 0px;
}

.doctors .card hr {
  margin: 0px;
  padding: 0px;
  color: var(--dark-alt);
}

.doctors .read-button {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--primary);
  margin: 0px 0px 15px 0px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 2px;
}

.modal .modal-body .dismiss-btn {
  position: absolute;
  right: -50px;
  top: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--dark);
  border: 0;
  outline: 0;
  border-radius: 0 5px 5px 0;
}

.modal .modal-body .modal-title {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
}

.modal .modal-body .doctor {
  padding: 20px 10px;
}

.modal .modal-body .doc-info {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

.modal .modal-body .about-doctor {
  margin: 20px 0px 0px 0px;
}

.doctors .card img {
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width:992px) {
  .doctors .card img {
    height: 300px;
  }
}

@media screen and (max-width:992px) {
  .doctors .card img {
    max-height: 500px;
  }
}

/* OUR DOCTORS PAGE */

/* GYNECOLOGY PAGE */
ul.timeline {
  list-style-type: none;
  position: relative;
}

ul.timeline p {
  margin-left: 30px;
  margin-top: 7px;
}

ul.timeline .card-title {
  margin-left: 30px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

ul.timeline:before {
  content: " ";
  background: var(--primary);
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 98%;
  z-index: 3;
}

ul.timeline>li {
  margin: 40px 0;
  padding-left: 20px;
}

ul.timeline>li:before {
  content: " ";
  background: #fff;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary);
  left: 20px;
  width: 18px;
  height: 18px;
  z-index: 3;
}

.gynec-services {
  padding-top: 50px;
}

.gynec-services .heading {
  font-size: 30px;
  margin-bottom: 0;
}

.gynec-services .service-head {
  font-size: 18px;
  margin: 15px 0px 0px 0px;
}

/* GYNECOLOGY PAGE */

/* INFERTILITY PAGE */
.infertility .heading {
  font-size: 32px;
}

.infertility .sub-heading {
  color: var(--dark);
}

.treat-list li {
  list-style: decimal;
  color: var(--primary);
  font-weight: 600;
}

.treat-list li p {
  margin-top: 7px;
  margin-bottom: 20px;
}

/* INFERTILITY PAGE */

/* MATERNITY PAGE */
.maternity .heading {
  font-size: 23px;
}

.maternity .info-text {
  margin: 30px 0px 0px 0px;
}

/* MATERNITY PAGE */

/* INFRASTRUCTURE PAGE */
.infrastructure {
  position: relative;
  padding: 100px 0;
}

.infrastructure img {
  position: sticky;
  top: 20px;
}

.infrastructure ol li {
  list-style: decimal;
  font-weight: 600;
  color: var(--primary);
  text-transform: capitalize;
}

.infrastructure h5 {
  margin-top: 30px;
  margin-bottom: 7px;
  font-weight: 600;
}

.infrastructure .infra-points {
  /* margin-top: 100px; */
}

.infrastructure .infra-points .infra-head {
  font-size: 25px;
}

@media screen and (max-width: 992px) {
  .infra-box .row {
    flex-direction: column-reverse;
  }
}


/* INFRASTRUCTURE PAGE */

/* Insurance PAGE */
.Insurance {
  position: relative;
}

.Insurance img {
  position: sticky;
  top: 20px;
}

.Insurance .sub-heading {
  font-size: 22px;
  font-weight: 600;
}

.Insurance .tpa {
  margin-top: 70px;
}

.Insurance .hero-heading {
  line-height: 130%;
  font-size: 24px;
}

.insurance.banner .small-text {
  font-size: 24px;
}



/* Insurance PAGE */
/* Edited by Neeraj */

/* CLINICAL EXCELLENCE PAGE */
.clinical-section {}

.clinical-section .nav-link {
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--primary);
  padding: 10px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}

.clinical-section .d-flex {
  gap: 30px;
}

.clinical-section .nav {
  width: 280px;
  gap: 10px;
}

.clinical-section .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--primary);
  color: var(--dark);
}

.clinical-section .tab-content {
  width: calc(100% - 310px) !important;
}

@media screen and (max-width: 992px) {
  .clinical-section .tab-content {
    width: 100% !important;
  }
}

.clinical-section h4 {
  line-height: 130%;
}

.clinical-section .small-img {
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.clinical-section .heading {
  font-size: 34px;
  color: var(--primary);
}

@media screen and (max-width: 992px) {
  .clinical-section .d-flex {
    flex-direction: column-reverse;
  }

  .clinical-section .nav {
    width: 100%;
  }
}

/* EDITED BY HRISHIKESH */
.facility-box.clinical ul li {
  padding: 10px 0;
}

.facility-box.clinical ul li a {
  color: var(--dark);
}

.facility-box.clinical ul li i {
  color: var(--primary);
}

/* WHATSAPP BUTTON */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  /* Adjust the position as per your preference */
  right: 0px;
  /* Adjust the position as per your preference */
  z-index: 999;
}



.whatsapp-button i {
  font-size: 25px;
  /* Adjust the size of the WhatsApp icon as per your preference */
  border-radius: 50%;
  color: #fff;
}

.whatsapp-button .icon {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mail {
  word-break: break-all;
}


/* call-button */

.call-button {
  position: fixed;
  bottom: 20px;
  /* Adjust the position as per your preference */
  right: 55px;
  /* Adjust the position as per your preference */
  z-index: 999;
}

.call-button i {
  font-size: 22px;
  /* Adjust the size of the WhatsApp icon as per your preference */
  border-radius: 50%;
  color: var(--dark);
}

.call-button .icon {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-icons {
  background-color: var(--dark);
  padding: 12px 0;
}

.sticky-icons a {
  /* color: var(--primary); */
  color: var(--light-alt);
  font-size: 14px;
  font-weight: 500;
}

.sticky-icons a i {}


@media screen and (min-width:768px) {
  .sticky-icons {
    display: none;
  }
}

/* Edited by Rahul */
@media screen and (max-width: 767px) {
  .testimonial .reviews {
    padding: 0;
  }

  .testimonial .reviews .review .text p {
    padding: 0 20px;
  }

  .testimonial .reviews .fa-quote-left {
    top: -40px;
  }

  .testimonial .reviews .testimonial-carousel .owl-nav {
    inset: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width:768px) {
  .copyright {
    margin-bottom: 30px;
  }

  .whatsapp-button,
  .call-button {
    display: none;
  }
}

/* Edited by Rahul */





/* 31/08/2023 - FOR new PHOTOS */

.infertility .image-about {
  height: 300px !important;
}

.infertility .image-about img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 31/08/2023 - FOR new PHOTOS */

/* EVENTS PAGE */

.event-image {
  height: 300px;
  overflow: hidden !important;

}

.event-image img {
  object-fit: cover;
  transition: all ease 0.5s;
  height: 100%;
  width: 100%;
}

.event-image:hover img {
  scale: 1.1;
  transition: all ease 0.5s;

}

.events .card:nth-child(even) .row {
  flex-direction: row-reverse;
}

.events .card {
  border: 1px solid var(--primary);
}

@media screen and (max-width:767px) {
  .events .card.p-5 {
    padding: 20px 15px !important;
  }
}

/* EVENTS PAGE */

/* WEB AND MOBILE MENU BARS  */
.menu-for-mobile {
  display: none;
}

.menu-for-mobile .custom-link {
  width: fit-content !important;
  display: inline;
}

.menu-for-mobile .fa-caret-down {
  flex-grow: 1;
  text-align: right;
  padding-right: 15px;
}


@media only screen and (max-width:992px) {
  .menu-for-mobile {
    /* display: block; */
  }

  .menu-for-web {
    display: none !important;
  }

}


/* WEB AND MOBILE MENU BARS  */