@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css2?family=Bingster&display=swap');

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: Poppins, serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --blue: #03113f;
  --blue1: #2455f5;

  --yellow: #dcab28;
  --yellow1: #ffdd00;
  --light: #fff6d1;
}

.hsbtn {
  background-color: var(--blue);
  color: var(--yellow);
  border-radius: 20px;
  border: 2px solid var(--yellow);
  font-size: 18px;
  font-weight: 600;
  border-radius: 2rem;
  cursor: pointer;
  transition-duration: 0.5s;
  padding: 5px 20px;
}

.hsbtn:hover {
  background-color: var(--blue);
  color: var(--yellow);
  box-shadow: 0 0 15px 2px var(--yellow);
}

.banner-content h2 {
  letter-spacing: 2px;
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px #000;
}
.banner-content h1 {
  letter-spacing: 2px;
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px #000;
}

.banner-content h4 {
  font-weight: 300;
  color: white;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-shadow: 2px 2px #000;
}

.banner-content .points {
  color: #fff;
}

.input-group-text {
  background-color: #fff;
  border-right: 0px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.input-group input {
  border-left: 0
}

.nav-pills .nav-link.active {
  background-color: var(--blue) !important;
  color: var(--yellow) !important;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
}

.nav-pills .nav-link {
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
}

a {
  text-decoration: none !important;
  /* color: var(--yellow) !important ; */
}

p {
  text-align: justify !important;
}

.navbar-nav .nav-link.active a {
  color: #fff !important;
  /* Set text color for active link */
  border-bottom: 2px solid #fff !important;
  /* Underline the active link */
  display: inline-block;
  /* Ensure it takes only the necessary width */
}


.navbar-nav a {
  color: var(--yellow);
}

.navbar-nav a:hover {
  color: #fff;

}

.navbar .megamenu {
  padding: 1.5rem;
  background: var(--blue);
  color: var(--yellow) !important;
}

.navbar .megamenu li a {
  color: #fff !important;
}

.navbar .megamenu li a:hover {
  color: var(--yellow) !important;
}

.has-megamenu:hover .megamenu {
  display: block;
}

.result-menu .result-item {
  display: none;
}

.result-menu:hover .result-item {
  display: block;
}

.result-menu ul {
  background: var(--blue);
}

.result-menu ul a {
  color: white !important;
}

.result-menu ul a:hover {
  color: var(--yellow) !important;
  background-color: var(--blue);
}

.result-menu a:focus {
  color: white !important;
}

.has-megamenu a:focus {
  color: white !important;
}

a:hover .navbar-collapse {
  display: none !important;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }

  .navbar .megamenu {
    left: 10% !important;
    right: 0;
    width: 80%;

  }
}

/* ============ desktop view end ============ */



.banner-video {
  height: 100vh;
  width: 100%;
  object-fit: fill;
}

/* .navbar{
  background: transparent;
  position: absolute !important; 
  z-index: 2;
  width: 100%;
  backdrop-filter: blur(10px);
  
} */




.hairContainer {
  position: relative;
  /* background-color: rgb(255 255 255 / 20%) !important; */
  background: var(--blue) !important;
  /* color :#fff !important; */
  box-shadow: 0 0 15px 2px var(--yellow);
  border: 1px solid var(--yellow);


}

.hairContainer h3 {
  color: var(--yellow) !important;
  /* text-shadow: 0.5px 0.5px #fff; */
}

.hairContainer h4 {
  color: var(--yellow) !important;
  /* text-shadow: 0.5px 0.5px #fff; */
}

.hairContainer p {
  color: var(--yellow);
}

.hairContainer:hover {
  border: 1px solid var(--yellow);
  box-shadow: 0 0 15px 2px var(--yellow);
  /* border-radius: 8px; */
}

.hairOverlay {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000ed;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 1;
  border-radius: 8px;
}

.hairContainer:hover .hairOverlay {
  opacity: 1;
}

.hairContainer ul li a {
  color: white !important;
}

.hairContainer ul {
  list-style-type: disc;
  padding-left: 15px;
  font-size: 18px;
  /* text-align: center; */
}

.under-line {
  position: relative;
  top: -15px;
  width: 25px;
  height: 2px;
  background-color: var(--yellow);
  display: inline-block;
}

.icon-list {
  list-style-type: none;
  padding: 0;
}

.icon-item {
  display: flex;
  margin-bottom: 10px;
}

.icon {
  width: 20px;
  margin-right: 10px;
}

.gallery-btn {
  background-color: var(--blue);
  color: var(--yellow);
  font-weight: 600;
  padding: 8px;
  margin-top: 8px !important;
  margin-right: 8px !important;
  border-radius: 8px;

}

.gallery-image {
  width: 30%;
  margin: 10px;
  border-radius: 5px;
}

.review-container {
  width: 100%;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.review-swiper {
  background-position: center !important;
  background-size: cover !important;
  width: 320px !important;
  background-color: #fff !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.picture {
  width: 320px;
  height: 100%;
  overflow: hidden;

}

.static-rating .star {
  color: #dcab28;
}

.swiper-horizontal {
  overflow: hidden;
}

.swiper-pagination .swiper-pagination-bullet {
  background: var(--blue) !important;
}


.footer-overlay-color {
  background-color: #07268ce6;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex
}

.footer svg {
  color: var(--yellow);
}

.contactmedia a {
  height: 40px;
  width: 40px;
  margin: 5px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
  transition-duration: .4s;
}


.contactmedia a:hover {
  box-shadow: 0 2px 15px 2px #fff;
}

.choose .shadow {
  /* border: 3px solid var(--blue);  */
  box-shadow: 0 0 8px 0px var(--blue) !important;
  border-radius: 10px;
}

.choose .card {
  background-color: #ffdc5f;
}

.choose .card:hover {
  box-shadow: 0 0 20px 0px var(--yellow) !important;
}


.contact-pg svg {
  color: var(--yellow)
}

.contact-pg a {
  background-color: #eee;
}

.contact-pg a:hover {
  box-shadow: 0 2px 15px 2px var(--yellow);

}

.counter-number {
  font-weight: 700;
  color: var(--yellow);
  font-size: 28px;
  text-align: center;
}

.counter-text {
  font-weight: 700;
  color: var(--blue);
}

.navbar-lists {
  display: flex;
  justify-content: center;
}

.modal-sm {
  max-width: 400px !important;
}


.eqn-btn {
  z-index: 99998;
  position: fixed;
  background: var(--blue) !important;
  color: var(--yellow) !important;
  border: 2px solid var(--yellow) !important;
  border-right: none !important;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  right: 0px;
  top: 40%;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  font-size: 18px;
  padding: 8px 5px;
  cursor: pointer;
  font-weight: 600;
}

.eqn-sm-btn {
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  width: 100%;
  background: var(--blue) !important;
  color: var(--yellow) !important;
  border: none;
  border-top: 2px solid var(--yellow);
  font-size: 20px;
}

.call-buton .cc-calto-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  background: #13e054;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
  animation: cc-calto-action-ripple 0.6s linear infinite;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;

}

.call-buton .cc-calto-action-ripple i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 2.2rem;
}

@-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* mobile view */

@media (max-width: 767px) {
  .doctorInfo:after {
    display: none;
  }

  .doctorInfo {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .banner-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .navbar-lists {
    display: flex;
    justify-content: left;
    padding-top: 10px;
    padding-bottom: 10px;
  }

}

.pulse-button {
  -webkit-animation: pulse 1.5s infinite ease-in-out;
  animation: pulse 1.5s infinite ease-in-out;
}

.pulse-button2 {
  -webkit-animation: pulse2 1.5s infinite ease-in-out;
  animation: pulse2 1.5s infinite ease-in-out;
}

@-webkit-keyframes pulse {
  0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
  }
  50% {
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 10px 10px rgba(245, 211, 148, 0.8);
      /* Brighter and larger shadow */
  }
  100% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(191, 142, 50, 0);
      /* Shadow fades out */
  }
}

@keyframes pulse {
  0% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
  }
  50% {
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 10px 10px rgba(245, 211, 148, 0.8);
      /* Brighter and larger shadow */
  }
  100% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(191, 142, 50, 0);
      /* Shadow fades out */
  }
}

@keyframes pulse2 {
  0% {
      box-shadow: 0 0 0 0 #BF8E32;
  }
  70% {
      box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.cost-form {
  border: 1px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 0 10px 0.5px var(--yellow);
}

.video-banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: rgba(0, 0, 0, 0.5); /* Add an overlay effect */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.video-overlay h1 {
  font-size: 3rem;
  margin: 0;
}

@media (max-width: 768px) {
  .video-overlay h1 {
      font-size: 2rem;
  }
}
/* Styling for the image container */
.image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

/* Styling for the first image */
.hair-image {
  max-width: 80%;
  width: 80%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Styling for the second image */
.hair-image1 {
  max-width: 80%;
  width: 65%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .hair-image,
  .hair-image1 {
    max-width: 90%; /* Reduce max-width */
    width: 100%; /* Adjust width */
    border-radius: 15px; /* Slightly reduce border-radius */
  }
}

@media (max-width: 768px) {
  .hair-image,
  .hair-image1 {
    max-width: 100%; /* Full width for mobile screens */
    width: 100%; /* Ensure image fills container */
    border-radius: 10px; /* Smaller border-radius */
  }
}

@media (max-width: 576px) {
  .hair-image,
  .hair-image1 {
    max-width: 100%; /* Still full width */
    width: 100%; /* Add small margin for aesthetics */
    border-radius: 5px; /* Minimal rounding */
  }
}
.text-truncate-multi {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
