@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-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  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 {
  -webkit-box-align: center;
  -ms-flex-align: 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;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.department_section .box {
  height: 250px; /* Ensuring uniform height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.department_section .box:hover {
  transform: scale(1.05);
}

.department_section .img-box {
  width: 100px; /* Fixed size for images */
  height: 100px;
  margin: 0 auto 10px;
}

.department_section .img-box img {
  max-width: 100%;
  max-height: 100%;
}

.department_section .detail-box {
  flex-grow: 1;
}

.department_section .detail-box h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.department_section .detail-box p {
  font-size: 14px;
  line-height: 1.5;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom right;
  object-position: bottom right;
}

.sub_page .hero_area {
  min-height: auto;
  background-color: #b2b277;
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 5px 0;
  background-color: #a4ab5f;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  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: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

.custom_nav-container .nav_search-btn:hover {
  color: #b2b277;
}

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

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  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: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
/* General slider styling */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
  overflow: hidden;
}

/* Row alignment */
.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Carousel */
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

/* Text box animations */
.slider_section .detail-box {
  color: #b2b277;
  animation: fadeInLeft 1.5s ease-in-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Heading animations */
.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
  animation: fadeInDown 1.2s ease-in-out;
}

/* Fade-in for text */
.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
  animation: fadeInUp 1.4s ease-in-out;
}

/* Button box animations */
.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
  animation: zoomIn 1.8s ease-in-out;
}

/* Button styling */
.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #b2b277;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ffffff;
}

/* Button hover animation */
.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

/* Image animation */
.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  animation: bounceIn 2s ease-in-out;
}

.slider_section .img-box img {
  width: 100%;
  max-width: 375px;
  animation: floatAnimation 3s infinite ease-in-out;
}

/* Floating effect for images */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Carousel indicators */
.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Indicator dots */
.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

/* Active indicator */
.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  animation: pulse 1s infinite;
}

/* Pulse effect for active indicator */
@keyframes pulse {
  0% {
    transform: scale(1);
    background-color: #ffffff;
  }
  50% {
    transform: scale(1.2);
    background-color: #b2b277;
  }
  100% {
    transform: scale(1);
  }
}

/* General section */
.department_section {
  position: relative;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Box container with animation */
.department_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: slideUp 1.2s ease-in-out;
}

/* Slide-up effect for boxes */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image box with hover animation */
.department_section .box .img-box {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
  background-color: #b2b277;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

/* Image hover effect (scale & rotate) */
.department_section .box .img-box img {
  max-width: 55px;
  max-height: 55px;
  transition: transform 0.3s ease-in-out;
}

.department_section .box .img-box:hover img {
  transform: scale(1.2) rotate(10deg);
}

/* Title styling */
.department_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease-in-out;
}

/* Fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Link hover effect */
.department_section .box .detail-box a {
  color: #b2b277;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.department_section .box .detail-box a:hover {
  color: #b2b277;
}

/* Button container */
.department_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

/* Button styling */
.department_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #b2b277;
  color: #1b1b1b;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f4f4f0;
}

/* Button hover animation */
.department_section .btn-box a:hover {
  background-color: transparent;
  color: #b2b277;
  transform: scale(1.1);
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Image Box Animation */
.about_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  animation: fadeIn 1.5s ease-in-out;
}

/* Image hover effect */
.about_section .img-box img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

.about_section .img-box:hover img {
  transform: scale(1.05);
}

/* Detail Box Animation */
.about_section .detail-box {
  animation: slideUp 1.5s ease-in-out;
}

/* Heading Animation */
.about_section .detail-box h3 {
  font-weight: bold;
  animation: fadeIn 1.5s ease-in-out;
}

/* Paragraph Animation */
.about_section .detail-box p {
  margin-top: 15px;
  animation: fadeIn 2s ease-in-out;
}

/* Button Styling */
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #b2b277;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #b2b277;
  margin-top: 15px;
  animation: fadeIn 2s ease-in-out;
}

/* Button Hover Animation */
.about_section .detail-box a:hover {
  background-color: transparent;
  color: #b2b277;
  transform: scale(1.1);
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide-Up Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Background */
.doctor_section {
  background: #b2b277;
}

/* Heading Animation */
.doctor_section .heading_container {
  color: #ffffff;
  animation: fadeIn 1.5s ease-in-out;
}

/* Doctor Box Animation */
.doctor_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  border-radius: 10px;
  background: #ffffff;
  animation: fadeInUp 1.5s ease-in-out;
}

/*/* Image Box */
.doctor_section .box .img-box {
  width: 250px; /* Fixed width */
  height: 250px; /* Fixed height to make it square */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px; /* Optional: rounded corners */
  transition: transform 0.3s ease-in-out;
  margin: 0 auto; /* Centering the image */
}

/* Image Styling */
.doctor_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the square while maintaining proportions */
  transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.doctor_section .box:hover .img-box img {
  transform: scale(1.05);
}

/* Detail Box */
.doctor_section .box .detail-box {
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  position: relative;
}

/* Social Icons Animation */
.doctor_section .box .detail-box .social_box {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 150%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* Social Icons */
.doctor_section .box .detail-box .social_box a {
  color: #b6c676;
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
}

.doctor_section .box .detail-box .social_box a:hover {
  color: #a4ab5f;
}

/* Social Icons Slide-Up Effect */
.doctor_section .box:hover .social_box {
  top: 0;
  opacity: 1;
}

/* Button Box */
.doctor_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

/* Button Styling */
.doctor_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #fffff9;
  color: black;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgb(255, 254, 254);
  animation: fadeIn 2s ease-in-out;
}

/* Button Hover Animation */
.doctor_section .btn-box a:hover {
  background-color: transparent;
  color: white;
  transform: scale(1.1);
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade-In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact_section {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

/* Input Field Animations */
.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 20px;
  outline: none;
  color: #101010;
  background: #eeeeee;
  transition: all 0.3s ease-in-out;
}

.contact_section .form_container input:focus {
  background: #ffffff;
  box-shadow: 0 0 10px #b2b277;
}

/* Button Animation */
.contact_section .form_container button {
  width: 100%;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #b2b277;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #b2b277;
}

.contact_section .form_container button:hover {
  background-color: transparent;
  color: #1fab89;
  transform: scale(1.05);
}

/* Map Animation */
.contact_section .map_container {
  height: 368px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.contact_section .map_container .map {
  height: 100%;
  flex: 1;
  transition: transform 0.5s ease-in-out;
}

.contact_section .map_container .map:hover {
  transform: scale(1.03);
}

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

.client_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.client_section .box .detail-box .name img {
  width: 25px;
  margin-bottom: 5px;
}

.client_section .box .detail-box .name h6 {
  color: #b2b277;
  font-size: 20px;
}

.client_section .carousel_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  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: #b2b277;
  background-position: center;
  border-radius: 5px;
  margin: 0 2.5px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #b2b277;
}

.client_section .carousel-control-next {
  left: initial;
}

.footer_section {
  background: #312d75;
  color: #ffffff;
  padding: 60px 0 15px 0;
  position: relative;
}

.footer_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer_section .footer_col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: #9eae6e;
}

.footer_section .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.footer_section .footer_social a:hover {
  color: #b2b277;
}

.footer_section .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer_section .footer_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer_section .footer_links a:hover {
  color: #b2b277;
}

.footer_section form input {
  border: none;
  background-color: #fefefe;
  width: 100%;
  height: 45px;
  color: #000000;
  outline: none;
  border-radius: 5px;
  padding: 0 15px;
}

.footer_section form input::-webkit-input-placeholder {
  color: #777;
}

.footer_section form input:-ms-input-placeholder {
  color: #777;
}

.footer_section form input::-ms-input-placeholder {
  color: #777;
}

.footer_section form input::placeholder {
  color: #777;
}

.footer_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #b2b277;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #b2b277;
  margin-top: 15px;
}

.footer_section form button:hover {
  background-color: transparent;
  color: #b2b277;
}

.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;
}
/*# sourceMappingURL=style.css.map */

.department_section {
  padding: 50px 0;
}

.heading_center {
  text-align: center;
  margin-bottom: 40px;
}

.box {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-bottom: 20px;
}

.img-box {
  margin-bottom: 15px;
}

.img-box i {
  color: #eeebeb;
}

.detail-box h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.detail-box p {
  font-size: 14px;
  color: #555;
}
/*make box clickable*/
.box {
  position: relative;
}

.box a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* button spacing in home */

.btn-box a {
  margin-right: 15px; /* Adds spacing between buttons */
}

/* social media icons */
.social-icons a {
  color: white; /* Or any color that contrasts the background */
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #b9ab57; /* Gold color on hover */
}

.doctor_section .box {
  height: 450px; /* Set a fixed height for uniformity */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.doctor_section .box:hover {
  transform: scale(1.05);
}

.doctor_section .img-box {
  width: 120px; /* Ensure uniform image size */
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.doctor_section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor_section .detail-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor_section .detail-box h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.doctor_section .detail-box h6 {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  margin-bottom: 10px;
}

.doctor_section .detail-box p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
/* ************************ */

.logo-item {
  display: flex;
  align-items: center;
  padding: 0 15px; /* Add some spacing */
  height: 60px; /* Increase this as needed */
  width: auto;
}

.navbar-brand img {
  height: 100px;
  width: 250px;
}

/* top banner */
.top-banner {
  background-color: white;
  text-align: center;
  padding: 10px 0;
  border-bottom: 2px solid rgb(255, 255, 255);
}

.top-banner h1 {
  color: rgb(198, 2, 2);
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}
