* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  background: #f7fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT VISUAL */
.hero-visual {
  flex: 1;
  position: relative;
}

.visual-box {
  height: 420px;
  border-radius: 28px;
  background: linear-gradient(135deg, #e4ebf5, #cfd8e6);
  animation: fadeUp 1s ease forwards;
}

/* FLOATING CARD */
.floating-card {
  position: absolute;
  bottom: -30px;
  left: 40px;
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  animation: float 3s ease-in-out infinite;
}

.floating-card span {
  color: #2563eb;
  font-weight: bold;
  font-size: 18px;
}

.floating-card p {
  font-size: 14px;
  color: #555;
}

/* RIGHT CONTENT */
.hero-content {
  flex: 1;
  animation: fadeRight 1s ease forwards;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  background: #eaf1ff;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111827;
}

.hero-content h1 span {
  color: #2563eb;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  max-width: 480px;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.primary-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37,99,235,0.4);
}

.secondary-btn {
  background: transparent;
  border: none;
  color: #2563eb;
  font-size: 15px;
  cursor: pointer;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats h3 {
  font-size: 28px;
  color: #111827;
}

.hero-stats span {
  font-size: 14px;
  color: #6b7280;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    gap: 60px;
  }

  .hero {
    padding: 80px 20px;

  }

  .hero-content h1 {
    font-size: 36px;
  }
}



/* ===== NAVBAR ===== */
.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color:#2563eb;
}

.logo span{
    width:36px;
    height:36px;
    background:#2563eb;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
}

.nav-center{
    display:flex;
    gap:30px;
    color:#475569;
}

.nav-right{
    display:flex;
    gap:15px;
    align-items:center;
}

.btn-outline{
    padding:8px 16px;
    border-radius:20px;
    border:1px solid #c7d2fe;
    background:white;
}

.btn-primary{
    padding:8px 18px;
    border-radius:20px;
    border:none;
    background:#2563eb;
    color:white;
}


















/* ===== SECTION ===== */
/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}

/* ===== SECTION ===== */
.services{
  padding:60px 6%;
  background:#f5f7fb;
}

/* ===== GROUP ===== */
.service-group{
  margin-bottom:50px;
}

/* ===== HEADER ===== */
.group-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;

  padding-bottom:10px;
  border-bottom:1px solid #e5e7eb;
}

/* ICON */
.group-icon{
  width:44px;
  height:44px;
  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  flex-shrink:0;
}

/* SOFT COLORS */
.blue{ background:#eaf2ff; color:#2563eb; }
.purple{ background:#f3e8ff; color:#9333ea; }
.green{ background:#dcfce7; color:#16a34a; }
.orange{ background:#ffedd5; color:#ea580c; }

/* TEXT */
.group-header h2{
  font-size:20px;
  font-weight:600;
  color:#0f172a;
}

.group-header span{
  font-size:12px;
  color:#64748b;
}

/* ===== GRID ===== */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:18px;
}

/* ===== CARD ===== */
.service-item{
  max-width:420px;
  width:100%;

  background:#ffffff;
  border-radius:16px;
  padding:16px 18px;

  display:flex;
  align-items:center;
  gap:14px;

  border:1px solid #e5e7eb;

  transition:all 0.25s ease;
  cursor:pointer;

  position:relative;
  overflow:hidden;

  /* CLEAN SHADOW */
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

/* HOVER */
.service-item:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
  border-color:#dbeafe;
}

/* ===== ICON ===== */
.item-icon{
  width:46px;
  height:46px;
  border-radius:12px;

  background:#eaf2ff;
  color:#2563eb;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  flex-shrink:0;

  transition:0.3s;

  box-shadow:0 4px 10px rgba(37,99,235,0.15);
}

/* ICON HOVER */
.service-item:hover .item-icon{
  transform:rotate(10deg) scale(1.05);
}

/* ===== TEXT ===== */
.text{
  flex:1;
}

.text h4{
  font-size:15px;
  font-weight:600;
  color:#0f172a;
}

.text p{
  font-size:13px;
  color:#64748b;
  margin-top:3px;
}

/* ===== ARROW ===== */
.arrow{
  font-size:18px;
  color:#94a3b8;
  transition:0.3s;
}

/* ARROW MOVE */
.service-item:hover .arrow{
  transform:translateX(6px);
  color:#2563eb;
}

/* ===== SUBTLE HOVER OVERLAY ===== */
.service-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(37,99,235,0.05));
  opacity:0;
  transition:0.3s;
}

.service-item:hover::after{
  opacity:1;
}

/* ===== RIPPLE ===== */
.ripple{
  position:absolute;
  width:120px;
  height:120px;
  background:rgba(37,99,235,0.15);
  border-radius:50%;
  transform:translate(-50%,-50%);
  animation:ripple 0.5s linear;
}

@keyframes ripple{
  from{
    transform:translate(-50%,-50%) scale(0);
    opacity:1;
  }
  to{
    transform:translate(-50%,-50%) scale(2);
    opacity:0;
  }
}

/* ===== TABLET ===== */
@media (max-width:1024px){

  .services{
    padding:50px 4%;
  }

  .service-grid{
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  }

  .group-header h2{
    font-size:18px;
  }
}

/* ===== MOBILE ===== */
@media (max-width:600px){

  .services{
    padding:35px 14px;
  }

  .service-group{
    margin-bottom:30px;
  }

  .group-header{
    gap:10px;
  }

  .group-icon{
    width:40px;
    height:40px;
    font-size:16px;
  }

  .group-header h2{
    font-size:16px;
  }

  .group-header span{
    font-size:11px;
  }

  .service-grid{
    gap:12px;
  }

  .service-item{
    max-width:100%;
    padding:14px;
  }

  .item-icon{
    width:40px;
    height:40px;
    font-size:16px;
  }

  .text h4{
    font-size:14px;
  }

  .text p{
    font-size:12px;
  }
}




.group-header{
  display:inline-flex;   /* 🔥 IMPORTANT (prevents full width) */
  align-items:center;
  gap:12px;

  padding:12px 18px;
  border-radius:14px;

  background:#f5f7fb;   /* same as section → neumorphism works */

  margin-bottom:18px;

  /* 🔥 NEUMORPHISM */
  box-shadow:
    6px 6px 12px rgba(0,0,0,0.08),
   -6px -6px 12px rgba(255,255,255,0.9);
}

.group-header:hover{
  transform:translateY(-2px);
  box-shadow:
    8px 8px 16px rgba(0,0,0,0.1),
   -8px -8px 16px rgba(255,255,255,1);
}




















.main-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(246,249,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e5e7eb;
}

.navbar{
  /* max-width:100px; */
  margin:auto;
  width: 90%;
  padding:16px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.nav-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:18px;
  color:#0f172a;
}

.nav-logo img{
  width:42px;
  height:42px;
  object-fit:cover;
  background:#e0f2fe;
  border-radius:12px; /* placeholder box */
}

/* LINKS */
.nav-links{
  display:flex;
  gap:34px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#475569;
  position:relative;
}

.nav-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#2563eb;
  transition:.25s ease;
}

.nav-links a:hover{
  color:#0f172a;
}

.nav-links a:hover::after{
  width:100%;
}

/* ACTIONS */
.nav-actions{
  display:flex;
  align-items:center;
  gap:20px;
}

.nav-btn{
  padding:10px 22px;
  border-radius:999px;
  border:none;
  background:#2563eb;
  color:white;
  font-weight:600;
  cursor:pointer;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:24px;
  height:2px;
  background:#0f172a;
}


@media(max-width:900px){
  .navbar{
    padding:14px 24px;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#f6f9ff;
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:.3s ease;
    border-bottom:1px solid #e5e7eb;
  }

  .nav-links.open{
    max-height:300px;
  }

  .nav-links li{
    padding:16px 24px;
  }

  .nav-links a{
    display:block;
  }

  .hamburger{
    display:flex;
  }
}



.package-toggle{
  max-width:1300px;
  margin:0px auto;
  /* padding: 40px; */
  display:flex;
  gap:20px;
}

.toggle-btn{
  padding:10px 26px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#f8fafc;
  color:#475569;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:all .25s ease;
}

/* ACTIVE STATE */
.toggle-btn.active{
  background:#2563eb;
  color:#fff;
  border-color:#2563eb;
}

/* HOVER */
.toggle-btn:hover{
  background:#e0f2fe;
  color:#0f172a;
}

/* MOBILE */
@media(max-width:900px){
  .package-toggle{
    padding:0 24px;
  }
}







.nav-logo{
  line-height:1;
}

.nav-logo img{
  width:auto;
  height:42px;
  background:transparent;   /* remove icon-box look */
  border-radius:0;          /* logos should not be rounded */
  display:block;
}







/* SCROLL PROGRESS BAR */
#scrollProgress{
  position:fixed;
  top:0;
  left:0;
  height:4px;
  width:0%;
  background:linear-gradient(90deg,#2563eb,#60a5fa);
  z-index:2000;
  transition:width .1s linear;
}




/* LAZY LOAD INITIAL STATE */
.lazy{
  opacity:0;
  transform:translateY(40px);
}

.lazy.show{
  opacity:1;
  transform:translateY(0);
  transition:all .7s ease;
}


















.footer-section{
    width:100%;
    background:#f6f9ff;
    padding:80px 0 0;
}

.footer-inner{
    width:100%;
    padding:0 6%;
}

/* TOP AREA */
.footer-top{
    display:flex;
    justify-content:space-between;
    gap:60px;
    padding-bottom:60px;
}

.footer-left{
    width:40%;
}

.footer-left h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    color:#0f172a;
}

/* LINKS */
.footer-links{
    width:60%;
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.footer-col{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-col h4{
    font-size:14px;
    font-weight:700;
    color:#0f172a;
}

.footer-col a{
    font-size:14px;
    color:#475569;
    text-decoration:none;
}

.footer-col a:hover{
    color:#2563eb;
}

/* NEWSLETTER */
.newsletter-box{
    display:flex;
    align-items:center;
    background:white;
    border-radius:30px;
    padding:6px;
    box-shadow:
        inset 3px 3px 6px rgba(0,0,0,0.06),
        inset -3px -3px 6px rgba(255,255,255,0.9);
}

.newsletter-box input{
    border:none;
    outline:none;
    padding:10px 14px;
    flex:1;
    font-size:14px;
    background:transparent;
}

.newsletter-box button{
    border:none;
    padding:10px 22px;
    border-radius:24px;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:white;
    font-weight:600;
    cursor:pointer;
}

/* BOTTOM BAR */
.footer-bottom{
    background:#eaf1ff;
    padding:20px 6%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-socials{
    display:flex;
    gap:14px;
}

.footer-socials span{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid #c7d2fe;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-weight:600;
}

.footer-bottom p{
    font-size:14px;
    color:#475569;
}

.footer-legal{
    display:flex;
    gap:16px;
}

.footer-legal button{
    background:transparent;
    border:1px solid #c7d2fe;
    padding:10px 20px;
    border-radius:30px;
    font-size:13px;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
    .footer-top{
        flex-direction:column;
    }

    .footer-left,
    .footer-links{
        width:100%;
    }

    .footer-links{
        flex-wrap:wrap;
    }

    .footer-bottom{
        flex-direction:column;
        gap:16px;
    }
}














/* TRUST SECTION */
.trust-section{
  padding:80px 6%;
  background:linear-gradient(135deg,#0f4c5c,#1b6c7d,#0e7490);
  color:#fff;
}

.trust-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.trust-section h2{
  font-size:36px;
  margin-bottom:12px;
  color: white;
}

.trust-subtitle{
  font-size:16px;
  opacity:.85;
  margin-bottom:50px;
}

/* GRID */
.trust-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

/* NEUMORPHIC CARD */
.trust-card{
  background:rgba(255,255,255,0.08);
  border-radius:22px;
  padding:30px 20px;
  backdrop-filter:blur(10px);
  box-shadow:
    inset 4px 4px 10px rgba(255,255,255,.15),
    inset -4px -4px 10px rgba(0,0,0,.25),
    0 20px 40px rgba(0,0,0,.25);
  transition:.35s ease;
}

.trust-card:hover{
  transform:translateY(-8px);
  box-shadow:
    inset 6px 6px 14px rgba(255,255,255,.18),
    inset -6px -6px 14px rgba(0,0,0,.3),
    0 30px 60px rgba(0,0,0,.4);
}

/* ICON */
.trust-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin:0 auto 18px;
  color:#fff;
}

.trust-icon.blue{background:#2563eb;}
.trust-icon.green{background:#10b981;}
.trust-icon.pink{background:#ec4899;}
.trust-icon.teal{background:#06b6d4;}

/* TEXT */
.trust-card h3{
  font-size:30px;
  margin-bottom:6px;
}

.trust-card span{
  font-size:14px;
  opacity:.85;
}









img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
























.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(246,249,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e5e7eb;
}

/* ===============================
   NAV CONTAINER
================================ */
.site-nav{
  max-width:1300px;
  margin:auto;
  padding:16px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===============================
   BRAND
================================ */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  height:42px;
  object-fit:contain;
}

.brand-text{
  line-height:1.1;
}

.brand-text strong{
  font-size:18px;
  color:#0f172a;
}

.brand-text span{
  font-size:12px;
  color:#64748b;
}

/* ===============================
   MENU
================================ */
.nav-menu{
  display:flex;
  gap:34px;
  list-style:none;
}

.nav-menu a{
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#475569;
  position:relative;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#2563eb;
  transition:.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active{
  color:#0f172a;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
  width:100%;
}

/* ===============================
   CTA
================================ */
.nav-cta{
  display:flex;
  align-items:center;
  gap:20px;
}

.cta-btn{
  padding:10px 22px;
  border-radius:999px;
  border:none;
  background:#2563eb;
  color:white;
  font-weight:600;
  cursor:pointer;
}

/* ===============================
   HAMBURGER
================================ */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#0f172a;
}

/* ===============================
   MOBILE
================================ */
@media(max-width:900px){

  .site-nav{
    padding:14px 24px;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#f6f9ff;
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:.3s ease;
    border-bottom:1px solid #e5e7eb;
  }

  .nav-menu.open{
    max-height:320px;
  }

  .nav-menu li{
    padding:16px 24px;
  }

  .menu-toggle{
    display:flex;
  }
}

























:root{
  --primary:#0f172a;
  --accent:#2563eb;
  --accent-soft:#e0e7ff;
  --bg:#f1f5f9;
  --card:#ffffff;
  --border:#cbd5f5;
  --text-light:#64748b;
}

/* OVERLAY */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.7);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:20px;
}

/* CARD */
.popup-card{
  background:var(--card);
  width:100%;
  max-width:420px;
  border-radius:18px;
  padding:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
  position:relative;
  animation:popupScale .3s ease;
}

/* TITLE */
.popup-card h3{
  font-size:20px;
  color:var(--primary);
}

.popup-sub{
  font-size:13px;
  color:var(--text-light);
  margin-bottom:14px;
}

/* FORM */
.popup-card form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* INPUTS */
.popup-card input,
.popup-card select,
.popup-card textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  font-size:13px;
  background:#fff;
  font-family:inherit;
}

/* TEXTAREA FIX */
.popup-card textarea{
  height:90px;
  resize:none;
  line-height:1.4;
}

/* FOCUS */
.popup-card input:focus,
.popup-card select:focus,
.popup-card textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(37,99,235,0.15);
}

/* CHIPS */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.chip{
  padding:6px 12px;
  border-radius:20px;
  background:var(--accent-soft);
  font-size:12px;
  cursor:pointer;
  color:#1e293b;
  transition:.2s;
}

.chip.active{
  background:var(--accent);
  color:#fff;
}

/* BUTTON */
.popup-card button.submit-btn{
  padding:12px;
  border:none;
  border-radius:10px;
  background:var(--accent);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.2s;
}

.popup-card button.submit-btn:hover{
  background:#1d4ed8;
}

/* CLOSE */
.popup-close{
  position:absolute;
  top:10px;
  right:10px;
  width:30px;
  height:30px;
  border-radius:50%;
  border:none;
  background:var(--bg);
  cursor:pointer;
}

/* THANK YOU */
.thank-you{
  display:none;
  text-align:center;
}

@keyframes popupScale{
  from{transform:scale(.9);opacity:0;}
  to{transform:scale(1);opacity:1;}
}


















/* ================= BMI FEATURE ================= */

.bmi-launcher{
  position:fixed;
  bottom:24px;
  right:24px;
  width:60px;
  height:60px;
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  border-radius:50%;
  box-shadow:0 24px 48px rgba(37,99,235,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:9999;
}
.bmi-icon{
  width:22px;
  height:22px;
  border:3px solid #fff;
  border-right-color:transparent;
  border-radius:50%;
}

/* NUDGE */
.bmi-nudge{
  position:fixed;
  bottom:38px;
  right:96px;
  background:white;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:#0f172a;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  opacity:0;
  transform:translateY(10px);
  transition:.4s ease;
  z-index:9998;
}
.bmi-nudge.show{opacity:1;transform:translateY(0);}
.bmi-nudge .dot{
  width:8px;height:8px;background:#2563eb;border-radius:50%;
}

/* PANEL */
.bmi-panel{
  position:fixed;
  bottom:104px;
  right:24px;
  width:360px;
  max-width:calc(100vw - 32px);
  background:#f8fbff;
  border-radius:24px;
  box-shadow:0 40px 90px rgba(15,23,42,.25);
  display:none;
  z-index:9999;
}
.bmi-header{
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  padding:18px 20px;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.bmi-body{padding:22px}

/* INPUTS – GUARANTEED NO OVERFLOW */
.bmi-inputs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:18px;
}
.bmi-inputs input,
.bmi-inputs select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #c7d2fe;
  font-size:13px;
  box-sizing:border-box;
}
@media(max-width:420px){
  .bmi-inputs{grid-template-columns:1fr;}
}

/* GAUGE */
.bmi-gauge-box{
  background:#eef3fb;
  border-radius:20px;
  padding:18px 12px 14px;
  text-align:center;
  margin-bottom:18px;
}
.bmi-gauge{max-width:260px;width:100%}
.bmi-scale{
  display:flex;
  justify-content:space-between;
  font-size:11px;
  color:#64748b;
  margin-top:-6px;
}
.bmi-value{font-size:22px;font-weight:700;color:#0f172a}
.bmi-status{font-size:14px;font-weight:600;color:#2563eb}

/* BUTTON */
.bmi-btn{
  width:100%;
  padding:14px;
  border-radius:999px;
  border:none;
  background:#2563eb;
  color:white;
  font-weight:600;
  cursor:pointer;
}



















@media (max-width: 900px){

  /* NAV CONTAINER */
  .site-nav{
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO FIX */
  .brand{
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand img{
    height: 34px;          /* smaller clean size */
    width: auto;
    display: block;
  }

  /* BOOK TEST BUTTON FIX */
  .nav-cta{
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .cta-btn{
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 20px;
    white-space: nowrap;
  }

  /* HAMBURGER VISIBLE */
  .menu-toggle{
    display: flex !important;
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle span{
    width: 22px;
    height: 2px;
    background: #0f172a;
  }

  /* MOBILE MENU PANEL */
  .nav-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f6f9ff;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-menu.open{
    max-height: 320px;
  }

  .nav-menu li{
    padding: 16px 20px;
  }

}









/* ===============================
   MOBILE NAV FIX (NO CUTOFF)
================================ */
@media (max-width: 900px){

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#f6f9ff;
    flex-direction:column;
    gap:0;

    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
  }

  /* IMPORTANT — increase height */
  .nav-menu.open{
    max-height:500px;   /* bigger so nothing gets cut */
  }

  .nav-menu li{
    padding:16px 24px;
    text-align:center;  /* center text in mobile menu */
  }

  /* Hide top Book button */
  .nav-cta .cta-btn{
    display:none;
  }

  /* Show mobile version */
  .mobile-book{
    display:block;
    padding:20px 24px;
  }

  .mobile-book-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#2563eb;
    color:white;
    font-weight:600;
  }

}












.mobile-book{
  display: none;
}

/* Mobile behavior */
@media (max-width: 900px){

  /* Hide desktop Book Test */
  .nav-cta .cta-btn{
    display: none;
  }

  /* Show Book Test inside hamburger menu */
  .mobile-book{
    display: block;
    padding: 16px 24px;
  }

  .mobile-book-btn{
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #2563eb;
    color: white;
    font-weight: 600;
    cursor: pointer;
  }

}


















/* ================= BMI FEATURE ================= */

.bmi-launcher{
  position:fixed;
  bottom:24px;
  right:24px;
  width:60px;
  height:60px;
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  border-radius:50%;
  box-shadow:0 24px 48px rgba(37,99,235,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:9999;
}
.bmi-icon{
  width:22px;
  height:22px;
  border:3px solid #fff;
  border-right-color:transparent;
  border-radius:50%;
}

/* NUDGE */
.bmi-nudge{
  position:fixed;
  bottom:38px;
  right:96px;
  background:white;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:#0f172a;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  opacity:0;
  transform:translateY(10px);
  transition:.4s ease;
  z-index:9998;
}
.bmi-nudge.show{opacity:1;transform:translateY(0);}
.bmi-nudge .dot{
  width:8px;height:8px;background:#2563eb;border-radius:50%;
}

/* PANEL */
.bmi-panel{
  position:fixed;
  bottom:104px;
  right:24px;
  width:360px;
  max-width:calc(100vw - 32px);
  background:#f8fbff;
  border-radius:24px;
  box-shadow:0 40px 90px rgba(15,23,42,.25);
  display:none;
  z-index:9999;
}
.bmi-header{
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  padding:18px 20px;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.bmi-body{padding:22px}

/* INPUTS – GUARANTEED NO OVERFLOW */
.bmi-inputs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:18px;
}
.bmi-inputs input,
.bmi-inputs select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #c7d2fe;
  font-size:13px;
  box-sizing:border-box;
}
@media(max-width:420px){
  .bmi-inputs{grid-template-columns:1fr;}
}

/* GAUGE */
.bmi-gauge-box{
  background:#eef3fb;
  border-radius:20px;
  padding:18px 12px 14px;
  text-align:center;
  margin-bottom:18px;
}
.bmi-gauge{max-width:260px;width:100%}
.bmi-scale{
  display:flex;
  justify-content:space-between;
  font-size:11px;
  color:#64748b;
  margin-top:-6px;
}
.bmi-value{font-size:22px;font-weight:700;color:#0f172a}
.bmi-status{font-size:14px;font-weight:600;color:#2563eb}

/* BUTTON */
.bmi-btn{
  width:100%;
  padding:14px;
  border-radius:999px;
  border:none;
  background:#2563eb;
  color:white;
  font-weight:600;
  cursor:pointer;
}





















.preg-panel{
position:fixed;
bottom:120px;
right:40px;
width:320px;
background:white;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,.15);
display:none;
z-index:999;
}

.preg-header{
display:flex;
justify-content:space-between;
padding:14px;
border-bottom:1px solid #eee;
font-weight:600;
}

.preg-body{
padding:16px;
display:flex;
flex-direction:column;
gap:12px;
}

.preg-body input{
padding:10px;
border:1px solid #ddd;
border-radius:8px;
}

.preg-btn{
padding:10px;
background:#2563eb;
color:white;
border:none;
border-radius:8px;
cursor:pointer;
}

.preg-result{
margin-top:10px;
font-size:14px;
}


















/* ================= BODY FAT PANEL ================= */

.bodyfat-panel{
position:fixed;
right:30px;
bottom:110px;
width:320px;
background:#fff;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
display:none;
z-index:999;
overflow:hidden;
}


/* HEADER */

.bodyfat-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 18px;
background:#f8fafc;
border-bottom:1px solid #eee;
}

.bodyfat-header h3{
font-size:16px;
font-weight:600;
margin:0;
color:#0f172a;
}

.bodyfat-header span{
cursor:pointer;
font-size:18px;
color:#555;
}


/* BODY */

.bodyfat-body{
padding:18px;
display:flex;
flex-direction:column;
gap:12px;
}


/* INPUTS */

.bodyfat-inputs{
display:flex;
flex-direction:column;
gap:10px;
}

.bodyfat-inputs input,
.bodyfat-inputs select{
width:100%;
padding:10px;
border:1px solid #e2e8f0;
border-radius:8px;
font-size:14px;
outline:none;
transition:0.2s;
}

.bodyfat-inputs input:focus,
.bodyfat-inputs select:focus{
border-color:#2563eb;
}


/* BUTTON */

.bf-btn{
margin-top:6px;
padding:11px;
border:none;
background:#2563eb;
color:#fff;
font-size:14px;
border-radius:8px;
cursor:pointer;
transition:0.25s;
}

.bf-btn:hover{
background:#1d4ed8;
}


/* RESULT */

.bf-result{
margin-top:10px;
text-align:center;
}

#bfValue{
font-size:18px;
font-weight:600;
color:#0f172a;
}

#bfCategory{
font-size:14px;
color:#64748b;
margin-top:4px;
}








/* BODY FAT SCALE */

.bf-scale-wrapper{
margin-top:20px;
position:relative;
}

.bf-scale{
height:20px;
border-radius:8px;

background:linear-gradient(
to right,
#990000 0%,
#990000 5%,
#ffd400 5%,
#ffd400 20%,
#00e676 20%,
#00c853 45%,
#ffd400 45%,
#ffd400 65%,
#990000 65%,
#990000 100%
);
}

.bf-scale-labels{
display:flex;
justify-content:space-between;
font-size:12px;
margin-top:6px;
}

.bf-scale-types{
display:flex;
justify-content:space-between;
font-size:12px;
margin-top:3px;
}

.bf-indicator{
position:absolute;
top:-28px;
transform:translateX(-50%);
text-align:center;
}

.bf-indicator span{
font-size:14px;
font-weight:600;
}

.bf-indicator::after{
content:"";
display:block;
width:0;
height:0;
border-left:8px solid transparent;
border-right:8px solid transparent;
border-top:12px solid black;
margin:auto;
}











/* ================= DIABETES PANEL ================= */

.diabetes-panel{
position:fixed;
right:30px;
bottom:110px;
width:320px;
background:#ffffff;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
display:none;
z-index:999;
overflow:hidden;
}


/* HEADER */

.diabetes-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 18px;
background:#f8fafc;
border-bottom:1px solid #eee;
}

.diabetes-header h3{
font-size:16px;
font-weight:600;
margin:0;
color:#0f172a;
}

.diabetes-header span{
cursor:pointer;
font-size:18px;
color:#555;
}


/* BODY */

.diabetes-body{
padding:18px;
display:flex;
flex-direction:column;
gap:12px;
}


/* INPUTS */

.diabetes-inputs{
display:flex;
flex-direction:column;
gap:10px;
}

.diabetes-inputs input,
.diabetes-inputs select{
width:100%;
padding:10px;
border:1px solid #e2e8f0;
border-radius:8px;
font-size:14px;
outline:none;
transition:0.2s;
}

.diabetes-inputs input:focus,
.diabetes-inputs select:focus{
border-color:#2563eb;
}


/* BUTTON */

.dia-btn{
margin-top:6px;
padding:11px;
border:none;
background:#2563eb;
color:#fff;
font-size:14px;
border-radius:8px;
cursor:pointer;
transition:0.25s;
}

.dia-btn:hover{
background:#1d4ed8;
}


/* RESULT */

.dia-result{
margin-top:10px;
text-align:center;
}

#diaScore{
font-size:18px;
font-weight:600;
color:#0f172a;
}

#diaResult{
font-size:14px;
color:#64748b;
margin-top:4px;
}











.health-launcher{
position:fixed;
bottom:40px;
right:40px;
width:60px;
height:60px;
border-radius:50%;
background:#2563eb;
color:white;
font-size:32px;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,.2);
z-index:999;
}

.health-menu{
position:fixed;
bottom:110px;
right:40px;
background:white;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
display:none;
flex-direction:column;
padding:10px;
gap:8px;
z-index:999;
}

.health-menu.open{
display:flex;
}

.health-item{
padding:10px 14px;
border:none;
background:#f1f5f9;
border-radius:8px;
cursor:pointer;
}

.health-item:hover{
background:#2563eb;
color:white;
}





.search-launcher-wrapper{
position:fixed;
right:40px;
bottom:120px; /* sits above + button */
display:flex;
flex-direction:column;
align-items:flex-end;
gap:12px;
z-index:999;
}



.search-launcher{
width:60px;
height:60px;
border-radius:50%;
background:#2563eb;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,.2);

animation:searchBounce 2.5s infinite;
}

/* bounce animation */

@keyframes searchBounce{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-6px)}
}

/* search form hidden */

.search-launcher-wrapper form{
display:flex;
align-items:center;
background:white;
border-radius:30px;
padding:6px;
gap:6px;
box-shadow:0 15px 35px rgba(0,0,0,.15);

opacity:0;
pointer-events:none;
transform:translateY(10px);
transition:.25s ease;
}

/* open state */

.search-launcher-wrapper.active form{
opacity:1;
pointer-events:auto;
transform:translateY(0);
}

.search-launcher-wrapper input{
border:none;
outline:none;
padding:8px 12px;
width:180px;
}

.search-launcher-wrapper button{
border:none;
background:#2563eb;
color:white;
padding:6px 14px;
border-radius:20px;
cursor:pointer;
}





.developed-by {
  margin-left: 5px;
  color: #64748b;
  font-size: 16px;
}

.brand-name {
  font-weight: 600;
  font-size: 14px;
  font-family: "Black Ops One", system-ui;
  color: #0f172a;
}
