* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

img {
  max-width: 100%;
}

a,
span,
small {
  text-decoration: none;
  display: inline-block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

/* ================= HEADER ================= */

.header-section {
  padding: 10px 0;
  background: #fff;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

}

.header-section.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* 🔥 ADD THIS */
  width: 100%;
  z-index: 999;
}

.logo-sec img {
  max-width: 100px;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu-list li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

.menu-list li a:hover {
  color: #17a2b8;
}

.ham {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  margin-left: 15px;
}

.ham span {
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  transition: 0.4s;
}

.ham.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.ham.active span:nth-child(2) {
  opacity: 0;
}

.ham.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.search-box {
  background: #fff;
  display: flex;
  position: relative;
  overflow: visible;
  /* IMPORTANT */
}

#searchSuggestions {
  position: absolute;
  top: 100%;
  /* input ke just niche */
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 15px;
  margin-top: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.suggestion-item {
  padding: 10px;
}

.suggestion-category {
  display: none;
}

.search-box input {
  border: 1px solid #ccc;
  padding: 10px 15px;
  flex: 1;
  outline: none;
}

.search-box button {
  background: #021b4d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.banner-btn {
  background: #021b4d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #0f5c75;
}

.banner-right .circle-image {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #021b4d;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= FIXED MEGA MENU ================= */

.mega-parent {
  position: static;
}

.header-section {
  position: relative;
  z-index: 1000;
}

.mega-column a {
  padding: 5px 0;
  font-size: 13px;
  font-weight: 600;
}

.mega-parent>a::after {
  content: "▾";
  float: right;
  transition: .3s;
}

.mega-parent.open>a::after {
  transform: rotate(180deg);
}

/* ================= MODERN BANNER ================= */

.labx-hero {
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.labx-modern-banner {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* Background */
.labx-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.8s ease;
  z-index: -1;
}

.labx-bg-dna {
  background: radial-gradient(circle at 30% 40%,
      #1aa6b7 0%,
      #0f5c75 60%,
      #021b4d 100%);
  opacity: 1;
}

.labx-bg-doctor {
  background: radial-gradient(circle at 30% 40%,
      #4a6cf7 0%,
      #021b4d 60%,
      #000 100%);
  opacity: 0;
}

.labx-hero.theme-doctor .labx-bg-dna {
  opacity: 0;
}

.labx-hero.theme-doctor .labx-bg-doctor {
  opacity: 1;
}

/* Layout */
.labx-hero-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.labx-content {
  max-width: 520px;
}

.labx-sub-heading {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #17d3ff;
  font-weight: 600;
  margin-top: 15px;
}

.labx-content h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 15px 0;
  font-weight: 700;
}

.labx-content h1 span {
  color: #17d3ff;
  font-size: 45px;
}

.labx-content p {
  margin: 20px 0 35px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e5f7ff;
}

.labx-cta-btn {
  background: #ffffff;
  color: #021b4d;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.labx-cta-btn:hover {
  background: #17d3ff;
  color: #021b4d;
}

/* Slider */
.labx-slider {
  position: relative;
  width: 420px;
  height: 520px;
}

.labx-slide {
  position: absolute;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.labx-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.labx-slide img {
  max-width: 100%;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s ease-out;
}

/* ================= RISK SECTION ================= */
.pacages-body-chackUp {
  padding: 80px 0;
  ;
}

.packages-head {
  text-align: center;
}

.fullbody-section {
  padding: 80px 0;
  text-align: center;
  background: #f8fbff;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a1f44;
}

.section-sub {
  max-width: 850px;
  margin: auto;
  color: #666;
  margin-bottom: 60px;
}

.package-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.package-card ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.test-price {
  color: #d9534f;
  text-decoration: line-through;
  font-size: 13px;
}

/* ===== MODERN CARD ===== */

.package-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #02A3B6, #0d6efd);
}

.package-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Package Name */

.package-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 5px;
}

.parameters-count {
  font-size: 15px;
  color: #02A3B6;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Pricing */

.price {
  margin-bottom: 15px;
}

.price strong {
  font-size: 24px;
  color: #0d6efd;
  margin-right: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

/* Button */

.book-btn {
  background: linear-gradient(90deg, #02A3B6, #0d6efd);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

/* Test List */

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.package-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  color: #444;
}

.package-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #02A3B6;
  font-size: 13px;
}



/* cards grid */
#packageContainer{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  align-items:stretch;
}

/* card */
.package-card{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:20px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* test list fixed area */
.test-list{
  list-style:none;
  padding:0;
  margin-top:15px;
  height:210px;        /* SAME HEIGHT FOR ALL CARDS */
  overflow:hidden;
  flex-grow:1;
}

/* when expanded */
.test-list.scroll-active{
  overflow-y:auto;
}

/* list items */
.test-list li{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  border-bottom:1px solid #eee;
}

/* button alignment */
.view-more-btn{
  margin-top:auto;
  align-self:flex-start;
}

.book-btn{
  margin-bottom:10px;
}

button.view-more-btn {
    background: linear-gradient(90deg, #02A3B6, #0d6efd);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 20px 0;
}

/* ===== Footer Category 2 Column Layout ===== */

#footerCategoryLinks {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2px 20px;
  padding-left: 0;
}

#footerCategoryLinks li {
  list-style: none;
}

#footerCategoryLinks a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

#footerCategoryLinks a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-section {
  background: #111;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-section h5 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #13768c;
}

.location-list {
  columns: 2;
  column-gap: 20px;
}

/* =====================================
   FOOTER SEARCH BOX
===================================== */

.footer-section .search-box {
  position: relative;
  width: 100%;
}

.footer-section .search-box input {
  width: 100%;
  height: 45px;
  padding: 10px 50px 10px 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-section .search-box input:focus {
  border-color: #0ea5a8;
  box-shadow: 0 0 0 2px rgba(14, 165, 168, 0.15);
}


/* SEARCH BUTTON */

.footer-section .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 45px;
  width: 50px;
  border: none;
  background: #0ea5a8;
  color: #fff;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.footer-section .search-btn:hover {
  background: #0b8c8f;
}


/* =====================================
   SEARCH SUGGESTIONS DROPDOWN
===================================== */

.search-suggestions {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 9999;
}


/* EACH ITEM */

.suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
  transition: 0.25s;
}

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

.suggestion-item strong {
  display: block;
  font-size: 14px;
  color: #222;
}

.suggestion-category {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.suggestion-item:hover {
  background: #f5fbfb;
}

.no-result {
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: #999;
}


/* =====================================
   SCROLLBAR STYLE
===================================== */

.search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #0ea5a8;
  border-radius: 10px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* about section */
.about-section {
  padding: 80px 0 0;
  background: #f9fbff;
}

.about-img {
  height: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.about-content h2 span {
  color: #13768c;
  font-size: 32px;
}

.about-features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about-features i {
  color: #13768c;
  margin-right: 10px;
}

/* conatact section */
.contact-modern {
  padding: 80px 0;
  background: #f2f2f2;
}

.contact-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.contact-image {
  flex: 1;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
}

.contact-form {
  flex: 1;
  padding: 50px;
}

.contact-form h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  outline: none;
}

.checkbox {
  margin: 15px 0;
  font-size: 14px;
}

.checkbox a {
  color: #02a3b6;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #02a3b6;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #02a3b6;
}

/* Bottom Cards */

.contact-info-cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  flex: 1;
  background: #02a3b6;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
}

.info-card a {
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 95%;
  }

  .mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    top: 100%;
    width: 100%;
    background: #f4f4f4;
    padding: 50px 40px;
    justify-content: space-between;
    display: flex;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .mega-menu::-webkit-scrollbar {
    width: 6px;
  }

  .mega-menu::-webkit-scrollbar-thumb {
    background: #02A3B6;
    border-radius: 10px;
  }

  .mega-menu::-webkit-scrollbar-track {
    background: #eee;
  }

}

@media (max-width: 1280px) {
  .package-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 1024px) {
  .search-box input {
    width: 220px;
  }

  .menu-list {
    gap: 15px;
  }

  .menu-list li a {
    font-size: 14px;
  }

  .package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .banner-content h1 {
    font-size: 29px;
    font-weight: 700;
  }

  .banner-content h1 span {
    font-size: 38px;
    color: #021b4d;
  }
}

@media (max-width: 991px) {
  .mega-menu {
    display: none;
    position: static;
    width: 100%;
  }

  li.mega-parent.open>.mega-menu {
    display: block;
    height: auto;
    max-height: 50vh;
    overflow-y: auto;
    background: #f4f4f4;
  }

  .mega-parent.open>a::after {
    transform: rotate(180deg);
  }

  .mega-menu {
    position: static;
    width: 100%;
    flex-direction: column;
    padding: 15px 0 0 10px;
    box-shadow: none;
    display: none;
    background: transparent;
    max-height: 70vh;
    overflow-y: auto;
  }

  .mega-parent.active .mega-menu {
    display: flex;
  }

  .mega-column {
    margin-bottom: 10px;
  }

  .mega-column a {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .labx-hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .labx-content h1 {
    font-size: 2.8rem;
  }

  .banner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .banner-left {
    display: none;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-right .circle-image {
    width: 250px;
    height: 250px;
  }

  .logo-sec img {
    max-width: 100px;
  }

  .menu-sec {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    padding-top: 80px;
    z-index: 1000;
  }

  .menu-sec.active {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  div#searchSuggestionsMobile {
    position: absolute;
    top: 100%;
    background: #fff;
    z-index: 99;
    width: 100%;
  }

  .about-img img {
    height: auto;
  }

  .contact-box {
    flex-direction: column;
  }

  .contact-image img {
    border-radius: 20px 20px 0 0;
  }

  .contact-info-cards {
    flex-direction: column;
  }

  .contact-form {
    padding: 20px;
    width: 100%;
  }

  .menu-sec {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    padding-top: 80px;
    z-index: 1000;
  }

  .menu-sec.active {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
  }

  div#packageImage {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .package-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }

  .logo-sec img {
    max-width: 100px;
  }

  .footer-section .search-box input {
    height: 42px;
    font-size: 13px;
  }

  .footer-section .search-btn {
    height: 42px;
    width: 45px;
  }

  .labx-content h1 {
    font-size: 2rem;
  }

  .labx-content h1 span {
    color: #17d3ff;
    font-size: 35px;
  }

  .labx-modern-banner {
    min-height: auto;
    padding: 50px 0;
  }



  .package-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  div#searchSuggestionsMobile {
    position: absolute;
    top: 100%;
    background: #fff;
    z-index: 99;
    width: 100%;
  }

  .banner-content h1 {
    font-size: 29px;
  }

  .labx-slider {
    width: 100%;
  }

  .labx-slide img {
    width: 100%;
  }
}

/* Mobile me 1 column */
@media (max-width: 576px) {
  #footerCategoryLinks {
    grid-template-columns: 1fr;
  }
}