:where([class^="ri-"])::before {
  content: "\f3c2";
}

body {
  font-family: "Poppins", sans-serif !important;
}

.custom-checkbox {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: #04ccbb;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #04ccbb;
  border-color: #04ccbb;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #04ccbb;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #04ccbb;
  cursor: pointer;
}

.custom-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #04ccbb;
  cursor: pointer;
  border: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #04ccbb;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 45, 82, 0.1);
}

.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 45, 82, 0.1);
}

.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.speciality-btn.active {
  background-color: #002d52;
  color: white;
}

.doctors-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 1rem;
}

.doctors-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-prev,
.carousel-next,
.services-prev,
.services-next {
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover,
.services-prev:hover,
.services-next:hover {
  background-color: #04ccbb;
  color: white;
}

.carousel-prev:hover i,
.carousel-next:hover i,
.services-prev:hover i,
.services-next:hover i {
  color: white;
}

/* Video Testimonials Carousel Styles */
.video-testimonials-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-testimonials-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.video-card {
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: scale(1.03);
}

.play-btn {
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-btn {
  transform: scale(1.1);
  background-color: #04ccbb;
}

/* Services Carousel Styles */
.services-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.services-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.service-slide {
  flex-shrink: 0;
}

.services-indicator {
  transition: all 0.3s ease;
}

.services-indicator:hover {
  background-color: #04ccbb;
  transform: scale(1.2);
}
.div-highlight {
  background-color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-right: 10px;
}

.button-container {
  display: flex;
  align-items: center;
  background: #d6e2e9;
  padding: 3px;
  border-radius: 50px;
  overflow: hidden;
}

.btn {
  background: #ffffff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 2px solid #e0e0e0;
}

.btn:first-child {
  border-left: none;
}

.btn:hover {
  background: #f0f0f0;
}

.primary {
  background: #f7e1b5;
  border-radius: 50px 0 0 50px;
}

.primary:hover {
  background: #f4d79b;
}

.btn:last-child {
  border-radius: 0 50px 50px 0;
}

.arrow {
  font-size: 18px;
  font-weight: bold;
}
.bghj {
  background-color: #3f3f95 !important;
}
.h100 {
  height: 100%;
}
.border-bottom {
  border-bottom: solid 1px #333;
}
.bg-sh {
  background-color: #333;
  opacity: 0.5;
}
.clip-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.text-shadow {
  text-shadow: 1px 1px 5px #ccc;
}
.nav-link {
  font-size: 18px !important;
  font-weight: 500;
}
.text-md {
  font-size: 16px !important;
}
.dropdnmenu {
  top: 53px;
  left: 97px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 1111111111111111111 !important;
  width: 326px !important;
}
.sub-heading {
  font-size: 18px !important;
  font-weight: 500;
}
body {
  font-family: "Poppins", sans-serif;
}
:where([class^="ri-"])::before {
  content: "\f3c2";
}
.custom-checkbox {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: #04ccbb;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #04ccbb;
  border-color: #04ccbb;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.bg-dotted {
  background-image: linear-gradient(
    to bottom,
    #e5e7eb 33%,
    rgba(255, 255, 255, 0) 0%
  );
  background-position: left;
  background-size: 2px 10px;
  background-repeat: repeat-y;
}

.custom-connector {
  position: relative;
}

.custom-connector::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: #e5e7eb;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.custom-connector::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background: #e5e7eb;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.shadow-custom {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.specvideo {
  padding: 5px;
  width: 100%;
  display: ruby;
  justify-content: center; /* Centers the content horizontally */
  align-items: center; /* Optional: Centers vertically if height is set */
  text-align: center;
  margin-bottom: 50px;
}
.specvideo video,
iframe {
  width: 85%;
  height: 450px;
  border: solid 1px #ddd;
  border-radius: 10px;
  margin-top: 50px;
  text-align: center;
  align-items: center;
  outline: solid 1px #ddd;
  padding: 10px;
}
.specvideo img {
  border: solid 1px #ddd;
  outline: solid 1px #ddd;
  text-align: center;
  align-items: center;
  border-radius: 10px;
}

.tab-btn {
  padding: 0.5rem 1.25rem;
  /* Same as px-5 py-2 */
  border-radius: 9999px;
  /* Fully rounded */
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  /* font-medium */
  border: 1px solid #d1d5db;
  /* border-gray-300 */
  color: #4b5563;
  /* text-gray-600 */
  transition: all 0.3s;
  background-color: white;
}

.tab-btn:hover {
  background-color: #009688;
  /* blue-100 */
  color: #fff;
  /* blue-900 */
}

.active-tab {
  background-color: #1e3a8a;
  /* blue-900 */
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Fade-in Animation */
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.specbtn {
  padding: 5px 15px;
  /* Same as px-5 py-2 */
  border-radius: 9999px;
  /* Fully rounded */
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  /* font-medium */
  border: 1px solid #d1d5db;
  /* border-gray-300 */
  color: #000;
  /* text-gray-600 */
  transition: all 0.3s;
  background-color: white;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out forwards;
}

@keyframes slide-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slide-up 0.4s ease-out forwards;
}
.hex {
  position: relative;
  margin: 1em 2em;
  width: 5em;
  height: 8.8em;
  border-radius: 1em/0.5em;
  background: #002d52;
  transition: opacity 0.5s;
  transform: translateY(-5px);
  box-shadow: 10px 15px 20px #969494;
  opacity: 0.8;
}

.hex:before,
.hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
}

.hex:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.hex:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.hex p {
  z-index: 11111;
  text-align: center;
  vertical-align: middle;
  margin-top: 45px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-transform: capitalize;
}
.docProfileCard a {
  display: block;
  margin-top: 15px !important;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
}
.gradient-bg-button {
  background: linear-gradient(to right, red, #2b3f70);
  color: white;
  /* Optional, for text visibility */
  padding: 1rem;
  /* Optional, adjust as needed */
  border-radius: 8px;
  /* Optional, for rounded corners */
}
@keyframes marquee-up {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.animate-marquee-up {
  animation: marquee-up 15s linear infinite;
}
.mar img {
  width: 400px !important;
}
.scroll-show {
  opacity: 0;
  pointer-events: none;
}

.scroll-show.visible {
  opacity: 1;
  pointer-events: auto;
}

@keyframes pulse-once {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 177, 171, 0.7);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  }
}

@keyframes pop-up-down {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.animate-pulse-once {
  animation: pulse-once 1s ease-in-out;
}

/* Hover = continuous pop */
#whatsappBtn:hover {
  animation: pop-up-down 1s infinite ease-in-out;
}
marquee ul li {
  font-weight: 400;
  color: rgb(75, 85, 99) !important;
}
.center i {
  vertical-align: sub !important;
}
.video-card {
  background-color: white;
  padding: 10px;
  border-radius: 25px;
  box-shadow: 1 10 5 rgba(255, 255, 255, 0.7);
}
#callbackModal {
  z-index: 11111111;
}
@media (max-width: 767px) {
  .socialicon {
    display: none !important;
  }
  #whatsappBtn {
    display: none;
  }
  h2 {
    font-size: 30px !important;
  }
  .docProfileCard {
    width: 80%;
    margin-left: 30px;
    margin-bottom: 20px;
  }
  .cta-home {
    display: none;
  }
  .blogcont h2 {
    font-size: 16px !important;
  }
  .blogcont .card {
    margin: 0px 20px;
  }
  .doccard {
    margin: 0px 20px;
  }
  #specialityCarousel {
    margin: 0px !important;
  }
}
/* Hide scrollbar for all browsers */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(102px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.doctor-card {
  margin-bottom: 10px !important;
}
.doctor-card div button {
  border-radius: 49px;
  background-color: #00b1ab;
  color: white;
  padding: 7px 0px;
  text-align: center;
  margin-top: 15px;
  width: 100%;
  font-weight: 500;
}
.zcwf_row label {
  margin-top: 12px !important;
}

.formsubmit.zcwf_button {
  margin-top: 15px !important;
  background: #04ccbb !important;
  color: black !important;
}
.explist li {
  background-color: white;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  width: 60%;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#whatsappBtn {
  bottom: 85px !important;
}

#appointmentModal {
  z-index: 111111111111111111 !important;
}
