@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #2b2b2b;
  background: #FAFAFBFF;
  line-height: 1.6;
}

/* =====================
   HEADER
===================== */
.header {
  background: #FFFFFFFF;
  border-bottom: 1px solid #eee;
}

.hedare-section {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
}

/* =====================
   HERO SECTIONform-card
===================== */

/* HERO SECTION */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #FAFAFBFF;

}

.hero-container {
  width: 100%;
  display: flex;
  background-image: url("/assets/images/blood test.jpg");
  background-size: cover;        /* 🔥 important */
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* LEFT IMAGE */
.hero-left {
  width: 70%;
  min-height: 100vh;
  position: relative;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay h1 {
  font-size: 48px;
  font-weight: 700;
  color: #171A1FFF;
  margin-bottom: 25px;
}

.hero-overlay h1 span {
  color: #2D68ADFF;
  font-weight: 700;
}

.hero-overlay ul {
  padding-left: 20px;
}

.hero-overlay li {
  font-size: 18px;
  margin-bottom: 10px;
  color: rgb(57, 57, 57);
  font-weight: 400;
  list-style-type:circle;
}


/* RIGHT FORM */
.hero-right {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -80px; /* overlap effect */
  z-index: 999;
}

.form-card {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.form-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* CHECKBOX FIXED SIZE */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.checkbox input {
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 2px;
}

/* BUTTON */
.primary-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #2D68AD;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.primary-btn:hover {
  background: #245b96;
}

/* BADGES */
.badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

.badges span {
  border: 1px solid #dee1e6;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .hero-container {
    flex-direction: column;
  }

  .hero-left {
    width: 100%;
    min-height: 60vh;
  }

  .hero-overlay {
    padding: 40px;
  }

  .hero-right {
    width: 100%;
    margin-left: 0;
    margin-top: -60px;
  }
}

@media (max-width: 576px) {

  .hero-overlay h1 {
    font-size: 28px;
  }

  .hero-overlay li {
    font-size: 15px;
  }

  .form-card {
    margin: 0 15px;
  }
}

/* =====================
   SLIDER INFO BAR
===================== */
.slider {
  width: 100%;
  height: auto;
  /* background: #245b96; */
  overflow: hidden;
  display: flex;
  padding: 5px;
  align-items: center;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.slide {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-right: 25px;
}

.slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
}

/* 🔁 TRUE INFINITE LOOP */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

slider-section{
  background-color: transparent;
}

/* =====================
   WHY CHOOSE US
===================== */
.choose-us {
  padding: 70px 0 0 0;
  background: #f9fbff;
}

.choose-us-section .col-md-6{
  height: 196px;
}

.choose-us h2 {
  color: #245b96;
  font-size: 36px;
  font-weight: 600;
}

.choose-us h3{
  font-size: 20px;
  color: #171A1FFF;
}

.choose-us p {
  color: #565D6DFF;
  font-size: 14px;
  text-align: center;
}

/* =====================
   Profiles
===================== */
.profile {
  padding: 70px 0 30px 0;
  background: #FAFAFBFF;
}

.profile-section {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.profile-section h2{
  color: #245b96;
  font-size: 36px;
}

/* =====================
   PACKAGES
===================== */
.package {
  padding: 70px 0 30px 0;
  background: #FAFAFBFF;
}

.package-section {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

}

.package-section h2{
  color: #245b96;
  font-size: 36px;
}

.package .col-md-6 .package-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  height: 470px;
  border:1px solid rgb(217, 216, 216);
  /* box-shadow: 1px 1px 1px #00000000, 0px 1px 3px #171a1f12; */
}

.package .col-md-6 .package-card:hover{
  border:1px solid rgb(104, 103, 103,0.5);
} 

.package-card h4{
  color: #171A1FFF;
  font-size: 24px;
}

.package ul  li {
  padding-left: 18px;
  color: #565D6DFF;
  font-size:14px;
  font-weight: 500;
}

.package-card h5{
  color: #2D68ADFF;
  font-size: 30px;
}


.package .book {
  color: #2D68ADFF;
  border-radius: 12px;
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid #2D68ADFF;
  font-weight: 600;
  background-color: #FFFFFF;
  transition: all 0.3s ease; /* 👈 smooth hover */
}

.package .book:hover {
  background-color: #2D68ADFF;
  color: #ffffff;
}

.tipMessage {
  position: absolute;
  margin-left: -25px;
  /* top: 20px; adjust as needed */
  background-color: #245b96;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #FFFFFFFF;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
}

.tipMessage p {
  margin: 0;
}


/* =====================
   TESTIMONIALS
===================== */
.testimonial-section {
  padding: 70px 0 50px 0;
  background-color:#FAFAFBFF;
}

.testimonial-section h2{
  color: #245b96;
  font-size: 36px;
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  background-color: white;
}

.testimonial-card {
  min-width: 33.33%;
  padding: 15px;
  border:1px solid rgba(227, 226, 226, 0.7);
  border-radius: 12px;
  background-color: #FFFFFF;
}

.testimonial-card p {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  font-size: 18px;
  color: #171A1FFF;
}

.testimonial-card h5{
  color: #171A1FFF;
  font-size: 16px;
}

.user {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.user img {
  border-radius: 50%;
}

/* Slider Buttons */
.nav-btn {
  position: absolute;
  top: 45%;
  background: #1a73e8;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.prev { left: -10px; }
.next { right: -10px; }

/* =====================
   FAQ
===================== */
.faq {
  padding: 70px 0 30px 0;
  background-color:#FAFAFBFF;
}

.faq-section  h2{
  color: #245b96;
  font-size: 36px;
}

.faq-section .accordion-button{
  font-size: 18px !important;
}

.accordion-body strong{
 font-size: 14px;
 color: #565D6DFF;
}

/* =====================
   FOOTER
===================== */

.footer{
  padding: 70px 0 30px 0;
  background-color:#FFFFFFFF;
}

.footer-nav{
  border-bottom: 1px solid #DEE1E6FF;
  padding-bottom: 20px;
}

.footer-tag-line{
  font-size: 14px;
  color: #565D6DFF;
}

.footer-nav h4{
  font-size: 18px;
  color: #171A1FFF;

}

.footer-nav ul li{
  color: #565D6DFF;
  font-size: 16px;
}

.copyright{
  color: #565D6DFF;
}


/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero {
    background: #f4f8ff;
  }

  .testimonial-card {
    min-width: 50%;
  }
}

@media (max-width: 576px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .badges {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

/* form popup */
/* POPUP BACKDROP */
#homeCollectionPopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1099;
}

/* FORM CARD BASE */
.form-card {
  border-radius: 10px;
}

/* INPUTS */
.form-card input {
  font-size: 14px;
}

/* ===== MOBILE (≤576px) ===== */
@media (max-width: 576px) {
  .form-card-2 {
    width: 92% !important;
    padding: 15px !important;
  }

  .form-card-2 p {
    font-size: 15px;
  }

  .primary-btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* ===== TABLET (577px – 992px) ===== */
@media (min-width: 577px) and (max-width: 992px) {
  .form-card-2 {
    width: 55% !important;
    padding: 18px !important;
  }

  .form-card p {
    font-size: 16px;
  }
}

/* ===== LAPTOP / DESKTOP (≥993px) ===== */
@media (min-width: 993px) {
  .form-card-2 {
    width: 22% !important;
  }
}
