/********** Template CSS **********/
:root {
  --primary: #a0dd13;
  --secondary: #598e35;
  --light: #eff5f9;
  --dark: #1d2a4d;
}

.btn {
  font-weight: 700;
  transition: 0.5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Popin", sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.hero-header {
  /* background: url(../img/doctor.png) top right no-repeat; */
  background-color: #388e35;
  /* background-size: cover; */
}

.service-item {
  position: relative;
  height: 350px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.service-item .service-icon i {
  transform: rotate(15deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

.price-carousel::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: var(--primary);
  border-radius: 8px 8px 50% 50%;
  z-index: -1;
}

.price-carousel .owl-nav {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

@media (min-width: 576px) {
  .team-item .row {
    height: 400px;
  }
}

.team-carousel .owl-nav {
  position: absolute;
  padding: 0 45px;
  width: 100%;
  height: 45px;
  top: calc(50% - 22.5px);
  left: 0;
  display: flex;
  justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 150px;
  height: 150px;
}

.animate__headShake {
  animation: headShake;
  animation-duration: 1s;
}

/* Gallery Styles */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item img {
  transition: transform 0.3s ease;
  object-fit: cover;
  height: 300px;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem;
  transition: bottom 0.3s ease;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  bottom: 0;
}

.virtual-tour-card {
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(0, 123, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }

  .gallery-overlay {
    padding: 1rem;
  }
}

#showMoreBtn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.clinic-logo {
  border-radius: 50%;
  background: white !important;
  width: 150px;
  height: 150px;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 850px !important;
    margin: 1.75rem auto;
  }
}
.modal-content {
  padding: 25px !important;
}
.filter-applied {
  padding: 8px;
  border: 1px solid green;
  border-radius: 20px;
  margin: 5px;
  font-size: 12px;
}
#applied-filter-data {
  border: 1px solid #80808047;
  padding: 10px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1acc8d;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.road-map {
  position: relative;
  width: 100%;
  height: 400px;
  background: #f0f4f8;
  overflow: hidden;
}

.road-path {
  position: absolute;
  width: 100%;
  height: 100%;
}

.road-point {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 2;
}

.road-point i {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.road-badge {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #39db34;
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: visible;
}

.road-badge::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #3498db;
}

.road-point:hover i {
  color: #e74c3c;
  transform: scale(1.2) translateY(-5px);
}

.road-point:hover .road-badge {
  background: #e74c3c;
}

.road-point:hover .road-badge::after {
  border-top-color: #e74c3c;
}

/* Color Variations */
.road-point:nth-child(2) .road-badge {
  background: #2ecc71;
}

.road-point:nth-child(2) .road-badge::after {
  border-top-color: #2ecc71;
}

.road-point:nth-child(3) .road-badge {
  background: #f1c40f;
}

.road-point:nth-child(3) .road-badge::after {
  border-top-color: #f1c40f;
}

.road-point:nth-child(4) .road-badge {
  background: #9b59b6;
}

.road-point:nth-child(4) .road-badge::after {
  border-top-color: #9b59b6;
}

.road-point:nth-child(5) .road-badge {
  background: #1abc9c;
}

.road-point:nth-child(5) .road-badge::after {
  border-top-color: #1abc9c;
}

.road-point:nth-child(6) .road-badge {
  background: #e67e22;
}

.road-point:nth-child(6) .road-badge::after {
  border-top-color: #e67e22;
}

.road-point:nth-child(8) .road-badge {
  background: #34495e;
}

.road-point:nth-child(8) .road-badge::after {
  border-top-color: #34495e;
}

.road-point:nth-child(9) .road-badge {
  background: #7f8c8d;
}

.road-point:nth-child(9) .road-badge::after {
  border-top-color: #7f8c8d;
}
  .text-primary {
            color: #80e9f5 !important;
        }

        .btn-primary {
            background: linear-gradient(135deg, #9bea66 0%, #4ba265 100%);
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #519225 0%, #4ba265 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 221, 19, 0.3);
        }

        .road-map {
    background: rgb(123, 233, 109);
    border-radius: 10px;
}

.tgt{
  background: linear-gradient(135deg, #9bea66 0%, #4ba265 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ── Password Policy Box ── */
.password-policy {
    background: #fff;
    border: 1.5px solid #dee2e6;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 8px;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.password-policy.visible { display: block; }

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #6c757d;
    padding: 5px 0;
    line-height: 1.45;
    transition: color 0.25s;
}
.policy-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
    transition: background 0.25s, transform 0.2s;
}
.policy-icon i { font-size: 11px; color: #adb5bd; transition: color 0.25s; }
.policy-item.passed { color: #198754; }
.policy-item.passed .policy-icon { background: #198754; transform: scale(1.1); }
.policy-item.passed .policy-icon i { color: #fff; }
.policy-item.failed { color: #dc3545; }
.policy-item.failed .policy-icon { background: #f8d7da; }
.policy-item.failed .policy-icon i { color: #dc3545; }

.strength-bar-wrap { display: flex; gap: 5px; margin-bottom: 8px; }
.strength-seg { flex:1; height:5px; border-radius:3px; background:#e9ecef; transition: background 0.3s; }
.strength-label { font-size:12px; font-weight:600; min-height:18px; margin-bottom:10px; }