@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
  font-family: "inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  color: inherit;
}


.top-nav {
  background: linear-gradient(to right, #2081a0, #0c4e64);
  padding: 7px 0;
}

/* Navbar */
.custom-navbar {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

ul.nav-links {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  padding: 20px 15px;
  display: block;
}

ul.nav-links a:hover {
  color: #cb226c;
}

.dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  background: #2081a0;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 250px;
  width: max-content;
  z-index: 999;
}

.dropdown-menu a {
  padding: 7px 12px !important;
  font-size: 16px !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
  font-weight: 400 !important;
  position: relative;
}

.dropdown-menu a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100px;
  height: 6px;
  width: 6px;
  background: #fff;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.dropdown-menu a:hover {
  background: #cb226c !important;
}

.dropdown-menu a:hover::after {
  visibility: visible;
  opacity: 1;
  left: 3px;
}





/* Subdropdown */
.has-subdropdown {
  position: relative;
}

.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #2081a0;
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 260px;
  width: max-content;
  border-radius: 4px;
  list-style: none;
}

.subdropdown-menu a {
  padding: 7px 12px !important;
  font-size: 16px !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
}

.subdropdown-menu a:hover {
  background: #cb226c !important;
  color: #fff !important;
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    display: flex;
  }


  .has-subdropdown:hover>.subdropdown-menu {
    display: flex;
  }

}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    gap: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    border: none;
  }

  .dropdown-menu a {
    padding: 8px 8px 8px 23px !important;
    font-size: 16px !important;
  }

  .has-dropdown .dropdown-menu {
    display: none;
  }

  .has-dropdown.show .dropdown-menu {
    display: flex;
  }


  .subdropdown-menu {
    position: static;
    display: none;
    background: #2081a0;
    border: none;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .subdropdown-menu.show {
    display: flex;
  }

  .subdropdown-menu a {
    padding: 10px 20px 10px 30px !important;
    border-bottom: 1px solid #333;
    font-size: 14px !important;
    color: #fff !important;
  }
}


.section-title {
  font-family: "Outfit", sans-serif;
  margin-bottom: 24px;
}



section {
  overflow-x: hidden;
}





/* ===== DOCTOR SECTION ===== */
.dr-section {
  padding: 50px 0;
}

.dr-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #111;
}

.dr-desc {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
}

.dr-desc strong {
  color: #111;
}

.dr-btn-readmore {
  background: #2081a0;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.dr-btn-readmore:hover {
  background: #cb226c;
  color: #fff;
}

.dr-phone-circle {
  width: 48px;
  height: 48px;
  background: #cb226c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.dr-appt-label {
  font-size: 0.82rem;
  color: #666;
  font-weight: 500;
  line-height: 1.2;
}

.dr-appt-number {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.dr-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dr-img-wrapper img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  object-position: top;
  display: block;
}

@media (max-width: 767px) {
  .dr-img-wrapper img {
    aspect-ratio: 1/1;
  }
}

.dr-badge {
  position: absolute;
  bottom: 100px;
  left: 0px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  min-width: 185px;
  z-index: 2;
}

.dr-badge-icon-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dr-badge-stars {
  display: flex;
  gap: 2px;
  font-size: 0.6rem;
  color: #f5a623;
  margin-bottom: 2px;
}

.dr-badge-icon-wrap .fa-user-doctor {
  font-size: 2rem;
  color: #f5a623;
}

.dr-badge-icon-wrap .fa-circle-check {
  position: absolute;
  bottom: -3px;
  right: -6px;
  font-size: 0.9rem;
  color: #2081a0;
  background: #fff;
  border-radius: 50%;
}

.dr-badge-count {
  font-size: 1.65rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.dr-badge-label {
  font-size: 0.8rem;
  color: #555;
  font-weight: 500;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .dr-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
  }

  .dr-title {
    font-size: 1.7rem;
  }


}
/* form  */

.cf-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(52, 109, 165, 0.13);
  padding: 20px;
  max-width: 520px;
  width: 100%;
  border-top: 4px solid #2081a0;
}

.cf-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2081a0;
  margin-bottom: 4px;
  font-family: inherit;
}

.cf-divider {
  height: 3px;
  background: linear-gradient(90deg, #2081a0 60%, #cb226c 100%);
  border-radius: 4px;
  margin-bottom: 20px;
  opacity: 0.18;
}

.cf-label {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #374151 !important;
  margin-bottom: 6px !important;
  display: block;
  font-family: inherit;
}

.cf-icon-group {
  position: relative;
}

.cf-icon-group .cf-control {
  padding-left: 42px !important;
  border-radius: 10px !important;
  border: 1.5px solid #dee2e6 !important;
  font-size: 0.95rem !important;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  height: 50px;
  outline: none;
  background: #fff;
  color: #374151;
  font-family: inherit;
  box-sizing: border-box;
}

.cf-icon-group .cf-control:focus {
  border-color: #2081a0 !important;
  box-shadow: 0 0 0 3px rgba(52, 109, 165, 0.18) !important;
}

.cf-icon-group .cf-field-icon {
  position: absolute !important;
  top: 50% !important;
  left: 13px !important;
  transform: translateY(-50%) !important;
  color: #2081a0 !important;
  font-size: 0.95rem !important;
  pointer-events: none;
}

.cf-textarea-group {
  position: relative;
}

.cf-textarea-group .cf-textarea {
  padding-left: 42px !important;
  border-radius: 10px !important;
  border: 1.5px solid #dee2e6 !important;
  font-size: 0.95rem !important;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  min-height: 110px;
  outline: none;
  background: #fff;
  color: #374151;
  font-family: inherit;
  padding-top: 10px;
  box-sizing: border-box;
}

.cf-textarea-group .cf-textarea:focus {
  border-color: #2081a0 !important;
  box-shadow: 0 0 0 3px rgba(52, 109, 165, 0.18) !important;
}

.cf-textarea-group .cf-field-icon {
  position: absolute !important;
  top: 13px !important;
  left: 13px !important;
  color: #2081a0 !important;
  font-size: 0.95rem !important;
  pointer-events: none;
}

.cf-mb3 {
  margin-bottom: 16px !important;
}

.cf-mb4 {
  margin-bottom: 24px !important;
}

.cf-btn-submit {
  background: #2081a0 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 11px 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  color: #fff !important;
  width: 100%;
  cursor: pointer;
  transition: background 0.25s, transform 0.1s;
  font-family: inherit;
}

.cf-btn-submit:hover {
  background: #cb226c !important;
  transform: translateY(-1px);
}

.cf-btn-submit:active {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .cf-card {
    padding: 28px 18px;
  }

  .cf-title {
    font-size: 1.3rem;
  }
}

/* form  */

.cf-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(52, 109, 165, 0.13);
  padding: 20px;
  max-width: 520px;
  width: 100%;
  border-top: 4px solid #2081a0;
}

.cf-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2081a0;
  margin-bottom: 4px;
  font-family: inherit;
}

.cf-divider {
  height: 3px;
  background: linear-gradient(90deg, #2081a0 60%, #cb226c 100%);
  border-radius: 4px;
  margin-bottom: 20px;
  opacity: 0.18;
}

.cf-label {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #374151 !important;
  margin-bottom: 6px !important;
  display: block;
  font-family: inherit;
}

.cf-icon-group {
  position: relative;
}

.cf-icon-group .cf-control {
  padding-left: 42px !important;
  border-radius: 10px !important;
  border: 1.5px solid #dee2e6 !important;
  font-size: 0.95rem !important;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  height: 50px;
  outline: none;
  background: #fff;
  color: #374151;
  font-family: inherit;
  box-sizing: border-box;
}

.cf-icon-group .cf-control:focus {
  border-color: #2081a0 !important;
  box-shadow: 0 0 0 3px rgba(52, 109, 165, 0.18) !important;
}

.cf-icon-group .cf-field-icon {
  position: absolute !important;
  top: 50% !important;
  left: 13px !important;
  transform: translateY(-50%) !important;
  color: #2081a0 !important;
  font-size: 0.95rem !important;
  pointer-events: none;
}

.cf-textarea-group {
  position: relative;
}

.cf-textarea-group .cf-textarea {
  padding-left: 42px !important;
  border-radius: 10px !important;
  border: 1.5px solid #dee2e6 !important;
  font-size: 0.95rem !important;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  min-height: 110px;
  outline: none;
  background: #fff;
  color: #374151;
  font-family: inherit;
  padding-top: 10px;
  box-sizing: border-box;
}

.cf-textarea-group .cf-textarea:focus {
  border-color: #2081a0 !important;
  box-shadow: 0 0 0 3px rgba(52, 109, 165, 0.18) !important;
}

.cf-textarea-group .cf-field-icon {
  position: absolute !important;
  top: 13px !important;
  left: 13px !important;
  color: #2081a0 !important;
  font-size: 0.95rem !important;
  pointer-events: none;
}

.cf-mb3 {
  margin-bottom: 16px !important;
}

.cf-mb4 {
  margin-bottom: 24px !important;
}

.cf-btn-submit {
  background: #2081a0 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 11px 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  color: #fff !important;
  width: 100%;
  cursor: pointer;
  transition: background 0.25s, transform 0.1s;
  font-family: inherit;
}

.cf-btn-submit:hover {
  background: #cb226c !important;
  transform: translateY(-1px);
}

.cf-btn-submit:active {
  transform: translateY(0);
}

@media (max-width: 576px) {
  .cf-card {
    padding: 28px 18px;
  }

  .cf-title {
    font-size: 1.3rem;
  }
}



/* breadcrumb  */

.breadcrumb-section {
  background: linear-gradient(to right, #2081a0, #cb226c);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.breadcrumb-svg-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.breadcrumb-container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.5rem;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #ffe6e6;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.breadcrumb-title {
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.breadcrumb-title-icon {
  color: #fff;
  font-size: 2.1rem;
}

.breadcrumb-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 10px rgba(42, 128, 134, 0.08);
}

.breadcrumb-desc {
  color: #f8f8f8 !important;
  font-size: 1.1rem !important;
  max-width: 600px;
  margin-bottom: 0 !important;
}

.breadcrumb-dot-top,
.breadcrumb-dot-bottom {
  position: absolute;
  color: #fff;
  opacity: 0.18;
  z-index: 2;
}

.breadcrumb-dot-top {
  top: 18px;
  right: 40px;
  display: flex;
  gap: 8px;
}

.breadcrumb-dot-bottom {
  bottom: 18px;
  left: 40px;
  display: flex;
  gap: 6px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

@media (max-width: 768px) {
  .breadcrumb-section {
    min-height: 150px;
    padding: 30px 0 20px 0;
  }

  .breadcrumb-title {
    font-size: 1.4rem;
  }

  .breadcrumb-title-icon {
    font-size: 1.3rem;
  }

  .breadcrumb-badge {
    font-size: 0.9rem;
    padding: 5px 12px;
  }

  .breadcrumb-desc {
    font-size: 0.98rem;
  }
}




/* services  */

.service-img {
  position: relative;
  overflow: hidden;
  margin: 0 0 20px;

  img {
    object-fit: cover;
    aspect-ratio: 16/8;
    border-radius: 15px;
    width: 100%;
    border: 1px solid #dedede;
  }
}

.service-sidebar {
  background: #2081a0;
  padding: 20px 12px;
  border-radius: 20px;
}

.service-details-content {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #f9f9f9;
}

.service-details-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #2081a0;
  margin: 0 0 15px;
  padding-bottom: 3px;
  border-bottom: 2px solid #2081a0;
}

.service-details-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: #2081a0;
  margin: 0 0 15px;
  padding-bottom: 3px;
  border-bottom: 2px solid #2081a0;
}

.service-details-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #2081a0;
  margin: 0 0 15px;
  padding-bottom: 3px;
  border-bottom: 2px solid #2081a0;
}

.service-details-content p {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  margin: 0 0 15px;
}

.service-details-content ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.service-details-content ul li {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  list-style: disc;
  margin: 0 0 10px;
}

.service-details-content strong {
  font-weight: 600;
}

.sidebar-profile {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .service-details-content {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .service-details-content h2 {
    font-size: 24px;
  }

  .service-details-content h3 {
    font-size: 20px;
  }

  .service-details-content h4 {
    font-size: 18px;
  }

}



.sidebar-profile h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2081a0;
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f5f5f5;
}

.sidebar-img {
  img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
  }
}

.doc-deg {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
}



.doc-deg h4 {
  font-size: 24px;
  font-weight: 600;
  color: #2081a0;
  margin: 0 0 6px;
  /* text-align: center; */
}

.doc-deg p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  /* text-align: center; */
  margin: 0;
}


.service-sidebar-content {
  /* border: 1px solid #ccc; */
  margin-bottom: 30px;
}


.service-sidebar-content h4 {
  font-size: 26px;
  font-weight: 600;
  color: #2081a0;
  margin: 0 0 15px;
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
  text-align: center;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.service-sidebar-content ul {
  list-style-type: none;
  background: #fff;
  border-radius: 10px;
  padding: 10px 8px;
}

.service-sidebar-content ul li {
  position: relative;
  background: #fff;
  overflow: hidden;
  margin-bottom: 5px;
  border: 2px solid #2081a0;

  border-radius: 10px;

  a {
    display: block;
    padding: 6px;
    display: flex;
    align-items: baseline;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;

    i {
      color: #2081a0;
      transition: all 0.3s ease;
    }
  }
}

.service-sidebar-content ul li a:hover {
  color: #fff;

  i {
    color: #fff;
  }
}

.service-sidebar-content ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background: #2081a0;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.service-sidebar-content ul li:hover {
  border-color: #fff;
  box-shadow: 0 0 10px #cb226c83;
}

.service-sidebar-content ul li:hover::before {
  height: 100%;
}



/* gallery */

/* Event Glimpses Section */
.event-glimpses {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
  transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;

  justify-content: center;

}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.prev-btn {
  left: 30px;
  z-index: 1001;
}

.next-btn {
  right: 30px;
}

.image-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-btn {
    padding: 10px 15px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    top: 80%;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }

  .close-btn {
    font-size: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    padding: 10px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 18px;
    width: 45px;
    height: 45px;
  }
}




/* form utility */

.side-bar-form {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
}

.side-bar-form h4 {
  font-size: 22px;
  font-weight: 600;
  color: #2081a0;
  margin: 0 0 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #eee;
  text-align: center;
}

.side-bar-form .form-group {
  input {
    width: 100%;
    padding: 8px 10px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
    outline: none;
  }

  textarea {
    width: 100%;
    padding: 8px 10px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
    outline: none;
    resize: vertical;
    min-height: 80px;
  }
}

.side-bar-form .form-group .form-control:focus {
  border-color: #2081a0;
  box-shadow: 0 0 0 3px #cb226c41 !important;
}


.side-bar-form .form-group {
  button {
    border: 2px solid #2081a0;
    color: #fff;
    background: #2081a0;
    display: inline-block;
    padding: 8px 30px;
  }
}




/* faq */

.faq-section-v2 {
  max-width: 1000px;
  margin: 40px auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 20px;
}

.faq-title {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: "Outfit", sans-serif;
  margin: 0 0 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 2px solid #cb226c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(227, 53, 42, 0.15);
}

.faq-question {
  cursor: pointer;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(241, 97, 34, 0.05), rgba(255, 107, 53, 0.03));
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(227, 53, 42, 0.08);
  color: #2081a0;
}

.faq-icon {
  font-size: 20px;
  color: #2081a0;
  transition: transform 0.3s ease;
}

.faq-question.active {
  background: linear-gradient(135deg, #cb226c, #cb226c);
  color: white;
}

.faq-question.active .faq-icon {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  background: rgba(241, 97, 34, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.show {
  max-height: 1000px;
  padding: 20px 28px;
}

.faq-answer p {
  margin: 0 0 15px;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

.faq-answer ul {
  padding-left: 20px;
  margin: 0 0 15px;
}

.faq-answer ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
    padding: 8px 12px;
    font-weight: 500;
  }

}



/* blog */

.blog-card1 {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card1:hover .blog-image {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #2081a0;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-body {
  padding: 20px;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-btn {
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 20px;
  color: #213454;
  border: 1px solid #213454;
  margin: 0;
}

.blog-btn:hover {
  background-color: #2081a0;
  color: #fff;
  border-color: #2081a0;
}



/* opd  */

.chvd-opd-section {
  font-family: 'Inter', sans-serif;
  background: #f2f6fb;
  padding: 60px 0;
}

/* ── Card Shell ── */
.chvd-opd-section .chvd-doc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 40px rgba(52, 109, 165, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid #e4edf8;
}

.chvd-opd-section .chvd-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(52, 109, 165, 0.18);
}

/* ── Card Header ── */
.chvd-opd-section .chvd-doc-header {
  background: linear-gradient(135deg, #1e4d78 0%, #2081a0 60%, #4a86bc 100%);
  padding: 30px 26px 24px;
  position: relative;
  overflow: hidden;
}

.chvd-opd-section .chvd-doc-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.chvd-opd-section .chvd-doc-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.chvd-opd-section .chvd-doc-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.chvd-opd-section .chvd-doc-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.chvd-opd-section .chvd-doc-name {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 5px;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.chvd-opd-section .chvd-doc-dept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #cb226c;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(209, 32, 38, 0.4);
}

.chvd-opd-section .chvd-doc-qual-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  margin-right: 4px;
  margin-top: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Card Body ── */
.chvd-opd-section .chvd-doc-body {
  padding: 22px 24px 24px;
}

/* Clinic Strip */
.chvd-opd-section .chvd-clinic-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #eaf2fb, #f0f6ff);
  border-left: 4px solid #2081a0;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.chvd-opd-section .chvd-clinic-strip i {
  color: #2081a0;
  font-size: 15px;
  flex-shrink: 0;
}

.chvd-opd-section .chvd-clinic-strip span {
  font-size: 13px;
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1.3;
}

/* Schedule Label */
.chvd-opd-section .chvd-spec-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #2081a0;
  margin-bottom: 10px;
}

/* ── Schedule Rows ── */
.chvd-opd-section .chvd-schedule-wrap {
  border: 1.5px solid #dce8f5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.chvd-opd-section .chvd-schedule-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.9fr;
  background: #2081a0;
  padding: 9px 16px;
}

.chvd-opd-section .chvd-schedule-header span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chvd-opd-section .chvd-schedule-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.9fr;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #edf3fb;
  transition: background 0.2s;
}

.chvd-opd-section .chvd-schedule-row:last-child {
  border-bottom: none;
}

.chvd-opd-section .chvd-schedule-row:nth-child(even) {
  background: #f9fbff;
}

.chvd-opd-section .chvd-schedule-row:hover {
  background: #f0f6ff;
}

.chvd-opd-section .chvd-day {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a3a5c;
}

.chvd-opd-section .chvd-time {
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 7px;
}

.chvd-opd-section .chvd-time i {
  color: #cb226c;
  font-size: 13px;
}

.chvd-opd-section .chvd-status-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e7f7ed;
  color: #1a8a45;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid #c3e8d0;
}

.chvd-opd-section .chvd-status-open::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a8a45;
  display: inline-block;
}

.chvd-opd-section .chvd-status-sunday {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff8ec;
  color: #b45309;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid #fde8b4;
}

.chvd-opd-section .chvd-status-sunday::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b45309;
  display: inline-block;
}

/* ── Footer Actions ── */
.chvd-opd-section .chvd-card-footer {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.chvd-opd-section .chvd-appt-btn {
  flex: 1;
  background: linear-gradient(135deg, #cb226c, #cb226c);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 10px;
  border: none;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.25s;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(209, 32, 38, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chvd-opd-section .chvd-appt-btn:hover {
  background: linear-gradient(135deg, #cb226c, #cb226c);
  color: #fff;
  box-shadow: 0 6px 20px rgba(203, 34, 108, 0.4);
  transform: translateY(-1px);
}

.chvd-opd-section .chvd-profile-btn {
  background: #eaf2fb;
  color: #2081a0;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 18px;
  border: 1.5px solid #c5daf0;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.chvd-opd-section .chvd-profile-btn:hover {
  background: #2081a0;
  color: #fff;
  border-color: #2081a0;
  transform: translateY(-1px);
}

@media (max-width: 575px) {
  .chvd-opd-section .chvd-doc-header-inner {
    flex-direction: column;
    text-align: center;
  }

  .chvd-opd-section .chvd-doc-body {
    padding: 22px 12px 24px;
  }

  .chvd-opd-section .chvd-schedule-row {
    padding: 8px;
  }

  .chvd-opd-section .chvd-day,
  .chvd-opd-section .chvd-time {
    font-size: 12px;
  }

  .chvd-opd-section .chvd-clinic-strip {
    flex-direction: column;
    text-align: center;
  }

  .chvd-opd-section .chvd-schedule-header,
  .chvd-opd-section .chvd-schedule-row {
    grid-template-columns: 0.8fr 1.5fr 1.1fr;
  }
}



/* Footer */
    .footer {
        background-color: #2081a0;
        color: #fff;
        padding: 70px 0 0;
        font-size: 16px;
    }

    .footer-container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 0.7fr 1fr 1.1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Footer Column Headings */
    .footer-heading {
        color: #fff;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 24px;
        letter-spacing: 0.3px;
    }

    /* About Section */
    .footer-about {
        color: #fff;
        line-height: 1.8;
        margin-bottom: 28px;
        font-size: 16px;
    }

    .footer-info-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        /* margin-bottom: 20px; */
        color: #fff;
        font-size: 16px;
        line-height: 1.6;
        padding: 10px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }

    .footer-info-item:last-child {
        border-bottom: none;
    }

    .footer-info-item i {
        color: #fff;
        font-size: 16px;
        margin-top: 2px;
        opacity: 0.8;
    }

    .footer-info-item a {
        color: #fff;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    /* Footer Links */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        display: block;
        padding: 5px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
        transition: all 0.2s ease;
    }

    .footer-links li:last-child a {
        border-bottom: none;
    }


    .footer-links a:hover {
        color: #cb226c;
        padding-left: 5px;
    }


    /* Social Links */
    .ftr-social-icons {
        display: flex;
        gap: 12px;
        margin-top: 22px;
    }

    .ftr-social-icon {
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .ftr-social-icon:hover {
        background-color: rgba(255, 255, 255, 0.30);
        transform: translateY(-2px);
    }


    /* Copyright */
    .footer-bottom {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 22px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    @media (max-width: 576px) {
        .footer-bottom {
            padding-bottom: 50px;
        }
    }

    .copyright {
        text-align: center;
        color: #fff;
        font-size: 16px;
        margin: 0;
    }

    .copyright a {
        color: #cb226c;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .copyright a:hover {
        color: #cb226c;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
        color: white;
        padding: 14px 26px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .whatsapp-float:hover {
        background: linear-gradient(135deg, #1ebe57 0%, #1aa84e 100%);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    }

    .whatsapp-float i {
        font-size: 20px;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
        .footer {
            padding: 50px 0 0;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .brand-banner {
            flex-direction: column;
            text-align: center;
            padding: 22px 25px;
            border-radius: 20px;
        }

        .whatsapp-float {
            padding: 12px 20px;
            font-size: 13px;
            bottom: 20px;
            right: 20px;
        }
    }

    @media (max-width: 480px) {
        .footer-heading {
           margin-bottom: 15px;
        }

    }