  /*
  Theme Name: Dr Anish Joshi
  Author: Your Name
  Version: 2.2 (Container/Padding Fix)
  */

  /* ================= RESET & GLOBAL ================= */
  * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
  }

  html, body {
    width: 100%; /* Prevents horizontal scroll */

    scroll-behavior: smooth;
  }

  :root {
      --primary-blue: #00467C;
      --primary-dark: #030303;
      --accent-gold: #F6C56A;
      --bg-light: #FCFCFF;
      --bg-cream: #FFF7E9;
      /* Default Container Width for 1920px+ Screens */
      --container-width: 1400px; 
      --glass-border: linear-gradient(155.31deg, rgba(255, 255, 255, 0.5) 12.33%, rgba(255, 255, 255, 0) 34.31%, rgba(255, 255, 255, 0) 52.66%, rgba(255, 255, 255, 0.54) 74.67%);

        /*--container-padding-desktop: 160px;*/
  --container-padding-tablet: 48px;
  --container-padding-mobile: 20px;

  }

  body {
    font-family: 'Lexend', sans-serif;
    background: var(--bg-light);
    color: #000;
    line-height: 1.6;
  }

  a { text-decoration: none; transition: all 0.3s ease; }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  } 

  /* UNIVERSAL CONTAINER CLASS */
  .container, 
  .obesity-inner,
  .bariatric-container,
  .procedures-container,
  .post-surgery-container,
  .faq-container,
  .expect-section .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 20px; /* Safe padding for mobile/small desktops */
      position: relative;
  }

  /* Full width utility for background sections */
  .full-width-bg {
      width: 100vw;
      margin-left: 50%;
      transform: translateX(-50%);
  }

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



  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
  }

/* REMOVE blur from here */
.site-header.scrolled {
  backdrop-filter: none;
}

/* Apply blur ONLY to header box */
.site-header.scrolled .header-inner {
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
}


  /* Use the container class for the header content */
  .header-inner {
    width: 100%;
    max-width: var(--container-width);
    height: 80px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 36px; 
    background: #03030399;
    backdrop-filter: blur(25px) saturate(180%);
    
         border-radius: 28px;
            border: 3px solid rgba(255, 255, 255, 0.3); /* Slight white border based on context */
            
            /* Complex Background Gradient */
            /*background: linear-gradient(86.16deg, rgba(255, 255, 255, 0.2) 11.14%, rgba(255, 255, 255, 0.035) 113.29%),*/
            /*            linear-gradient(0deg, rgba(3 3, 3, 0.6), rgba(3, 3, 3, 0.6));*/
            
            /*backdrop-filter: blur(10px);*/
            z-index: 100;
            display: flex;
            align-items: center; /* Vertically center content inside */
            padding: 0 40px; /* Safety padding */
  }


  /* LOGO */
  .logo img { width: 60px; height: 54px; transition: all 0.3s ease; }

  /* NAV */
  .main-nav { display: flex; gap: 86px; justify-content: center; align-items: center; margin-left:10px;}
  .main-nav a { font-size: 16px; color: #fff; font-weight: 300; position: relative; }
  .main-nav a:hover { color: var(--accent-gold); }
  .main-nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent-gold); transition: width 0.3s ease;
  }
  .main-nav a:hover::after { width: 100%; }

  .nav-arrow {
    width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); display: inline-block; margin-left: 4px; transition: transform 0.3s ease;
  }
  .nav-dropdown:hover .nav-arrow { transform: rotate(-135deg); }

  .nav-divider { width: 1px; height: 28px; background: #94B0C5; }

  /* HEADER CTA */
  .header-cta { font-size: 18px; color: var(--accent-gold); display: inline-flex; align-items: center; gap: 8px; font-weight: 300; }
  .header-cta:hover { color: #FFD98A; text-decoration:underline;}
  .header-cta:hover::after { transform: translateX(4px);  }
  .header-cta img {
  transition: transform 0.3s ease;
}
.header-cta:hover img {
  transform: translateX(6px);
}

  /* ================= DROPDOWN MENU ================= */
  .nav-dropdown-menu {
    position: absolute; top: calc(100% + 18px); min-width: 260px; background: #ffffff;
    border-radius: 14px; padding: 14px 0; box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s ease;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .nav-dropdown-menu a { display: block; padding: 12px 22px; font-size: 14px; font-weight: 400; color: #222; }
  .nav-dropdown-menu a:hover { background: #f5f7fb; color: #0B3A6A; padding-left: 28px; }

  /* ================= MOBILE MENU ================= */
  @media (max-width: 991px) { .nav-dropdown-menu { display: none; } }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 10px; }
  .hamburger span {
  width: 28px;
  height: 2px;                 /* ← increase from 2px */
  background: #fff;
  border-radius: 0;
  transition: all 0.3s ease;

  /* iOS Safari hard fix */
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* MOBILE SIDEBAR */
/* ================= MOBILE SIDEBAR ================= */
.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
   background:
      linear-gradient(rgba(3, 3, 3, 0.6), rgba(3, 3, 3, 0.6)) padding-box,
      linear-gradient(
        155.31deg,
        rgba(255, 255, 255, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(255, 255, 255, 0.54) 74.67%
      ) border-box;

    border-left: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
/* Prevent background scroll when sidebar open */
body.menu-open {
  overflow: hidden;
}



.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100dvh;

  padding: 100px 32px 40px; /* bottom reduced */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  display: flex;
  flex-direction: column;
}



.mobile-sidebar-overlay.active .mobile-sidebar {
  transform: translateX(0);
}

/* MOBILE NAV */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav a,
.dropdown-toggle {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 8px 0;
  width: 100%;
  transition: color 0.3s ease;
  font-family: 'Lexend', sans-serif;
}

.mobile-nav a:hover,
.dropdown-toggle:hover {
  color: #F6C56A;
}

/* MOBILE DROPDOWN */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-toggle .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .arrow {
  transform: rotate(-135deg);
}

.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 20px;
  transition: max-height 0.4s ease;
}

.mobile-dropdown.active .dropdown-menu {
  max-height: 100%;
  margin-top: 16px;
}

.dropdown-menu a {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 16px;
  display: block;
}

/* MOBILE CTA */
.mobile-cta {
  margin-top: 40px;
  padding: 16px 32px;
  background: linear-gradient(200.42deg, #FFE4B3 13.57%, #F6C56A 98.35%);
  color: #000;
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  text-align: center;
  display: block;
}


  .mobile-cta:hover { background: linear-gradient(120.8deg, #CF9529 -24.4%, #F6C56A 53.43%); box-shadow: -6px 6px 17.2px rgba(207, 149, 41, 0.35); }
.bd-call-note {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    max-width: 700px;
    padding-bottom: 20px;
}

.bd-call-note u {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/*.bd-call-wrap {*/
/*    display: flex;*/
    /* align-items: center; */
    /* gap: 80px; */
    /* flex-wrap: nowrap; */
/*    width: var(--container-width);*/
    /* margin: 0; */
/*    width: 100%;*/
/*    max-width: var(--container-width);*/
/*    margin: 0 auto;*/
    /* padding: 0 20px; */
/*    position: relative;*/
/*}*/

  /* ================= HERO SECTION ================= */
  .hero { position: relative; min-height: 100vh; background: var(--bg-light); overflow: hidden; padding-top: 180px; }
  .hero-inner {
    max-width: var(--container-width); margin: 0 auto; display: flex; position: relative; padding: 0 80px;
    /*gap:80px;*/
  }

  .hero-left {  position: relative; z-index: 3; }
  .hero-left img { width: 100%; max-width: 640px; display: block;  margin-bottom: 15px; }

  .hero-right {  position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center;  }
  .hero-bg-gif { position: absolute; top: -50px; right: 150px; width: 880px; max-width: 100%; pointer-events: none; z-index: 1; }

  /* ================= HERO CONTENT ================= */
  .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* ⬅ LEFT ALIGN */
    text-align: left;          /* ⬅ LEFT TEXT */
    padding: 40px 0;
  }

  /* ================= HERO STATS ================= */
  .hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: flex-start; /* ⬅ LEFT */
  }

  /* EACH STAT */
  .stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ⬅ LEFT */
    text-align: left;
  }

  .stat span {
    font-size: 36px;
    font-weight: 400;
    color: #111;
    line-height: 1.2;
  }

  .stat p {
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
    margin-top: 8px;
    width:160px;
  }

  /* DIVIDER */
  .divider {
    width: 1px;
    height: 64px;
    background: #DADADA;
    margin-top: 6px;
  }

  /* BUTTON ALIGN LEFT */
  .hero-btn {
    align-self: flex-start; /* ⬅ LEFT */
  }


  .hero-btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 42px; min-height: 56px; width: auto; border-radius: 16px;
    background: linear-gradient(200.42deg, #FFE4B3 13.57%, #F6C56A 98.35%);
    font-size: 17px; font-weight: 400; color: #111; white-space: nowrap; border: none; cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  }
  .hero-btn:hover { background: linear-gradient(120.8deg, #CF9529 -24.4%, #F6C56A 53.43%); box-shadow: -6px 6px 17.2px rgba(207, 149, 41, 0.35); }

  /* HERO STRIP */
  .hero-strip { background: #0B3A6A; padding: 26px 0; overflow: hidden; width: 100%; position: relative; z-index: 1; }
  .hero-strip-inner { display: flex; white-space: nowrap; animation: scrollText 15s linear infinite; }
  .hero-strip span { font-size: 34px; font-weight: 400; color: #FFFFFF; padding-right: 8px; }
  .hero-strip span.strip-dot { color: var(--accent-gold); margin: 0 10px; font-weight: 400; }
  @keyframes scrollText { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .hero-strip-wrapper { position: relative; margin-top: -120px; z-index: 1; }
/*.header-wrap {*/
/*    backdrop-filter: blur(25px) saturate(190%);*/
/*    -webkit-backdrop-filter: blur(25px) saturate(190%);*/

/*    max-width: var(--container-width);*/
/*    margin-inline: auto;*/
/*    padding-bottom: 8px;*/

/*    border-radius: 30px;  */
/*    overflow: visible;  */
/*}*/

  /* ================= OBESITY SECTION ================= */
  .obesity-section { padding: 120px 0 60px 0; }
  /* Handle nested grids carefully gap: 80px; */
  .obesity-inner { display: grid; grid-template-columns: 1fr;  margin-bottom: 80px; align-items: start; }
  .obesity-text { max-width: 886px; }
  .obesity-heading h2 { font-size: 55px; font-weight: 600; line-height: 1.17; color: var(--primary-blue); }
  .obesity-text p { font-size: 20px; font-weight: 300; line-height: 1.6; color: #000000; margin-bottom: 20px; }

  .obesity-bars { display: flex; flex-direction: column; gap: 24px; }
  .obesity-bar {
    display: flex; align-items: center; padding: 28px 28px; border-radius: 26px; background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); transition: all 0.3s ease;
  }
  .obesity-bar:hover { background: #0B3A6A; box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22); }
  .bar-icon { display: flex; align-items: center; flex-shrink: 0; }
  .bar-icon img { width: 56px; height: auto; }
  .bar-icon::after { content: ""; display: block; height: 64px; border: 1px solid #A7A7A7; margin: 0 40px; transition: all 0.3s ease; }
  .obesity-bar:hover .bar-icon::after { border-color: #ffffff; }
  .bar-content { display: flex; align-items: center; gap: 28px; flex: 1; }
  .bar-content h3 { font-size: 32px; font-weight: 400; line-height: 1.3; color: var(--primary-blue); white-space: nowrap; transition: all 0.3s ease; }
  .bar-content p { font-size: 20px; font-weight: 400; line-height: 1.3; color: #323232; transition: all 0.3s ease; }
  .obesity-bar:hover h3, .obesity-bar:hover p { color: #ffffff; }
  .obesity-bar:hover h3 { font-size: 56px; }
  .obesity-bar:hover p { font-size: 24px; }

  /* ================= BARIATRIC OUTCOME ================= */
  .bariatric-outcome-section { width: 100%;  padding: 60px 0; }
  .bariatric-heading { font-weight: 600; font-size: 55px; line-height: 1.12; color: var(--primary-blue); margin-bottom: 32px; text-align: center; }
  .bariatric-description { width: 100%;  margin: 0 auto 64px; font-weight: 400; font-size: 20px; line-height: 1.6; color: #000000; text-align: center; }
  .bariatric-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 64px; }
  .bariatric-card {
    width: 100%; min-height: 275px; background: #FFEFD0; border-radius: 20px; padding: 40px 32px;
    display: flex; align-items: center; justify-content: center; font-weight: 400; font-size: 30px;
    line-height: 1.3; color: #000000; text-align: center; transition: all 0.3s ease;
  }
  .bariatric-card:hover { background: var(--accent-gold); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(246, 197, 106, 0.3); }
  .bariatric-footer-text { margin: 0 auto; font-weight: 500; font-size: 20px; line-height: 1.3; color: #000000; text-align: center; }

  /* ================= PATIENT STORIES ================= */
  .patient-stories { background: #ffffff; padding: 60px 0; overflow: hidden; font-family: 'Lexend', sans-serif;   position: relative;   z-index: 5; }
  .patient-top { text-align: center; margin-bottom: 40px; }
  .patient-top h2 { font-size: clamp(32px, 4vw, 55px); font-weight: 600; color: var(--primary-blue); margin-bottom: 18px; }
  .patient-top p { font-size: clamp(16px, 2vw, 20px); color: #000; margin: 0 auto 60px; max-width: 800px; }
  .patient-icons { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; max-width: 1200px; margin: 0 auto; }
  .icon-item { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
  .icon-item img { width: 100px; height: 100px; margin-bottom: 18px; object-fit: contain; }
  .icon-item p { font-size: 18px; line-height: 1.4; color: #000; text-align: center; }

  /* --- CAROUSEL CSS --- */
  .figma-slide.left-1
  .figma-video-area { position: relative; height: 560px; overflow: hidden; }
.subtract-bg {
  position: absolute;
  top: 75%;
  left: 50%;

  width: 100%;        /* wider than center image */
  max-width: 100%;
  height: auto;

  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
  .figma-carousel { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; }
  .figma-track { position: relative; width: 100%; max-width: 1220px; height: 400px; margin: 0 auto; pointer-events: none; }
  .figma-slide {
    position: absolute; top: 50%; border-radius: 40px; overflow: hidden; cursor: pointer; background: none;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18); opacity: 0; visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: auto;
  }
  .figma-slide[class*="left-"], .figma-slide.center, .figma-slide[class*="right-"] { visibility: visible; }
  .figma-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .figma-slide.center { width: 700px; height: 400px; left: 50%; transform: translate(-50%, -50%); opacity: 1; z-index: 10; }
  .figma-slide.left-1 { width: 640px; height: 320px; left: 40px; transform: translateY(-50%) scale(0.7); z-index: 5; opacity: 0.8; }
  .figma-slide.left-2 { width: 480px; height: 240px; left: -20px; transform: translateY(-50%) scale(0.8); z-index: 2; opacity: 0.5; }
  .figma-slide.right-1 { width: 640px; height: 320px; right: 40px; transform: translateY(-50%) scale(0.7); z-index: 5; opacity: 0.8; }
  .figma-slide.right-2 { width: 480px; height: 240px; right: -20px; transform: translateY(-50%) scale(0.8); z-index: 2; opacity: 0.5; }

  .play-btn {
    position: absolute; top: 50%; left: 50%; width: 80px; height: 80px; background: #fff; border-radius: 50%;
    transform: translate(-50%, -50%) scale(0); z-index: 20; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0; pointer-events: none;
  }
  .figma-slide.center .play-btn { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
  .play-btn::after { content: ""; width: 0; height: 0; border-left: 22px solid var(--primary-blue); border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 6px; }

  .figma-controls { position: absolute;  width: 100%; display: flex; justify-content: center; align-items: center; gap: 22px; z-index: 100; pointer-events: auto; padding:20px;}
  .figma-arrow { width: 44px; height: 44px; border: none; background: transparent; color: #999; font-size: 30px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .figma-arrow:hover { color: #000000; }
  .figma-dots { display: flex; gap: 10px; }
  .figma-dot { width: 8px; height: 8px; border-radius: 50%; background: #d0d0d0; cursor: pointer; }
  .figma-dot.active { background: var(--accent-gold); transform: scale(1.4); }

  /* ================= PROCEDURES SECTION ================= */
  .procedures-section { background: #ffffff; padding: 120px 0; }
  .procedures-eyebrow { font-size: 25px; font-weight: 500; color: #000000; margin-bottom: 12px; text-align: left; }
  .procedures-title { font-size: 55px; font-weight: 700; color: var(--primary-blue); text-align: left; margin-bottom: 64px; line-height: 1.2; }
  .procedures-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 100px; max-width:1400px;}

  .procedure-card { width: 100%; height: 636px; position: relative; border-radius: 36px; overflow: hidden; background: var(--primary-blue); cursor: pointer; }
  .card-image { width: 100%; height: 414px; position: relative; overflow: hidden; }
  .card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transform: translateY(0); transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1); }
  .procedure-card:hover .card-image img { transform: translateY(-16px); }
  .card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 70, 124, 0) 0%, rgba(0, 70, 124, 0.45) 55%, #00467C 100%); pointer-events: none; }
  .procedure-card:hover .card-overlay { background: linear-gradient(180deg, rgba(0, 70, 124, 0.1) 0%, rgba(0, 70, 124, 0.6) 50%, #00467C 100%); }
  .card-panel { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 48px 48px; color: #ffffff; transform: translateY(0); }
  .card-panel h3 { font-size: 42px; font-weight: 600; line-height: 130%; color: var(--accent-gold); margin: 0 0 16px 0; }
  .card-panel p { font-size: 20px; line-height: 140%; color: #fff; margin: 0 0 24px 0; }
  .card-hover { opacity: 0; max-height: 0; overflow: hidden; transform: translateY(20px); transition: opacity 400ms ease, transform 400ms ease, max-height 400ms ease; }
  .card-hover ul { list-style: none; padding: 0; margin: 0; }
  .card-hover li { font-size: 18px; line-height: 192%; color: #fff; text-decoration: underline; padding: 4px 0; }
  .card-hover li a { color: #fff; }
  .card-hover li a:hover { color: var(--accent-gold); }

  .procedure-card:hover h3 { font-size: 32px; margin-bottom: 12px; }
  .procedure-card:hover p { opacity: 0.95; margin-bottom: 20px; }
  .procedure-card:hover .card-hover { opacity: 1; max-height: 300px; transform: translateY(0); }

  .cta-card { background: transparent; border-radius: 0; padding: 0; display: flex; align-items: center; justify-content: center; margin-top:80px;}
  .cta-card .cta-content { text-align: center;
  /*max-width: 487px;*/
  }
  .cta-card h3 { color: #000000; font-size: 36px; margin-bottom: 16px; line-height:120%; }
  .cta-card p { color: #000000; font-size: 20px; margin-bottom: 28px; }

  /* ================= EXPECT SECTION ================= */
  .expect-section { padding: 120px 0; background: var(--bg-cream); }
  .expect-title { font-weight: 600; font-size: 55px; line-height: 89%; text-align: center; color: var(--primary-blue); margin-bottom: 24px; }
  .expect-subtitle { font-weight: 400; font-size: 20px; line-height: 130%; text-align: center; color: #000000; margin-bottom: 80px; }
  .expect-timeline { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; position: relative; }
  .timeline-step { flex: 1; text-align: center; position: relative; }
  .step-number { width: 80px; height: 80px; background: var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 32px; color: #ffffff; margin: 0 auto 24px; }
  .step-connector { position: absolute; top: 35px; left: 58%; width: 100%; height: 2px; border-top: 2px dashed var(--accent-gold); z-index: 1; }
  .timeline-step:last-child .step-connector { display: none; }
  .step-title { font-weight: 600; font-size: 24px; line-height: 120%; color: #CF9529; margin-bottom: 12px; }

  /* ================= POST SURGERY SECTION ================= */
  .post-surgery-section { padding: 120px 0; background: #ffffff; }
  .post-surgery-container { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .post-surgery-text .eyebrow { font-size: 24px; font-weight: 500; color: #000000; line-height: 1.2; margin-bottom: 18px; }
  .post-surgery-text h2 { font-size: 55px; font-weight: 600; line-height: 1.2; color: var(--primary-blue); margin-bottom: 26px; }
  .post-surgery-text .description { font-size: 17px; line-height: 1.65; color: #333333; margin-bottom: 18px; max-width: 520px; }
  .post-surgery-list { list-style: disc; padding-left: 18px; margin: 28px 0 38px; }
  .post-surgery-list li { font-size: 16.5px; line-height: 1.6; color: #333333; margin-bottom: 12px; }
  .hero-btn.post-surgery-btn { padding: 12px 34px; border-radius: 999px; font-size: 15px; font-weight: 500; color: #00254A; width: fit-content; }

  /* ================= EDUCATION SECTION ================= */
  .education-section { padding: 120px 0; background: #FFFFFF; }
  .education-header { text-align: center; margin: 0 auto 60px; }
  .education-header h2 { font-size: 55px; font-weight: 600; line-height: 1.2; color: var(--primary-blue); margin-bottom: 16px; }
  .education-header p { font-size: 20px; color: #000000; line-height: 1.5; }
  .education-video { position: relative; max-width: 960px; margin: 0 auto; border-radius: 16px; overflow: hidden; cursor: pointer; }
  .education-video img { width: 100%; display: block; border-radius: 16px; }
  .education-video .play-btn { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; background: rgba(255,255,255,0.9); border: 1px solid #fff; }
  /* =========================
   YOUTUBE MODAL (SCOPED)
   ========================= */

#ytModal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

#ytModal.active {
  display: block;
}

/* BACKDROP */
#ytModal .video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

/* MODAL WRAPPER */
#ytModal .video-modal-inner {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  aspect-ratio: 16 / 9;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* PLAYER */
#ytModal #ytPlayer,
#ytModal #ytPlayer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CLOSE BUTTON */
#ytModal .close-modal {
  position: absolute;
  top: 28px;
  right: 20;
  font-size: 40px;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* SMOOTH FADE */
#ytModal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#ytModal.active {
  opacity: 1;
  pointer-events: auto;
}


  /* ================= FAQ SECTION ================= */
  .faq-section { background: #ffffff; padding: 120px 0; position: relative; }
  .faq-title { text-align: center; font-size: 55px; color: var(--primary-blue); margin-bottom: 70px; }
  .faq-content-wrapper { display: grid; width: 100%; align-items: flex-start; grid-template-columns: 1fr auto; z-index: 2; padding: 0 60px 120px; }
  .faq-items-column { display: flex; flex-direction: column; gap: 22px; max-width: 700px; margin-left: 30px; padding-top: 50px; }
  .faq-question { width: 100%; background: #F6F6F6; border-radius: 5px; padding: 26px 30px; display: flex; align-items: center; gap: 18px; cursor: pointer; border: none; box-shadow: 0px 24.56px 32.74px -14.73px #95959540; }
  .faq-question:hover { transform: translateY(-2px); }
  .faq-plus-left { font-size: 28px; color: var(--primary-blue); }
  .faq-question h3 { font-size: 17px; font-weight: 600; color: var(--primary-blue); flex: 1; }
  .faq-plus-right { width: 28px; height: 28px; background: var(--accent-gold); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; }
  .faq-answer { max-height: 0; overflow: hidden; opacity: 0; padding-left: 48px; transition: max-height .35s ease, opacity .25s ease; }
  .faq-item.active .faq-answer { max-height: 200px; opacity: 1; margin-top: 14px; }
  .faq-image-column { position: absolute; right: 50px; top: 20%; bottom: 0; width: 45%; height: 100%; display: flex; align-items: flex-end; justify-content: center; pointer-events: none; z-index: 1; }
  .faq-image-wrapper { position: relative; height: 100%; }
  .faq-image-wrapper img { width: 100%; height: auto; display: block; position: relative; z-index: 3; transform: scale(1.15) translateX(-50px); transform-origin: bottom center; }

  /* ================= MODALS ================= */
  .video-modal { position: fixed; inset: 0; z-index: 99999; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.9); }
  .video-modal.active { display: flex; }
  .video-frame { position: relative; z-index: 2; width: 90%; max-width: 1000px; aspect-ratio: 16/9; }
  .modal-close-btn { position: absolute; top: -45px; right: 0; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; z-index: 10; line-height: 1; }
  .video-frame iframe { width: 100%; height: 100%; border-radius: 16px; background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
  .close-modal { position: absolute; top: 12px; right: 16px; z-index: 3; background: none; border: 0; color: #fff; font-size: 34px; cursor: pointer; }
  

  /* ================= BARIATRIC CALL SECTION ================= */
  .bd-call-section { background: #ffffff; padding: 120px 80px; font-family: 'Lexend', sans-serif; }
  .bd-call-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    flex-wrap: nowrap;
    max-width: var(--container-width);
    margin-inline: auto;
}
  .bd-call-image { flex: 0 0 auto; width: clamp(500px, 40vw, 800px); }
  .bd-call-image img { width: 100%; height: auto; object-fit: cover; display: block; border-radius: 20px; }
  .bd-call-content { display: flex; flex-direction: column; justify-content: center; }
  .bd-call-content h2 { font-size: clamp(32px, 5vw, 55px); line-height: 1.25; font-weight: 600; color: #0B3C6F; margin-bottom: 25px; }
  .bd-call-content ul { list-style: disc; padding: 0; margin: 0 0 26px 26px; }
  .bd-call-btn {background: linear-gradient(200.42deg, #FFE4B3 13.57%, #F6C56A 98.35%); padding: 14px 34px; border-radius: 15px; font-size: 20px; font-weight: 500; color: #000; text-decoration: none; width: fit-content; display: inline-block;  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease; }

   
  .bd-call-btn:hover {
    background: linear-gradient(120.8deg, #CF9529 -24.4%, #F6C56A 53.43%);
    box-shadow: -6px 6px 17.2px rgba(207, 149, 41, 0.35);
   }
  /* Specific Override for User's nested grid */
  .obesity-top { display: grid; grid-template-columns: 0.8fr 1fr; gap: 20px; margin-bottom: 80px; }

  /* ================= FOOTER ================= */
  .dr-footer-cta { background: linear-gradient(106.77deg, #00254A 0%, #011628 103%); padding: 80px 0; color: #ffffff; position: relative; }
  .cta-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 50px; text-align: left; }
  .cta-text h3 { font-size: 32px; font-weight: 600; line-height: 1.2; margin-bottom: 8px; }
  .cta-text p { font-size: 24px; color: #c9d4e3; line-height: 1.2; }
  .btn-gold { display: inline-block; padding: 16px 32px; border-radius: 12px; background: linear-gradient(180deg, #ffd999, #f1c56a); color: #000; font-size: 16px; font-weight: 600; text-decoration: none; }
  .footer-divider { height: 1px; background: rgba(255, 255, 255, 0.15); margin: 40px 0; }
  /*.footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; }*/
/*  .footer-links {*/

/*    gap: 180px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    gap: 40px;*/
/*    margin-bottom: 50px;*/
/*}*/
    .footer-links {
    display: grid;
     grid-template-columns: 1fr 1.4fr 0.6fr;
         text-align: left;
    }
.cta-logo{
    max-width:250px;
}
   .cta-text{
       padding: 0 160px;
   }
  .footer-nav ul, .footer-procedures ul { list-style: none; padding: 0; margin: 0; }
  .footer-nav li, .footer-procedures li { margin-bottom: 12px; }
  .footer-nav a, .footer-procedures a { color: #ffffff; font-size: 16px; text-decoration: none; }
  .footer-nav a:hover, .footer-procedures a:hover { color: #ffd999; }
  .footer-procedures h4 { font-size: 16px; font-weight: 600; color: #ffd999; margin-bottom: 16px; }
  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  /* LINK */
  .social-item {
    display: flex;
    align-items: center;          /* 👈 vertical center */
    gap: 16px;
    text-decoration: none;
  }

  /* ICON */
  .social-item img {
    width: 28px;                  /* adjust if needed */
    height: 28px;
    object-fit: contain;
  }

  /* TEXT */
  .social-item span {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #FFFFFF;
    vertical-align: middle;
    transition: color 0.3s ease;
  }

  /* HOVER */
  .social-item:hover span {
    color: #FFD999;
  }

  /* CORNER LAYER DECORATION */
  .footer-corner-layer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
  }

  .footer-corner-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
  }

  /* ================= RESPONSIVE MEDIA QUERIES ================= */

  /* --- MEDIUM DESKTOPS (1600px - 1680px) --- */
  /* Transition Phase: Start shrinking from 1641px to 1400px */
  @media (max-width: 1680px) {
      :root { 
          --container-width: 1440px; 
      }
      
      /* Add more breathing room on sides */
      .container, 
      .obesity-inner,
      .bariatric-container,
      .procedures-container,
      .post-surgery-container {
          padding: 0px;
      }
      
      .header-inner { padding: 0 36px; }
      .main-nav { gap: 45px;  margin-left:100px; }
      .logo img { width: 55px; height: 50px; }
  }

  /* --- LAPTOPS (1400px - 1599px) --- */
  /* USER REQUESTED FIX: Shrink to 1200px width for laptops */
/*  @media (max-width: 1599px) {*/
/*      :root { */
/*          --container-width: 1280px; */
/*      }*/
      
  
/*      .container, */
/*      .obesity-inner,*/
/*      .bariatric-container,*/
/*      .procedures-container,*/
/*      .post-surgery-container {*/
/*          padding: 0 50px; */
/*      }*/
      
/*      .header-inner { padding: 0 30px; }*/
/*      .hero-left {*/
/*    position: relative;*/
/*    z-index: 3;*/
/*    margin-top: 30px;*/
/*}*/
/*      .main-nav { gap: 50px;  margin-left:100px; }*/
/*  }*/


  @media (max-width: 1400px) {
      :root { 
          --container-width: 1200px; 
      }

      .procedures-grid { gap: 32px; }
      .procedure-card { max-width: 100%; height: auto; min-height: 500px; }
      
      /* Adjust padding to be comfortable on 1366/1440 screens */
      .container, 
      .obesity-inner,
      .bariatric-container,
      .procedures-container,
      .post-surgery-container {
          padding: 0 30px; 
      }
      
      .header-inner { padding: 0 24px; }
      .main-nav { gap: 40px; font-size: 15px;  margin-left:80px; }
      .logo img { width: 50px; height: 45px; }
  }

  /* Tablet (768px - 1023px) */
  @media (max-width: 1023px) {
      :root { --container-width: 100%; } 
      
      .container, .obesity-inner, .procedures-container{
          padding: 0 40px;
      }
      
      /*.hero-inner, .faq-content-wrapper{ padding: 0; }*/
      .education-section { padding: 40px 0; }
      /* Stack Obesity */
      .obesity-inner { grid-template-columns: 1fr; gap: 40px; }
      .obesity-top { grid-template-columns: 1fr; gap: 40px; }
      
      .bar-content { flex-direction: column; gap: 10px; }
      .bar-icon::after { display: none; }
      .obesity-bar { padding: 20px; text-align: left; }
      
      .procedures-grid { grid-template-columns: 1fr; }
      .bd-call-wrap { flex-direction: column;  display:flex;  align-items: flex-start;}
      /*.bd-call-image { width: 100%; height: 400px; }*/
      /*.bd-call-content { text-align: center; align-items: center; }*/
      /*.bd-call-content ul { text-align: left; }*/
      
      .post-surgery-container { grid-template-columns: 1fr; text-align: left; padding:0;}
      .post-surgery-list { text-align: left; margin: 24px auto; }
      .faq-section{padding:40px 0;}
      .faq-content-wrapper { padding: 0; grid-template-columns: 1fr; }
      .faq-image-column { position: static; width: 100%; margin-top: 40px; display: none; }
      .faq-items-column { max-width: 100%; margin: 0; }
      
      .expect-timeline { flex-direction: column; gap: 50px; align-items: center; }
      .step-connector { display: none; }
        .main-nav,
  .nav-divider,
  .header-cta {
    display: none;
  }

  /* Make header flex stable */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

     .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;   /* THIS pushes it right */
  width: 40px;         /* fixed width */
  height: 40px;
}
      /* Mobile Menu Trigger visible here? No, usually 991px */
      .main-nav, .nav-divider, .header-cta { display: none; }
  }

.cta-text{
    padding:0;
}
@media (max-width: 768px) {
        
          
          html, body {
            width: 100%; /* Prevents horizontal scroll */
            overflow-x: hidden; 
            scroll-behavior: smooth;
            }
      .container, 
      .obesity-inner,
      .procedures-section,
      .patient-stories,
      /*.faq-section,*/
      .bariatric-outcome-section {
          padding: 0px 15px; /* Using 15px for safety, very close to 10px */
      }

      /* 2. All Text Align Left */
      h1, h2, h3, h4, p, .procedures-title, .expect-title, .obesity-heading, .obesity-text {
          text-align: left !important;
      }
    
    .bd-call-section{
        padding:40px 15px;
    }
    
    .post-surgery-section,
    .patient-stories{
        padding:60px 15px;
    }
   .patient-top {
    text-align: center;
    margin-bottom: 20px;
}
      /* HEADER FIX */
      .site-header { padding: 10px 10px; }
      .header-inner { height: 60px; display: flex; border-radius: 15px; }
      .logo img { width: 45px; height: 40px; }
   .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;   /* THIS pushes it right */
  width: 40px;         /* fixed width */
  height: 40px;
}
      .main-nav, .nav-divider, .header-cta { display: none; }


      /* SCROLL STATE MOBILE padding-bottom: 10px; */
      .site-header.scrolled .header-inner { height: 60px;  }

  .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 0;
    }
    
    .hero-inner {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
        gap: 0;
    }
    
    /* IMAGE FIRST (TOP) - CENTERED & SMALLER */
    .hero-left {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }
    
    .hero-left img {
        max-width: 280px;
        width: 75%;
        height: auto;
        margin: 0;
    }
    
    /* GIF SIGNATURE SECOND - CENTERED BELOW DOCTOR */
    .hero-right {
        order: 2;
        width: 100%;
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
    /* SHOW GIF ON MOBILE - CENTERED */
    .hero-bg-gif {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto 20px !important;
        display: block !important;
        pointer-events: none;
        z-index: 2;
    }
    
    /* HERO CONTENT - CENTERED */
    .hero-content {
        align-items: center;
        text-align: left;
        padding: 0 0 40px;
        width: 100%;
    }
    
    /* STATS - HORIZONTAL ROW WITH DIVIDERS */
    .hero-stats {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        width: 100%;
    }
    
    /* EACH STAT - CENTERED */
    .stat {
        display: flex;
        flex-direction: column;
        /*align-items: center;*/
        text-align: left;
        /*flex: 0 0 auto;*/
    }
    
    .stat span {
        font-size: 20px;
        font-weight: 600;
        color: #111;
        line-height: 1.2;
        white-space: nowrap;
        text-align: left;
    }
    
    .stat p {
        font-size: 12px;
        line-height: 1.6;
        color: #000000;
        margin-top: 4px;
        width: auto;
        max-width: 120px;
    }
    
    /* DIVIDERS - VISIBLE ON MOBILE */
    .divider {
        display: block;
        width: 1px;
        background: #DADADA;
        margin-top: 0;
        align-self: center;
    }
    
    /* BUTTON - FULL WIDTH, CENTERED */
    .hero-btn {
        width: 100%;
        max-width: 340px;
        align-self: center;
        padding: 18px 40px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    /* STRIP WRAPPER */
    .hero-strip-wrapper {
        margin-top: 0;
    }
    
    /* STRIP */
    .hero-strip {
        padding: 20px 0;
    }
    
    .hero-strip-inner {
        animation: scrollText 10s linear infinite;
    }
    
    .hero-strip span {
        font-size: 26px;
    }
      /* OBESITY BARS FIX (No Animation, Blue Hover) */
      .obesity-bar { 
          padding: 20px; 
          flex-direction: column; 
          align-items: flex-start; /* Text Left */
          text-align: left;
          justify-content: center;
          transition: background 0.3s ease; /* Remove transform transition */
      }
      .bar-icon { margin-bottom: 15px; width: 100%; justify-content: flex-start;}
      .bar-icon::after { display: none; }
      .bar-content { gap: 5px; align-items: flex-start; }
      .bar-content h3 { font-size: 24px; white-space: normal; }
      .bar-content p { font-size: 16px; }
      
      /* HOVER STATE: BLUE, NO MOVEMENT */
        .bariatric-container{
            padding:0;
        }
      .obesity-bar:hover {
          transform: none !important; /* No movement */
          background: #0B3A6A !important; /* Blue Color */
      }
         .obesity-top { grid-template-columns: 1fr; gap: 40px; margin-bottom:0; }
      /* On mobile hover, ensure text is white and doesn't resize */
      .obesity-bar:hover h3 { color: #fff; font-size: 24px !important; }
      .obesity-bar:hover p { color: #fff; font-size: 16px !important; }
      .obesity-section{ padding:40px 0;}
      /* PROCEDURES FIX (Decrease Height & Font) */
      .procedures-grid { 
          grid-template-columns: 1fr; 
          gap: 30px; 
          display: flex;
          flex-direction: column;
      }
      .procedures-container{ padding:40px  0px; }
      .procedure-card { 
          height: auto; 
          min-height: 420px; /* Decreased Height */
          border-radius: 16px; 
          margin: 0 auto; /* Center Card */
      }
      .procedure-card:hover h3{
          font-size:22px;
      }
        .procedure-card:hover p{
          font-size:15px;
      }
      .card-image { height: 300px; /* Decrease image area */
      }
      .card-panel { 
          padding: 20px; 
          text-align: left;
      }
      .card-panel h3 { 
          font-size: 22px; /* Decreased Font */
          margin-bottom: 6px; 
      }
      .card-panel p { 
          font-size: 15px; /* Decreased Para */
          margin-bottom: 8px; 
      }
      
      .card-hover li{
             font-size: 12px; 
             padding:2px 0;
      }
    .cta-card .cta-content{
        text-align:left;
    }
       .cta-text{
       padding: 0;
   }
      /* CAROUSEL FIX (Remove Carousel, One Swiper Only) */
    .figma-video-area {
    height: auto !important;
    padding: 20px 0;
    overflow: hidden;
  }

  .subtract-bg {
    display: none !important;
  }

  .figma-carousel {
    height: auto;
  }

  /* Make track horizontal scroll */
  .figma-track {
    position: static !important;
    display: flex !important;
    gap: 16px;
    height: auto !important;
    overflow-x: auto;
    /*padding: 0 16px;*/
    pointer-events: auto !important;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Hide scrollbar */
  .figma-track::-webkit-scrollbar {
    display: none;
  }
    .cta-card h3{
        font-size:28px;
    }
  /* Remove ALL desktop positioning & animation */
  .figma-slide,
  .figma-slide.center,
  .figma-slide.left-1,
  .figma-slide.left-2,
  .figma-slide.right-1,
  .figma-slide.right-2 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    flex: 0 0 85%;
    height: 250px !important;

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    scroll-snap-align: center;
  }

     .expect-section{
        padding:60px 0px;
    }
  /* Image fit clean */
  .figma-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Always show play button centered */
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .play-btn::after {
    border-left: 18px solid var(--primary-blue);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  /* Hide arrows & dots */
  .figma-controls {
    display: none !important;
  }
      
      .step-desc, .step-title{
          text-align: center !important;
      }
      /* TYPOGRAPHY FIX */
      .obesity-heading h2, .bariatric-heading, .patient-top h2, .procedures-title, .expect-title, .post-surgery-text h2, .education-header h2, .faq-title { 
          font-size: 32px; 
          line-height: 1.2; 
          text-align: left !important;
      }
      .faq-title{
          margin-bottom:0;
      }
      /* Bariatric Mobile */
      .bariatric-cards { grid-template-columns: 1fr; margin-bottom: 20px; }
      .bariatric-card { font-size: 22px; padding: 32px 24px; min-height: 200px; text-align: center;}
      
      /* Icons Mobile Grid (2x2) */
      .patient-icons { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .icon-item img { width: 80px; height: 80px; }
      .icon-item p { text-align: center !important; font-size:16px; }
      
      /* Call Section Mobile */
      /*.bd-call-image { width: 100%; height: 300px; }*/
      /*.bd-call-content { text-align: left !important; align-items: flex-start; }*/
      /*.bd-call-content ul { text-align: left; }*/
      /* .bd-call-wrap { flex-direction: column;  display:flex;  align-items: center; gap:80px;}*/
      .bd-call-wrap {
    display: flex;
    flex-direction: column;   /* Stack image + content */
    align-items: center;      /* Center everything */
    gap: 60px;                /* Space between image & content */
}

.bd-call-image {
    width: 100%;
    text-align: center;       /* Center image */
}

.bd-call-image img {
    width: 100%;
    max-width: 600px;         /* Optional: control size */
    height: auto;
    display: block;
    margin: 0 auto;           /* Center image */
}

.bd-call-content {
    width: 100%;
    max-width: 700px;
}

      /* Footer Mobile */
      .footer-links { display: grid; grid-template-columns: 1fr; gap: 40px;  }
      .cta-row { flex-direction: column; align-items: flex-start; text-align: left; gap: 20px; }
      .cta-logo {
    max-width: 180px;
}
  }

  /* LARGE DESKTOP */
  /*@media (min-width: 1920px) {*/
  /*    .header-inner { max-width: 1800px; padding: 0 80px; }*/
  /*    .logo img { width: 70px; height: 65px; }*/
  /*    .main-nav a { font-size: 20px; }*/
  /*    .header-cta { font-size: 20px; }*/
  /*}*/
  
  
/* ================= INNER PAGE HERO ================= */
.inner-hero {
  background: linear-gradient(
    274.33deg,
    #00467C 2.16%,
    #002746 100.71%
  );
  position: relative;
  overflow: hidden;
}

/* Subtle medical glow */
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 35%,
    rgba(255,255,255,0.08),
    transparent 60%
  );
  pointer-events: none;
}

.inner-hero-container {
  margin: 0 auto;
  padding: 0 160px;
}

/* ================= TITLE ================= */
.inner-hero-title {
  font-family: "Alumni Sans", sans-serif;
  font-size: clamp(56px, 8vw, 130px);
  color: #fff;
  font-weight:400;
  line-height:117%;
}
/* ================= SUBTITLE ================= */
.inner-hero-subtitle {
  font-family: "Lexend", sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  color: rgba(255,255,255,0.85);
  /*max-width: 720px;*/
    /*line-height:117%;*/

}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  /*.inner-hero {*/
  /*  padding: 110px 0 90px;*/
  /*}*/

  .inner-hero-title {
    font-size: 96px;
  }

  .inner-hero-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
    .inner-hero {
        /*padding: 90px 0 70px;*/
        width: 100%;
    }
  .inner-hero-container {
    /*padding: 0 24px;*/
  }

  .inner-hero-title {
    font-size: 56px;
    line-height:90%;
  }

  .inner-hero-subtitle {
    font-size: 20px;
    padding-top: 20px;

  }
}

@media (max-width: 480px) {
  /*.inner-hero {*/
  /*  padding: 70px 0 50px;*/
  /*}*/

  .inner-hero-title {
    font-size: 42px;
  }

  .inner-hero-subtitle {
    font-size: 18px;
    max-width: 100%;
  }
   
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-inner {
        padding: 0 15px;
    }
    
    .hero-left img {
        max-width: 240px;
        width: 70%;
    }
    
    .hero-bg-gif {
        max-width: 280px !important;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat span {
        font-size: 20px;
    }
    
    .stat p {
        font-size: 12px;
        max-width: 80px;
    }
    
    .divider {
        height: 45px;
    }
    
    .hero-btn {
        max-width: 300px;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .hero-strip span {
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    .hero-left img {
        max-width: 220px;
        width: 65%;
    }
    
    .hero-bg-gif {
        max-width: 250px !important;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat span {
        font-size: 18px;
    }
    
    .stat p {
        font-size: 11px;
        max-width: 70px;
    }
    
    .divider {
        height: 40px;
    }
    
    .hero-btn {
        max-width: 280px;
        font-size: 14px;
    }
}
/* ================= OBESITY INFO SECTION ================= */
.obesity-info-section {
    /*padding: 40px 160px;*/
    background: #ffffff;
}

.obesity-info-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  /*gap: 60px;*/
}

.obesity-info-content{
    width:100%;
}

/* ================= LEFT CONTENT ================= */
.obesity-info-content h2 {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  color: #00467C;
  margin-bottom: 28px;
}

.obesity-info-content p {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  margin-bottom: 26px;
  max-width: 780px;
}

.obesity-info-content p strong {
  font-weight: 700;
  color: #000000;
}

/* ================= BULLET POINTS ================= */
.obesity-points {
  padding: 25px;

    
}

.obesity-points li {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 187%;
  color: #333;
  /*padding-left: 28px;*/
  margin-bottom: 14px;
  position: relative;
    list-style: disc;

}

.obesity-points li strong {
     font-weight: 700;
}


/* ================= RIGHT IMAGE ================= */
.obesity-info-image {
  width: 100%;
  display: flex;
  justify-content: center; 
}

.obesity-info-image img {
  max-width: 460px;
  width: 100%;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {

  .obesity-info-container {
    grid-template-columns: 1fr;
  }

  /* Show image first */
  .obesity-info-image {
    order: -1;
    margin-bottom: 30px;
  }

  /* Reduce image size */
  .obesity-info-image img {
           max-width: 280px;
        height: auto;
  }

}

@media (max-width: 768px) {
  .obesity-info-section {
    /*padding: 80px 0;*/
  }

  .obesity-info-container {
    padding: 0 24px;
  }

  .obesity-info-content h2 {
    font-size: 36px;
  }

  .obesity-info-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .obesity-info-section {
    /*padding: 60px 0;*/
  }

  .obesity-info-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .obesity-info-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .obesity-points li {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* ================= ELIGIBILITY SECTION ================= */
.eligibility-section {
  /*padding: 120px 160px;*/
  background: #ffffff;
}

.eligibility-container {
  margin: 0 auto;
}

.eligibility-container p{
    font-weight:300;
}
/* ================= HEADING ================= */
.eligibility-title {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 127%;
  text-align: center;
  color: #00467C;
  margin-bottom: 70px;
}

/* ================= BOX BASE ================= */
.eligibility-box {
  position: relative;
  border-radius: 12px;
  padding: 50px 50px 40px 70px;
  margin-bottom: 40px;
}

/* ================= ICON IMAGE ================= */
.eligibility-box-header img {
  position: absolute;
  top: -22px;
  width: 56px;
  height: 56px;
}

/* ================= BOX HEADER ================= */
.eligibility-box-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.eligibility-box-header h3 {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  margin: 0;
}

/* ================= GREEN BOX ================= */
.eligibility-green {
  background: #F4FFFA;
}

.eligibility-green h3 {
  color: #1DD882;
}

/* ================= RED BOX ================= */
.eligibility-red {
  background: #FFF3F5;
}

.eligibility-red h3 {
  color: #F44D61;
}

/* ================= ICON ================= */
.icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.icon.green {
  background: #1DD882;
}

.icon.red {
  background: #F44D61;
}

/* ================= LIST ================= */
.eligibility-box ul {
  margin: 0;
  padding-left: 20px;
}

.eligibility-box li {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 133%;
  color: #000000;
  margin-bottom: 14px;
}
.eligibility-box-header-sub-list{
    padding-left:40px !important;
}

/* ================= BOTTOM NOTE ================= */
.eligibility-note {
  margin-top: 60px;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #000000;
}

.eligibility-note strong {
    font-weight: 700;
    color: #000000;
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .eligibility-section {
    /*padding: 80px 24px;*/
  }

  .eligibility-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .eligibility-box {
    padding: 28px 24px;
  }

  .eligibility-box-header h3 {
    font-size: 20px;
    padding-top: 20px;
  }

  .eligibility-box li {
    font-size: 16px;
  }

  .eligibility-note {
    font-size: 18px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .eligibility-section {
    /*padding: 60px 20px;*/
  }

  .eligibility-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .eligibility-box {
    padding: 24px 20px;
    margin-bottom: 24px;
  }

  .eligibility-box-header img {
    width: 48px;
    height: 48px;
    top: -18px;
  }

  .eligibility-box-header h3 {
    font-size: 18px;
  }

  .eligibility-box li {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .eligibility-note {
    font-size: 16px;
  }
}

/* ================= SECTION ================= */
.sleeve-journey-section {
  background: #FFF7E9;
  /*padding: 120px 160px;*/
}

.journey-container {
  margin: 0 auto;
}

/* ================= HEADING ================= */
.journey-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 89%;
  text-align: center;
  color: #00467C;
  margin-bottom: 20px;
}

.journey-subtitle {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #000;
  max-width: 720px;
  margin: 0 auto 90px;
}

/* ================= LAYOUT ================= */
.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

/* ================= TIMELINE ================= */

.journey-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px; /* better spacing between steps */
}

/* Each step */
.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 28px;
  position: relative;
}

/* Circle wrapper */
.timeline-number {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Vertical dashed line (dynamic) */
.timeline-number::after {
  content: "";
  position: absolute;
  top: 80px; /* starts below circle */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 40px);
  background: repeating-linear-gradient(
    to bottom,
    #7D7D7D 0,
    #7D7D7D 6px,
    transparent 6px,
    transparent 14px
  );
}

/* REMOVE line from last step */
.journey-step:last-child .timeline-number::after {
  display: none;
}

/* ================= TEXT ================= */
.step-text{
    margin-top:16px;
}
.step-text h3 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #CF9529;
  margin-bottom: 6px;
}

.step-text p {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #000;
  margin: 0;
}

/* ================= IMAGE ================= */
.journey-image {
  display: flex;
}

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

/* ================= FOOTER ================= */
.journey-footer {
  margin-top: 80px;
  text-align: center;
}

.journey-footer p {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.journey-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 16px;
  background: linear-gradient(
    200.42deg,
    #FFE4B3 13.57%,
    #F6C56A 98.35%
  );
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: background 300ms ease-out, box-shadow 300ms ease-out;
}

/* Hover state */
.journey-btn:hover {
    background: linear-gradient(120.8deg, #CF9529 -24.4%, #F6C56A 53.43%);
    box-shadow: -6px 6px 17.2px rgba(207, 149, 41, 0.35);
}

/* ================= RESPONSIVE ================= */
/* ================= TABLET ================= */
@media (max-width: 992px) {

  .journey-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .journey-image {
    order: -1; /* Image moves to top */
  }

  .journey-step {
    grid-template-columns: 70px 1fr;
    column-gap: 22px;
  }

  .step-number {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  /* Adjust dynamic vertical line */
  .timeline-number::after {
    top: 65px;
  }

  .journey-title {
    font-size: 40px;
  }

  .journey-subtitle {
    font-size: 18px;
  }
  .step-text{
      margin-top:0;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .journey-title {
    font-size: 32px;
  }

  .journey-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .journey-step {
    grid-template-columns: 55px 1fr;
    column-gap: 18px;
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  /* Adjust dynamic line start position */
  .timeline-number::after {
    top: 55px;
  }

  .step-text h3 {
    font-size: 20px;
  }

  .step-text p {
    font-size: 15px;
  }

  .journey-footer {
    margin-top: 50px;
    text-align: left;
  }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .journey-title {
    font-size: 26px;
    line-height: 110%;
  }

  .journey-step {
    grid-template-columns: 50px 1fr;
    column-gap: 14px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  /* Match smaller circle */
  .timeline-number::after {
    top: 48px;
  }

  .step-text h3 {
    font-size: 18px;
  }

  .step-text p {
    font-size: 14px;
  }

  .journey-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}


/* ================= SECTION ================= */
.benefits-section {
  background: #ffffff;
  /*padding: 60px 160px 0;*/
}

.benefits-container {
  margin: 0 auto;
}

/* ================= EYEBROW ================= */
.benefits-eyebrow {
  display: block;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 117%;
  color: #000000;
  margin-bottom: 10px;
}

/* ================= TITLE ================= */
.benefits-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 120%;
  color: #00467C;
  margin-bottom: 30px;
}

/* ================= GRID ================= */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ================= SUBTITLES ================= */
.benefits-subtitle {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #CF9529;
  margin-bottom: 18px;
}

/* ================= LISTS ================= */
.benefits-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0 0 32px;
}

.benefits-list li {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: #000;
  margin-bottom: 10px;
}

/* Nested list */
.benefits-sublist {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0 14px;
}

.benefits-sublist li {
  margin-bottom: 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .benefits-section {
    /*padding: 50px 24px 0;*/
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .benefits-eyebrow {
    font-size: 36px;
  }

  .benefits-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    /*padding: 40px 16px 0;*/
  }

  .benefits-eyebrow {
    font-size: 28px;
  }

  .benefits-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .benefits-subtitle {
    font-size: 18px;
  }

  .benefits-list li {
    font-size: 15px;
  }
}

/* ================= SECTION ================= */
.risks-section {
  background: #ffffff;
  /*padding: 60px 160px 0;*/
}

.risks-container {
  margin: 0 auto;
}

/* ================= EYEBROW ================= */
.risks-eyebrow {
  display: block;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 117%;
  color: #000;
  margin-bottom: 10px;
}

/* ================= TITLE ================= */
.risks-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 120%;
  color: #00467C;
  margin-bottom: 18px;
}

/* ================= INTRO ================= */
.risks-intro {
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  line-height: 134%;
  color: #000;
    font-weight:300;

  /*max-width: 760px;*/
  margin-bottom: 70px;
}

/* ================= GRID ================= */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

/* ================= ITEM ================= */
.risk-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;   /* perfect horizontal center */
  justify-content: flex-start;
}

/* IMAGE FIX */
.risk-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  margin-left: 0; /* REMOVE WRONG ALIGNMENT */
  display: block;
}

/* TEXT FIX */
.risk-item p {
  font-family: 'Lexend', sans-serif;
  font-weight: 400 !important;
  font-size: 20px !important;
  line-height: 1.4;
  color: #000;
  margin: 0;
  text-align: center;
  max-width: 240px; /* keeps text neat */
}
.risks-container p{
     font-family: 'Lexend', sans-serif;
  font-size: 20px;
  line-height: 134%;
  color: #000;
    font-weight:300;

}
/* ================= FOOTER ================= */
.risks-footer {
  margin-top: 70px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .risks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .risks-section {
    /*padding: 50px 24px 0;*/
  }

  .risks-title {
    font-size: 32px;
  }
  .risk-item p {
        text-align:center !important;
            font-size: 16px !important;
  }

  .risks-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 20px;
  }

  .risks-eyebrow {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .risks-section {
    /*padding: 40px 16px 0;*/
  }

  .risks-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .risk-item img {
    width: 56px;
    height: 56px;
  }

  .risk-item p {
    font-size: 14px;
  }

  .risks-eyebrow {
    font-size: 32px;
  }

  .risks-title {
    font-size: 32px;
  }
}

/* ================= SECTION ================= */
.recovery-section {
  background: #ffffff;
  /*padding: 120px 160px 0;*/
}

.recovery-container {
  margin: 0 auto;
}

/* ================= EYEBROW ================= */
.recovery-eyebrow {
  display: block;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 117%;
  color: #000;
  margin-bottom: 8px;
}

/* ================= TITLE ================= */
.recovery-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 120%;
  color: #00467C;
  margin-bottom: 30px;
}

/* ================= LIST ================= */
.recovery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.recovery-list li {
 font-family: 'Lexend', sans-serif;
    font-size: 20px;
    line-height: 216%;
    color: #000;
    margin-bottom: 10px;
    font-weight: 300;
}

.recovery-list strong {
  font-weight: 600;
}

/* ================= NOTE ================= */
.recovery-note {
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  line-height: 134%;
  color: #000;
  font-weight: 300;
}

.recovery-note span {
  color: #CF9529;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .recovery-section {
    /*padding: 80px 24px 0;*/
  }

  .recovery-title {
    font-size: 34px;
  }

  .recovery-eyebrow {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .recovery-section {
    /*padding: 60px 16px 0;*/
  }

  .recovery-title {
    font-size: 26px;
  }

  .recovery-eyebrow {
    font-size: 32px;
  }

  .recovery-list li {
    font-size: 15px;
  }

  .recovery-note {
    font-size: 15px;
  }
}

/* ================= SECTION ================= */
.transformations-section {
  background: linear-gradient(180deg, #fff 0%, #fff6e4 100%);
  /*padding: 60px 160px;*/
  overflow: hidden;
}

.transformations-container {
  margin: 0 auto;
}

/* ================= TEXT ================= */
.transformations-eyebrow {
  font-family: 'Alumni Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #000;
  text-align: center;
}

.transformations-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  color: #00467C;
  text-align: center;
  margin-bottom: 60px;
}

/* ================= SLIDER ================= */
.transformations-slider {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

/* FIX swiper forcing full size */
.transformations-slider .swiper-slide {
  width: auto !important;
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= CARD ================= */
.video-card {
  position: relative;
  width: 520px;
  height: 300px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  transform: scale(0.92);
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}

.swiper-slide-active .video-card {
  transform: scale(1);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= PLAY BUTTON ================= */
.play-btn {
  position: absolute;
/*   inset: 0; */
  margin: auto;
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid #00467C;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .transformations-section {
    /*padding: 50px 24px;*/
  }
}

@media (max-width: 768px) {
  .transformations-section {
    /*padding: 40px 20px;*/
  }

  .video-card {
    width: 300px;
    height: 190px;
  }

  .transformations-title {
    font-size: 32px;
  }

  .transformations-eyebrow {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .transformations-section {
    padding: 30px 16px;
  }

  .video-card {
    width: 260px;
    height: 160px;
  }

  .transformations-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .transformations-eyebrow {
    font-size: 28px;
  }

  .play-btn {
    width: 56px;
    height: 56px;
  }
}

/* ================= SECTION ================= */
.surgeon-section {
  background: #ffffff;
  /*padding: 120px 160px;*/
}

.surgeon-container {
  margin: 0 auto;
}

/* ================= HEADINGS ================= */
.surgeon-eyebrow {
  font-family: 'Alumni Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  color: #000;
  margin-bottom: 12px;
}

.surgeon-title {
  font-family: 'Lexend', sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  color: #00467C;
  margin-bottom: 40px;
}

/* ================= GRID ================= */
.surgeon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.surgeon-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ================= IMAGE ================= */
.surgeon-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.surgeon-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(246,197,106,0.35),
    transparent 70%
  );
  z-index: -1;
  filter: blur(30px);
}

.surgeon-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* ================= CONTENT ================= */
.surgeon-name {
  font-family: 'Lexend', sans-serif;
  font-size: 55px;
  font-weight: 600;
  color: #00467C;
  margin-bottom: 6px;
}

.surgeon-role {
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
}

.surgeon-desc {
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  font-weight:300;
  line-height: 150%;
  color: #000;
  /*max-width: 420px;*/
  margin-bottom: 26px;
}

/* ================= BUTTON ================= */
.surgeon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(200deg, #FFE4B3, #F6C56A);
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  box-shadow: -6px 6px 17px rgba(207, 149, 41, 0.35);
  transition: all 0.3s ease;
}

.surgeon-btn:hover {
  transform: translateY(-2px);
}

/* ================= FOOT NOTE ================= */
.surgeon-note {
  margin-top: 12px;
  font-family: 'Lexend', sans-serif;
  font-weight:300;
  font-size: 20px;
  color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  /*.surgeon-section {*/
  /*  padding: 80px 24px;*/
  /*}*/

  .surgeon-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .surgeon-content {
    align-items: flex-start;
  }

  .surgeon-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .surgeon-title {
    font-size: 36px;
  }
    .surgeon-role {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-align:center;
  margin-bottom: 16px;
}

  .surgeon-name {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  /*.surgeon-section {*/
  /*  padding: 60px 16px;*/
  /*}*/

  .surgeon-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .surgeon-eyebrow {
    font-size: 18px;
  }

  .surgeon-name {
    font-size: 22px;
  }

  .surgeon-desc {
    font-size: 16px;
  }

  .surgeon-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .surgeon-note {
    font-size: 13px;
  }
}


/*.header-inner {*/
/*    background: #03030399;*/
/*}*/


/* ===============================
   UNIVERSAL CONTAINER
================================ */
.inner-hero-container,
.obesity-info-container,
.eligibility-container,
.journey-container,
.benefits-container,
.risks-container,
.recovery-container,
.transformations-container,
.surgeon-container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-desktop);
}

.inner-hero { padding-block: 140px 110px; }
.obesity-info-section { padding-block: 80px; }
.eligibility-section { padding-block: 120px; }
.sleeve-journey-section { padding-block: 120px; }
.benefits-section { padding-block: 60px 0; }
.risks-section { padding-block: 60px 0; }
.recovery-section { padding-block: 60px 0; }
.transformations-section { padding-block: 60px; }
.surgeon-section { padding-block: 120px; }

@media (max-width: 1024px) {
  .inner-hero-container,
  .obesity-info-container,
  .eligibility-container,
  .journey-container,
  .benefits-container,
  .risks-container,
  .recovery-container,
  .transformations-container,
  .surgeon-container {
    padding-inline: var(--container-padding-tablet);
  }
}

@media (max-width: 768px) {
  .inner-hero-container,
  .obesity-info-container,
  .eligibility-container,
  .journey-container,
  .benefits-container,
  .risks-container,
  .recovery-container,
  .transformations-container,
  .surgeon-container {
    padding-inline: var(--container-padding-mobile);
  }
}


/* =====================================================
  About us Hero
===================================================== */


.dr-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

/* OVERLAY */
.dr-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* CONTENT */
.dr-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.dr-hero-content {
  max-width: 820px;
}

/* TYPOGRAPHY */
.dr-hero-eyebrow {
  display: block;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 117%;
  color: #ffffff;
  margin-bottom: 16px;
}

.dr-hero-title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 400;
  font-size: 130px;
  line-height: 79%;
  color: #ffffff;
  margin: 0;
}

/* Hide mobile image on desktop */
.dr-hero-mobile-img {
  display: none;
}

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

@media (max-width: 991px) {
 .dr-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;

    background-size: cover;
    background-position: 80% center; /* keeps right focal */
    background-repeat: no-repeat;
     background-attachment: scroll !important; /* removes iOS parallax */
  transform: none !important;               /* remove accidental zooms */
  will-change: auto !important;             /* prevent browser optimizations */
  perspective: none !important; 
  }

  /* Smooth blue blend from bottom only */
  .dr-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45vh; /* bottom area */

    background: linear-gradient(
      to top,
      #00467C 0%,
      rgba(0, 70, 124, 0.95) 40%,
      rgba(0, 70, 124, 0.6) 70%,
      rgba(0, 70, 124, 0) 100%
    );

    z-index: 1;
  }

  .dr-hero-overlay {
    display: none;
  }

  .dr-hero-container {
    position: relative;
    z-index: 2;
    padding: 50px 20px 60px;
  }

  .dr-hero-title {
    font-size: 42px;
    line-height: 130%;
    color: #ffffff;
  }

  .dr-hero-eyebrow {
    font-size: 18px;
    color: #ffffff;
  }
}


/* ===============================
   DOCTOR PHILOSOPHY SECTION
================================ */
.philosophy-section {
  background: #ffffff;
  padding: 120px 20px;
}

.philosophy-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===============================
   IMAGE
================================ */
.philosophy-image-wrap {
  position: relative;
}

.philosophy-image-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, #fff3db 0%, transparent 70%);
  z-index: 0;
}

.philosophy-image {
    position: relative;
     /*width: 100%; */
    /*max-width: 730px;*/
    max-height: 715px;
    object-fit: cover;
    /* border-radius: 32px; */
    z-index: 1;
}

/* ===============================
   CONTENT
================================ */
.philosophy-content {
  display: flex;
  flex-direction: column;
  justify-content: center;    /* VERTICAL CENTER */
}

.philosophy-title {
  font-family: "Lexend", sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 117%;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.philosophy-text {
  font-size: 20px;
  font-weight:300;
  line-height: 134%;
  color: #333;
  margin-bottom: 14px;
  /*max-width: 520px;*/
  word-wrap: break-word;
}

.philosophy-list {
  margin: 12px 0 18px;
  padding-left: 18px;
  /*max-width: 520px;*/
  line-height: 134%;

}

.philosophy-list li {
  margin-bottom: 8px;
  font-size: 20px;
  color: #000000;
  text-align:left;
}

/* ===============================
   BUTTON
================================ */
.philosophy-btn {
  margin-top: 12px;
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(180deg, #f9d98c, #f6c56a);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.philosophy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 197, 106, 0.4);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .philosophy-image {
    width: 80%;            /* Decrease width on tablets */
    height: auto;
    border-radius: 24px;
    margin: 0 auto;        /* Center image */
  }

  .philosophy-content {
    max-height: none;
    text-align: center;    /* Center content on smaller screens */
  }

  .philosophy-title {
    font-size: 32px;
    max-width:100%;
  }

  .philosophy-text,
  .philosophy-list {
    max-width: 100%;
  }
   .philosophy-section {
    padding: 40px 16px;
  }

}

@media (max-width: 480px) {
  .philosophy-section {
    padding: 40px 16px;
  }
  .philosophy-title {
    font-size: 32px;
     max-width:100%;
  }

  .philosophy-image {
    width: 100%;           /* Full width on mobile */
    height: auto;
    border-radius: 16px;
  }

  /*.philosophy-title {*/
  /*  font-size: 28px;*/
  /*}*/

  .philosophy-text {
    font-size: 14px;
  }

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

  .philosophy-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* =========================================
   KEY HIGHLIGHTS SECTION (Width 1400px)
   ========================================= */

.highlights-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background */
    border-bottom: 1px solid #eeeeee;
}

.container-1400{
        max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 10px;
    align-items: center;
}
/* STRICT WIDTH CONTAINER */
/*.container-1400 {*/
/*    max-width: 1400px !important; */
/*    margin: 0 auto;              */
    /*padding: 0 30px;           
    width: 100%;
}


/* SECTION TITLE */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 55px;
    font-weight: 600;
    color: #00467C;
    margin: 0 0 10px 0;
}

.about-dr-para {
   font-family: 'Lexend', sans-serif;
    font-size: 20px;
    color: #000000;
    margin: 0;
    text-align: center;
    font-weight: 400;
    /*padding: 50px;*/
}


/* GRID LAYOUT */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; 
    align-items: flex-start;
    padding-bottom: 20px;
}

/* INDIVIDUAL CARD */
.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content */
    text-align: center;
    /*padding: 20px;*/
    transition: transform 0.3s ease;
}

/*.highlight-card:hover {*/
/*    transform: translateY(-5px);*/
/*}*/

/* ICON BOX */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%; /* Circle Shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

/* CARD TEXT */
.highlight-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    line-height: 117%;
}

.highlight-card p {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}
 
/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

/* Tablet (991px and down) - 2 Columns */
@media (max-width: 1100px) {
    .container-1400 {
        padding: 0 20px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Grid */
        gap: 30px;
    }
}

/* Mobile (767px and down) - 1 Column */
@media (max-width: 767px) {
    .highlights-section {
        padding: 50px 0;
    }
    .highlight-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    /* padding: 20px; */
    transition: transform 0.3s ease;
}
    .highlights-grid {
      
        gap: 10px;
    }
    .highlight-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    line-height: 117%;
}
    .section-header h2 {
        font-size: 32px;
    }
        .philosophy-section {
        padding: 40px 16px;
    }
}
.philosophy-sublist {
  padding-left: 25px;   /* adjust as needed */
  margin-top: 8px;
}

.philosophy-sublist li {
  margin-bottom: 6px;
}

/* SECTION */
.experience-section {
  width: 100%;
  background: #FFF7E9;
}
 
/* CONTAINER */
/*.experience-container {*/
/*  max-width: 1400px; */
/*  margin: 0 auto;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 60px;*/
/*  color:#FFF7E9;*/
/*  padding: 40px;*/
/*}*/

.experience-container{
    padding: 80px 0;
        max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
/* LEFT CONTENT (LOCKED WIDTH) */
.experience-text {
  max-width: 700px; /* prevents content from increasing */
  flex-shrink: 0;
}

/* HEADING */
.experience-heading {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  letter-spacing: 0%;
  color: #00467C;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.experience-paragraph {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  letter-spacing: 0%;
  color: #000000;
  margin-bottom: 20px;
}

/* LIST */
.experience-list {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 187%;
  color: #000000;
  margin-left: 20px;
}

/* SUBLIST */
.experience-sublist {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 187%;
  color: #000000;
  margin-left: 40px;
  margin-top: 10px;
}

/* RIGHT IMAGE — NO STYLING */
.experience-image img {
  display: block;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

 .experience-container {
    display: flex;
    flex-direction: column-reverse; /* Image will come first */
    gap: 30px;
    padding: 0 15px;
  }

  .experience-text {
    max-width: 100%;
  }

  .experience-heading {
    font-size: 32px;
    line-height: 120%;
  }

  .experience-paragraph,
  .experience-list,
  .experience-sublist {
    font-size: 18px;
    line-height: 140%;
  }

  .experience-image img {
    width: 100%;
    height: auto;
  }
}


/* =========================================
   hospital-affiliations
   ========================================= */
/* SECTION */
.hospital-affiliations {
  padding: 100px 120px 80px;
  background: #ffffff;
}

.hospital-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADING */
.hospital-heading {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  color: #00467C;
  /*text-align: center;*/
  margin-bottom: 80px;
}

/* GRID */
.hospital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* CARD */
.hospital-card {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
}

.hospital-logo {
  max-width: 220px;
  margin-bottom: 24px;
}

/* TEXT */
.hospital-card p {
  margin-bottom: 20px;
}

/* LIST */
.hospital-card ul {
  padding-left: 20px;
}

.hospital-card li {
  margin-bottom: 12px;
}

/* FOOTER TEXT */
.hospital-footer-text {
  margin-top: 80px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 134%;
  text-align: center;
  color: #CF9529;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hospital-affiliations {
    padding: 80px 60px;
  }
  
  .hospital-heading {
    font-size: 44px;
  }
  
  .hospital-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hospital-affiliations {
    padding: 70px 20px; /* Reduced padding */
  }
  
  .hospital-heading {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: left; /* Left align on mobile */
  }
  
  .hospital-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hospital-logo {
    max-width: 200px;
  }
  
  .hospital-footer-text {
    margin-top: 60px;
    text-align: left; /* Left align on mobile */
  }
}

@media (max-width: 480px) {
  .hospital-affiliations {
    padding: 60px 20px; /* Minimal padding */
  }
  
  .hospital-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .hospital-card {
    font-size: 18px;
  }
  
  .hospital-footer-text {
    font-size: 18px;
    margin-top: 50px;
  }
}

/* =========================
   HealEazy Section 
========================= */
.heal-eazy-section {
  padding: 100px 20px;
  background: #ffffff;
}

.heal-eazy-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.heal-eazy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

/* IMAGE - KEY CHANGES HERE */
.heal-eazy-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* prevents image from exceeding container */
}

.heal-eazy-image img {
  width: 100%;
  height: 100%; /* matches parent height */
  max-height: 100%; /* never exceeds content height */
  object-fit: contain; /* keeps aspect ratio, fits within bounds */
  object-position: center;
  display: block;
}

/* CONTENT */
.heal-eazy-content {
  align-self: center;
  max-width: 620px;
}

.heal-eazy-content h2 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  color: #00467C;
  margin-bottom: 24px;
}

.heal-eazy-content p {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  margin-bottom: 18px;
}

.heal-eazy-content ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.heal-eazy-content li {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  margin-bottom: 10px;
}

.heal-eazy-content .hero-btn {
  margin-top: 10px;
  display: inline-block;
}

/* =========================
   RESPONSIVE
========================= */
/* Tablet */
@media (max-width: 1024px) {
  .heal-eazy-grid {
    gap: 50px;
  }
  .heal-eazy-content h2 {
    font-size: 44px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .heal-eazy-section {
    padding: 70px 20px;
  }
  
  .heal-eazy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .heal-eazy-image {
    order: -1;
    text-align: center;
  }
  
  .heal-eazy-image img {
    width: 100%;
    height: auto; /* reset to auto on mobile */
    max-width: 420px;
    margin: 0 auto;
  }
  
  .heal-eazy-content h2 {
    font-size: 32px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .heal-eazy-content h2 {
    font-size: 32px;
  }
  
  .heal-eazy-content p,
  .heal-eazy-content li {
    font-size: 18px;
  }
}

/* SECTION */
.doctor-message-section {
  padding: 120px 20px;
  background: #ffffff;
}

/* CONTAINER */
.doctor-message-container {
  /*max-width: 900px;*/
  margin: 0 auto;
  text-align: center;
}

/* QUOTE ICON */
/* QUOTE ICON IMAGE */
.quote-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.quote-icon img {
  width: 80px;        /* adjust if needed */
  height: auto;
  display: block;
}

/* HEADING */
.doctor-message-heading {
   font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  color: #00467C;
  margin-bottom: 24px;
}

/* TEXT */
.doctor-message-text {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  /*line-height: 134%;*/
  color: #000000;
  /*max-width: 700px;*/
  margin: 0 auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .doctor-message-section {
    padding: 90px 10px;
  }

  .quote-icon {
    font-size: 70px;
  }

  .doctor-message-heading {
    font-size: 32px;
    max-width:100%;
  }
}

@media (max-width: 480px) {
  .doctor-message-heading {
    font-size: 32px;
  }

  .doctor-message-text {
    font-size: 18px;
  }
}

/* ===============================
   DIET GUIDELINES SECTION
================================ */
.diet-guidelines-section {
  background: #ffffff;
  padding: 80px 20px;
}

.diet-guidelines-container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ===============================
   ANIMATION KEYFRAMES
================================ */
@keyframes slideInArrow {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(255, 247, 233, 0);
  }
  50% {
    text-shadow: 0 0 8px rgba(255, 247, 233, 0.6);
  }
}

/* ===============================
   LEFT SIDE - NAVIGATION
================================ */
.diet-left {
  position: sticky;
  top: 100px;
}

.diet-left-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 117%;
  color: #00467C;
  margin: 0 0 48px 0;
  padding: 16px 0;
}

/* Navigation List */
.diet-left-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===============================
   TAB STATES - EXACT SPECS
================================ */

/* DEFAULT STATE */
.diet-tab {
  /* Layout */
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  padding: 16px 0;
  gap: 38px;
  
  /* Typography - Default State */
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #030303;
  
  /* Smooth transitions */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diet-tab .tab-text {
  flex: 1;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diet-tab .tab-arrow {
  opacity: 0;
  font-size: 36px;
  color: rgba(0, 70, 124, 1);
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER STATE - Only Text Color Changes to #FFF7E9 */
.diet-tab:hover .tab-text {
  color: #d4a049;
  animation: pulseGlow 1.5s ease-in-out;
}

/* ACTIVE STATE - Exact Specifications */
.diet-tab.active {
  /* Layout - Active State */
  /*width: 605px;*/
  /*height: 74px;*/
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 38px;
  
  /* Typography - Active State */
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 36px;
  line-height: 117%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: rgba(0, 70, 124, 1);
}

.diet-tab.active .tab-text {
  color: rgba(0, 70, 124, 1);
}

.diet-tab.active .tab-arrow {
  opacity: 1;
  transform: translateX(0);
  animation: slideInArrow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state hover - keep active color (no #FFF7E9) */
.diet-tab.active:hover .tab-text {
  color: rgba(0, 70, 124, 1);
  animation: none;
}

/* ===============================
   RIGHT SIDE - CONTENT BOXES
================================ */
.diet-right {
  position: relative;
  min-height: 500px;
}

.diet-content-box {
  width: 100%;
  background: #FFF7E9;
  border-radius: 51px;
  padding: 64px 72px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.diet-content-box.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  animation: fadeInContent 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Box Title */
.diet-box-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 117%;
  color: #00467C;
  margin: 0 0 24px 0;
}

/* Paragraphs */
.diet-box-para {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  margin: 0 0 24px 0;
}

/* Content Groups */
.diet-box-group {
  margin-bottom: 24px;
}

.diet-box-group:last-child {
  margin-bottom: 0;
}

/* Section Headings */
.diet-box-heading {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  margin: 0 0 12px 0;
}

/* Lists */
.diet-box-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 0 0;
}

.diet-box-list li {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  margin-bottom: 8px;
}

.diet-box-list li:last-child {
  margin-bottom: 0;
}

/* ===============================
   RESPONSIVE - TABLET (≤ 1024px)
================================ */
@media (max-width: 1024px) {
  .diet-guidelines-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .diet-left {
    position: relative;
    top: 0;
  }
  
  .diet-left-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
  
  /* Adjust active state width for tablet */
  .diet-tab.active {
    width: 100%;
    max-width: 605px;
  }
  
  .diet-tab {
    font-size: 22px;
    padding: 16px 0;
  }
  
  .diet-tab.active {
    font-size: 32px;
  }
  
  .diet-content-box {
    padding: 56px 56px;
  }
  
  .diet-box-title {
    font-size: 32px;
  }
}

/* ===============================
   RESPONSIVE - MOBILE (≤ 768px)
================================ */
@media (max-width: 768px) {
  .diet-guidelines-section {
    padding: 60px 16px;
  }
  
  .diet-left-title {
    font-size: 28px;
    margin-bottom: 28px;
  }
  
  .diet-tab {
    font-size: 20px;
    padding: 16px 0;
    width: 100%;
  }
  
  .diet-tab.active {
    font-size: 28px;
    width: 100%;
    height: auto;
  }
  
  .diet-tab .tab-arrow {
    font-size: 28px;
  }
  
  .diet-content-box {
    padding: 40px 32px;
    border-radius: 32px;
  }
  
  .diet-box-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .diet-box-para,
  .diet-box-list li {
    font-size: 18px;
  }
  
  .diet-box-heading {
    font-size: 18px;
  }
}

/* ===============================
   RESPONSIVE - SMALL MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {
  .diet-guidelines-section {
    padding: 50px 16px;
  }
  
  .diet-left-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .diet-tab {
    font-size: 18px;
    padding: 14px 0;
  }
  
  .diet-tab.active {
    font-size: 24px;
  }
  
  .diet-tab .tab-arrow {
    font-size: 24px;
  }
  
  .diet-content-box {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .diet-box-title {
    font-size: 24px;
  }
  
  .diet-box-para,
  .diet-box-list li {
    font-size: 16px;
  }
  
  .diet-box-heading {
    font-size: 16px;
  }
}

/* ===============================
   WELLNESS INFO SECTION
================================ */
.wellness-info-section {
  padding: 120px 20px;
  background: #ffffff;
}

.wellness-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 140px;
}

/* ===============================
   ROW STRUCTURE (DESKTOP)
================================ */
.wellness-row {
  /*display: grid;*/
  /*grid-template-columns: 1fr 733px;*/
  /*gap: 60px;*/
  /*align-items: center;*/
      max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wellness-row.reverse {
  grid-template-columns: 733px 1fr;
}

/* ===============================
   CONTENT
================================ */
.wellness-eyebrow {
  font-family: Lexend;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #000000;
  display: block;
  margin-bottom: 12px;
}

.wellness-title {
  font-family: Lexend;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  color: #00467C;
  margin-bottom: 24px;
}

.wellness-para {
  font-family: Lexend;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  max-width: 520px;
  margin-bottom: 24px;
}

.wellness-list-title {
  font-family: Lexend;
  font-weight: 700;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  /*margin-bottom: 12px;*/
}

.wellness-list {
  padding: 25px;
  margin: 0;
}

.wellness-list li {
  font-family: Lexend;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  /*margin-bottom: 8px;*/
}

/* ===============================
   IMAGE
================================ */
.wellness-image img {
  /*width: 733px;*/
  /*height: 715px;*/
  object-fit: cover;
  display: block;
}

/* ===============================
   TABLET & MOBILE FIX
================================ */
@media (max-width: 1024px) {

  /* Force single column */
  .wellness-row,
  .wellness-row.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* FORCE ORDER: CONTENT FIRST */
  .wellness-content {
    order: 1;
  }

  .wellness-image {
    order: 2;
  }

  .wellness-image img {
    width: 100%;
    height: auto;
  }

  .wellness-title {
    font-size: 44px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .wellness-info-section {
    padding: 80px 16px;
  }

  .wellness-container {
    gap: 96px;
  }

  .wellness-eyebrow {
    font-size: 18px;
  }

  .wellness-title {
    font-size: 32px;
  }

  .wellness-para,
  .wellness-list li {
    font-size: 18px;
  }
}

/* ===============================
   SUPPORT REMINDER SECTION
================================ */
.support-reminder-section {
  background: #FFF7E9;
  padding: 120px 20px;
}

.support-reminder-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.support-reminder-eyebrow {
  font-family: Lexend;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #000000;
  display: block;
  margin-bottom: 16px;
}

/* Title */
.support-reminder-title {
  font-family: Lexend;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  color: #00467C;
  margin-bottom: 32px;
}

/* Main text */
.support-reminder-text {
  font-family: Lexend;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #000000;
  /*max-width: 880px;*/
  margin: 0 auto 40px;
}

/* Button */
.support-reminder-btn {
  /*display: inline-block;*/
  /*background: #FFF7E9;*/
  margin-bottom: 32px;
  margin-right:15px;
}

/* Bottom note */
.support-reminder-note {
  font-family: Lexend;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: #00467C;
  margin: 0;
}


/* WhatsApp Main Heading */
.whatsapp-heading {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 134%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(207, 149, 41, 1);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* WhatsApp Icon */
.whatsapp-heading img {
  width: 24px;
  height: auto;
}

/* Sub Text */
.whatsapp-subtext {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(0, 0, 0, 1);

  max-width: 750px;
  margin: 0 auto 30px;
}

/* ===============================
   TABLET
================================ */
@media (max-width: 1024px) {
  .support-reminder-title {
    font-size: 44px;
  }

  .support-reminder-text {
    font-size: 18px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
    
   .whatsapp-heading {
    display: inline;      /* remove flex behavior */
    /*text-align: center;*/
  }

  .whatsapp-heading img {
    display: inline;
    width: 28px;
    vertical-align: middle;
  }

  .whatsapp-subtext {
    font-size: 15px;      /* reduced text size */
    max-width: 100%;
    padding: 0 10px;      /* side spacing */
    margin-bottom: 24px;
  }
  .support-reminder-section {
    padding: 80px 16px;
  }

  .support-reminder-eyebrow {
    font-size: 18px;
  }

  .support-reminder-title {
    font-size: 32px;
  }

  .support-reminder-text,
  .support-reminder-note {
    font-size: 16px;
  }
}


/* ===============================
   CONSULTATION SECTION
================================ */
 .consultation-section {
            /* Matches user provided radial gradient */
            background: radial-gradient(80% 80% at 10% 10%, #0B3A6F 0%, #06294F 100%);
            min-height: 100vh;
            padding: 60px 20px; /* Reduced top padding for smaller screens, adjusted JS if needed */
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .consultation-container {
            max-width: var(--container-width);
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Matches user ratio */
            gap: 10px; /* Slightly reduced gap for better fit, but keeps spacing */
            align-items: center;
            z-index: 2;
        }

        /* ===============================
           LEFT CONTENT
           =============================== */
        .consultation-left h1 {
            font-family: 'Alumni Sans', sans-serif;
            font-weight: 400;
            font-size: 130px; /* Slightly scaled for responsiveness */
            line-height: 79%; /* approx 79% - 90% range */
            color: #ffffff;
            margin-bottom: 40px;
        }

        .consultation-left p {
            font-family: 'Lexend', sans-serif;
            font-weight: 400;
            font-size: 32px;
            line-height: 117%; /* approx 117% */
            color: #E6F0FA;
            max-width: 600px;
        }

        /* ===============================
           RIGHT GLASS FORM BOX
           =============================== */
        .consultation-form-wrapper {
            display: flex;
            justify-content: flex-end; /* Pushes the box to the right */
        }

        .consultation-form-glass {
            /* Exact dimensions requested */
            width: 687px; 
            height: 733px;
            max-width: 100%; /* Ensures it doesn't overflow on small screens */
            
            padding: 56px 60px;
            border-radius: 28px;
            
            /* Complex background from request */
            background: linear-gradient(275.09deg, rgba(255, 255, 255, 0.16) -34.71%, rgba(255, 255, 255, 0.028) 70.8%), 
                        linear-gradient(0deg, rgba(3, 3, 3, 0.2), rgba(3, 3, 3, 0.2));
            
            /* Border handling: To make border-image work with border-radius, we often need a wrapper 
               or a specific approach. However, to strictly follow the requested CSS snippet structure 
               while keeping rounded corners, I will use a pseudo-element trick for the border 
               to ensure high quality. */
            position: relative;
            z-index: 1;
        }

        /* The gradient border effect using a pseudo-element to support border-radius */
        .consultation-form-glass::before {
            content: "";
            position: absolute;
            inset: -3px; /* Border width */
            z-index: -1;
            border-radius: 30px; /* Slightly larger radius for the border */
            background: var(--glass-border);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: xor;
            -webkit-mask-composite: xor;
            padding: 3px; 
        }

        .backdrop-blur {
            -webkit-backdrop-filter: blur(70px);
            backdrop-filter: blur(70px);
        }

        /* FORM TITLE */
        .consultation-form-glass h3 {
            font-family: 'Lexend', sans-serif;
            font-weight: 600;
            font-size: 40px;
            line-height: 117%;
            color: #F6C56A;
            margin-bottom: 42px;
            text-align: center;
        }

        /* ===============================
           FORM FIELDS
           =============================== */
        .consultation-form {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: 26px;
            position: relative;
        }

        .form-group label {
            display: block;
            font-family: 'Lexend', sans-serif;
            font-weight: 300;
            font-size: 16px;
            color: #5C7DA4;
            margin-bottom: 8px;
            padding-left: 10px; /* Visual alignment */
        }

        .form-group input {
            width: 100%;
            height: 60px;
            padding: 0 18px;
            border-radius: 14px;
            
            /* Input background */
            /*background: rgba(255, 255, 255, 0.06);*/
            background:#001838;
            /* To get the gradient border AND rounded corners on inputs, we use background-image trick */
            border: 2px solid transparent;
            /*background-image: linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),*/
            /*                  var(--glass-border);*/
            background-origin: border-box;
            background-clip: padding-box, border-box;
            
            box-shadow: 0px 1.2px 29.92px rgba(69, 42, 124, 0.1);
            
            color: #ffffff;
            font-family: 'Lexend', sans-serif;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        /* Placeholder Styling as requested */
        .form-group input::placeholder {
            font-family: 'Lexend', sans-serif;
            font-weight: 300;
            font-size: 16px;
            line-height: 117%;
            color: #5C7DA4;
            opacity: 1; /* Firefox fix */
        }

        /* Focus State for better UX */
        .form-group input:focus {
            box-shadow: 0 0 0 2px rgba(246, 197, 106, 0.3);
        }

        /* ===============================
           BUTTON
           =============================== */
        /*.consultation-btn {*/
        /*    width: 400px;*/
        /*    height: 64px;*/
        /*    margin-top: 22px;*/
        /*    background: linear-gradient(180deg, #FFD77A 0%, #F6C56A 100%);*/
        /*    border-radius: 14px;*/
        /*    border: none;*/
        /*    font-family: 'Lexend', sans-serif;*/
        /*    font-weight: 600;*/
        /*    font-size: 18px;*/
        /*    color: #1E2A3A;*/
        /*    cursor: pointer;*/
        /*    transition: transform 0.25s ease, box-shadow 0.25s ease;*/
            /*text-transform: uppercase;*/
        /*    letter-spacing: 0.5px;*/
        /*}*/
        .consultation-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 42px;
            min-height: 64px;
            width: 400px;
            border-radius: 16px;
            background: linear-gradient(200.42deg, #FFE4B3 13.57%, #F6C56A 98.35%);
            font-size: 17px;
            font-weight: 400;
            color: #111;
             margin-top: 22px;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }
        .consultation-btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(120.8deg, #CF9529 -24.4%, #F6C56A 53.43%);
        }

        .consultation-btn:active {
            transform: translateY(0);
        }

        /* ===============================
           TOAST NOTIFICATION (No Alerts)
           =============================== */
        .toast {
            visibility: hidden;
            min-width: 250px;
            background-color: #F6C56A;
            color: #1E2A3A;
            text-align: center;
            border-radius: 8px;
            padding: 16px;
            position: fixed;
            z-index: 1000;
            right: 30px;
            bottom: 30px;
            font-family: 'Lexend', sans-serif;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out, visibility 0.3s;
        }

        .toast.show {
            visibility: visible;
            transform: translateY(0);
        }

        /* ===============================
           RESPONSIVE DESIGN
           =============================== */
        @media (max-width: 1200px) {
            .consultation-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .consultation-left {
                text-align: center;
            }
            .consultation-left p {
                margin: 0 auto;
            }
            .consultation-form-wrapper {
                justify-content: center;
            }
            .consultation-form-glass {
                height: auto; /* Auto height on mobile */
                width: 100%;
                max-width: 600px;
            }
            .consultation-left h1 {
                font-size: 70px;
            }
        }

      @media (max-width: 600px) {

    /* Add top spacing to section */
    .consultation-section {
        padding: 100px 20px 60px; /* more top space */
        min-height: auto;
    }

    .consultation-left h1 {
        font-size: 64px;
        line-height: 90%;
    }
    .consultation-left p {
                    margin: 0 auto;
                    font-size:22px;
                }
    /* Decrease form box size only on mobile */
    .consultation-form-glass {
        width: 100%;
        max-width: 340px;   /* reduced width */
        height: auto;       /* prevent overflow */
        padding: 30px 20px; /* smaller padding */
        margin: 0 auto;
    }

    /* Reduce form title */
    .consultation-form-glass h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    /* Reduce input height */
    .form-group input {
        height: 48px;
        font-size: 14px;
    }

    /* Reduce button width */
    .consultation-btn {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
    }

}

        
        
        
/* ===============================
   SECTION
================================ */
.why-consult-section {
  /*padding: 160px 0;*/
  background: #ffffff;
}

.why-consult-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    position: relative;
    padding: 20px;
}
/* ===============================
   LEFT IMAGE
================================ */
.why-consult-image {
width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 99px;
  border-radius: 99px;
  overflow: hidden;
}

.why-consult-image img {
    width: 900px !important;
    height: 100%;
    object-fit: contain;
    display: block;
}
/* ===============================
   RIGHT GLASS BOX
================================ */
.why-consult-glass {
  margin-left: -180px;

  /* 🔥 KEY FIX */
  padding: 28px 60px;   /* top-bottom | left-right */

  max-width: 620px;     /* 🔥 controls width */
  height: auto;         /* natural height only */

  border-radius: 82px;

  background:
    linear-gradient(275.09deg,
      rgba(255, 255, 255, 0.16) -34.71%,
      rgba(255, 255, 255, 0.028) 70.8%),
    linear-gradient(0deg,
      rgba(3, 3, 3, 0.6),
      rgba(3, 3, 3, 0.6));

  backdrop-filter: blur(70px);
  box-shadow: 0px 1.2px 29.92px rgba(69, 42, 124, 0.1);

  position: relative;
}


/* GRADIENT BORDER */
.why-consult-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;

  background: linear-gradient(
    155.31deg,
    rgba(255, 255, 255, 0.5) 12.33%,
    rgba(255, 255, 255, 0) 34.31%,
    rgba(255, 255, 255, 0) 52.66%,
    rgba(255, 255, 255, 0.54) 74.67%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* ===============================
   HEADING
================================ */
.why-consult-glass h2 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 117%;
  color: #ffffff;
  margin-bottom: 32px;
}

.consult-list {
  padding-left: 22px;
  margin-bottom: 28px;
}

.consult-list li {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 165%;
  color: rgba(255, 255, 255, 0.95);
}

.consult-note {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 134%;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

@media (max-width: 1024px) {
  .why-consult-container {
    grid-template-columns: 1fr;
  }

  .why-consult-glass {
    margin-left: 0;
    margin-top: -120px;
  }
}

@media (max-width: 768px) {
    .why-consult-section{
        padding:40px 0;
    }
  .why-consult-image {
    height: 360px;
    border-radius: 36px;
  }

  .why-consult-glass {
    padding: 36px 28px;
    border-radius: 36px;
    margin-top:0px;
  }

  .why-consult-glass h2 {
    font-size: 32px;
  }

  .consult-list li,
  .consult-note {
    font-size: 16px;
  }
}


/* ===============================
   REAL PATIENTS SECTION
================================ */

.rp-section {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Centered content */
.rp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.rp-heading {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 55px;
  text-align: center;
  color: #00467C;
  margin-bottom: 64px;
}

/* ===============================
   SCROLL OUTER (LEFT SPACE ONLY)
================================ */
.rp-scroll-outer {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;

  /* LEFT margin only */
  padding-left: calc((100vw - 1400px) / 2 + 20px);

  /* REQUIRED */
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.rp-scroll-outer::-webkit-scrollbar {
  display: none;
}

/* ===============================
   SCROLL ROW
================================ */
.rp-scroll-wrap {
  display: flex;
  gap: 48px;
  padding-bottom: 40px;

  width: max-content; /* CRITICAL */
  cursor: grab;
  user-select: none;
}

.rp-scroll-wrap:active {
  cursor: grabbing;
}

/* ===============================
   VIDEO CARD
================================ */
.rp-video-card {
  flex: 0 0 1112px;
  height: 589px;

  position: relative;
  border-radius: 74px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 1);
  background: #000;

  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  transition: transform .35s ease;
}
/*.rp-video-card:hover {*/
/*  transform: translateY(-6px);*/
/*}*/

.rp-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* FULL IMAGE, NO CROP */
  /*background: #000;*/
}

/* Play Button */
.rp-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-play::before {
  content: "";
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
}

.rp-play::after {
  content: "";
  position: absolute;
  margin-left: 6px;
  border-left: 22px solid #00467C;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
    .rp-section{
        padding: 40px 0;
    }
  .rp-heading {
    font-size: 36px;
  }

  .rp-video-card {
    flex: 0 0 90vw;
    height: 52vw;
    border-radius: 32px;
  }

  .rp-scroll-outer {
    padding-left: 20px;
  }
}


/* ===============================
   CONSULTATION STEPS SECTION
================================ */
.consult-steps-section {
  /*padding: 140px ;*/
  background: #ffffff;
}

  .consult-steps-container {
            max-width: var(--container-width);
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Matches user ratio */
            gap: 10px; /* Slightly reduced gap for better fit, but keeps spacing */
            align-items: center;
            z-index: 2;
        }


/* ===============================
   LEFT CONTENT
================================ */
.consult-steps-left h2 {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 110%;
  color: #00467C;
  margin-bottom: 24px;
}

.consult-steps-left p {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #333333;
  max-width: 420px;
}

/* ===============================
   RIGHT STEPS
================================ */
.consult-steps-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 40px;
}

/* Vertical Line */
.consult-steps-right::before {
    content: "";
    position: absolute;
    left: 75px;
    top: 0;
    bottom: 0;
    border: 1px solid rgba(206, 206, 206, 1);
}

/* Step Item */
.consult-step {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

/* Number Circle */
.step-circle {
  width: 75px;
  height: 75px;
  min-width: 75px;

  border-radius: 50%;
  background: #ffffff;
 border: 1px solid rgba(206, 206, 206, 1);

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: #CF9529;
}

/* Step Text */
.consult-step p {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  color: #222222;
  margin: 0;
  max-width: 420px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .consult-steps-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .consult-steps-right {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .consult-steps-section {
    padding: 40px 20px;
  }

  .consult-steps-left h2 {
    font-size: 36px;
  }

  .consult-steps-left p,
  .consult-step p {
    font-size: 18px;
  }
  .consult-steps-right{
        padding-left:0px;
  }

  .consult-steps-right::before {
    left: 40px;
  }
}

/* ===============================
   PATIENT STORIES SECTION
================================ */
.wps-patient-section {
    padding: 80px 20px;
    background: #FFFFFF;
}

.wps-container {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    width: 100%;
}

/* Heading */
.wps-patient-heading {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 105%;
    text-align: center;
    color: #00467C;
    margin-bottom: 60px;
}

/* Grid - 2 Columns */
.wps-patient-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 75px;
    margin-bottom: 50px;
}

/* Patient Card */
.wps-patient-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 55px;
    overflow: hidden;
    box-shadow: -62px 43px 99px rgba(207, 149, 41, 0.3);
    
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wps-patient-card img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    display: block;
}

/* Play Button */
.wps-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    /*background: rgba(0, 0, 0, 0.7);*/
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

.wps-patient-card:hover .wps-play-btn {
    background: transparent;
    border-color: #ffffff;
    /*transform: translate(-50%, -50%) scale(1.1);*/
}

.wps-play-btn::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 21px;
    border-style: solid;
    border-width: 14px 0 14px 20px;
    border-color: transparent transparent transparent #ffffff;
}

/* Pagination */
.wps-pagination {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wps-page-btn,
.wps-arrow-btn {
    background: transparent;
    border: none;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);  /* Default gray color */
    cursor: pointer;
    padding: 6px 10px;
    transition: all 0.3s ease;
    min-width: 36px;
}

.wps-page-btn:hover:not(.active),
.wps-arrow-btn:hover:not(:disabled) {
    color: rgba(207, 149, 41, 1);  /* Gold hover color */
    transform: scale(1.1);
}

.wps-page-btn.active {
    color: rgba(207, 149, 41, 1);  /* Active gold color */
    font-weight: 600;
}

.wps-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    min-width: auto;
}

.wps-arrow-btn img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    opacity: 0.6;  /* Default state */
}

.wps-arrow-btn:hover:not(:disabled) img {
    opacity: 1;  /* Full opacity on hover */
    filter: brightness(0) saturate(100%) invert(58%) sepia(48%) saturate(855%) hue-rotate(358deg) brightness(92%) contrast(89%);
    /* This filter converts black SVG to gold color */
}

.wps-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.wps-arrow-btn:disabled img {
    opacity: 0.3;
}

/* Video Modal */
.wps-video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.wps-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 1200px;
}

.wps-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.wps-modal-close:hover {
    color: #CF9529;
}

.wps-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.wps-video-container iframe,
.wps-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Loading & Error States */
.loading,
.error,
.no-stories {
    text-align: center;
    padding: 40px 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    color: #666;
    grid-column: 1 / -1;
}

.error {
    color: #d32f2f;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1024px) {
    .wps-patient-heading {
        font-size: 45px;
        margin-bottom: 50px;
    }
    
    .wps-patient-card img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .wps-patient-section {
        padding: 60px 15px;
    }
    
    .wps-patient-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .wps-patient-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .wps-patient-card {
        border-radius: 35px;
    }
    
    .wps-patient-card img {
        height: 280px;
    }
    
    .wps-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .wps-play-btn::after {
        left: 24px;
        top: 18px;
        border-width: 12px 0 12px 18px;
    }
    
    .wps-pagination {
        gap: 6px;
    }
    
    .wps-page-btn,
    .wps-arrow-btn {
        font-size: 16px;
        padding: 6px 10px;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .wps-patient-heading {
        font-size: 32px;
    }
    
    .wps-patient-card {
        border-radius: 25px;
    }
    
    .wps-patient-card img {
        height: 240px;
    }
    
    .wps-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .wps-modal-close {
        font-size: 32px;
        top: -35px;
    }
}
/* ========================================================
   RESOURCE SECTION - MAIN CONTAINER
======================================================== */
.resource-section {
    background: #fff;
    padding: 60px 20px;
    width: 100%;
}

.resource-container {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    width: 100%;
}

/* ========================================================
   TAB NAVIGATION - LEFT ALIGNED
======================================================== */
.resource-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 0;
}

.tab-btn {
    padding: 0 0 15px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    
    /* Default Typography */
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: 0%;
    color: rgba(0, 0, 0, 1);
}

.tab-btn:hover {
    color: rgba(207, 149, 41, 0.8);
}

.tab-btn.active {
    /* Active Typography */
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: 0%;
    color: rgba(207, 149, 41, 1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(207, 149, 41, 1);
}

/* ========================================================
   RESOURCE GRID - 3 COLUMNS - NO CARD BACKGROUND
======================================================== */
.resource-content {
    width: 100%;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 50px;
}

/* ========================================================
   CARD STYLES - NO BACKGROUND, CLEAN DESIGN
======================================================== */
.content-card {
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: none;
    box-shadow: none;
}

/* Card Image - Full Width */
.card-image-link {
    display: block;
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-image-link img {
    width: 100%;
    height: auto;
    /*aspect-ratio:1;*/
    /*object-fit: cover;*/
    display: block;
    border-radius: 8px;
}

/* Card Body - No Padding */
.card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-date {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.card-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
    color: rgba(0, 70, 124, 1);
    margin-bottom: 12px;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: rgba(207, 149, 41, 1);
}

.card-excerpt {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 15px;
    flex: 1;
}

.card-link {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0px;
    color: rgba(207, 149, 41, 1);
    text-decoration: underline;
    text-decoration-style: solid;
    display: inline-block;
    transition: color 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.card-link:hover {
    color: rgba(207, 149, 41, 0.8);
}
.card-link {
    display: inline-flex;   /* Change from inline-block */
    align-items: center;
    gap: 8px;
}

.card-arrow {
    width: 22.78px;
    height: auto;
    transition: transform 0.3s ease;
}

.card-link:hover .card-arrow {
    transform: rotate(-45deg);
}
/* ✅ Rotate when hovering entire card */
.content-card:hover .card-arrow {
    transform: rotate(-45deg);
}

/* ========================================================
   GUIDES - SAME LAYOUT AS BLOGS (IMAGE + TEXT)
======================================================== */
.content-card.guide {
    background: transparent;
    padding: 0;
}

.content-card.guide .card-image-link {
    background: transparent;
    border-radius: 8px;
}

.content-card.guide.blue .card-image-link {
    background: transparent;
}

.content-card.guide.orange .card-image-link {
    background: #f59e0b;
}

.content-card.guide.white .card-image-link {
    background: #f5f5f5;
}
/* ==========================================
   FIX: Guides Image Align Left Only
========================================== */

.content-card.guide .card-image-link {
    max-width: 100%;   /* Remove 450px limit */
}

.content-card.guide .card-image-link img,
.content-card.guide .guide-thumbnail {
    width: 100%;
    display: block;
    padding: 0;
    height:auto;
}


/* Guide Icon/Thumbnail Inside Colored Box */
.guide-thumbnail {
    width: 100%;
    height: auto;
    /*aspect-ratio: 4/3;*/
    object-fit: contain;
    padding: 40px;
    display: block;
}

.content-card.guide .card-body {
    padding: 0;
    margin-top: 20px;
}

.content-card.guide .card-title {
    color: rgba(0, 70, 124, 1);
}

.content-card.guide .card-excerpt {
    color: rgba(0, 0, 0, 1);
}

/* ==========================================
   CUSTOM PAGINATION DESIGN (EXACT MATCH)
========================================== */

.custom-pagination-wrapper {
    margin-top: 80px;
    width: 100%;
}

/* Horizontal Line */
.pagination-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

/* Main Flex Layout */
.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Previous / Next */
.page-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;

    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: rgba(87, 87, 87, 1);
    transition: opacity 0.3s ease;
}

.page-nav img {
    width: 18px;
    height: auto;
}

.page-nav:hover {
    opacity: 0.7;
}

.page-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Page Numbers */
.page-numbers {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Default Number */
.page-number {
    background: transparent;
    border: none;
    cursor: pointer;

    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: rgba(87, 87, 87, 1);
    transition: all 0.3s ease;
}

/* Active Number */
.page-number.active {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(207, 149, 41, 1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.page-number:hover:not(.active) {
    color: rgba(207, 149, 41, 1);
}

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

@media (max-width: 768px) {

    .custom-pagination {
        flex-direction: column;
        gap: 25px;
    }

    .page-numbers {
        order: 2;
    }

    .prev-btn {
        order: 1;
    }

    .next-btn {
        order: 3;
    }
}

/* ========================================================
   LOADING & NO RESULTS
======================================================== */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.loading-spinner p {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
}

/* ========================================================
   RESPONSIVE DESIGN
======================================================== */
@media (max-width: 1024px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 768px) {
    .resource-tabs {
        gap: 25px;
    }
    
    .tab-btn {
        font-size: 18px;
        padding: 0 0 12px 0;
    }
    
    .tab-btn.active {
        font-size: 18px;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-excerpt {
        font-size: 16px;
    }
    
    .card-link {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .resource-section {
        padding: 40px 15px;
    }
    
    .resource-tabs {
        gap: 20px;
    }
    
    .tab-btn {
        font-size: 16px;
        padding: 0 0 10px 0;
    }
    
    .tab-btn.active {
        font-size: 16px;
    }
    
    .card-title {
        font-size: 18px;
    }
}

/* ===============================
   SINGLE BLOG - AI SUMMARY SECTION
================================ */
.single-blog-wrapper {
    max-width:var(--container-width);
    margin: 120px auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    color: rgba(0, 70, 124, 1);
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-meta-separator {
    color: #999;
}

/* AI Summary Section - Compact & Centered */
.ai-summary-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(200.42deg, #FFE4B3 13.57%, #F6C56A 98.35%);
    border-radius: 50px;
    margin: 30px auto;
    max-width: 500px;
    transition: all 0.3s ease;
}

.ai-summary-section:hover {
    box-shadow: -6px 6px 17.2px 0px rgba(207, 149, 41, 0.35);
    background: linear-gradient(120.8deg, #CF9529 -24.4%, #F6C56A 53.43%);
}

.ai-summary-label {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
}

.ai-summary-buttons {
    display: flex;
    gap: 10px;
}

.ai-summary-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-summary-btn:hover {
    background: rgba(0, 70, 124, 1);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ai-summary-btn svg {
    flex-shrink: 0;
}

/* Blog Featured Image */
.blog-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Content */
.blog-content {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: rgba(0, 70, 124, 1);
}

.blog-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: rgba(0, 70, 124, 1);
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Blog Footer */
.blog-footer {
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.blog-tags {
    margin-bottom: 20px;
}

.tags-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-link {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: rgba(207, 149, 41, 1);
    color: #fff;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.linkedin {
    background: #0a66c2;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Navigation */
.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: rgba(207, 149, 41, 1);
    color: #fff;
    border-color: rgba(207, 149, 41, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 149, 41, 0.3);
}

.nav-direction {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
    font-family: 'Lexend', sans-serif;
}

.nav-link:hover .nav-direction {
    color: rgba(255, 255, 255, 0.8);
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 70, 124, 1);
    font-family: 'Lexend', sans-serif;
}

.nav-link:hover .nav-title {
    color: #fff;
}

.nav-next .nav-link {
    text-align: right;
}

/* ===============================
   SINGLE GUIDE - TWO COLUMN LAYOUT
================================ */
.single-guide-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.guide-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.guide-main-content {
    min-width: 0;
}

.guide-featured-image {
    margin-bottom: 30px;
}

.guide-image-container {
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.guide-image-container.blue {
    /*background: #2563eb;*/
}
 
.guide-image-container.orange {
    background: #f59e0b;
}

.guide-image-container.white {
    background: #f5f5f5;
}

.featured-guide-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.guide-header {
    margin-bottom: 30px;
}

.guide-main-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    color: rgba(0, 70, 124, 1);
    margin-bottom: 15px;
}

.guide-meta {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: #666;
}

.guide-meta svg {
    vertical-align: middle;
    margin-right: 5px;
    color: rgba(207, 149, 41, 1);
}

.guide-content {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.guide-content h2 {
    font-weight: 600;
    font-size: 32px;
    color: rgba(0, 70, 124, 1);
    margin-top: 30px;
    margin-bottom: 15px;
}

.guide-content h3 {
    font-weight: 600;
    font-size: 26px;
    color: rgba(0, 70, 124, 1);
    margin-top: 25px;
    margin-bottom: 12px;
}

.guide-content p {
    margin-bottom: 20px;
}

/* Guide Download Sidebar */
.guide-download-sidebar {
    position: relative;
}

.guide-download-sticky {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.guide-pdf-preview {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-pdf-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-placeholder {
    color: #ccc;
}

.guide-download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 25px;
    background: #000000;
    color: #ffffff;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-download-button:hover {
    background: rgba(207, 149, 41, 1);
}

.guide-download-button svg {
    flex-shrink: 0;
}

.no-pdf-notice {
    padding: 30px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Guide Navigation */
.guide-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.guide-navigation .nav-link:hover {
    background: rgba(207, 149, 41, 1);
    border-color: rgba(207, 149, 41, 1);
}

/* ===============================
   SINGLE SUPPORT
================================ */
.single-support-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.support-featured-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.featured-support-img {
    width: 100%;
    height: auto;
    display: block;
}

.support-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.support-main-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 130%;
    color: rgba(0, 70, 124, 1);
    margin-bottom: 15px;
}

.support-meta {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: #666;
}

.support-meta svg {
    vertical-align: middle;
    margin-right: 5px;
    color: rgba(207, 149, 41, 1);
}

.support-content {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.support-content h2 {
    font-weight: 600;
    font-size: 32px;
    color: rgba(0, 70, 124, 1);
    margin-top: 30px;
    margin-bottom: 15px;
}

.support-content h3 {
    font-weight: 600;
    font-size: 26px;
    color: rgba(0, 70, 124, 1);
    margin-top: 25px;
    margin-bottom: 12px;
}

.support-content p {
    margin-bottom: 20px;
}

.support-help-section {
    background: linear-gradient(135deg, rgba(0, 70, 124, 0.05) 0%, rgba(0, 70, 124, 0.1) 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.support-help-box h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: rgba(0, 70, 124, 1);
    margin-bottom: 15px;
}

.support-help-box p {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.support-help-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.support-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(207, 149, 41, 1);
    color: #ffffff;
    border-radius: 12px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-help-btn:hover {
    background: rgba(0, 70, 124, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 149, 41, 0.3);
}

.support-help-btn.whatsapp {
    background: #25D366;
}

.support-help-btn.whatsapp:hover {
    background: #128C7E;
}

.support-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.support-navigation .nav-link:hover {
    background: rgba(207, 149, 41, 1);
    border-color: rgba(207, 149, 41, 1);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1024px) {
    .guide-content-grid {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .blog-title,
    .guide-main-title,
    .support-main-title {
        font-size: 32px;
    }

    .ai-summary-section {
        flex-direction: column;
        max-width: 100%;
        padding: 20px;
    }

    .ai-summary-buttons {
        width: 100%;
        flex-direction: column;
    }

    .ai-summary-btn {
        width: 100%;
        justify-content: center;
    }

    .guide-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guide-download-sidebar {
        order: -1;
    }

    .blog-content,
    .guide-content,
    .support-content {
        font-size: 16px;
    }

    .blog-navigation,
    .guide-navigation,
    .support-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next .nav-link {
        text-align: left;
    }

    .support-help-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .blog-title,
    .guide-main-title,
    .support-main-title { 
        font-size: 26px;
    }

    .ai-summary-label {
        font-size: 13px;
    }

    .ai-summary-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}/* ===============================
   SMOOTH SCROLLING - ENABLE NATIVE
================================ */
html {
    scroll-behavior: smooth;
}

/* ===============================
   FAQ MAIN SECTION
================================ */
.faq-main-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-main-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 120px;
    align-items: start;
}

/* ===============================
   LEFT SIDEBAR - FIXED STICKY (ALWAYS VISIBLE)
================================ */
.faq-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background: rgba(255, 247, 233, 1);
    border-radius: 50px;
    padding: 40px 30px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 100;
    will-change: transform;
}

/* Hide scrollbar but keep functionality */
.faq-sidebar::-webkit-scrollbar {
    width: 6px;
}

.faq-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.faq-sidebar::-webkit-scrollbar-thumb {
    background: rgba(207, 149, 41, 0.3);
    border-radius: 3px;
}

.faq-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(207, 149, 41, 0.5);
}

.faq-category-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-cat-link {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 117%;
    letter-spacing: 0%;
    color: var(--text-gray, #505050);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 10px 16px;
    position: relative;
    border-radius: 10px;
    will-change: padding, background-color, color;
}



.faq-cat-link.active {
    font-weight: 600;
    font-size: 22px;
    color: rgba(207, 149, 41, 1);
    padding-left: 20px;
    text-decoration: underline;
}


@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 4px;
        opacity: 1;
    }
}

/* ===============================
   RIGHT CONTENT AREA (SCROLLABLE)
================================ */
.faq-content-area {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-category-section {
    scroll-margin-top: 120px;
    display: flex;
    flex-direction: column;
    padding-bottom: 120px;
    padding-top: 40px;
}

.faq-section-heading {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 117%;
    color: rgba(0, 70, 124, 1);
    margin-bottom: 30px;
}

/* ===============================
   FAQ ITEMS WRAPPER - SINGLE COLUMN
================================ */
.faq-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

/* ===============================
   FAQ ITEM - QUESTION CARD
================================ */
.faq-item {
    width: 100%;
}

.faq-item-question {
    width: 100%;
    background: rgba(246, 246, 246, 1);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0px 24.56px 32.74px -14.73px rgba(149, 149, 149, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform, box-shadow;
}

.faq-item-question:hover {
    transform: translateY(-2px);
    box-shadow: 0px 28px 38px -14px rgba(149, 149, 149, 0.35);
    /*border-color: rgba(207, 149, 41, 0.15);*/
}

.faq-item.active .faq-item-question {
   background: rgba(246, 246, 246, 1);
 box-shadow: 0px 24.56px 32.74px -14.73px rgba(149, 149, 149, 0.25);
}

/* ===============================
   LEFT ICON (+ or -)
================================ */
.faq-icon-left {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    color: var(--primary-blue, #003459);
    transition: color 0.25s ease;
}

.faq-icon-left .icon-plus,
.faq-icon-left .icon-minus {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-left .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-icon-left .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-icon-left {
    color: var(--accent-gold, #CF9529);
}

.faq-item.active .faq-icon-left .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon-left .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* ===============================
   QUESTION TITLE
================================ */
.faq-item-title {
    font-family: 'Lexend', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-blue, #003459);
    flex: 1;
    margin: 0;
    line-height: 130%;
    text-align: left;
    transition: color 0.25s ease;
}

/*.faq-item.active .faq-item-title {*/
/*    color: var(--accent-gold, #CF9529);*/
/*}*/

/* ===============================
   RIGHT ICON (CIRCLE WITH + or -)
================================ */
.faq-icon-right {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    position: relative;
}

.faq-icon-circle-plus,
.faq-icon-circle-minus {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-circle-plus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.faq-icon-circle-minus {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.faq-item.active .faq-icon-circle-plus {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.faq-item.active .faq-icon-circle-minus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ===============================
   FAQ ANSWER - SMOOTH SLIDE ANIMATION
================================ */
.faq-item-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 44px;
    padding-right: 28px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 14px;
    padding-bottom: 24px;
}

.faq-item-answer p {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    margin: 0;
}
.faq-item-answer ul {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.faq-item-answer li {
    margin-bottom: 4px;
}



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

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .faq-main-container {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
    
    .faq-sidebar {
        padding: 35px 25px;
        top: 80px;
        max-height: calc(100vh - 100px);
    }
    
    .faq-category-nav {
        gap: 14px;
    }
    
    .faq-cat-link {
        font-size: 18px;
        padding: 9px 14px;
    }
    
    .faq-cat-link.active {
        font-size: 20px;
        padding-left: 18px;
    }
    
    .faq-cat-link:hover {
        padding-left: 18px;
    }
    
    .faq-section-heading {
        font-size: 40px;
    }
    
    .faq-items-wrapper {
        max-width: 100%;
    }
    
    .faq-item-title {
        font-size: 16px;
    }
    
    .faq-item-answer p {
        font-size: 14px;
    }
}

/* Medium Tablets (900px and below) */
@media (max-width: 900px) {
    .faq-main-container {
        grid-template-columns: 220px 1fr;
        gap: 25px;
    }
    
    .faq-sidebar {
        max-height: calc(100vh - 100px);
        padding: 30px 20px;
    }
    
    .faq-cat-link {
        font-size: 17px;
    }
    
    .faq-cat-link.active {
        font-size: 19px;
    }
    
    .faq-section-heading {
        font-size: 36px;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
    .faq-main-section {
        padding: 60px 15px;
    }
    
    .faq-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-sidebar {
        position: static;
        padding: 20px;
        border-radius: 20px;
        max-height: none;
    }
    
    .faq-category-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .faq-cat-link {
        font-size: 14px;
        padding: 12px 15px;
        text-align: center;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 10px;
    }
    
    .faq-cat-link.active {
        font-size: 15px;
        background: #ffffff;
        box-shadow: 0px 4px 12px rgba(207, 149, 41, 0.2);
    }
    
    .faq-cat-link.active::before {
        display: none;
    }
    
    .faq-cat-link:hover {
        transform: none;
        padding-left: 15px;
    }
    
    .faq-content-area {
        gap: 50px;
    }
    
    .faq-section-heading {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .faq-items-wrapper {
        max-width: 100%;
    }
    
    .faq-item-question {
        padding: 20px 22px;
        gap: 14px;
        border-radius: 10px;
    }
    
    .faq-icon-left {
        width: 22px;
        height: 22px;
    }
    
    .faq-item-title {
        font-size: 15px;
    }
    
    .faq-icon-right {
        width: 26px;
        height: 26px;
    }
    
    .faq-icon-circle-plus,
    .faq-icon-circle-minus {
        width: 26px;
        height: 26px;
    }
    
    .faq-icon-circle-plus svg,
    .faq-icon-circle-minus svg {
        width: 26px;
        height: 26px;
    }
    
    .faq-item-answer {
        padding-left: 40px;
        padding-right: 22px;
    }
    
    .doctor-message-heading {
        font-size: 32px;
    }
    
    .support-reminder-text {
        font-size: 16px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .faq-main-section {
        padding: 40px 15px;
    }
    
    .faq-sidebar {
        padding: 15px;
    }
    
    .faq-category-nav {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .faq-cat-link {
        font-size: 15px;
        padding: 12px 15px;
        text-align: left;
    }
    
    .faq-cat-link.active {
        font-size: 15px;
    }
    
    .faq-content-area {
        gap: 40px;
    }
    
    .faq-section-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .faq-item-question {
        padding: 18px 18px;
        gap: 12px;
        border-radius: 8px;
    }
    
    .faq-icon-left {
        width: 20px;
        height: 20px;
    }
    
    .faq-item-title {
        font-size: 14px;
        line-height: 140%;
    }
    
    .faq-icon-right {
        width: 24px;
        height: 24px;
    }
    
    .faq-icon-circle-plus,
    .faq-icon-circle-minus {
        width: 24px;
        height: 24px;
    }
    
    .faq-icon-circle-plus svg,
    .faq-icon-circle-minus svg {
        width: 24px;
        height: 24px;
    }
    
    .faq-item-answer {
        padding-left: 36px;
        padding-right: 18px;
    }
    
    .faq-item-answer p {
        font-size: 13px;
        line-height: 160%;
    }

}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .faq-section-heading {
        font-size: 24px;
    }
    
    .faq-item-title {
        font-size: 13px;
    }
    
    .faq-icon-left {
        width: 18px;
        height: 18px;
    }
    
    .faq-item-answer p {
        font-size: 12px;
    }

}

/* =========================
   Tablet (768px – 1023px)
========================= */
@media (min-width: 768px) and (max-width: 1023px) {

    .bd-call-wrap {
        display: flex;
        flex-direction: column;   /* Stack */
        align-items: center;
        gap: 100px;               /* Proper spacing */
    }

    .bd-call-image {
        width: 100%;
        height: auto;             /* ❌ REMOVE fixed height */
    }

    .bd-call-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .bd-call-content {
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .bd-call-content ul {
        text-align: left;
    }
}
/* =========================
   BMI SECTION
========================= */

.bmi-section {
  padding: 120px 20px;
  background: var(--bg-light);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.bmi-title {
  font-size: 40px;
  margin-bottom: 40px;
  color: var(--primary-blue);
}

.bmi-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.bmi-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.bmi-field input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 200px;
  font-family: 'Lexend', sans-serif;
}

.bmi-btn {
  padding: 12px 30px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: 0.3s;
}

.bmi-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

.bmi-result {
  margin-top: 40px;
  padding: 30px;
  background: var(--bg-cream);
  border-radius: 12px;
}

.bmi-category {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
}

.obesity-details {
  margin-top: 20px;
  text-align: left;
  display: inline-block;
}

.bmi-table {
  width: 100%;
  margin-top: 60px;
  border-collapse: collapse;
}

.bmi-table th {
  background: var(--primary-blue);
  color: #fff;
  padding: 12px;
}

.bmi-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

.bmi-table tr:nth-child(even) {
  background: #f9f9f9;
}

/* Hide obesity subclasses initially */
.obesity-sub {
  display: none;
}

/* Yellow highlight */
.active-bmi {
  background: var(--accent-gold);
  font-weight: 600;
}

/* =========================
   MODERN FORM CARD UI
========================= */

.bmi-form {
  max-width: 480px;
  margin: 0 auto 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.bmi-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bmi-field label {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
}

.bmi-field input {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  transition: 0.3s ease;
  background: #fafafa;
}

.bmi-field input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 70, 124, 0.15);
  background: #fff;
}

.bmi-btn {
  padding: 14px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  width: 100%;
}

.bmi-btn:hover {
  background: var(--accent-gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


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

@media (max-width: 768px) {

    .bmi-top-box {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .bmi-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}

/* ===============================
   FOOTER BOTTOM COPYRIGHT
================================ */

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

.footer-brand a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-brand a:hover {
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* Success message */
.wpcf7 form.sent .wpcf7-response-output {
    color: #ffffff !important;
}

/* Error message */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    color: #ffffff !important;
}