@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
body {
  font-family: "Nunito", sans-serif;
  color: #000000;
  background-color: #fefefe;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.layout_margin-top {
  margin-top: 90px;
}

.layout_margin-bottom {
  margin-top: 90px;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}
.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}
.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}
.hero_area .hero_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.sub_page .hero_area {
  min-height: auto;
  background-color: #114cff;
}
.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 0 0;
  background-color: white;
  border-bottom: 1px solid #ccc; /* Changed border color to light gray */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
}

/* Add this to your CSS file */
.nav-link.active-link {
  font-weight: bold; /* Example style */
  color: #4472ff !important; /* Example style */
}

.navbar-brand span {
  font-weight: bold;
  font-size: 14px;
  color: #ec5e80;
  text-transform: uppercase;
}

.custom_nav-container {
  padding: 0;
}
.custom_nav-container .navbar-nav {
  margin-left: auto;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #1f1f1f;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-nav .nav-item .nav-link:hover {
  color: #ec5e80;
  background-color: #f0f0f0;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}
.custom_nav-container .nav_search-btn:hover {
  color: #ec5e80;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #1f1f1f;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #1f1f1f;
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span::before, .custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
}
.slider_section .row {
  align-items: center;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  color: #4472ff;
}
.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}
.slider_section .detail-box p {
  color: black;
  font-size: 14px;
}
.slider_section .detail-box .btn-box {
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}
.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}
.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #ec5e80;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #ffffff;
}
.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
}
.slider_section .img-box {
  display: flex;
  justify-content: center;
}
.slider_section .img-box img {
  width: 100%;
  max-width: 375px;
}
.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
}
.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}
.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
}

.whatsapp-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.icon-container {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-container:hover {
  background-color: #4472ff;
}

.icon-container img,
.icon-container span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container span {
  color: white;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .whatsapp-container {
    right: 10px;
    bottom: 10px;
  }
  .icon-container img,
  .icon-container span {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .whatsapp-container {
    right: 5px;
    bottom: 5px;
  }
  .icon-container img,
  .icon-container span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
.department_section {
  position: relative;
}
.department_section .row {
  justify-content: center;
}
.department_section .row .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 45px;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
}
.department_section .row .box .img-box {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
  background-color: #ec5e80;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.department_section .row .box .img-box img {
  max-width: 55px;
  max-height: 55px;
  transition: all 0.3s;
}
.department_section .row .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}
.department_section .row .box .detail-box a {
  color: #4472ff;
  font-weight: 600;
}
.department_section .row .box .detail-box a:hover {
  color: #ec5e80;
}
.department_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.department_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ec5e80;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #ec5e80;
}
.department_section .btn-box a:hover {
  background-color: transparent;
  color: #ec5e80;
}

.about_section .row {
  align-items: center;
}
.about_section .img-box {
  display: flex;
  justify-content: center;
}
.about_section .img-box img {
  width: 100%;
  border-radius: 15px;
}
.about_section .detail-box h3 {
  font-weight: bold;
}
.about_section .detail-box p {
  margin-top: 15px;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ec5e80;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #ec5e80;
  margin-top: 15px;
}
.about_section .detail-box a:hover {
  background-color: transparent;
  color: #ec5e80;
}

.doctor_section {
  background: #ec5e80;
}
.doctor_section .heading_container {
  color: #ffffff;
}
.doctor_section .box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}
.doctor_section .box .img-box {
  width: 100%;
}
.doctor_section .box .img-box img {
  width: 100%;
}
.doctor_section .box .detail-box {
  width: 100%;
  padding: 25px 15px;
  text-align: center;
  position: relative;
}
.doctor_section .box .detail-box .social_box {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 150%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  opacity: 0;
  transition: all 0.3s;
}
.doctor_section .box .detail-box .social_box a {
  color: #ec5e80;
  margin: 0 10px;
}
.doctor_section .box .detail-box .social_box a:hover {
  color: #4472ff;
}
.doctor_section .box:hover .social_box {
  top: 0;
  opacity: 1;
}
.doctor_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.doctor_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffffff;
  color: #4472ff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #ffffff;
}
.doctor_section .btn-box a:hover {
  background-color: transparent;
  color: #ffffff;
}

.gallery_section {
  padding: 60px 0;
}
.gallery_section .section-title {
  text-align: center;
  padding-bottom: 30px;
}
.gallery_section .section-title h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.gallery_section .section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ec5e80;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.gallery_section .section-title p {
  margin-bottom: 0;
  color: #1f1f1f;
}
.gallery_section .gallery-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}
.gallery_section .gallery-slider .swiper-slide {
  width: 25%;
  text-align: center;
}
.gallery_section .gallery-slider .swiper-slide img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.gallery_section .gallery-slider .swiper-pagination {
  bottom: 10px !important;
}
.gallery_section .gallery-slider .swiper-button-next,
.gallery_section .gallery-slider .swiper-button-prev {
  color: #ec5e80;
}
@media (max-width: 768px) {
  .gallery_section .gallery-slider .swiper-slide {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .gallery_section .section-title h2 {
    font-size: 24px;
  }
  .gallery_section .gallery-slider .swiper-slide {
    width: 100%;
  }
}
.gallery_section .full-view-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.gallery_section .full-view-modal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  border: 5px solid #fff;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
.gallery_section .full-view-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 35px;
  color: rgb(209, 45, 45);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.gallery_section .full-view-modal .close-btn:hover, .gallery_section .full-view-modal .close-btn:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.gallery_section .full-view-modal .prev,
.gallery_section .full-view-modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #ec5e80;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.gallery_section .full-view-modal .prev:hover,
.gallery_section .full-view-modal .next:hover {
  background-color: #ffffff;
}
.gallery_section .full-view-modal .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.contact_section {
  position: relative;
}
.contact_section .heading_container {
  margin-bottom: 25px;
}
.contact_section .heading_container h2 {
  text-transform: uppercase;
}
.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 20px;
  outline: none;
  color: #101010;
  background: #eeeeee;
}
.contact_section .form_container input::placeholder {
  color: #000000;
}
.contact_section .form_container input.message-box {
  height: 175px;
}
.contact_section .form_container button {
  width: 100%;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #4472ff;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #4472ff;
}
.contact_section .form_container button:hover {
  background-color: transparent;
  color: #4472ff;
}
.contact_section .map_container {
  height: 368px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
}
.contact_section .map_container .map {
  height: 100%;
  flex: 1;
}
.contact_section .map_container .map #googleMap {
  height: 100%;
}

.client_section .heading_container {
  align-items: center;
}
.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 45px;
  border-radius: 15px;
}
.client_section .box .img-box {
  margin-bottom: 15px;
  min-width: 145px;
  max-width: 145px;
  overflow: hidden;
}
.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 7px solid rgba(255, 255, 255, 0.45);
}
.client_section .box .detail-box {
  display: flex;
  flex-direction: column;
}
.client_section .box .detail-box .name img {
  width: 25px;
  margin-bottom: 5px;
}
.client_section .box .detail-box .name h6 {
  color: #ec5e80;
  font-size: 20px;
}
.client_section .carousel_btn-container {
  display: flex;
  justify-content: center;
}
.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  background-color: #ec5e80;
  background-position: center;
  border-radius: 5px;
  margin: 0 2.5px;
}
.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #4472ff;
}
.client_section .carousel-control-next {
  left: initial;
}

.footer_section {
  background: #ec5e80;
  color: #ffffff;
  padding: 60px 0 15px 0;
  position: relative;
}
.footer_section .row {
  justify-content: center;
  gap: 80px;
}
.footer_section .row h4 {
  font-weight: 600;
  margin-bottom: 20px;
}
.footer_section .row .footer_col {
  margin-bottom: 30px;
}
.footer_section .row .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}
.footer_section .row .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}
.footer_section .row .footer_contact .contact_link_box a i {
  margin-right: 5px;
}
.footer_section .row .footer_contact .contact_link_box a:hover {
  color: #1f1f1f;
}
.footer_section .row .footer_social {
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}
.footer_section .row .footer_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}
.footer_section .row .footer_social a:hover {
  color: #1f1f1f;
}
.footer_section .row .footer_links {
  display: flex;
  flex-wrap: wrap;
}
.footer_section .row .footer_links a {
  display: flex;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}
.footer_section .row .footer_links a:hover {
  color: #1f1f1f;
}
.footer_section .row form input {
  border: none;
  background-color: #fefefe;
  width: 100%;
  height: 45px;
  color: #000000;
  outline: none;
  border-radius: 5px;
  padding: 0 15px;
}
.footer_section .row form input::placeholder {
  color: #777;
}
.footer_section .row form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #ec5e80;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #ec5e80;
  margin-top: 15px;
}
.footer_section .row form button:hover {
  background-color: transparent;
  color: #ec5e80;
}
.footer_section .row form button:hover {
  background-color: white;
  color: #ec5e80;
}
.footer_section .footer-info {
  text-align: center;
}
.footer_section .footer-info p {
  color: #ffffff;
  padding: 25px 0;
  margin: 0;
}
.footer_section .footer-info p a {
  color: inherit;
}

/* CSS for fade-in animation */
/* Define the animation */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Apply animation to elements */
.detail-box {
  animation: slideIn 0.5s ease forwards;
}

/*# sourceMappingURL=style.css.map */
