

body {
  background-color: #ffffff !important;
}
.bg-light,
.section-bg,
.custom-index {
  background: #ffffff !important;
}

.custom-navbar .container-fluid {
  padding-left: 10px;
  padding-right: 16px;
}







/* ========================= 
   Topbar
   ========================= */
/* ========================= 
   Topbar
   ========================= */
/* ========================= 
   Topbar
   ========================= */

/* ========================= 
   Topbar
 /* =========================
   TOPBAR
   ========================= */
header .topbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(16,24,40,0.08);
  font-size: 0.95rem;
  color: #374151;
  padding: 8px 0;
}

header .topbar .site-info {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

header .topbar .site-info a {
  color: #111827 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

header .topbar .site-info .mai-call,
header .topbar .site-info .mai-mail {
  color: #0066ff !important;
  font-size: 1rem;
}

header .topbar .site-info .divider {
  color: rgba(16,24,40,0.3);
  margin: 0 .5rem;
}

header .topbar .social-mini-button {
  display: flex !important;
  justify-content: flex-end;
  gap: 0.5rem;
}

header .topbar .social-mini-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: #374151 !important;
  font-size: 0.9rem;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

header .topbar .social-mini-button a:hover {
  background: rgba(0,102,255,0.08);
  color: #0066ff !important;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  header .topbar .row {
    flex-direction: column;
    gap: 6px;
    text-align: center !important;
  }
  header .topbar .site-info,
  header .topbar .social-mini-button {
    justify-content: center;
  }
}

/* =========================
   NAVBAR BASE
   ========================= */
.custom-navbar {
  background: #fff;
  z-index: 1000;
}

.custom-navbar .container {
  max-width: 1240px;
}

@media (min-width: 1600px) {
  .custom-navbar .container {
    max-width: 1440px;
  }
}

.custom-navbar .custom-collapse {
  align-items: center;
}

@media (min-width: 992px) {
  .custom-navbar .custom-collapse {
    display: flex !important;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

/* logo */
.navbar-brand {
  padding: 0;
  margin-right: 1rem;
}
.navbar-brand img {
  height: 70px;
  max-height: 70px;
  width: auto;
  transition: all .2s ease;
}
@media (max-width: 1024px) {
  .navbar-brand img { height: 56px; }
}
@media (max-width: 600px) {
  .navbar-brand img { height: 48px; }
}
@media (max-width: 375px) {
  .navbar-brand img { height: 44px; }
}

/* =========================
   NAV LINKS
   ========================= */
.main-menu {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.main-menu .nav-link {
  font-size: 0.98rem;
  font-weight: 500;
  padding: .6rem .7rem;
  color: #111827 !important;
  white-space: nowrap;
  transition: color .18s, transform .12s;
}
.main-menu .nav-link:hover {
  color: #0066ff !important;
  transform: translateY(-1px);
}

/* active using Published class */
.main-menu .nav-item.Published > .nav-link {
  color: #003399 !important;
  font-weight: 600;
  border-bottom: 2px solid #0066ff;
  padding-bottom: calc(.6rem - 2px);
}

/* dropdown hover on desktop only */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .nav-item.dropdown .dropdown-toggle::after {
    transition: .2s;
  }
  .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* right area (cart + CTA) */
.navbar-right {
  margin-left: auto;
  gap: 0.75rem;
}

/* =========================
   TOGGLER (for mobile)
   ========================= */
.custom-navbar .navbar-toggler {
  border-color: rgba(16,24,40,0.15);
  padding: .35rem .5rem;
}
.custom-navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(15,23,42,0.15);
}

/* =========================
   SEARCH BAR – pill with inline icon + clear
   ========================= */
.search-bar {
  max-width: 420px;
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1 1 260px;
  margin-left: 1rem;

  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 4px 8px;
  box-sizing: border-box;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(15,23,42,0.08);
}

/* left blue circle search */
.search-icon-btn {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  background: linear-gradient(135deg, #0047ff, #00ccff);
  color: #ffffff;
}
.search-icon-btn i {
  font-size: 0.9rem;
}

/* input in the middle */
.search-input-field {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  padding: 6px 4px;
  background: transparent;
  color: #111827;
  min-width: 0; /* prevents overflow in flex */
}
.search-input-field::placeholder {
  color: #9aa4b2;
}

/* clear (X) inside pill on the right */
.clear-btn {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none; /* show via JS when input has text */
  align-items: center;
  justify-content: center;
  padding: 0;
}
.clear-btn i {
  font-size: 0.9rem;
  color: #9aa4b2;
}

/* focus ring on whole search wrapper */
.search-input-field:focus-visible {
  outline: none;
}
.search-bar:focus-within {
  border-color: #0a66c2;
  box-shadow: 0 0 0 2px rgba(10,102,194,0.18);
}

/* =========================
   CART DROPDOWN
   ========================= */
.nav-cart-wrapper .nav-link {
  color: #111827;
}
.nav-cart-wrapper .nav-link:hover {
  color: #0a66c2;
}

.cart-dropdown {
  position: absolute;
  right: 0;
  top: 45px;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 9999;
}
.cart-items {
  max-height: 220px;
  overflow-y: auto;
}

/* appointment button */
.btn-appointment {
  padding: .55rem 1.3rem;
  border-radius: 25px;
  font-size: 0.95rem;
  background: linear-gradient(135deg,#0066ff,#00ccff);
  color: #fff !important;
  border: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   BREAKPOINTS
   ========================= */

/* Small laptops (992–1365px) */
@media (min-width: 992px) and (max-width: 1365.98px) {
  .main-menu .nav-link {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
    font-size: 0.9rem;
  }
  .search-bar {
    max-width: 320px;
  }
  .btn-appointment {
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem;
  }
}

/* Large desktop (>=1366px) */
@media (min-width: 1366px) {
  .search-bar {
    max-width: 460px;
  }
}

/* Ultra-wide (>=1600px) */
@media (min-width: 1600px) {
  .main-menu .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Mobiles & tablets (<= 991px) */
@media (max-width: 991.98px) {
  .custom-navbar .custom-collapse {
    flex-direction: column;
    align-items: stretch;
  }

  .search-bar {
    max-width: 100%;
    margin: 0.5rem 0 0.25rem 0;
    padding: 4px 8px;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
  }

  .search-icon-btn {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .search-input-field {
    font-size: 0.85rem;
    padding: 6px 4px;
  }
  .clear-btn {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .clear-btn i {
    font-size: 0.8rem;
  }

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
  }

  .main-menu .nav-link {
    width: 100%;
    padding: .55rem .5rem;
    white-space: normal;
  }

  .navbar-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
  }

  .btn-appointment {
    flex: 1;
    justify-content: center;
    margin-left: 0.5rem;
  }
}

/* =========================================
   FINAL OVERRIDE – NAVBAR SEARCH ONLY
   ========================================= */
.custom-navbar .search-bar {
  max-width: 420px;
  width: 100%;
  margin-left: 1rem;

  /* pill look */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(15,23,42,0.08);
  box-sizing: border-box;
}

/* make sure BOTH buttons are inline, not absolute */
.custom-navbar .search-bar .search-icon-btn,
.custom-navbar .search-bar .clear-btn {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;

  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* blue circular search icon */
.custom-navbar .search-bar .search-icon-btn {
  border-radius: 50%;
  background: linear-gradient(135deg, #0047ff, #00ccff);
  color: #ffffff;
}
.custom-navbar .search-bar .search-icon-btn i {
  font-size: 0.9rem;
}

/* middle input – takes all space */
.custom-navbar .search-bar .search-input-field {
  flex: 1 1 auto;
  min-width: 0;              /* prevent overflow */
  border: none;
  outline: none;
  font-size: 0.9rem;
  padding: 6px 4px;
  background: transparent;
  color: #111827;
}
.custom-navbar .search-bar .search-input-field::placeholder {
  color: #9aa4b2;
}

/* clear button stays inside pill on right */
.custom-navbar .search-bar .clear-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: none;             /* show via JS when there is text */
}
.custom-navbar .search-bar .clear-btn i {
  font-size: 0.9rem;
  color: #9aa4b2;
}

/* focus ring on whole search wrapper */
.custom-navbar .search-bar:focus-within {
  border-color: #0a66c2;
  box-shadow: 0 0 0 2px rgba(10,102,194,0.18);
}

/* ---------- mobile / tablet tweaks ---------- */
@media (max-width: 991.98px) {
  .custom-navbar .search-bar {
    max-width: 100%;
    margin: 0.5rem 0 0.25rem 0;
    padding: 4px 8px;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
  }

  .custom-navbar .search-bar .search-icon-btn,
  .custom-navbar .search-bar .clear-btn {
    width: 28px;
    height: 28px;
  }

  .custom-navbar .search-bar .search-input-field {
    font-size: 0.85rem;
    padding: 5px 4px;
  }

  .custom-navbar .search-bar .clear-btn i,
  .custom-navbar .search-bar .search-icon-btn i {
    font-size: 0.8rem;
  }
}
/* =========================================
   COMPACT NAVBAR – iPad Pro / Nest Hub
   (keep everything in one row)
   ========================================= */
@media (min-width: 992px) and (max-width: 1200px) {

  /* overall slightly smaller feel */
  .custom-navbar {
    font-size: 0.7rem;
  }

  /* logo smaller */
  .navbar-brand img {
    height: 45px;
    max-height: 45px;
  }

  /* main menu more compact */
  .main-menu {
    margin-left: 0.4rem;
  }

  .main-menu .nav-link {
    font-size: 0.75rem;
    padding: 0.25rem 0.35rem;
  }

  /* search bar narrower + tighter */
  .search-bar {
    max-width: 240px;
    margin-left: 0.3rem;
    padding: 3px 8px;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
  }

  .search-input-field {
    font-size: 0.5rem;
    padding: 4px 3px;
  }

  .search-icon-btn {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .clear-btn {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  /* cart/booking area smaller */
  .nav-cart-wrapper .nav-link {
    font-size: 0.85rem;
  }

  .btn-appointment {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .navbar-right {
    gap: 0.4rem;
  }
}




/* ==============================
   Other custom page styles (kept from your file)
   ============================== */
/* Hero slider overrides */
/* temporary debug CSS — remove or adjust after confirming */
/* public/css/hero-banner.css
   Styles for the hero/banner carousel*/*


   


/* ============================
   Global Button Styling Override
   ============================ */

/* Default Bootstrap primary button → Blue */
.btn-primary,
.btn-primary:focus,
.btn-primary:Published,
.btn-primary:visited {
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0052cc, #0099cc) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Small buttons */
.btn-sm.btn-primary {
  padding: 0.35rem 0.9rem;
  font-size: 0.875rem;
  border-radius: 20px;
}

/* Book Appointment button (merge with primary) */
.btn-appointment {
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 500;
  padding: .55rem 1.3rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-appointment:hover {
  background: linear-gradient(135deg, #0052cc, #0099cc) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 253, 253, 0.15);
  color: white !important;
}



/* Base card style */
/* package sectionn */
/* wrapper */
/* public/css/packages-row-arrows.css */

#packages {
  background-color: #f0f4f8; /* light bluish gray */
  box-shadow: inset 0 15px 30px -15px rgba(0,0,0,0.06),
              inset 0 -15px 30px -15px rgba(0,0,0,0.06);
}

/* wrapper */
.packages-row-wrapper {
  position: relative;
  overflow: visible;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
}

/* arrow buttons (rounded blue, no overlap) */
.pkg-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  border: none;
  box-shadow: 0 8px 22px rgba(13,43,85,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: transform .12s ease, opacity .12s ease;
  touch-action: manipulation;
}
.pkg-scroll-btn svg { display:block; width:18px; height:18px; }
.pkg-scroll-btn:Published { transform: translateY(-50%) scale(.98); }

/* positions */
.pkg-scroll-btn.btn-scroll-left { left: 12px; right: auto; }
.pkg-scroll-btn.btn-scroll-right { right: 12px; left: auto; }

/* subtle hover nudge */
.pkg-scroll-btn.btn-scroll-left:hover  { transform: translateY(-50%) translateX(3px);  }
.pkg-scroll-btn.btn-scroll-right:hover { transform: translateY(-50%) translateX(-3px); }

/* horizontal row */
.row.packages-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-left: 72px;
  padding-right: 72px;
  margin: 0;
  align-items: stretch; /* 🔑 make cards equal height */
}

/* hide native scrollbar visually while preserving scroll */
.row.packages-grid::-webkit-scrollbar { height: 0; display: none; }
.row.packages-grid { -ms-overflow-style: none; scrollbar-width: none; }

/* pack column width */
.pack-col {
  flex: 0 0 auto;
  width: 260px;
  max-width: 260px;
  box-sizing: border-box;
  display: flex;            /* 🔑 make child card stretch */
  align-items: stretch;
}

/* card */
.package-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(13,43,85,0.06);
  display:flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 auto;
  min-height: 320px;
}

/* image */
.package-card .card-img-top {
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

/* body */
.package-card .card-body {
  padding:0.9rem;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
  flex:1 1 auto;
}
.package-card .card-title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  background: linear-gradient(180deg,#ff2f6d,#e41f5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* description clamp */
.small-desc { font-size:0.875rem; 
  
   display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }

/* info box */
.info-row.single-report { margin-top: 0.2rem; display:block; }
.info-box { background:#f9fbfe; border-radius:8px; padding:.45rem .55rem; box-shadow:0 4px 14px rgba(13,43,85,0.02); }
.info-title { font-size:.72rem; color:#6b7280; font-weight:700; }
.info-value { font-weight:700; color:#0d2b55; }

/* bottom section (price + info + book) */
.card-body-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto; /* push bottom section down */
  width: 100%;
}

.price-and-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  flex: 1 1 auto;
}

.price-block-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.final-price { font-size:1.15rem; font-weight:900; color:#0d2b55; }
.mrp { text-decoration: line-through; color:#6b7280; font-size:0.85rem; }
.save-percent { display: inline-block;
    font-size: .82rem;
    font-weight: 800;
    color: #0f9d58;
    background: #e9f7ec;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(15, 157, 88, 0.06);
     }

/* book button */
.book-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.btn-book-lg {
  background:linear-gradient(135deg, #0066ff, #00ccff) !important;
  color:#fff;
  border:none;
  border-radius:10px !important;
  box-shadow:0 8px 20px rgba(228,31,92,0.14);
  font-weight:800 !important;
  text-decoration:none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 6px;
  min-width: 110px;
  height: 44px;
  padding: 0 16px !important;
  font-size: 0.95rem !important;
  line-height: 1;
  box-sizing: border-box;
}
.btn-book-lg.btn { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Small View Info button */
.btn-info-sm {
  display: inline-block !important;
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  color: #fff !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 0.35rem 0.75rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  
  cursor: pointer !important;
}


/* Optional: slightly reduce font-size on narrow screens to avoid wrap */
@media (max-width: 420px) {
  .btn-book-lg { min-width: 96px; height: 40px; font-size: 0.88rem !important; padding: 0 12px !important; }
}

/* ===== More Packages Button ===== */
.btn-more {
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  padding: .6rem 1.2rem !important;
  border-radius: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  font-weight: 700 !important; /* bold text */
  color: #000 !important; /* black text */
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease-in-out !important;
}

/* ===== Hover Effect ===== */
.btn-more:hover {
  background: linear-gradient(135deg, #0052cc, #00b8e6) !important; /* slightly deeper gradient */
  color: #fff !important; /* switch to white text for contrast */
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.5) !important; /* aqua-blue glow */
  text-decoration: none !important;
}

/* ===== Active (Click Feedback) ===== */
.btn-more:active {
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
  background: linear-gradient(135deg, #0047b3, #00a3cc) !important; /* pressed color */
}


/* responsive tweaks */
@media (max-width: 900px) {
  .pack-col { width: 240px; max-width:240px; }
  .package-card { min-height: 360px; }
  .row.packages-grid { padding-left: 56px; padding-right: 56px; }
}
@media (max-width: 600px) {
  .pkg-scroll-btn { width:44px; height:44px; left:8px; right:8px; }
  .pack-col { width: 220px; max-width:220px; }
  .row.packages-grid { padding-left: 48px; padding-right: 48px; }
}

/* accessibility focus */
#packagesRow:focus { outline: 3px solid rgba(13,43,85,0.08); outline-offset: 6px; }



/* ====================
   Package all section
   ==================== */

   /* 🔹 All Packages Section (screenshot style) */



   
#all-packages .row.g-4 > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
  
     
}

#all-packages .row.g-4 {
  margin-left: -12px;
  margin-right: -12px;
}

/* Card */
#all-packages .package-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#all-packages .package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Image */
#all-packages .package-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Card body */
#all-packages .package-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title (pink) */
#all-packages .package-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color:#29247b ; /* pink */
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Description (gray) */
#all-packages .package-card .small-desc {
  font-size: 0.875rem;
 
  margin-bottom: 12px;
  line-height: 1.5;
}

/* "View Info" link (green) */
#all-packages .package-card .view-info-link {
  color: linear-gradient(135deg, #0066ff, #00ccff) !important;;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}



/* Price section */
#all-packages .package-card .final-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0e3f6c; /* dark blue */
}

#all-packages .package-card .mrp-wrap {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

#all-packages .package-card .mrp {
  text-decoration: line-through;
  color: #999;
}

#all-packages .package-card .save-percent {
  
    display: inline-block;
    font-size: .82rem;
    font-weight: 800;
    color: #0f9d58;
    background: #e9f7ec;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(15, 157, 88, 0.06);
}

/* Bottom row */
#all-packages .package-card .price-book-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

/* Book button  */
#all-packages .package-card .btn-book-lg {
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  color: #fff;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease;
  white-space: nowrap;
}

#all-packages .package-card .btn-book-lg:hover {
  background: #d81b60;
}



/* ====================
   Lab Tests Section
   ==================== */
/* ---------- Package-like styles for lab cards ---------- */
/* Package-like card (no image) */

/* lab-tests.css
   Compact package-style test cards (used by the home tests section)
   Paste into public/css/lab-tests.css (or your chosen css folder)
*
/* ---------------------------
  WellCare lab test card styles
  Merged: original visual rules + equal-height & clamp fixes
  Paste this at the end of your main stylesheet
--------------------------- */
/* lab-tests.css — Equal-height cards + 2-line clamp + visual theme */
/* lab-tests.css
   4-up grid on desktop, responsive, 2-line desc clamp, title autoshrink
*/
/* public/css/lab-tests.css
   4-up grid, title clamp (2 lines), 2-line desc clamp, 60-char preview styling
*/

/* Section background */
.lab-tests {
 margin-top:20px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  box-sizing: border-box;
 
    background:#f0f4f8;/* light bluish gray */}
 

/* Row and grid spacing */
/* .lab-tests .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* allow one card to expand only */
  /* gap: 24px;
  margin-left: 0 !important;
  margin-right: 0 !important;
} */ */

/* Column responsive sizes (1 / 2 / 4) */
/* .lab-tests .col-card {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .lab-tests .col-card { flex: 1 1 calc(50% - 24px); max-width: calc(50% - 24px); }
}
@media (min-width: 992px) {
  .lab-tests .col-card { flex: 1 1 calc(25% - 24px); max-width: calc(25% - 24px); }
} */

/* Card shell */
.package-style-card {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f0e9ef;
  transition: transform .12s ease, box-shadow .12s ease;
  display: flex !important;
  flex-direction: column !important;
  flex: 0 1 auto !important;
  box-sizing: border-box;
  overflow: visible;
}
.package-style-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(33,45,70,0.06); }

/* Card body and footer pinned */
.package-style-card .card-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto;
  padding: 12px 14px !important;
  overflow: visible;
}
.card-footer-block { margin-top: auto; z-index: 2; }

/* Title: clamp to exactly 2 lines using CSS */
.package-title {
  color:#e91e63;
  font-weight:800;
  /* responsive size; tweak if you want larger/smaller */
  font-size: clamp(0.95rem, 1.8vw, 1.14rem);
  line-height: 1.15;
  margin-bottom: 8px;
  margin-top: 2px;
  word-break: break-word;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;    /* LIMIT to 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Description: 2-line clamp */
.package-desc {
 
  overflow: hidden;
  transition: max-height .25s ease, padding .18s ease;
  white-space: normal;
  line-height: 1.25em;
  position: relative;
  z-index: 1;
}
.package-desc.clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(1.25em * 2 + 6px);
  text-overflow: ellipsis;
}
.package-desc.expanded {
  -webkit-line-clamp: unset;
  max-height: 1600px;
}

/* Visual elements */
.highlight-pill.popular { display:inline-block; font-size:.78rem; font-weight:700; padding:6px 12px; border-radius:18px; color:#0074f0; background:#fff0f5; margin-bottom:8px; }
.disc-price {     font-size: 1.15rem;
    font-weight: 900;
    color: #0d2b55; }
.mrp { color:#8f8f97; text-decoration:line-through; font-size:.9rem; margin-right:8px; }
.percent-off { display:inline-block; font-size:.82rem; font-weight:800; color:#0f9d58; background:#e9f7ec; padding:6px 10px; border-radius:999px; box-shadow:0 4px 10px rgba(15,157,88,0.06); margin-left:8px; }

.btn-package-book {
  background:linear-gradient(135deg, #0066ff, #00ccff) !important;color:#fff; border:none; padding:.45rem .85rem; border-radius:8px; font-weight:800;
  box-shadow:0 8px 18px rgba(255,90,74,0.12); white-space:nowrap; display:inline-block;
}
.btn-package-book:hover { transform:translateY(-2px); box-shadow:0 10px 22px rgba(255,90,74,0.12); }

.read-toggle { cursor:pointer; border:none; background:transparent; color:#2074f2; padding:0; }

.read-toggle:focus { outline:none; text-decoration: underline; }
/* More Tests button */
/* More Tests button */
/* ===== More Tests Button ===== */
.btn-more-tests {
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  padding: .6rem 1.2rem !important;
  border-radius: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  font-weight: 700 !important; /* bold */
  color: #000 !important; /* black text */
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease-in-out !important;
}

/* ===== Hover Effect ===== */
.btn-more-tests:hover {
  background: linear-gradient(135deg, #0052cc, #00b8e6) !important; /* slightly deeper gradient */
  color: #fff !important; /* white text for contrast */
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.5) !important; /* soft blue-teal glow */
  text-decoration: none !important;
}

/* ===== Active (Click Feedback) ===== */
.btn-more-tests:active {
  transform: translateY(0) scale(0.97) !important; /* press feedback */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
  background: linear-gradient(135deg, #0047b3, #00a3cc) !important; /* pressed color */
}



/* Small device tweaks */
@media (max-width:576px) {
  .package-style-card .card-body { padding: 10px !important; }
  .package-desc { line-height: 1.35em; }
  .package-desc.clamped { max-height: calc(1.35em * 2 + 6px); }
  .package-title { font-size: 1rem; }
}

/* Accessibility focus */
.btn-package-book:focus, .read-toggle:focus { box-shadow: 0 0 0 3px rgba(13,110,253,0.15); outline: none; }



/* ===== Global Gradient Button Override (Bootstrap .btn-primary) ===== */
.btn-primary {
  background: linear-gradient(135deg, #0066ff, #00ccff) !important;
  padding: .6rem 1.2rem !important;
  border-radius: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  color: #000 !important; /* black text */
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease-in-out !important;
  box-shadow: 0 0 0 transparent !important;
}

/* ===== Hover Effect ===== */
.btn-primary:hover {
  background: linear-gradient(135deg, #0052cc, #00b8e6) !important; /* slightly darker gradient */
  color: #fff !important; /* white text for contrast */
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.5) !important; /* soft glow */
  text-decoration: none !important;
}

/* ===== Active (Pressed State) ===== */
.btn-primary:active {
  transform: translateY(0) scale(0.97) !important; /* press feedback */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
  background: linear-gradient(135deg, #0047b3, #00a3cc) !important; /* pressed color */
  color: #fff !important;
}

/* ===== Focus (Accessibility) ===== */
.btn-primary:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.35) !important;
}

/* ===== Disabled State ===== */
.btn-primary:disabled,
.btn-primary.disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  background: linear-gradient(135deg, #9ecaff, #b5eaff) !important;
  color: #333 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ===== Small Device Tweaks ===== */
@media (max-width: 576px) {
  .btn-primary {
    padding: 0.55rem 1rem !important;
    font-size: 0.95rem !important;
  }
}


/* ===== Modern Rounded Search Bar ===== */
.search-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px; /* full rounded */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 0 10px 0 0;
  width: 100%;
  max-width: 600px;
  transition: box-shadow 0.2s ease;
}

.search-bar:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.search-icon-btn {
  background: linear-gradient(135deg, #0047ff, #00ccff);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-icon-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 8px rgba(0, 71, 255, 0.3);
}

.search-input-field {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 999px;
  color: #333;
}

.search-input-field::placeholder {
  color: #999;
  font-size: 0.95rem;
}
.clear-btn {
  color: #888;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}
.clear-btn:hover {
  color: #333;
}
.clear-btn {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #777;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.clear-btn:hover {
  color: #333;
}

/* Hide native "x" / clear controls in search inputs (Chrome, Edge, Safari) */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* Hide IE/Edge clear button */
input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* Make sure input has no extra native padding so our button sits cleanly */
.search-input-field {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 90px; /* room for custom clear button + some gap */
  box-sizing: border-box;
}

/* Custom clear button styling (adjust position if you change button sizes) */
.clear-btn {
  position: absolute;
  right: 56px;          /* leave room for search-icon button at far right if present */
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 1.05rem;
  cursor: pointer;
  display: none;       /* default hidden; JS will toggle */
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
}

.clear-btn:hover { color: #333; background: rgba(0,0,0,0.03); }

/* If your search icon is on the left, move clear-btn to the right as above.
   If your search icon is also on the right, adjust right: 96px (or similar). */




/* ❌ Clear (cancel) button — positioned at far right corner */
.clear-btn {
  position: absolute;
  right: 12px;              /* 🔹 sits at the far right corner */
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;           /* hidden until user types */
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}