/* =========================
   Montserrat Font Family
   ========================= */

   @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
  }
  :root {
    --font-primary: 'Montserrat', sans-serif;
  }
  
  body {
    font-family: var(--font-primary);
    font-weight: 400;
    margin: 0px;
  }
    

  /* =========================
   Header Base
   ========================= */

.site-header {
    /* border-bottom: 1px solid #eee; */
    position: relative;
  }
  
  .header-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo */
  .logo img {
    height: 40px;
  }
  
  /* =========================
     Desktop Navigation
     ========================= */
  
  .desktop-nav ul {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .desktop-nav a {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
  }

  .desktop-nav a:hover {
    color: #08879F;
  }
  
  .desktop-nav a.active {
    color: #08879F;
  }
  
  /* Buttons */
  .header-buttons {
    display: flex;
    gap: 14px;
  }
  
  .btn {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .btn-call {
      border: 1px solid;
    background: linear-gradient(90deg, #104F5B 0%, #091419 100%);
  }

  .btn-call:hover {
      color: #091419;
      background: white;
      border: 1px solid black;
  }
  
  .btn-whatsapp {
    background: #0B9E1C;
    border: 1px solid;
  }

  .btn-whatsapp:hover {
      background: white;
      color: #0B9E1C;
      border: 1px solid #0B9E1C;
  }
  
  /* =========================
     Burger
     ========================= */
  
  .burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .burger span {
    width: 22px;
    height: 2px;
    background: #000;
  }
  
  /* =========================
     Mobile Menu
     ========================= */
  
  .mobile-top-buttons {
    display: none;
    justify-content: center;
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid #ddd;
  }
  
  .mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .mobile-nav a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
  
  .mobile-nav a.active {
    color: #08879F;
  }
  
  /* =========================
     Responsive
     ========================= */
  
  @media (max-width: 900px) {
  
    .desktop-nav,
    .header-buttons {
      display: none;
    }
  
    .burger {
      display: flex;
    }
  
    .mobile-top-buttons {
      display: flex;
    }
  
    .mobile-nav.active {
      display: block;
    }
  }
  /* =========================
   CTA SECTION
   ========================= */

.cta-section {
  /* margin-top: 20px; */
  padding-top: 20px;
    position: relative;
    background: linear-gradient(180deg, #194A6E 0%, #4286B4 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
  }
  
  /* Background Image */
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/backgrounds/footer-contact-bg.png') center/cover no-repeat;
    opacity: 0.8;
    z-index: 2;
  }
  
  /* Overlay */
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(25, 74, 110, 0.9) 0%,
      rgba(66, 134, 180, 0.9) 100%
    );
    z-index: 1;
  }
  
  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    margin: 0 auto;
    padding: 90px 20px;
  }
  
  /* Main Heading */
  .cta-title {
    color: #FFF;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 16px;
  }
  
  /* Subtitle */
  .cta-subtitle {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 36px;
  }
  
  /* Buttons Wrapper */
  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  
  /* Buttons Base */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.10);
    white-space: nowrap;
  }
  
  /* Book Appointment */
  .cta-btn-book {
    background: #FFF;
    color: #000;
  }
  
  /* Call Button */
  .cta-btn-call {
    background: rgba(217, 217, 217, 0.14);
    border: 1px solid #FFF;
    color: #FFF;
  }
  
  .cta-call-icon {
    display: flex;
    align-items: center;
  }
  
  /* Bottom Note */
  .cta-note {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
  }
  
  /* =========================
     MOBILE
     ========================= */
  
  @media (max-width: 768px) {
  
    .cta-inner {
      padding: 70px 16px;
    }
  
    .cta-title {
      font-size: 26px;
      line-height: 32px;
    }
  
    .cta-subtitle {
      font-size: 14px;
    }
  
    .cta-actions {
      flex-direction: column;
      gap: 14px;
    }
  
    .cta-btn {
      justify-content: center;
    }
  }
  
  /* =========================
   ACTUAL FOOTER
   ========================= */

.main-footer {
  background: #0F3D5E;
  color: #fff;
  font-family: Montserrat;
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* Logo */
.footer-logo {
  width: 150px;
}

/* Description */
.footer-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 18px;
  margin-bottom: 18px;
  width: 260px;
}
/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); /* soft circle bg */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

/* Headings */
.footer-heading {
  color: #FFF;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 14px;
}

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

.footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  line-height: 20px;
  text-decoration: none;
}

/* Contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  line-height: 18px;
  margin-bottom: 10px;
}

.footer-contact-item img {
  width: 13px;
  margin-top: 5px;
}

/* Emergency */
.emergency-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 30px;
  border-radius: 7px;
  background: #35FF0CE3;
  color: #104F5B;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 0 4px 4px rgba(0,0,0,0.10);
}

/* Divider */
.footer-divider {
  border-top: 2px solid rgba(255,255,255,0.15);
}

/* Bottom */
.footer-bottom {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}

/* =========================
   MOBILE FOOTER
   ========================= */

@media (max-width: 900px) {

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
/* =========================
   ACTUAL FOOTER
   ========================= */

   .main-footer {
    background: #0F3D5E;
    font-family: Montserrat;
    color: #fff;
  }
  
  /* INNER */
  .footer-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
  }
  

  
  /* HEADINGS */
  .footer-heading {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  /* LINKS */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li a {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    line-height: 20px;
    text-decoration: none;
  }
  
  /* CONTACT */
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    line-height: 18px;
    margin-bottom: 10px;
  }
  
  .footer-contact-item img {
    width: 13px;
    margin-top: 5px;
  }
  
  /* EMERGENCY BADGE */
  .emergency-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 30px;
    border-radius: 7px;
    background: #35FF0CE3;
    color: #104F5B;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 4px 4px rgba(0,0,0,0.10);
  }
  
  /* FULL WIDTH DIVIDER */
  .footer-line-full {
    width: 100%;
    border-top: 2px solid rgba(255,255,255,0.15);
  }
  
  /* FOOTER BOTTOM */
  .footer-bottom {
    max-width: 1150px;
    margin: 0 auto;
    padding: 16px 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
  }
  
  .footer-bottom-left p {
    margin: 0;
    line-height: 16px;
  }
  
  .footer-disclaimer {
    margin-top: 6px;
  }
  
  .footer-bottom-right {
    white-space: nowrap;
  }
  
  /* =========================
     MOBILE
     ========================= */
  
  @media (max-width: 900px) {
  
    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }
  

  
    .footer-contact-item {
      justify-content: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }
/* =========================
   HERO SECTION
   ========================= */

   .hero-section {
  }
  
  .hero-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
  }
  
  /* CARD BASE */
  .hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    max-height: 450px;
  }
  
  /* =========================
     GIRL CARD
     ========================= */
  
  .hero-girl-card {
    background: #4B168C;
    /* padding: 40px; */
    color: #fff;
  }
  
  .hero-bg-text {
    position: absolute;
    top: -50px;
    left: 30px;
    font-size: 130px;
    font-weight: 800;
    line-height: 1;
    z-index: 1;
    white-space: nowrap;
  
    /* outline */
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #ffffff;
  
    width: fit-content;
  }
  
  /* FILL LAYER */
  .hero-bg-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
  
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke: 0;
  
    overflow: hidden;
    white-space: nowrap;
    width: 0;
  
    animation: heroFill 4.5s linear infinite;
  }
  
  /* SMOOTH FILL + REMOVE */
  @keyframes heroFill {
    0% {
      width: 0;
    }
    30% {
      width: 100%;
    }
    60% {
      width: 100%;
    }
    90% {
      width: 0;
    }
    100% {
      width: 0;
    }
  }
  
  
  /* INNER GRID */
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: flex-end;
    height: 100%;
  }

  .hero-col.hero-col-left {
    margin-bottom: 90px;
    margin-left: 40px;
}
  
  /* LEFT COLUMN */
  .hero-col-left h3 {
    font-size: 32px;
    margin-bottom: 50px;
    line-height: 30px;
  }
  
  .trusted {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.9;
    position: absolute;
  }
  
  .trusted-avatars {
    display: flex;
  }
  
  .trusted-avatars img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid white;
  }
  
  /* CENTER IMAGE */
  .hero-col-center {
    display: flex;
    justify-content: center;
  }
  
  .hero-girl-img {
    max-height: 450px;
    z-index: 3;
  }
  
  /* RIGHT COLUMN */
  .hero-desc {
    font-size: 14px;
    margin-bottom: 12px;
    width: 200px;
  }

  .hero-col.hero-col-right {
    margin-bottom: 45px;
    margin-left: 5px;
}
  
  .hero-list {
    padding-left: 18px;
    margin-bottom: 20px;
  }
  
  .hero-list li {
    font-size: 13px;
    line-height: 20px;
  }
  
  /* BUTTON */
  .hero-btn {
    display: inline-block;
    background: #2EA3FF;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* =========================
     FAMILY CARD
     ========================= */
  
  .hero-family-card {
    background: #E2AD00;
  }
  
  .hero-family-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* =========================
     MOBILE
     ========================= */
  
  @media (max-width: 900px) {
  
    .hero-wrapper {
      grid-template-columns: 1fr;
    }
  
    .hero-girl-card {
      padding: 30px;
    }
  
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 24px;
      text-align: center;
    }
  
    .hero-bg-text {
      font-size: 55px;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 70px;
    }
    .hero-col-left h3 {
      margin-top: 70px;
    }
    .hero-girl-img {
      margin-top: -70px;
    }
    .hero-big-content {
      top: 20px;
    }
    .trusted {
      justify-content: center;
    }
  
    .trusted-avatars {
      justify-content: center;
    }
  
    .hero-girl-img {
      max-height: 300px;
    }
  }
    
/* =========================
   HERO PART 2
   ========================= */

   .hero-part-two {
       padding: 10px 0;
  }
  
  .hero-part-two-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
  }
  
  /* =========================
     LEFT SMALL CARD
     ========================= */
  
  .hero-small-card {
    position: relative;
    background: #259DF4;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px;
    min-height: 260px;
    color: #fff;
  }
  
  /* ROTATED BG IMAGE */
  .hero-rotated-bg {
    position: absolute;
    width: 400px;
    height: 243.842px;
    aspect-ratio: 400 / 243.84;
    transform: rotate(38.003deg);
    opacity: 0.15;
    top: -60px;
    right: -90px;
    z-index: 1;
  }
  
  /* TEXT ABOVE IMAGE */
  .hero-small-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-small-content h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 14px;
    font-weight: 600;
    margin-top: 45px;
    margin-bottom: 20px;
  }
  
  .hero-small-content p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  /* =========================
     RIGHT BIG CARD
     ========================= */
  
  .hero-big-card {
    position: relative;
    background: #F184FF;
    border-radius: 12px;
    overflow: hidden;
    padding: 32px;
    min-height: 260px;
    color: #fff;
  }
  
  /* BIG BACK TEXT */
  .hero-big-bg-text {
    position: absolute;
    top: -35px;
    left: 32px;
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    /* opacity: 0.35; */
    z-index: 1;
  }
  /* ===== TYPE FILL EFFECT (ADD-ON) ===== */

.hero-big-bg-text {
  /* tumhari existing CSS intact rahe gi */
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  width: fit-content;
}

/* fill layer */
.hero-big-bg-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;

  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0;

  white-space: nowrap;
  overflow: hidden;
  width: 0;

  animation: heroFillSmooth 5s linear infinite;
  will-change: width;
}

/* smooth fill → hold → remove */
@keyframes heroFillSmooth {
  0%   { width: 0; }
  30%  { width: 100%; }
  60%  { width: 100%; }
  90%  { width: 0; }
  100% { width: 0; }
}

  
  /* TEXT CONTENT */
  .hero-big-content {
    position: relative;
    z-index: 3;
    max-width: 55%;
    top: 120px;
  }
  
  .hero-big-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .hero-big-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 18px;
    color: black;
    font-weight: 600;
  }
  
  /* DOCTOR IMAGE */
  .hero-doctor-img {
    position: absolute;
    right: 70px;
    bottom: 0;
    height: 80%;
    z-index: 2;
  }
  
  .hero-big-content strong {
    display: inline-flex;        /* line break force */
    margin-bottom: 14px; 
    margin-right: 50px;  /* space below timing text */
  }
  
  .hero-big-content .hero-outline-btn {
    display: inline-block; /* button apni line mein */
    margin-top: 6px;       /* spacing above button */
  }
  
  /* =========================
     BUTTONS
     ========================= */
  
  .hero-outline-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin-top: 10px;
  }
  
  .hero-outline-btn.light {
    background: rgba(255,255,255,0.15);
  }
  
  /* =========================
     MOBILE RESPONSIVE
     ========================= */
  
  @media (max-width: 900px) {
  
    .hero-part-two-inner {
      grid-template-columns: 1fr;
    }
  
    .hero-big-card {
      padding-bottom: 0;
      text-align: center;
    }
  
    .hero-big-bg-text {
      font-size: 40px;
      left: 50%;
      transform: translateX(-50%);
      opacity: 1;
      margin-top: 45px;
    }
  
    .hero-big-content {
      max-width: 100%;
    }
  
    .hero-doctor-img {
      position: relative;
      width: 100%;
      height: auto;
      margin-top: 20px;
    }
  
    .hero-rotated-bg {
      top: -80px;
      right: -120px;
    }
  }
  /* =========================
   ABOUT SECTION
   ========================= */

   .about-section {
    position: relative;
    padding: 80px 0 140px; /* bottom extra space for bg */
    background: #fff;
    overflow: hidden;
  }
  
  /* Bottom SVG background */
  .about-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px; /* adjust height as needed */
    background: url("../images/aboutbg.svg") no-repeat center bottom;
    background-size: cover;
    z-index: 0;
  }
  
  /* Content upar rahe */
  .about-container {
    position: relative;
    z-index: 1;
  }
  
  
  .about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
  
  /* LEFT IMAGES */
  .about-images {
    position: relative;
  }

  .main-image {
    width: 350px;
  }
  
  .main-image img {
    width: 100%;
    border-radius: 20px;
  }
  
  .small-image {
    position: absolute;
    bottom: -135px;
    right: 10px;
    width: 200px;
    border: 10px solid white;
    border-radius: 30px;
  }
  
  .small-image img {
    width: 100%;
    border-radius: 16px;
  }
  
  /* EXPERIENCE BADGE */
  .experience-badge {
    position: absolute;
    top: -60px;
    left: -50px;
    background: linear-gradient(99deg, #104F5B 36.16%, #091419 99.52%);
    color: #fff;
    padding: 10px 40px;
    border-radius: 12px;
    z-index: 2;
  }
  
  .experience-badge strong {
    font-size: 30px;
    display: block;
    margin-bottom: -5px;
  }
  
  .experience-badge p {
    font-size: 12px;
    line-height: 2px;
  }
  
  /* RIGHT CONTENT */
  .about-tag {
    font-size: 12px;
    color: #104F5B;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
  }
  
  .about-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-top: -5px;
    margin-bottom: 30px;
    color: #0F3D5E;
  }
  
  /* TABS */
  .about-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
  }
  
  .about-tabs .tab {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #555;
    position: relative;
  }
  
  .about-tabs .tab.active {
    color: #1aa3b8;
  }
  
  .about-tabs .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #1aa3b8;
    border-radius: 3px;
  }
  
  /* TAB CONTENT */
  .tab-panel {
    display: none;
    animation: fadeUp 0.35s ease;
  }
  
  .tab-panel.active {
    display: block;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* TEXT */
  .about-content p {
    font-size: 14px;
    color: #555;
    line-height: 22px;
    margin-bottom: 24px;
  }
  
  /* POINTS */
  .about-points .point {
    margin-bottom: 18px;
  }
  
  .about-points h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0F0420;
  }
  
  .about-points p {
    font-size: 16px;
    color: #666;
  }
  
  /* =========================
     MOBILE
     ========================= */
  
  @media (max-width: 900px) {
  
    .about-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .small-image {
      position: relative;
      bottom: 0;
      right: -200px;
      margin-top: -50px;
      width: 160px;
    }
    .service-tags {
      column-gap: 8px !important;
    }
  
    .experience-badge {
      top: -50px;
      left: 0px;
    }
  
    .about-tabs {
      gap: 20px;
      overflow-x: auto;
    }
  
    .about-content h2 {
      font-size: 26px;
    }
  }
  
  /* =========================
   SERVICES SECTION
   ========================= */

   .services-section {
    position: relative;
    background: #104F5B; /* main bg color */
    padding: 70px 20px;
    color: #fff;
    overflow: hidden;
  }

  .services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/services-bg.png") no-repeat center top;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
  }
  .services-container {
    position: relative;
    z-index: 1;
  }
    
  
  
  .services-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* HEADER */
  .services-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .services-header h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .services-header p {
    font-size: 13px;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 20px;
  }
  
  /* GRID */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* CARD */
  .service-card {
    background: #DAF9FF;
    border-radius: 16px;
    overflow: hidden;
    color: #333;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  
  /* IMAGE */
  .service-image {
    height: 150px;
    overflow: hidden;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* CONTENT */
  .service-content {
    padding: 10px 16px;
    background: #DAF9FF;
  }
  
  .service-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #0F0420;
  }
  
  .service-content p {
    margin-top: 0px;
    font-size: 12px;
    color: #555;
    /* line-height: 18px; */
  }
  
  /* =========================
     TABLET
     ========================= */
  
  @media (max-width: 900px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* =========================
     MOBILE
     ========================= */
  
  @media (max-width: 480px) {
  
    .services-header h2 {
      font-size: 22px;
    }
  
    .services-header p {
      font-size: 12px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .service-image {
      height: 180px;
    }
  }
/* =========================
   EXPERT HEALTH SECTION
   ========================= */

   .expert-health-section {
    padding: 80px 20px;
    background: #ffffff;
  }
  
  .expert-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* HEADER */
  .expert-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .expert-header h2 {
    font-size: 35px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0F0420;
  }
  
  .expert-header h2 span {
    color: #36BFBB;
  }
  
  .expert-header p {
    font-size: 16px;
    max-width: 850px;
    margin: 0 auto;
    color: #000;
    line-height: 20px;
  }
  
  /* TOP CARDS */
  .expert-top-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .expert-card {
    background: linear-gradient(99deg, #104F5B 36.16%, #091419 99.52%);
    border-radius: 14px;
    padding: 20px;
    color: #fff;
  }
  
  .expert-card small {
    color: #35FF0C;
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-bottom: -12px;
  }
  
  .expert-card h4 {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .expert-card p {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    width: 250px;
  }
  
  /* BOTTOM AREA */
  .expert-bottom {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
  }
  
  /* LEFT BOX */
  .expert-specialized {
    background: #e6fbff;
    border-radius: 16px 0 0 16px;
    padding: 24px;
  }
  
  .expert-specialized h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .expert-specialized p {
    font-size: 17px;
    color: black;
    margin-bottom: 16px;
  }
  
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 25px;
  }
  
  .service-tags span {
    background: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .service-tags span:hover {
    background: #2EA3FF;
    color: white;
  }
  .service-tags a {
    text-decoration: none;
    color: inherit;
  }
  
  
  /* RIGHT EMERGENCY */
  .expert-emergency {
    position: relative;
    border-radius: 0px 16px 16px 0px;
    overflow: hidden;
    background: url("../images/expert.png") center / cover no-repeat;
    align-self: center;
    padding: 30px;
  }
  
  .expert-emergency .overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 36, 43, 0.83);
  }
  
  .emergency-content {
    position: relative;
    padding: 24px;
    color: #fff;
  }
  
  .emergency-content small {
    color: #35FF0C;
    font-size: 14px;
    font-weight: 600;
  }
  
  .emergency-content h4 {
    font-size: 20px;
    margin: 10px 0;
  }
  
  .emergency-content p {
    font-size: 14px;
    line-height: 18px;
    color: white;
  }
  
  /* =========================
     RESPONSIVE
     ========================= */
  
  @media (max-width: 900px) {
  
    .expert-top-cards {
      grid-template-columns: 1fr;
    }
  
    .expert-bottom {
      grid-template-columns: 1fr;
    }
  
    .expert-header h2 {
      font-size: 24px;
    }
  }
  .steps-section {
    margin-top: -50px;
    display: flex;
    justify-content: center;
  }
  
  .steps-container {
    max-width: 1025px;
    width: 100%;
    padding: 60px 40px;
    border-radius: 26px;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: rgba(9, 89, 139, 0.9);
  }
  
  /* Background image */
  .steps-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/steps-bg.png") no-repeat center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
  }
  
  /* Content above bg */
  .steps-container > * {
    position: relative;
    z-index: 1;
  }
  
  /* Heading */
  .steps-container h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 14px;
  }
  
  .steps-container h2 span {
    color: #35FF0C;
  }
  
  /* Subtitle */
  .steps-subtitle {
    font-size: 14px;
    max-width: 650px;
    margin: 0 auto 50px;
    color: rgba(255,255,255,0.85);
    line-height: 22px;
  }
  
  /* Steps grid */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  /* Step card */
  .step-item img {
    width: 70px;
  }
  
  .step-item h4 {
    margin-top: -10px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    opacity: 0.9;
  }
  
  .step-item h3 {
    margin-top: -5px;
    font-size: 14px;
    font-weight: 600;
    color: #35FF0C;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .step-item p {
    font-size: 11px;
    color: white;
    line-height: 0px;
  }
  
  /* =====================
     RESPONSIVE
     ===================== */
  
  @media (max-width: 900px) {
    .steps-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .steps-container {
      padding: 50px 25px;
    }
  
    .steps-container h2 {
      font-size: 24px;
    }
  }
  .doctors-section {
    padding: 50px 20px;
  }
  
  .doctors-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Header */
  .section-tag {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 6px;
  }
  
  .doctors-container h2 {
    margin-top: 0px;
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
    color: #1a1230;
  }
  
  /* Grid */
  .doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* Card */
  .doctor-card {
    position: relative;
    height: 350px;
    border-radius: 18px;
    overflow: hidden;
  }
  
  .doctor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Overlay */
  .doctor-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 50%,
      #104F5B 100%
    );
  }
  
  /* Text */
  .doctor-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
  }
  
  .doctor-info p {
    font-size: 12px;
    line-height: 1.8;
    color: white;
    text-align: left;
    margin-top: -20px;
  }
  
  /* Arrow */
  .doctor-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  
  /* Footer note */
  .doctors-note {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin-top: 30px;
  }
  @media (max-width: 767px) {
  .doctor-card {
    height: 500px !important;
  }
}
  /* =====================
     RESPONSIVE
     ===================== */
  
  @media (max-width: 900px) {
    .doctors-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-desc {
      justify-self: center;
    }
  }
  
  @media (max-width: 480px) {
    .doctors-grid {
      grid-template-columns: 1fr;
    }
  
    .doctors-container h2 {
      font-size: 23px;
    }
    .about-second-left p {
      width: 100% !important;
    }
    .faq-question {
      text-align: left;
    }
  }
  /* SECTION */
.hero-form-section {
  padding: 20px 20px;
  background: #fff;
}

/* CONTAINER */
.hero-form-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}


/* ================= LEFT SIDE ================= */

.hero-left {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.hero-left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 79, 91, 0.58);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-content .hero-btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 40px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
}
.hero-content .hero-btn:hover {
  background: #2EA3FF;
}


/* ================= RIGHT SIDE ================= */

.hero-right {
  border-radius: 10px;
  border: 1px solid #8941C9;
  background: #571F9C;
  padding: 32px;
  color: #fff;
}

.hero-right h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-right p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 18px;
  opacity: 0.85;
}

/* FORM FIELDS */
.hero-right input {
  width: 88%;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #8941C9;
  background: #571F9C;
  padding: 0 18px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 12px;
}
.hero-right select {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #8941C9;
  background: #571F9C;
  padding: 0 18px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 12px;
}

.hero-right input::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-row {
  display: flex;
  gap: 10px;
}

.hero-right button {
  width: 100%;
  height: 46px;
  background: #fff;
  color: #571F9C;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}
.hero-right button:hover {
  background: #2EA3FF;
  color: white;
}

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

@media (max-width: 1250px) {
  .hero-form-container {
    flex-direction: column;
  }

  .about-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-image {
    width: 95%;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .hero-form-container {
    grid-template-columns: 1fr;
  }
  .hero-right {
        width: 83%;
    }
    .hero-big-content {
      top: 20px !important;
    }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .form-row {
    flex-direction: column;
  }
}

          /* SECTION WRAPPER */
.about-hero-section {
  padding: 0px 20px;
}

/* HERO BANNER */
.about-hero-banner {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.about-hero-banner img {
  width: 100%;
  height: 450px;            /* adjust if needed */
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 41, 48, 0.63);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* SMALL TAG */
.about-hero-tag {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 10px;
  margin-top: 130px;
}

/* HEADING */
.about-hero-overlay h1 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1;
  margin-top: 0px;
}

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

@media (max-width: 768px) {
  .about-hero-banner img {
    height: 280px;
  }

  .about-hero-overlay h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .about-hero-banner img {
    height: 240px;
  }

  .about-hero-overlay h1 {
    font-size: 20px;
  }
}
/* ================= SECTION BACKGROUND ================= */

.about-second-section {
  padding: 70px 20px;
  background-color: #ffffff;
  background-image: url("../images/about-bg-second.png");
  background-repeat: no-repeat;
}

/* ================= CONTAINER ================= */

.about-second-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: center;
}

/* ================= LEFT ================= */

.about-second-left p {
  font-size: 16px;
  line-height: 22px;
  color: #444;
  margin-bottom: 16px;
  width: 470px;
}

.about-buttons {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.btn-whatsapp {
  padding: 12px 26px;
  border-radius: 30px;
  background: #104F5B;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.btn-call {
  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid #0B9F1A;
  color: white;
  background: #0B9E1A;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* ================= RIGHT CARD ================= */

.about-second-right {
  background: #104F5B;
  border-radius: 20px;
  padding: 40px 26px;
  color: #fff;
}

/* Heading */
.about-second-right h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0px;
}

/* Paragraph */
.right-subtext {
  font-size: 14px;
  line-height: 18px;
  opacity: 1;
}

/* ================= STATS ================= */

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SECOND ROW FIX */
.stat-row.reverse {
  flex-direction: row;
}

/* Text */
.stat-title {
  font-size: 16px;
  font-weight: 600;
  color: #35FF0C;
}

/* Number */
.stat-value {
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
}

/* Divider */
.stat-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

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

@media (max-width: 900px) {
  .about-second-container {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 18px 40px !important;
}
.btn-call {
  border-radius: 8px;
}
.btn-whatsapp {
  border-radius: 8px;
}
  .about-second-right {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .stat-value {
    font-size: 40px;
  }

  .about-buttons {
    flex-direction: column;
  }
}
/* SECTION BG */
.services-info-section {
  padding: 80px 20px;
  background-color: #104F5B;
  background-image: url("../images/services-bg.png");
  background-repeat: repeat;
}

/* CONTAINER */
.services-info-container {
  max-width: 1000px; /* logical + matches screenshot */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD */
.service-info-card {
  border-radius: 27px;
  border: 1px solid #08879F;
  background: #104F5B;
  box-shadow: 6px 8px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 32px;
  color: #fff;
}

/* HEADINGS */
.service-info-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* PARAGRAPH */
.service-info-card p {
  font-size: 14px;
  line-height: 22px;
  opacity: 0.85;
  margin-bottom: 22px;
}

/* LISTS */
.service-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.service-lists ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-lists li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
}

/* DOT */
.service-lists li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

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

@media (max-width: 900px) {
  .services-info-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-lists {
    grid-template-columns: 1fr;
  }

  .service-info-card {
    padding: 24px;
  }
}
/* ===== OUTER SECTION (PAGE BACKGROUND) ===== */
.core-values-section {
  margin-top: -50px;

}

/* ===== INNER BLUE AREA (ONLY 1000px) ===== */
.core-values-inner {
  max-width: 900px;        /* 🔥 IMPORTANT */
  margin: 0 auto;           /* center */
  background: #DAF9FF;
  border-radius: 28px;
  padding: 60px 50px 70px;
}

/* ===== TITLE ===== */
.core-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #082930;
  margin-bottom: 40px;
  margin-top: 0px;
}

/* ===== GRID ===== */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== CARD ===== */
.core-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
}

/* ICON */
.core-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
}

/* CARD TITLE */
.core-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #082930;
  margin-bottom: 10px;
}

/* CARD TEXT */
.core-card p {
  font-size: 10px;
  line-height: 1.3;
  color: #104F5B;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .core-values-inner {
    padding: 40px 20px 50px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .core-title {
    font-size: 22px;
  }
}

/* =========================
   SECTION BACKGROUND
   ========================= */

   .healthcare-team-section {
    padding: 50px 20px;
  }
  
  .healthcare-team-wrapper {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(180deg, #104F5B 1.71%, #091419 100%);
    border-radius: 21px;
    padding: 50px 40px 60px;
  }
  
  /* =========================
     HEADER
     ========================= */
  
  .healthcare-header {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
  }
  
  .healthcare-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .healthcare-header p {
    font-size: 14px;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* =========================
     CARDS GRID
     ========================= */
  
  .healthcare-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  /* =========================
     CARD
     ========================= */
  
  .healthcare-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
  }
  
  /* IMAGE */
  .card-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
  }
  
  .card-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
  }
  
  /* TITLE */
  .healthcare-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #082930;
    margin-bottom: 6px;
  }
  
  /* DESCRIPTION */
  .healthcare-card p {
    font-size: 13px;
    color: #104F5B;
    margin-bottom: 10px;
  }
  
  /* HIGHLIGHT */
  .healthcare-card .highlight {
    font-size: 13px;
    font-weight: 600;
    color: #FFAE00;
  }
  
  /* =========================
     RESPONSIVE
     ========================= */
  
  @media (max-width: 900px) {
    .healthcare-cards {
      grid-template-columns: 1fr;
    }
  
    .card-image img {
      height: 190px;
    }
  }
  
  @media (max-width: 480px) {
    .healthcare-team-wrapper {
      padding: 40px 20px 50px;
    }
  
    .healthcare-header h2 {
      font-size: 20px;
    }
  }
  .about-team-section {
    position: relative;
    padding: 60px 20px;
    background: #ffffff; /* white base */
    overflow: hidden;
  }
  
  /* background image overlay */
  .about-team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/about-bg-second.png");
    background-repeat: no-repeat;
    transform: rotate(180deg);
    background-size: contain;
    opacity: 1; /* image visible */
    z-index: 0;
  }
  
  /* content above bg image */
  .about-team-container {
    position: relative;
    z-index: 1;
  }
  
  /* container */
  .about-team-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* header */
  .about-team-tag {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 6px;
  }
  
  .about-team-title {
    font-size: 35px;
    margin-top: 0px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #1a1230;
  }
  
  .about-team-desc {
    font-size: 16px;
    color: #555;
    line-height: 22px;
    max-width: 740px;
    margin: 0 auto 40px;
  }
  
  /* grid */
  .about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4fr hi */
    gap: 24px;
  }
  
  /* Center the 2 cards */
  .about-team-card:nth-child(1) {
    grid-column: 2;
  }
  
  .about-team-card:nth-child(2) {
    grid-column: 3;
  }
  
  /* card */
  .about-team-card {
    position: relative;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
  }
  
  .about-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* overlay */
  .about-team-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 18px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 50%,
      #104F5B 100%
    );
  }
  
  /* text */
  .about-team-info {
    text-align: left;
  }
  
  .about-team-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
  }
  
  .about-team-info p {
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    margin: 0;
  }
  
  .about-team-green {
    color: #35FF0C !important;
    margin-top: 4px;
  }
  
  /* arrow */
  .about-team-arrow {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .about-team-arrow img {
    width: 40px;
    height: 40px;
  }
  
  /* =====================
     RESPONSIVE
     ===================== */
  
  @media (max-width: 900px) {
    .about-team-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .about-team-title {
      font-size: 24px;
    }
  }
  



  .faq-section {
    background: #F0F9FA;
    padding: 80px 20px;
  }
  
  .faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  /* LEFT */
  .faq-tag {
    font-size: 14px;
    color: #6b8f95;
    display: block;
    margin-bottom: 6px;
  }
  
  .faq-title {
    font-size: 34px;
    font-weight: 700;
    color: #104F5B;
    margin-bottom: 14px;
  }
  
  .faq-desc {
    font-size: 14px;
    line-height: 22px;
    color: #4d6f75;
    margin-bottom: 30px;
  }
  
  /* FAQ LIST */
  .faq-list {
    border-top: 1px solid rgba(16, 79, 91, 0.3);
  }
  
  .faq-item {
    border-bottom: 1px solid rgba(16, 79, 91, 0.3);
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 500;
    color: #104F5B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-icon {
    font-size: 22px;
    line-height: 1;
  }
  
  /* ANSWER */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-answer p {
    font-size: 14px;
    line-height: 22px;
    color: #4d6f75;
    padding-bottom: 16px;
  }
  
  /* ACTIVE */
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  /* RIGHT IMAGE */
  .faq-right img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .faq-container {
      grid-template-columns: 1fr;
    }
  
    .faq-title {
      font-size: 26px;
    }
  }
  /* =========================
   OUR SERVICES HERO
   ========================= */

.our-services-hero-section {
  padding: 50px 20px;
}

/* MAIN WRAPPER */
.our-services-hero-container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE */
.our-services-hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* OVERLAY (EXACT AS REQUESTED) */
.our-services-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 41, 48, 0.69); /* ✅ exact overlay */
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 32px;
}

/* TAG */
.our-services-hero-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  margin-top: 140px;
}

/* TITLE */
.our-services-hero-title {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 12px;
}

/* DESCRIPTION */
.our-services-hero-desc {
  max-width: 690px;
  font-size: 14px;
  line-height: 22px;
  margin-top: 0px;
  color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 768px) {
  .our-services-hero-image {
    height: 400px;
  }
  .contact-us-bottom-form input, .contact-us-bottom-form select, .contact-us-bottom-form textarea {
    width: 90% !important;
  }
  .contact-us-bottom-row {
    gap: 20px !important;
    width: 95% !important;
  }
  .contact-us-bottom-form select {
    width: 97% !important;
}
.contact-us-bottom-submit {
  width: 97% !important;
}
.contact-us-bottom-container {
  gap: 0px !important;
}

  .our-services-hero-section {
    padding: 0px 20px !important;
  }
  .our-services-tabs {
    gap: 10px !important;
    margin-top: 20px;
    justify-content: center;
  }
  .contact-us-hero-overlay h1 {
    font-size: 20px;
  }
  .contact-us-hero-overlay p {
    font-size: 12px;
    width: 100% !important;
  }
  .our-services-tab {
    font-size: 12px !important;
  }

  .our-services-hero-title {
    font-size: 26px;
  }

  .our-services-hero-desc {
    font-size: 13px;
  }
}
/* =========================
   TABS
   ========================= */

.our-services-tabs-section {
  position: sticky;
  top: 0px; /* menu ke neeche */
  z-index: 20;
  background: #ffffff;
  padding: 16px 0;
}

.our-services-tabs-container {
  max-width: 1000px;
  margin: 0 auto;
}

.our-services-tabs {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.our-services-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
}

.our-services-tab.active {
  color: #fff;
  border-color: transparent;
  border-radius: 16px;
background: var(--gradient, linear-gradient(90deg, #104F5B 0%, #091419 100%));
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}


/* =========================
   DETAIL SECTIONS
   ========================= */

.our-services-detail-section {
  background: #ffffff;
  padding: 60px 20px;
}

.our-services-detail-section.alt {
  background: #F0F9FA;
}

.our-services-detail-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.our-services-image img {
  width: 100%;
  border-radius: 16px;
}

/* CONTENT */
.our-services-content h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.our-services-content .sub {
  font-size: 14px;
  margin-bottom: 20px;
}

.our-services-content h4 {
  font-size: 15px;
  margin: 18px 0 10px;
}

/* LIST */
.our-services-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.our-services-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.our-services-list img {
  width: 16px;
}

/* BENEFITS */
.our-services-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.our-services-benefits span {
  background: #dff4f8;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
}

/* BUTTON */
.our-services-btn {
  margin-top: 20px;
  padding: 12px 26px;
  border-radius: 16px;
  border: none;
  color: #fff;
  cursor: pointer;

  background: linear-gradient(90deg, #104F5B 0%, #091419 100%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 900px) {
  .our-services-detail-container {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   HERO
   =============================== */

   .contact-us-hero-section {
    padding: 40px 20px 0;
  }
  
  .contact-us-hero-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    height: 450px;
    border-radius: 12px;
    background: 
      linear-gradient(rgba(29,151,234,0.77), rgba(29,151,234,0.77)),
      url("../images/contact-us.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-us-hero-overlay {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 20px;
  }
  
  .contact-us-tag {
    font-size: 13px;
    opacity: 0.9;
  }
  
  .contact-us-hero-overlay h1 {
    font-size: 35px;
    margin: 0px 0;
  }
  
  .contact-us-hero-overlay p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 1;
    margin-top: 0px;
    width: 650px;
  }
  
  .contact-us-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
  }
  
  .contact-us-btn {
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
  }
  
  .contact-us-btn.whatsapp {
    background: #0B9E1C;
  }
  
  .contact-us-btn.call {
    background: #FFAE00;
    color: #082930;
  }
  
  /* ===============================
     INFO BOXES
     =============================== */
  /* ===============================
   CONTACT INFO GRID
   =============================== */

   section.contact-us-info-section {
    margin-top: -50px;
}
.contact-us-info-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.contact-us-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ===============================
   ICON (ALONE LINE)
   =============================== */

.contact-us-info-icon {
  width: 42px;
  height: 42px;
  background: #4286B4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-us-info-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ===============================
   TITLE + VALUE (SAME LINE)
   =============================== */

.contact-us-info-main {
  display: inline-grid;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.contact-us-info-main .label {
  font-size: 14px;
  font-weight: 500;
  color: #4286B4;
}

.contact-us-info-main .value {
  font-size: 16px;
  font-weight: 600;
  color: #082930;
}

/* ===============================
   DESCRIPTION (NEW LINE)
   =============================== */

.contact-us-info-desc {
  font-size: 13px;
  color: #4286B4;
  line-height: 1.4;
}

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

@media (max-width: 900px) {
  .contact-us-info-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.hero-part-two {
        padding-left: 20px !important;
    padding-right: 20px !important;
}
}

@media (max-width: 480px) {
  .contact-us-info-container {
    grid-template-columns: 1fr;
  }
}

.contact-us-bottom-section {
  padding: 80px 20px 0px;
  background: #f7fbfc;
}

.contact-us-bottom-hours h4 {
  color: #4286B4;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

.contact-us-bottom-hours span {
  color: #0F0420;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 125% */
}


.contact-us-bottom-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* LEFT */
.contact-us-bottom-left h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.contact-us-bottom-sub {
  font-size: 12px;
  color: #0F0420;
  margin-bottom: 20px;
}

.contact-us-bottom-form label {
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}

.contact-us-bottom-form input,
.contact-us-bottom-form select,
.contact-us-bottom-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
}
.contact-us-bottom-form select {
width: 106%;
}
/* wrapper */
.select-fix {
  position: relative;
}

/* kill default arrow (FORCE) */
.select-fix select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* custom arrow (looks like browser arrow) */
.select-fix::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 40%;
  width: 7px;
  height: 7px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}


.contact-us-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-us-bottom-form textarea {
  height: 120px;
}

.contact-us-bottom-submit {
  width: 106%;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #114061, #5CABE0);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.contact-us-bottom-note {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
}

.contact-us-bottom-location h4 {
  color: #082930;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.contact-us-bottom-location p {
  color: #0F0420;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 150% */
}
.contact-us-bottom-help h3 {
  color:#FFF;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.contact-us-bottom-help p {
color: #FFF;
font-size: 11px;
font-style: normal;
font-weight: 500;
line-height: 15px; /* 150% */
margin-top: 0px;
}
.contact-us-bottom-image {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
  margin-bottom: -4px;
}

/* RIGHT */
.contact-us-bottom-map iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: none;
}

.contact-us-bottom-location {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  margin-top: -20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-us-bottom-help {
  margin-top: 30px;
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, #114061 0%, #5CABE0 100%);
  color: #fff;
}

.contact-us-bottom-phone {
  background: #fff;
  color: #0F0420;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin: 16px 0;
}

.contact-us-bottom-whatsapp {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #fff;
  border-radius: 12px;
  border: 1px solid #FFF;
  background: rgba(217, 217, 217, 0.14);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.contact-us-bottom-hours {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
}

.contact-us-bottom-hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.contact-us-bottom-hours-note {
  margin-top: 12px;
  border-radius: 10px;
background: #4286B4;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-us-bottom-container {
    grid-template-columns: 1fr;
  }
  
}
