*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body{
    background:#f6f9ff;
    color:#0f172a;
}

.cert-section{
    width:100%;
    padding:100px 80px;
    animation: fadeUp .8s ease-out both;
}

.cert-container{
    max-width:1300px;
    margin:auto;
    text-align:center;
}

/* HEADER */
.cert-title{
    font-size:44px;
    margin-bottom:10px;
}

.cert-subtitle{
    font-size:16px;
    color:#2563eb;
    margin-bottom:70px;
}

.cert-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}

/* CARD */
.cert-card{
    background:white;
    border-radius:24px;
    padding:34px 28px;
    box-shadow:
        0 20px 40px rgba(37,99,235,.08),
        inset 0 0 0 1px #e5e7eb;
    transition:.35s ease;
    animation: fadeUp .8s ease-out both;
}

.cert-card:nth-child(1){ animation-delay:.1s }
.cert-card:nth-child(2){ animation-delay:.2s }
.cert-card:nth-child(3){ animation-delay:.3s }
.cert-card:nth-child(4){ animation-delay:.4s }

.cert-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 30px 60px rgba(37,99,235,.18),
        inset 0 0 0 2px #2563eb;
}

/* ICON */
.cert-icon{
    width:64px;
    height:64px;
    margin:0 auto 20px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:#eaf1ff;
    color:#2563eb;
}

/* TEXT */
.cert-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.cert-card p{
    font-size:14px;
    color:black;
    line-height:1.6;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


@media (max-width:1024px){
    .cert-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:600px){
    .cert-section{
        padding:70px 20px;
    }

    .cert-title{
        font-size:34px;
    }

    .cert-grid{
        grid-template-columns:1fr;
    }
}
















.mission-section{
    width:100%;
    background:#f6f9ff;
    padding:100px 80px;
}

.mission-container{
    max-width:1300px;
    margin:auto;
}

/* HEADER */
.mission-header{
    text-align:center;
    margin-bottom:70px;
}

.mission-header h2{
    font-size:44px;
    margin-bottom:10px;
    color:#0f172a;
}

.mission-header p{
    font-size:16px;
    color:#2563eb;
}


.mission-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* CARD */
.mission-card{
    background:#f6f9ff;
    border-radius:28px;
    padding:48px 36px;
    text-align:left;
    transition:0.35s ease;
    box-shadow:
        inset 0 0 0 1px #e5e7eb;
}

/* NEUMORPHISM ON HOVER */
.mission-card:hover,
.mission-card.active{
    background:#f6f9ff;
    box-shadow:
        12px 12px 28px rgba(15,23,42,.12),
        -12px -12px 28px rgba(255,255,255,.9),
        inset 0 0 0 1px #e5e7eb;
    transform:translateY(-6px);
}

/* ICON */
.mission-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:28px;
    box-shadow:
        inset 4px 4px 8px rgba(0,0,0,.06),
        inset -4px -4px 8px rgba(255,255,255,.8);
}

.mission-icon.blue{
    background:#eaf1ff;
    color:#2563eb;
}

.mission-icon.pink{
    background:#ffeef1;
    color:#e11d48;
}

.mission-icon.green{
    background:#eafff4;
    color:#059669;
}

/* TEXT */
.mission-card h3{
    font-size:22px;
    margin-bottom:16px;
    color:#0f172a;
}

.mission-card p{
    font-size:15px;
    line-height:1.7;
    color:#475569;
}


@media (max-width:1024px){
    .mission-cards{
        grid-template-columns:1fr;
        gap:32px;
    }

    .mission-card{
        padding:42px 30px;
    }
}

@media (max-width:600px){
    .mission-section{
        padding:70px 20px;
    }

    .mission-header h2{
        font-size:34px;
    }
}














.about-hero{
    width:100%;
    min-height:100vh;
    background:linear-gradient(90deg,#ffffff 55%, #e8fbfb);
    display:flex;
    align-items:center;
    padding:0 80px;
}

/* CONTAINER */
.about-hero-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:80px;
}

/* LEFT CONTENT */
.about-hero-content{
    width:50%;
}

.about-pill{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#e6fbfb !important;
    color:#0ea5a4 !important;
    font-size:13px;
    font-weight:600;
    margin-bottom:24px;
}

.about-hero-content h1{
    font-size:56px;
    line-height:1.1;
    color:#0f172a;
    margin-bottom:24px;
}

.about-hero-content h1 span{
    color:#2563eb;
}

.about-hero-content p{
    font-size:16px;
    line-height:1.7;
    color:#475569;
    max-width:520px;
    margin-bottom:20px;
}

/* BUTTONS */
.about-actions{
    display:flex;
    gap:16px;
    margin-top:30px;
}

.about-actions button{
    padding:14px 26px;
    border-radius:14px;
    border:none;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

.about-actions .primary{
    background:#2563eb;
    color:white;
}

.about-actions .secondary{
    background:white;
    color:#0ea5a4;
    border:1px solid #c7f3f2;
}

/* RIGHT IMAGE */
.about-hero-image{
    width:50%;
    height:70vh;
    max-height:680px;
    border-radius:36px;
    overflow:hidden;
    background:#dff7f7;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
        0 40px 80px rgba(0,0,0,.15),
        inset 0 0 0 2px rgba(255,255,255,.6);
}

.about-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}



@media (max-width: 1024px){
    .about-hero{
        padding:80px 48px;
    }

    .about-hero-container{
        gap:50px;
    }

    .about-hero-content h1{
        font-size:44px;
    }

    .about-hero-image{
        height:60vh;
    }
}



@media (max-width: 768px){
    .about-hero{
        min-height:auto;
        padding:25px;
    }

    .about-hero-container{
        flex-direction:column;
        gap:40px;
    }

    .about-hero-content{
        width:100%;
    }

    .about-hero-content h1{
        font-size:36px;
    }

    .about-hero-content p{
        max-width:100%;
    }

    .about-hero-image{
        width:100%;
        height:360px;
        max-height:none;
        border-radius:28px;
    }

    .about-actions{
        flex-direction:column;
    }

    .about-actions button{
        width:100%;
    }
}


@media (max-width: 420px){
    .about-hero-content h1{
        font-size:32px;
    }

    .about-hero-image{
        height:300px;
    }
}





















.team-section {
    width: 100%;
    padding: 90px 80px;
    background: #ffffff;
}

.team-container {
    max-width: 1280px;
    margin: auto;
}

/* HEADER */
.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.team-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 520px;
    margin: auto;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* CARD */
.team-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

/* IMAGE */
.team-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.team-content {
    padding: 26px;
    text-align: center;
}

.team-content h4 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
}

.team-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-section {
        padding: 70px 20px;
    }

    .team-header h2 {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 240px;
    }
}









.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;
}



/* ===============================
   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;
}



/* PAGE OFFSET */
body{
  padding-top:86px;
}















.footer-section{
  width:100%;
  background:#f6f9ff;
}

/* INNER WRAP (TOP ONLY) */
.footer-inner{
  max-width:1300px;
  margin:auto;
  padding:80px 80px 0;
}

/* TOP AREA */
.footer-top{
  display:flex;
  justify-content:space-between;
  gap:60px;
  padding-bottom:60px;
}

/* LEFT */
.footer-left{
  width:40%;
}

.footer-left h2{
  font-size:42px;
  line-height:1.2;
  font-weight:700;
  color:#0f172a;
}

/* RIGHT LINKS */
.footer-links{
  width:60%;
  display:flex;
  justify-content:space-between;
  gap:40px;
}

/* COLUMNS */
.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;
  max-width:360px;
  box-shadow:
    inset 3px 3px 6px rgba(0,0,0,.06),
    inset -3px -3px 6px rgba(255,255,255,.9);
}

.newsletter-box input{
  flex:1;
  border:none;
  outline:none;
  padding:10px 14px;
  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;
}


.footer-bottom{
  background:#eaf1ff;
  padding:20px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* SOCIALS */
.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;
  cursor:pointer;
}

/* COPYRIGHT */
.footer-bottom p{
  font-size:14px;
  color:#475569;
}

/* LEGAL */
.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;
}


@media(max-width:900px){
  .footer-inner{
    padding:60px 24px 0;
  }

  .footer-top{
    flex-direction:column;
    gap:40px;
  }

  .footer-left,
  .footer-links{
    width:100%;
  }

  .footer-links{
    flex-wrap:wrap;
    gap:30px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:16px;
    padding:20px 24px;
    text-align:center;
  }
}











.team-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}




.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;
}







































/* ===============================
   FIXED MAIN HEADER
================================ */
.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;
  }
}

/* PAGE OFFSET */
body{
  padding-top:86px;
}












: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{
  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;}
}













#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;
}

























/* ================= 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;
  }

  /* 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;
}

 
@media (max-width: 900px){


  .nav-cta .cta-btn{
    display: none;
  }


  .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;
}
