body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
}

.mobile-container {
  /*max-width: 430px;*/
  margin: 0 auto;
  background-color: #fff;
  min-height: auto;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}
.test-links a {
      text-decoration: none !important;
      color: #626263;
  }
 
  .test-links a:hover {
      text-decoration: underline; /* optional */
  }
.content {
  flex: 2; /* takes remaining space */
  padding-bottom: 90px; /* leave space for footer if fixed */
}
.top-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.top-navbar .left-icons,
.top-navbar .right-icons {
  display: flex;
  align-items: center;
}

.top-navbar .logo {
  height: 35px;
  margin-left: 10px;
}

.location-selector {
  position: relative;
  margin-right: 0px;
}

.location-button {
  background: none;
  border: none;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.location-button i {
  margin-left: 5px;
  font-size: 12px;
}

.location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  width: 100px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.location-dropdown.active {
  display: block;
}

.location-dropdown div {
  padding: 5px 10px;
  cursor: pointer;
}

.location-dropdown div:hover {
  background-color: #f0f0f0;
}

.top-navbar img.icon {
  height: 20px;
  width: 20px;
  margin-left: 20px;
}

.location-icon {
  height: 15px;
  margin-left: 20px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 260px;
  background-color: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  left: 0;
}

.sidebar h6 {
  font-weight: bold;
  margin-bottom: 2px;
}

.sidebar small {
  color: #777;
}

.sidebar .profile-section {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  flex-grow: 1;
}

.menu-list li {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-radius: 25px;
  cursor: pointer;
}

.menu-list li.active {
  background-color: #e5e5e5;
  font-weight: 600;
}

.menu-list li i {
  margin-right: 12px;
  font-size: 18px;
  color: #333;
}
.menu-list li a {
  text-decoration: none; /* remove underline */
  color: inherit; /* inherit color from li */
  display: flex;
  align-items: center;
  width: 100%; /* make whole li clickable */
}

.menu-list li a:hover {
  color: #0d6efd; /* optional hover effect */
}
.social-footer {
  margin-top: auto;
}

.social-icons {
  display: flex;
  justify-content: left;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background-color: #e1306c;
}

.linkedin {
  background-color: #0077b5;
}

.youtube {
  background-color: #ff0000;
}

#backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1040;
  display: none;
}

.toggle-tabs {
  background-color: #e6e6e6;
  padding: 0px;
  border-radius: 50px;
  justify-content: space-between;
  gap: 4px;
  height: 30px;
  margin-top: 0px !important;
}

.toggle-tabs .tab {
  flex: 1;
  text-align: center;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toggle-tabs .active-tab {
  background-color: #1f71be;
  color: #fff;
  font-weight: 600;
  box-shadow: 3px 0px 3.9px 0px #00000040;
}

.text-muted {
  color: #000000 !important;
  font-size: 12px;
}

.cart-wrapper {
  position: relative;
  margin-left: 0px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #c8102e;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-weight: bold;
}

/* Search Bar */
.search-bar input {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  border: 0.5px solid #002140;
  color: black;
  border-radius: 25px;
}

.banner-content {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #000;
}

.banner-content h6 {
  font-size: 12px;
  color: #ff4e4e;
  margin-bottom: 3px;
}

.banner-content h5 {
  font-size: 16px;
  font-weight: 600;
}

.banner-content button {
  background: #f48a84;
  border: none;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  margin-top: 5px;
}

/* Booking Options */
.booking-options {
  gap: 5px;
  flex-wrap: nowrap;
  overflow-x: hidden;
  padding-top: 12px;
  padding-bottom: 12px;
}

.option-box {
  border-radius: 5px;
  padding: 6px 8px;
  flex: 1 1 0;
  min-width: 0;
  font-size: 14px;
  height: auto;
  display: flex;
  align-items: center;
  border: 1px solid #ebebeb;
}

.option-box img {
  width: 30px;
  height: 30px;
  margin-right: 0px !important;
  /* margin-left: -7px; */
}

.option-box small {
  font-size: 15px;
  line-height: 1.1;
  color: #000;
}

.option-box strong {
  font-size: 14px;
  color: #002140;
  font-weight: 600;
}

.phonesvg {
  margin-left: 0px !important;
}

/* Tabs */
.test-tabs button {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
}

.test-tabs button.active {
  background: #007bff;
  color: #fff;
}

.toggle-tabs .tab-btn.active-tab {
  box-shadow: -3px 0px 3.9px 0px #00000040,
    /* left shadow */ 3px 0px 3.9px 0px #00000040;
  /* right shadow */
}

/* Cards */
.test-card {
  font-size: 13px;
  border: 0.5px solid #ca6da6 !important;
  padding: 13px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-card h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #002140;
}

.test-card p {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6a6a6b;
}

.text-dark {
  font-weight: 600;
}

.test-card .button-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
  padding: 5px 9px 13px 13px;
  display: flex;
}

.book-btn {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 13px;
  width: 100%;
}

.book-btn-custom {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 13px;
  width: 100px;
  white-space: nowrap;
}

.old-price {
  font-size: 11px;
  position: relative;
  color: #999;
  margin-left: 4px;
}

.old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: red;
  transform: rotate(-15deg);
  transform-origin: center;
}

.discount {
  color: #28a5a1;
  font-size: 11px;
  margin-left: 4px;
  font-weight: 600;
}

.view-all-btn {
  display: block;
  text-align: center;
  padding: 8px;
  margin: 10px auto;
  background: #28a5a1;
  color: #fff;
  width: 45%;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
  font-size: 14px;
}

.category-tabs-wrapper {
  margin-top: 30px !important;
}

.search-input::placeholder {
  color: #002140 !important;
}

.search-icon {
  position: absolute;
  right: 25px;
  top: 57%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  cursor: pointer;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.4) !important;
  color: #fff !important;
  border: none !important;
  padding: 6px 12px !important;
  border-radius: 50%;
}

.book-test-txt {
  font-size: 18px;
}

.category-tabs-scroll {
  gap: 10px;
  margin-top: 15px;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.category-tabs-scroll .tab {
  padding: 3px 16px;
  min-width: 115px;
  text-align: center;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 13px;
  color: #333;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.category-tabs-scroll .tab.active {
  background-color: #28a5a1;
  color: #fff;
  border-color: #28a5a1;
  font-weight: 600;
}

.dot-nav .dot {
  height: 6px;
  width: 6px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
}

.dot-nav .dot.active {
  background-color: #00bfa6;
}

.full-package-card {
  background-color: #fff;
  border: 0.5px solid #ca6da6;
  font-size: 13px;
  border-radius: 10px !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px; /* optional: makes cards responsive */
  min-height: 125px; /* baseline height */
  justify-content: center; /* vertical centering */
  position: relative;
}

.full-package-card h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.full-package-card .price {
  font-weight: 600;
  font-size: 15.5px;
}

.full-package-card .old-price {
  font-size: 12px;
  position: relative;
  color: #999;
  margin-left: 5px;
}

.full-package-card .old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: red;
  transform: rotate(-15deg);
  transform-origin: center;
}

.offer-badge-wrapper {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 1;
}

.offer-badge {
  background-color: #00bfa6;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 6px;
  text-align: center;
  position: relative;
  width: 35px;
  height: 50px;
}

.offer-badge span {
  display: block;
  line-height: 1.1;
}

.offer-arrow {
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 17px solid white;
  position: absolute;
  bottom: 0px;
  left: -1px;
  rotate: 180deg;
}

.view-btn {
  background-color: #00bfa6;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
}

.dot-nav .dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot-nav .dot.active {
  background-color: #00bfa6;
}

.select-category {
  font-size: 18px;
}

.popular-packages {
  font-size: 18px;
  margin-top: 20px;
}

.custom-text-muted {
  color: #6a6a6b;
}

.custom-text-mri {
  color: black;
}

.text-cst-muted {
  font-size: 16px;
}

.text-cst-primary {
  font-size: 18px;
  color: #28a5a1;
}
.text-cst-primary-krpl {
  font-size: 22px;
  color: black;
}
.timeline {
  background-color: #f6f6f6;
  margin-top: 1rem;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.timeline img {
  max-width: 100%;
  height: auto;
}

.text-cst-acc {
  font-size: 18px;
  color: #28a5a1;
  font-weight: 700;
}

.Quality {
  font-size: 9.5px;
  font-weight: 500;
}

.video-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.video-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 5px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  min-width: 120px;
  height: 240px;
  border-radius: 10px;
  border: none;
  margin-right: 12px;
  scroll-snap-align: start;
}

.carousel-dots .dot {
  height: 8px;
  width: 8px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.carousel-dots .dot.active {
  background-color: #00bcd4;
}

.app-download-section {
  /* background: url('./assets/img/discount-download.svg') no-repeat center center; */
  /* background-size: cover; */
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #fff;
  position: relative;
  z-index: 1;
  background-color: #9f70cc;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.app-download-section .store-btn {
  width: 130px;
  height: auto;
}

.app-mockup-img {
  width: 140px;
  max-width: 100%;
}

.presence-section {
  background-color: #28a5a126;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 6px;
  font-size: 13px;
  line-height: 1.8;
}

.cities-list span {
  color: #333;
}

.blood-tests-section {
  background-color: #ffffff;
}

.blood-tests-section p {
  font-size: 13px;
  line-height: 1.6;
}

.separator {
  color: #c10b0b !important;
  margin-left: 0px;
  margin-right: 0px;
  font-weight: bold;
}

.border-bottom-red {
  border-bottom: 2px solid #c10b0b;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-section {
  background-color: #e7f3f7;
  /* Light blue */
  font-family: "Poppins", sans-serif;
}

.footer-logo {
  width: 120px;
}

.footer-heading {
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  background-color: #c8102e;
  /* Red underline */
}

.bottom-nav {
  border-top: 1px solid #ddd;
  z-index: 1000;
}

.nav-item {
  font-size: 12px;
  color: #444;
}

.nav-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 3px;
  color: #444;
}

.nav-label {
  font-size: 12px;
  color: #505050;
}

.active-icon {
  color: #c8102e;
}

.active-label {
  color: #c8102e;
  font-weight: 600;
}

.sub-footer {
  background-color: #3a3480;
  height: 50px;
  z-index: 999;
  /*margin-bottom: 70px;*/
  font-size: 12px;
}

.callback-btn {
  background-color: #2dc7b7;
  padding: 6px 12px;
  border-radius: 20px 0 0 20px;
  color: white;
  font-size: 12px;
  line-height: 1.2;
}

.btn-callback:focus,
.btn-callback:active,
.btn-callback:hover {
  background-color: #2dc7b7 !important;
  outline: none;
  box-shadow: none;
}

.whatsapp-btn img {
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-text {
  font-size: 13px;
}

.floating-buttons {
  position: fixed;
  right: 0px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  z-index: 1000;
}

.floating-buttons img {
  cursor: pointer;
  height: 38px;
}

/* Phone Icon Style */
.phone-icon {
  position: absolute;
  left: -6px;
  top: -6px;
  z-index: 1;
}

.phone-icon img {
  width: 60px;
  height: 60px;
}

/* Call Back Button */
.btn-callback {
  background-color: #28a5a1;
  padding-left: 3rem;
  /* padding-top: 0.75rem;
            padding-bottom: 0.75rem; */
  font-size: 0.9rem;
  border: none;
  text-align: left;
  border-radius: 10px;
  font-size: 13px;
}

/* WhatsApp Button */
.btn-purple {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.9rem;
  border: none;
  justify-content: right;
}

/* WhatsApp Icon */
.whatsapp-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.select-test-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 15px; */
  flex-wrap: nowrap;
  gap: 10px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.select-test-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-test-title {
  flex: 1;
  min-width: 0;
}

.select-test-title span {
  display: block;
  font-size: 8px;
  color: #666;
}

.select-test-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.action-btn img {
  width: 16px;
  height: 16px;
}

.action-btn:hover {
  border-color: #007bff;
  color: #007bff;
}

.nav-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  z-index: 10;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ff3e6c;
}

.sort-item {
  padding: 6px 4px;
  font-size: 14px;
  cursor: pointer;
}

.sort-item:hover {
  background-color: #f0f0f0;
}

.show {
  display: block;
}

.button-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Small round cart button */
.cart-btn {
  width: 35px;
  height: 28px;
  background: linear-gradient(135deg, #e49d76, #e6a07a);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn img {
  width: 18px;
  height: 18px;
}

.icons-buttons-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.icon-item img {
  margin-right: 8px;
  /* Space between icon and text */
}

.right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.custom-price {
  font-size: 18px !important;
  color: #28a5a1;
}

.test-description {
  font-size: 10px;
}

.icon-row {
  font-size: 10px;
}

.know-more {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 10px;
}

.parameters-faq {
  background: #fff;
}

.section-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 11px;
  color: #002140;
}

.parameters-list {
  columns: 2;
  column-gap: 40px;
  list-style-position: inside;
  padding-left: 0;
  color: #6a6a6b;
  font-size: 11px;
}
.faq-sections p {
  font-size: 12px;
}
.faq-sections h6 {
  font-size: 17px;
}
.parameters-list li {
  margin-bottom: 5px;
}

.faq-item {
  margin-top: 15px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 10px;
  color: #002140;
}

.faq-answer {
  margin-bottom: 5px;
  font-size: 10px;
  color: #6a6a6b;
}

.faq-item ul {
  list-style: disc;
  color: #6a6a6b;
  font-size: 10px;
}

.address-section {
  /*max-width: 500px;*/
  margin: auto;
}

.btn-add-address {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: #fff;
  border: none;
  padding: 2px 12px;
  font-size: 13px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.address-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.2s;
  gap: 10px;
}

.address-card input[type="radio"] {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: 3px;
}

.address-card .address-content {
  flex: 1;
}

.address-card.active {
  border: 2px solid #1f71be;
  background-color: #f4faff;
}

.btn-proceed {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white;
  padding: 10px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  display: block;
  margin: 0 auto;
  width: 50%;
}

.wrapper-address {
  font-size: 11px;
  font-weight: 600;
}

.custom-address {
  font-size: 13px;
  font-weight: 600;
}

.custom-text-muted {
  font-size: 11px;
  color: black;
}

.custom-edits {
  font-size: 11px;
  font-weight: 600;
}

.cutom-address-header {
  font-weight: 600;
  margin-bottom: 15px;
}

.custom-small {
  font-size: 10px;
  text-align: left;
}

.declaration-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.custom-actions {
  float: right;
}

.payment-method-section .list-group-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 12px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  cursor: pointer;
  background-color: #ededed;
}

.payment-method-section .list-group-item:hover {
  background: #ededed;
}

.payment-method-section input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.text-muted-payment {
  color: #6a6a6b;
  font-size: 10px;
  font-weight: 500;
}

.payment-img {
  width: 40px;
  height: 40px;
}

.payment-details {
  margin-left: 1rem;
}

.confirm-btn {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  border: none;
  color: white;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 25px;
  width: 150px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: auto;
}

/* Success Badge */
.badge-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Details Card */
.details-card {
  max-width: 380px;
  border: 1px solid #1f71be;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background: #fff;
  text-align: left;
}

.booking-info span {
  font-size: 14px;
  line-height: 1.5;
}

.flex-fill {
  flex: 1 !important;
}

/* Location Card Styling */
.location-card {
  border: 0.5px solid #ca6da6 !important;
  border-radius: 16px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  max-width: 600px;
  margin: auto;
}

.location-info h6 {
  font-size: 13px;
  color: #1c2b39;
}

.location-info p {
  font-size: 10px;
  line-height: 1.4;
}

.location-info .distance {
  font-size: 14px;
  font-weight: 500;
  color: #1ba57b;
  /* teal/green */
}

/* Gradient Button */
.gradient-btn {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: #fff;
  border-radius: 25px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 300;
  border: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  width: 100%;
}

.gradient-btn:hover {
  opacity: 0.9;
}
.custom-text-start {
  line-height: 15px;
}
/* Hide active icons by default */
.nav-item .icon.active {
  display: none;
}

/* Active state */
.nav-item.active .icon.active {
  display: inline-block;
}

.nav-item.active .icon.inactive {
  display: none;
}

.nav-item .nav-label {
  color: #333;
  font-size: 12px;
}

.nav-item.active .nav-label {
  color: #c10b0b; /* your active color */
  font-weight: 600;
}
.address-body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* prevent outer scroll */
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 240px); /* leave space for bottom nav */
}

.address-list {
  flex: 1;
  overflow-y: auto; /* only this scrolls */
  padding: 10px;
  overflow-x: hidden;
}

.form-section {
  flex-shrink: 0;
  background: #fff;
  border-top: 1px solid #ddd;
}
#uploadPrescriptionModal .modal-header {
  justify-content: center;
  position: relative;
}

#uploadPrescriptionModal .modal-header .modal-title {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

#uploadPrescriptionModal .modal-header .btn-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.custom-file-input {
  border: 0.5px solid #9a9b9b;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 14px;
  width: 100%;
  cursor: pointer; /* make whole box clickable */
}

.custom-file-input span {
  color: #6a6a6b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-file-input .btn {
  background-color: #0d6efd; /* Bootstrap primary */
  border-radius: 5px;
  font-size: 14px;
  padding: 5px 12px;
  pointer-events: none; /* prevents button itself from blocking the label click */
}

/* Navbar */
.navbar-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #ddd;
}

.left-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle {
  width: 24px;
  cursor: pointer;
}

.logo {
  height: 40px;
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  width: 24px;
  cursor: pointer;
}

.cart-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  padding: 2px 5px;
}

/* Menu list */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.menu-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Desktop menu hidden on mobile */
.desktop-menu {
  display: none;
}

/* Sidebar for mobile */
.sidebar {
  position: fixed;
  top: 0;
  /*left: -250px;*/
  width: 250px;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

#backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

/* Responsive */
@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
  }
  .toggle,
  .sidebar,
  #backdrop {
    display: none !important;
  }
}
.vertical-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vertical-menu li {
  margin-bottom: 0px; /* space between items */
}

.vertical-menu li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 4px;
}

.vertical-menu li a:hover {
  background: #f0f0f0;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

#pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* Pagination buttons */
.page-btn {
  background-color: white; /* default background */
  border: 1px solid #ccc;
  color: #333;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

/* Hover effect */
.page-btn:hover:not(:disabled) {
  background-color: #f0f0f0;
}

/* Active page */
.page-btn.active {
  background-color: #007bff; /* Bootstrap primary color */
  color: white;
  border-color: #007bff;
}

/* Disabled button */
.page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #1fa8a0;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  width: 39px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(50% 80%, 100% 99%, 100% 0, 0 0, 0 100%);
  padding-left: 10px;
  margin: auto 20px;
}
/* Optional subtle border on top edge */
.ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* ---- Package Info ---- */
.package-info {
  flex: 1;
  padding-right: 10px;
}

.package-info h4 {
  font-size: 12px;
  max-width: 100%;
  font-weight: 600;
  margin: 0;
  color: #2c2c2c;
}

.package-info p {
  font-size: 12px;
  color: #777;
  margin: 4px 0 0px;
  font-weight: 400;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 18px;
  bottom: 14px;
}

.new-price {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
}

.old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

/* ---- Action Buttons ---- */
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 20;
  bottom: 13px;
}
.price-section1 {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 18px;
  bottom: 50px;
}
.address-card1 {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.address-card1:hover {
  border-color: #0d6efd;
}

.address-header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}

.address-radio {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #0d6efd;
}

.address-name {
  font-weight: 600;
  font-size: 15px;
  flex: 1;
  word-break: break-word;
}

.address-body {
  padding-left: 24px;
  font-size: 14px;
  width: 100%;
  line-height: 1.4;
}

.address-footer {
  margin-top: 8px;
  display: flex;
  justify-content: end;
}

.edit-link {
  color: #0d6efd;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.edit-icon {
  width: 12px;
  margin-right: 4px;
}
@media (max-width: 576px) {
  .form-navigation {
    flex-direction: column; /* Stack buttons vertically if needed */
    gap: 10px;
  }
  .next-btn {
    width: 100%; /* Button takes full width on mobile */
  }
}
.form-navigation {
  display: flex; /* Flex layout */
  justify-content: space-between;
  margin-top: 1rem;
  width: 100%; /* Make full width */
}

.next-btn {
  min-width: 100px; /* Ensure visible button */
}
/* Keep everything nicely aligned inside column */

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Calendar container — horizontal scroll if overflow */
.calendar1-container {
  display: flex;
  gap: 10px;
  overflow-x: auto; /* keep scrolling possible */
  padding-bottom: 10px;

  /* hide scrollbar in WebKit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.calendar1-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.day-card {
  flex: 0 0 auto;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px 10px;
  width: 70px;
  cursor: pointer;
  transition: all 0.3s;
  background: #f9f9f9;
}

.day-card.active {
  /* background-color: #007bff; */
  color: #000;
  border-color: #007bff;
  border-width: 2px;
  font-weight: 500;
}

.day-card:hover {
  background: #e9ecef;
}

/* Time slots layout */
.time-container {
  /*display: flex;*/
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.time-slot1 {
  text-align: center;
  border: 1px solid #ccc;
  padding: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  background: #f8f9fa;
}

.time-slot1.active {
  border-color: #007bff;
  border-width: 2px;
  font-weight: 500;
}

.time-slot1:hover {
  background: #e0e0e0;
}

/* Selected output text */
.selected-output {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .day-card {
    width: 60px;
    padding: 6px;
  }

  .time-slot1 {
    flex: 1 1 100%;
  }
}
/* Full Page Loader Styles */
.loader-overlay {
  position: fixed;
  inset: 0; /* shorthand for top:0, right:0, bottom:0, left:0 */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Always above all content */
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #007bff; /* Blue spinner color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 30px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
}

.scroll-to-top:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.search-bar {
  position: relative;
}
.search-input {
  padding-right: 40px; /* leave space for loader/icon */
}
.search-icon {
  position: absolute;
  /* right: 12px;
  top: 50%; */
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

.privacy-policy-section {
  background: #f8f9fa;
}

.policy-content {
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-content h5 {
  margin-top: 20px;
  font-weight: 600;
}

.policy-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.policy-content a {
  color: #16b4bd;
  text-decoration: underline;
}
.terms-container {
  background: #fff;
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}
.terms-container h1,
.terms-container h2 {
  color: black;
  font-weight: 600;
}
.terms-container h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}
.terms-container p,
.terms-container li {
  text-align: justify;
}
.modal-backdrop.show {
  opacity: 0.9 !important; /* darker background */
  background-color: rgba(0, 0, 0, 10) !important;
  backdrop-filter: blur(5px);
}

.sub-text {
  justify-content: center;
  display: flex;
}
#healthPackageContainer {
  padding-left: 20px;
  padding-right: 20px;
}
/* Accreditation block styling - unique class names to avoid collisions */
.accreditation-section {
  width: 100%;
}

/* Outer pale pink rounded box */
.accredit-box {
  background: #fdf0f0; /* pale pink similar to image */
  border-radius: 12px !important;
  box-shadow: none;
  align-items: center;
  gap: 1rem;
}

/* logo group on left */
.accred-logos {
  min-width: 220px; /* reserve space for logos and keep layout consistent */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* circle logo container (white ring + small shadow) */
.logo-wrap {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 2px solid rgba(0, 0, 0, 0.03);
}

/* logo image fits circle */
.accred-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* text area */
.cap-quality {
  flex: 1 1 auto;
  color: #111;
  padding-right: 1rem;
}

/* big bold heading — matches look in image */
.text-cst-acc {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  color: #0b0b0b;
}

/* paragraph text styling — constrained width for easier reading */
.accredit-desc {
  font-size: 12.5px;
  line-height: 1.4;
  color: #333;
  max-width: 62%;
  margin-top: 6px;
}

/* Responsive behavior: stack logos above text on small screens */
@media (max-width: 720px) {
  .accredit-box {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .accred-logos {
    min-width: 0;
    margin-bottom: 12px;
    gap: 12px;
    justify-content: center;
  }

  .cap-quality {
    padding-right: 0;
  }

  .accredit-desc {
    max-width: 100%;
  }
}
/* Outer section wrapper with light spacing from edges */
.accreditation-section {
  background: transparent;
  padding: 55px 80px 55px 80px;
}

/* Bootstrap-like centered container for consistent max width */
.accreditation-section .container {
  max-width: 1100px; /* Adjust width as per your layout (e.g., 1140 or 1200) */
  margin: 0 auto;
  padding: 0 15px;
}

/* Soft pink rounded box with balanced padding */
.accredit-box {
  background: #fff2ef;
  border-radius: 12px;
  padding: 40px 50px; /* increased padding for better breathing space */
  align-items: center;
  display: flex;
  gap: 2rem;
}

/* Logos section (fixed size for alignment) */
.accred-logos {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
}

/* Circular logo design */
.logo-wrap {
  width: 95px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.accred-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Text content */
.cap-quality {
  flex: 1;
  color: #111;
}

.text-cst-acc {
  font-weight: 800;
  font-size: 22px;
  color: #0b0b0b;
  margin-bottom: 10px;
}

.accredit-desc {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  max-width: 90%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .accredit-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .accred-logos {
    justify-content: center;
    margin-bottom: 15px;
  }

  .accredit-desc {
    max-width: 100%;
  }
}
.book-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 90px 0;
  /* use your full artwork image (no gradient overlay) */
  background: url('./assets/img/discount.svg') no-repeat right center;
  background-size: cover; /* or 'contain' if you prefer full image visible with gaps */
}

/* container sits above background */
.book-section .container { position: relative; z-index: 2; }

/* inner layout */
.book-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  min-height: 350px;
}

/* left copy block */
.book-text {
  width: 52%;
  max-width: 720px;
  color: #fff;
  padding-left: 48px;
}

/* title/desc/buttons (same as before) */
.book-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 18px 0;
  color: #fff;
}

.book-desc {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px 0;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
}

.book-cta {
  margin: 0 0 14px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
}

.store-buttons .store-btn {
  height: 44px;
  object-fit: contain;
}

/* spacer for the right visual so text doesn't overlap the artwork */
.book-visual {
  width: 40%;
  min-width: 360px;
}

/* responsive */
@media (max-width: 991.98px) {
  .book-section {
    padding: 48px 0;
    background-position: center top;
    background-size: cover;
  }
  .book-inner { flex-direction: column; align-items: flex-start; }
  .book-text { width: 100%; padding-left: 16px; padding-right: 16px; }
  .book-visual { display: none; }
  .book-title { font-size: 28px; }
  .book-desc { font-size: 14px; }
}
/* =========================
   IMPACT SECTION – DESKTOP
========================= */

/* Default (mobile-first) – already good */
.impact-section {
  border-radius: 16px;
}

/* Card (mobile stays same) */
.impact-card {
  display: flex;
  gap: 14px;
  background: #ffffff;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* Image */
.impact-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

/* Text */
.impact-text h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.impact-text p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* =========================
   TABLET VIEW (≥768px)
========================= */
@media (min-width: 768px) {
  .impact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 20px;
  }

  .impact-card {
    margin-bottom: 0;
    padding: 18px;
  }

  .impact-image {
    width: 56px;
    height: 56px;
  }

  .impact-text h6 {
    font-size: 15px;
  }

  .impact-text p {
    font-size: 13px;
  }
}

/* =========================
   DESKTOP VIEW (≥1200px)
========================= */
@media (min-width: 1200px) {
  .impact-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 28px;
  }

  .impact-card {
    align-items: flex-start;
    padding: 20px;
    transition: all 0.25s ease;
  }

  .impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  }

  .impact-image {
    width: 60px;
    height: 60px;
  }

  .impact-text h6 {
    font-size: 15px;
    line-height: 1.3;
  }

  .impact-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.test-links a {
    text-decoration: none !important;
    color: black;
}
.time-slot1.active {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
    font-size: 12px;
    font-weight: 600;
}
.time-slot1 {
  /* padding: 12px; */
  border-radius: 10px;
  border: 2px solid #ddd;
  background: #fff;
  font-weight: 600;
  position: relative;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.time-slot1.available {
  border-color: #28a745;
  box-shadow: 0 0 1px rgba(40, 167, 69, 0.4);
  font-size: 12px;
  font-weight: 600;
}
.limited-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  font-size: 9px;
  color: white;
  background: green;
  padding: 2px 6px;
  border-radius: 20px;
}

.slot-skeleton {
  width: 100%;
  height: 45px;
  background: linear-gradient(90deg, #eee 25%, #f6f6f6 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 10px;
}

.visit-only-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #0c5460;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.error-space {
  height: 12px; /* reserve space */
}

.error-text {
  font-size: 10px;
  visibility: hidden;
}


  

















