body{
  margin:0;
  padding: 0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  background:#f6f9ff;
  color:#0f172a;
}

.test-section{
  padding:90px 80px;
  max-width:1300px;
  margin:auto;
}


.search-filter-bar{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.search-box{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  background:white;
  padding:14px 16px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.search-box input{
  border:none;
  outline:none;
  width:100%;
  font-size:14px;
}

.search-box i{
  color:#64748b;
}

.search-filter-bar select,
.clear-btn{
  padding:14px 16px;
  border-radius:14px;
  border:none;
  background:white;
  font-size:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  cursor:pointer;
}

.clear-btn{
  font-weight:600;
}

.result-count{
  font-size:13px;
  color:#64748b;
  margin-bottom:30px;
}


.tests-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.test-card{
  background:white;
  border-radius:20px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.test-tags{
  display:flex;
  gap:10px;
  margin-bottom:12px;
}

.tag{
  font-size:11px;
  padding:4px 12px;
  border-radius:20px;
  font-weight:600;
}

.tag.category{ background:#e0f2fe; color:#0369a1; }
.tag.popular{ background:#dcfce7; color:#15803d; }

.test-card h4{
  font-size:18px;
  margin-bottom:6px;
}

.test-card p{
  font-size:13px;
  color:#64748b;
  line-height:1.5;
}

.test-meta{
  font-size:12px;
  color:#475569;
  margin:12px 0;
}

.price-row{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:14px;
}

.price{
  font-size:22px;
  font-weight:700;
  color:#16a34a;
}

.old{
  font-size:14px;
  color:#94a3b8;
  text-decoration:line-through;
}

.card-actions{
  display:flex;
  gap:12px;
}

.btn-outline{
  flex:1;
  padding:10px;
  border-radius:12px;
  border:1px solid #c7d2fe;
  background:white;
  font-weight:600;
  cursor:pointer;
}

.btn-primary{
  flex:1;
  padding:10px;
  border-radius:12px;
  border:none;
  background:#2563eb;
  color:white;
  font-weight:600;
  cursor:pointer;
}


.pagination{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:40px;
}

.page-btn{
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  background:white;
  box-shadow:0 6px 14px rgba(0,0,0,.1);
  font-weight:600;
  cursor:pointer;
}

.page-btn.active{
  background:#2563eb;
  color:white;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:1024px){
  .tests-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:600px){
  .test-section{ padding:60px 20px; }
  .tests-grid{ grid-template-columns:1fr; }
}
















.category-hero{
  background:#f6f9ff;
  padding:110px 80px 70px;
}

.category-container{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:80px;
}

/* LEFT */
.category-content{
  width:50%;
  animation:fadeUp .9s ease both;
}

.category-pill{
  display:inline-block;
  padding:8px 18px;
  background:#e0f2fe;
  color:#0369a1;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  margin-bottom:26px;
}

.category-content h1{
  font-size:48px;
  line-height:1.15;
  margin-bottom:20px;
}

.category-content h1 span{
  color:#2563eb;
}

.category-content p{
  max-width:460px;
  font-size:15px;
  color:#475569;
  line-height:1.7;
  margin-bottom:36px;
}

/* CATEGORY CHIPS */
.category-list{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.cat-chip{
  padding:12px 18px;
  border-radius:999px;
  background:white;
  font-size:13px;
  font-weight:600;
  color:#0f172a;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  cursor:pointer;
  transition:.25s ease;
}

.cat-chip:hover{
  background:#2563eb;
  color:white;
  transform:translateY(-3px);
}

/* RIGHT */
.category-visual{
  width:50%;
  position:relative;
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.12);
  animation:scaleIn 1s ease both;
}

.category-visual img{
  width:100%;
  height:520px;
  object-fit:cover;
}

/* FLOATING PILLS */
.float-pill{
  position:absolute;
  background:white;
  padding:12px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  display:flex;
  gap:8px;
  align-items:center;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
  animation:float 4s ease-in-out infinite;
}

.pill-1{
  top:40px;
  left:40px;
}

.pill-2{
  top:180px;
  right:50px;
  animation-delay:1s;
}

.pill-3{
  bottom:60px;
  left:120px;
  animation-delay:2s;
}

/* ANIMATIONS */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes scaleIn{
  from{opacity:0;transform:scale(.95)}
  to{opacity:1;transform:scale(1)}
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* RESPONSIVE */
@media(max-width:1024px){
  .category-container{
    flex-direction:column;
    gap:60px;
  }
  .category-content,
  .category-visual{
    width:100%;
  }
}

@media(max-width:600px){
  .category-hero{
    padding:30px 20px 50px;
  }
  .category-content h1{
    font-size:36px;
  }
  .category-visual img{
    height:380px;
  }
}








.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;
  }
}










.dots{
  padding:0 8px;
  font-weight:600;
  color:#64748b;
  pointer-events:none;
}














.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;
  }
}
























































:root{
  --primary:#0f172a;
  --accent:#2563eb;
  --accent-soft:#e0e7ff;
  --bg:#f1f5f9;
  --card:#ffffff;
  --border:#cbd5f5;
  --text-light:#64748b;
}

/* OVERLAY */
.popup-overlay{
  position:fixed;
  top: 200px;
  margin-top: 40px;
  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);
  height:90%;
  width:100%;
  max-width:420px;
  margin-top: 30px;
  
  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:68px;
  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;
}


















































/* ================= 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;
}









.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;
}

/* PAGE OFFSET */
body{
  padding-top:86px;
}

















