*{margin:0;padding:0;box-sizing:border-box}

:root{
--green:#006B43;
--blue:#0A5A39;
--navy:#123126;
--bg:#F7F9F6;
--soft:#EDF6EC;
--card:#FFFFFF;
--text:#20302A;
--light:#6A7A73;
--border:#E2EAE3;
--accent:#A6BF2D;
}

html{scroll-behavior:smooth}

body{
font-family:'Inter',Arial,sans-serif;
background:var(--bg);
overflow-x:hidden;
color:var(--text);
line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:88px;
padding:0 7%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.94);
backdrop-filter:blur(20px);
border-bottom:1px solid rgba(0,0,0,.06);
z-index:1000;
}

.brand{display:flex;align-items:center;gap:14px;color:var(--text)}
.brand-logo{width:52px;height:52px;object-fit:contain}
.brand strong{display:block;font-size:18px;font-weight:900;letter-spacing:2px;color:var(--green)}
.brand small{font-size:12px;color:var(--light)}

.nav-links{display:flex;gap:35px;font-size:14px;font-weight:700;color:var(--text)}
.nav-links a:hover{color:var(--green)}

.menu-btn{
display:none;
background:linear-gradient(90deg,var(--green),var(--accent));
color:white;
border:none;
border-radius:10px;
padding:10px 14px;
font-size:22px;
cursor:pointer;
}

.mobile-menu{
display:none;
position:fixed;
top:88px;
left:0;
width:100%;
padding:20px 7%;
background:white;
z-index:999;
box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.mobile-menu.show{display:block}
.mobile-menu a{display:block;padding:16px 0;border-bottom:1px solid var(--border);font-weight:700;color:var(--text)}

/* INTRO */

#welcomeIntro{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:
radial-gradient(circle at top right,rgba(166,191,45,.18),transparent 30%),
radial-gradient(circle at bottom left,rgba(0,107,67,.15),transparent 35%),
linear-gradient(135deg,#F7F9F6,#EDF6EC,#F7F9F6);
z-index:999999;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
transition:transform 1.4s ease,opacity 1.4s ease;
}

#welcomeIntro.hideIntro{
opacity:0!important;
transform:translateY(-100%)!important;
pointer-events:none!important;
}

.welcome-content{position:relative;z-index:5;text-align:center}
.intro-logo{width:140px;margin:auto;animation:logoPulse 2.5s infinite;filter:drop-shadow(0 0 24px rgba(0,107,67,.25))}

@keyframes logoPulse{
0%{transform:scale(1)}
50%{transform:scale(1.07)}
100%{transform:scale(1)}
}

.welcome-content p{font-size:13px;letter-spacing:8px;font-weight:900;margin-top:28px;color:var(--green)}
.welcome-content h1{font-size:88px;font-weight:900;letter-spacing:10px;margin-top:10px;color:var(--green)}
.welcome-content h2{font-size:28px;font-weight:600;color:var(--navy);margin-top:12px}
.welcome-content span{display:block;margin-top:28px;color:var(--light);font-size:16px}

/* HERO SLIDER */



.slide-two{
background:
radial-gradient(circle at top left,rgba(0,107,67,.10),transparent 30%),
radial-gradient(circle at bottom right,rgba(166,191,45,.12),transparent 35%),
linear-gradient(135deg,#F7F9F6,#EEF7F0,#EDF6EC);
}

.slide-three{
background:
radial-gradient(circle at bottom right,rgba(166,191,45,.13),transparent 30%),
linear-gradient(135deg,#F5FAF5,#EDF6EC,#F7F9F6);
}

.slide-content{max-width:720px}

.label{
font-size:13px;
font-weight:900;
letter-spacing:4px;
text-transform:uppercase;
color:var(--green);
}

.slide-content h1{
font-size:58px;
line-height:1.04;
font-weight:900;
letter-spacing:-2.5px;
margin:22px 0;
color:var(--navy);
}

.slide-content p{
font-size:19px;
line-height:1.8;
max-width:640px;
color:var(--light);
margin-bottom:26px;
}

.slide-points{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-bottom:34px;
}

.slide-points span{
padding:10px 14px;
border-radius:999px;
background:white;
border:1px solid var(--border);
color:var(--text);
font-size:13px;
font-weight:700;
box-shadow:0 8px 24px rgba(18,49,38,.04);
}

.hero-buttons{display:flex;gap:18px;flex-wrap:wrap}

.btn{
padding:17px 32px;
border-radius:999px;
font-weight:800;
display:inline-block;
transition:.35s;
}

.btn:hover{transform:translateY(-4px)}

.btn-teal{
background:linear-gradient(90deg,var(--green),var(--accent));
color:white;
box-shadow:0 18px 45px rgba(0,107,67,.20);
}

.btn-glass{
background:white;
border:1px solid var(--border);
color:var(--green);
box-shadow:0 12px 36px rgba(18,49,38,.06);
}

/* SLIDE PANEL */

.slide-panel{
width:100%;
max-width:520px;
justify-self:end;
padding:40px;
background:white;
border:1px solid rgba(0,0,0,.06);
border-radius:35px;
box-shadow:0 40px 100px rgba(18,49,38,.10);
}

.slide-panel span{
font-size:12px;
font-weight:900;
letter-spacing:4px;
color:var(--green);
}

.slide-panel h3{
font-size:38px;
line-height:1.15;
margin:18px 0;
font-weight:900;
color:var(--navy);
}

.slide-panel p{color:var(--light);line-height:1.8}

.panel-list{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
margin-top:28px;
}

.panel-list div{
padding:18px;
border-radius:18px;
background:var(--bg);
text-align:center;
border:1px solid var(--border);
}

.panel-list b{display:block;font-size:26px;color:var(--green)}
.panel-list small{color:var(--light);font-size:12px}

.panel-flow{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:28px}

.panel-flow span{
letter-spacing:0;
font-size:13px;
padding:10px 14px;
border-radius:999px;
background:var(--bg);
color:var(--text);
border:1px solid var(--border);
}

.panel-flow i{color:var(--accent);font-style:normal;font-weight:900}

.panel-quote{
margin-top:28px;
padding:24px;
border-left:4px solid var(--accent);
background:var(--bg);
border-radius:18px;
color:var(--text);
font-weight:700;
}

/* DOTS */

.slider-nav{
position:absolute;
bottom:38px;
left:7%;
display:flex;
gap:12px;
z-index:100;
}

.dot{
width:14px;
height:14px;
border-radius:50%;
background:rgba(18,49,38,.22);
cursor:pointer;
}

.active-dot{
background:linear-gradient(90deg,var(--green),var(--accent));
width:42px;
border-radius:30px;
}

/* GENERAL */

.who-we,
.patient-promise,
.care-journey,
.health-support,
.trust-section,
.patient-help,
.health-awareness,
.impact-section,
.founder-message,
.trust-wall,
.care-categories,
.principles,
.safety-section,
.patient-faq,
.wellness-section,
.news-hub,
.support-disclaimer,
.community-section,
.vision-roadmap,
.initiatives,
.final-cta{
padding:120px 7%;
}

.who-we h2,
.patient-promise h2,
.care-journey h2,
.health-support h2,
.trust-section h2,
.patient-help h2,
.health-awareness h2,
.impact-section h2,
.founder-content h2,
.trust-wall h2,
.care-categories h2,
.principles h2,
.safety-section h2,
.patient-faq h2,
.wellness-section h2,
.news-hub h2,
.support-disclaimer h2,
.community-left h2,
.vision-roadmap h2,
.initiatives h2,
.final-cta h2{
font-size:56px;
line-height:1.05;
letter-spacing:-2px;
margin:20px 0 50px;
color:var(--navy);
}

.who-we p,
.patient-promise p,
.care-journey p,
.health-support p,
.trust-section p,
.patient-help p,
.health-awareness p,
.impact-section p,
.founder-content p,
.trust-wall p,
.safety-section p,
.patient-faq p,
.news-hub p,
.support-disclaimer p,
.community-left p,
.initiatives p,
.final-cta p{
color:var(--light);
line-height:1.8;
}

/* WHO WE */

.who-we{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
background:#fff;
}

.intro-text{font-size:19px;line-height:1.9;margin-bottom:40px}

.feature-list{display:grid;grid-template-columns:1fr 1fr;gap:22px}

.feature-box{
display:flex;
gap:18px;
padding:24px;
border-radius:24px;
background:#fff;
border:1px solid var(--border);
box-shadow:0 20px 60px rgba(18,49,38,.05);
transition:.35s;
}

.feature-box:hover{transform:translateY(-6px)}

.icon{
width:55px;
height:55px;
border-radius:50%;
background:linear-gradient(90deg,var(--green),var(--accent));
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:white;
font-weight:bold;
flex-shrink:0;
}

.feature-box h4{margin-bottom:8px;font-size:20px;color:var(--navy)}
.feature-box p{font-size:15px;line-height:1.7;color:var(--light)}

.who-right{position:relative}

.who-right img{
width:100%;
height:620px;
object-fit:cover;
border-radius:35px;
box-shadow:0 40px 90px rgba(18,49,38,.12);
}

.floating-card{
position:absolute;
padding:25px;
background:white;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,.1);
text-align:center;
border:1px solid var(--border);
}

.card1{top:40px;left:-30px}
.card2{bottom:50px;right:-20px}
.floating-card h3{font-size:38px;color:var(--green)}
.floating-card p{color:var(--light)}

/* PROMISE */

.patient-promise{text-align:center;background:white}
.patient-promise h2{max-width:900px;margin:20px auto}
.promise-sub{max-width:850px;margin:0 auto 70px;font-size:19px}

.patient-grid,
.journey-line,
.awareness-grid,
.impact-grid,
.trust-wall-grid,
.category-grid,
.initiative-grid{
display:grid;
gap:28px;
}

.patient-grid,
.journey-line,
.awareness-grid,
.impact-grid,
.initiative-grid{grid-template-columns:repeat(4,1fr)}

.patient-card,
.journey-step,
.awareness-card,
.impact-card,
.trust-item,
.category-card,
.initiative-card,
.faq-box,
.wellness-card{
background:white;
border:1px solid var(--border);
border-radius:30px;
box-shadow:0 20px 60px rgba(18,49,38,.05);
transition:.35s;
}

.patient-card:hover,
.journey-step:hover,
.awareness-card:hover,
.impact-card:hover,
.trust-item:hover,
.category-card:hover,
.initiative-card:hover,
.wellness-card:hover{transform:translateY(-8px)}

.patient-card,
.journey-step,
.awareness-card,
.impact-card,
.trust-item,
.category-card,
.initiative-card{
padding:38px;
}

.patient-icon,
.awareness-icon,
.trust-icon,
.cat-icon,
.initiative-icon,
.tip-icon{
font-size:52px;
margin-bottom:22px;
}

.patient-card h3,
.journey-step h3,
.awareness-card h3,
.impact-card h3,
.trust-item h3,
.category-card h3,
.initiative-card h3,
.faq-box h3,
.wellness-card h3{
color:var(--navy);
margin-bottom:14px;
}

/* JOURNEY */

.care-journey,
.health-awareness,
.patient-faq,
.initiatives{
background:var(--bg);
text-align:center;
}

.care-journey h2,
.health-awareness h2,
.patient-faq h2,
.initiatives h2,
.impact-section h2,
.trust-section h2,
.health-support h2,
.trust-wall h2,
.care-categories h2,
.principles h2,
.news-hub h2,
.vision-roadmap h2{
max-width:950px;
margin:20px auto 70px;
}

.journey-step span{font-size:13px;font-weight:900;letter-spacing:3px;color:var(--green)}

/* HEALTH SUPPORT */

.health-support{text-align:center;background:white}

.support-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:26px;
}

.support-box{
position:relative;
height:420px;
overflow:hidden;
border-radius:30px;
box-shadow:0 25px 70px rgba(18,49,38,.08);
}

.support-box img{width:100%;height:100%;object-fit:cover;transition:1s}
.support-box:hover img{transform:scale(1.1)}

.overlay{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:35px;
background:linear-gradient(transparent,rgba(18,49,38,.92));
color:white;
text-align:left;
}

.overlay h3{font-size:28px;margin-bottom:10px;color:white}
.overlay p{color:#DDE8E2}

/* TRUST */

.trust-section{
background:linear-gradient(135deg,#F8FBF7,#EDF6EC);
text-align:center;
}

.trust-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:25px;
}

.featured-review,
.mini-card{
background:white;
border:1px solid var(--border);
border-radius:35px;
box-shadow:0 30px 80px rgba(18,49,38,.06);
}

.featured-review{padding:45px;text-align:left}
.quote-mark{font-size:70px;color:var(--accent);margin-bottom:20px}

.review-user{display:flex;align-items:center;gap:15px}
.review-user img{width:65px;height:65px;border-radius:50%;object-fit:cover}
.review-user h4{color:var(--navy)}
.review-user span{font-size:14px;color:var(--light)}

.mini-card{
padding:35px;
display:flex;
flex-direction:column;
justify-content:center;
}

.mini-card h3{font-size:42px;color:var(--green);margin-bottom:12px}

/* HELP */

.patient-help,
.support-disclaimer{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
background:var(--navy);
color:white;
}

.patient-help h2,
.support-disclaimer h2{color:white}

.patient-help p,
.support-disclaimer p{color:#DDE8E2;font-size:18px}

.help-actions{display:grid;gap:18px}

.help-card,
.disclaimer-box{
display:block;
padding:30px;
border-radius:24px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
transition:.35s;
}

.help-card:hover{transform:translateX(10px);background:rgba(255,255,255,.14)}
.help-card h3{font-size:24px;margin-bottom:10px;color:white}

/* IMPACT */

.impact-section,
.principles,
.news-hub,
.community-section{
background:linear-gradient(135deg,#F8FBF7,#EDF6EC);
text-align:center;
}

.impact-sub,
.awareness-sub,
.news-sub,
.initiative-sub{
max-width:850px;
margin:0 auto 70px;
font-size:19px;
}

.impact-card h3{font-size:48px;color:var(--green)}

.map-container{position:relative;max-width:850px;margin:70px auto 0}
.map-container img{width:100%;opacity:.95}
.map-dot{position:absolute;width:18px;height:18px;background:var(--green);border-radius:50%;animation:pulseDot 1.8s infinite}
.dot1{top:48%;left:60%}
.dot2{top:42%;left:66%}
.dot3{top:56%;left:58%}

@keyframes pulseDot{
0%{transform:scale(1);opacity:1}
100%{transform:scale(2);opacity:0}
}

/* FOUNDER */

.founder-message{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
background:white;
}

.founder-image{position:relative}
.founder-image img{width:100%;height:650px;object-fit:cover;border-radius:35px;box-shadow:0 40px 90px rgba(18,49,38,.12)}

.experience-badge{
position:absolute;
right:-20px;
bottom:50px;
padding:30px;
background:white;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,.10);
text-align:center;
border:1px solid var(--border);
}

.experience-badge h3{font-size:48px;color:var(--green)}
.experience-badge p{color:var(--light)}

.signature{margin-top:40px;padding-top:30px;border-top:1px solid var(--border)}
.signature h4{font-size:24px;color:var(--navy);margin-bottom:10px}
.signature span{color:var(--green);font-weight:700}

/* TRUST WALL & CATEGORIES */

.trust-wall,
.care-categories,
.wellness-section{
background:white;
text-align:center;
}

.trust-wall-grid{grid-template-columns:repeat(3,1fr)}
.category-grid{grid-template-columns:repeat(3,1fr)}

.principle-line{
margin-top:60px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.principle-line div{
padding:20px 35px;
border-radius:999px;
background:white;
font-weight:800;
border:1px solid var(--border);
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* SAFETY */

.safety-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
background:white;
}

.safety-box{
padding:45px;
background:var(--bg);
border-radius:30px;
border:1px solid var(--border);
}

.safety-box li{margin-bottom:14px;color:var(--text);font-weight:600}

/* FAQ */

.faq-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
text-align:left;
}

.faq-box{padding:35px}

/* WELLNESS */

.wellness-section{overflow:hidden}

.wellness-slider{
display:flex;
gap:28px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:15px;
}

.wellness-slider::-webkit-scrollbar{height:8px}
.wellness-slider::-webkit-scrollbar-thumb{background:var(--green);border-radius:20px}

.wellness-card{
min-width:320px;
padding:40px;
background:var(--bg);
text-align:left;
}

/* NEWS */

.news-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.news-card{
background:white;
overflow:hidden;
border-radius:30px;
box-shadow:0 25px 70px rgba(18,49,38,.06);
text-align:left;
transition:.35s;
}

.news-card:hover{transform:translateY(-10px)}
.news-card img{width:100%;height:260px;object-fit:cover}
.news-content{padding:32px}
.news-content span{display:inline-block;padding:8px 16px;background:var(--bg);border-radius:999px;font-size:13px;font-weight:800;color:var(--green);margin-bottom:20px}
.news-content h3{font-size:28px;line-height:1.3;margin-bottom:16px;color:var(--navy)}
.news-content a{font-weight:800;color:var(--green)}

/* COMMUNITY */

.community-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
text-align:left;
}

.community-points{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
margin-bottom:40px;
}

.community-points div{
padding:18px;
background:white;
border-radius:18px;
border:1px solid var(--border);
font-weight:700;
box-shadow:0 12px 30px rgba(18,49,38,.05);
}

.community-right{display:flex;justify-content:center}

.community-card{
position:relative;
width:420px;
height:420px;
border-radius:50%;
background:linear-gradient(135deg,var(--green),var(--accent));
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:60px;
text-align:center;
color:white;
overflow:hidden;
}

.community-card h3{font-size:34px;margin-bottom:20px;color:white}
.community-card p{color:white}

.pulse-circle{
position:absolute;
width:100%;
height:100%;
border:2px solid rgba(255,255,255,.25);
border-radius:50%;
animation:pulseCommunity 2s infinite;
}

@keyframes pulseCommunity{
0%{transform:scale(1);opacity:1}
100%{transform:scale(1.3);opacity:0}
}

/* ROADMAP */

.vision-roadmap{
background:white;
text-align:center;
}

.roadmap{
position:relative;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.roadmap:before{
content:"";
position:absolute;
top:28px;
left:10%;
width:80%;
height:4px;
background:linear-gradient(90deg,var(--green),var(--accent));
z-index:0;
}

.road-item{position:relative;z-index:2;padding-top:50px}
.road-dot{width:60px;height:60px;margin:auto;border-radius:50%;background:linear-gradient(135deg,var(--green),var(--accent));box-shadow:0 0 0 10px rgba(0,107,67,.12);margin-bottom:30px}
.road-item h3{font-size:28px;margin-bottom:15px;color:var(--navy)}
.road-item p{color:var(--light)}

/* FINAL CTA */

.final-cta{
text-align:center;
background:var(--navy);
color:white;
}

.final-cta h2{font-size:64px;color:white}
.final-cta p{font-size:20px;margin-bottom:35px;color:#DDE8E2}

/* FOOTER */

.footer{
padding:80px 7%;
background:var(--navy);
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
color:white;
}

.footer p,
.footer a{color:#DDE8E2;display:block;margin-bottom:12px;line-height:1.8}
.footer a:hover{color:var(--accent)}

.copyright{
background:var(--navy);
padding:25px;
text-align:center;
color:#A7B8B0;
border-top:1px solid rgba(255,255,255,.06);
}

/* MOBILE */

@media(max-width:900px){

.nav-links{display:none}
.menu-btn{display:block}

.navbar{height:78px;padding:0 6%}
.mobile-menu{top:78px}

.hero-slider{padding-top:78px;min-height:auto}

.slide{
grid-template-columns:1fr;
padding:50px 6% 120px;
gap:35px;
height:auto;
min-height:calc(100vh - 78px);
}

.slide-content h1{font-size:40px;letter-spacing:-2px}
.slide-content p{font-size:17px}
.slide-panel{justify-self:start;max-width:100%}
.panel-list{grid-template-columns:1fr}

.who-we,
.patient-help,
.support-disclaimer,
.founder-message,
.safety-section,
.community-section,
.footer{
grid-template-columns:1fr;
}

.feature-list,
.patient-grid,
.journey-line,
.support-grid,
.trust-grid,
.awareness-grid,
.impact-grid,
.trust-wall-grid,
.category-grid,
.faq-list,
.news-grid,
.initiative-grid,
.numbers,
.pillar-grid,
.portfolio-row,
.flow,
.roadmap{
grid-template-columns:1fr;
}

.who-we,
.patient-promise,
.care-journey,
.health-support,
.trust-section,
.patient-help,
.health-awareness,
.impact-section,
.founder-message,
.trust-wall,
.care-categories,
.principles,
.safety-section,
.patient-faq,
.wellness-section,
.news-hub,
.support-disclaimer,
.community-section,
.vision-roadmap,
.initiatives,
.final-cta{
padding:90px 6%;
}

.who-we h2,
.patient-promise h2,
.care-journey h2,
.health-support h2,
.trust-section h2,
.patient-help h2,
.health-awareness h2,
.impact-section h2,
.founder-content h2,
.trust-wall h2,
.care-categories h2,
.principles h2,
.safety-section h2,
.patient-faq h2,
.wellness-section h2,
.news-hub h2,
.support-disclaimer h2,
.community-left h2,
.vision-roadmap h2,
.initiatives h2,
.final-cta h2{
font-size:36px;
}

.who-right img,
.founder-image img{height:350px}

.card1,.card2,.experience-badge{
position:static;
margin-top:20px;
}

.community-points{grid-template-columns:1fr}
.community-card{width:300px;height:300px}

.roadmap:before{display:none}

.welcome-content h1{font-size:48px;letter-spacing:4px}
.welcome-content h2{font-size:20px}
.intro-logo{width:90px}
}
.hero-slider{
position:relative;
min-height:100vh;
padding:150px 7% 100px;
overflow:hidden;
background:
linear-gradient(
135deg,
#F7F9F6,
#EDF6EC
);
}

.hero-main{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;
position:relative;
z-index:2;
}

.hero-left h1{
font-size:75px;
line-height:1;
margin:25px 0;
font-weight:900;
color:var(--navy);
max-width:750px;
}

.hero-left p{
font-size:20px;
line-height:1.9;
color:var(--light);
margin-bottom:35px;
}

.hero-right{
position:relative;
}

.hero-right img{
width:100%;
max-width:650px;
margin:auto;
animation:floatDoctor 5s infinite ease-in-out;
}

@keyframes floatDoctor{

0%{transform:translateY(0)}
50%{transform:translateY(-18px)}
100%{transform:translateY(0)}

}

.hero-features{
display:flex;
gap:16px;
flex-wrap:wrap;
margin-bottom:40px;
}

.hero-features div{
padding:14px 20px;
background:white;
border-radius:999px;
font-weight:700;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.floating-medical{
position:absolute;
padding:25px;
background:white;
border-radius:22px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
text-align:center;
}

.cardA{
left:-30px;
top:80px;
}

.cardB{
right:0;
top:30px;
}

.cardC{
bottom:70px;
left:50px;
}

.medical-bg .circle{
position:absolute;
border-radius:50%;
background:rgba(166,191,45,.1);
filter:blur(10px);
}

.c1{
width:300px;
height:300px;
top:-100px;
right:-100px;
}

.c2{
width:200px;
height:200px;
bottom:100px;
left:-50px;
}

.c3{
width:120px;
height:120px;
top:250px;
right:35%;
}

.molecule{
position:absolute;
width:18px;
height:18px;
border-radius:50%;
background:var(--green);
opacity:.2;
animation:moleculeMove 10s infinite linear;
}

.m1{left:10%;top:20%}
.m2{right:20%;top:50%}
.m3{left:30%;bottom:20%}

@keyframes moleculeMove{
0%{transform:translateY(0)}
50%{transform:translateY(-60px)}
100%{transform:translateY(0)}
}
/* ===== PREMIUM HERO FIX ===== */

/* PREMIUM HERO */

/* ==========================================
LARANELL PREMIUM HERO SECTION
========================================== */

.hero-slider-premium{
position:relative;
height:100vh;
min-height:850px;
overflow:hidden;
padding-top:88px;

background:
radial-gradient(circle at top right,
rgba(166,191,45,.18),
transparent 25%),

radial-gradient(circle at bottom left,
rgba(0,107,67,.10),
transparent 35%),

linear-gradient(
135deg,
#F7F9F6,
#EDF6EC,
#F7F9F6
);
}

/* background glow */

.hero-slider-premium:before{
content:"";
position:absolute;

width:500px;
height:500px;

right:-150px;
top:-100px;

background:
rgba(166,191,45,.08);

border-radius:50%;

filter:blur(60px);
}

.hero-slider-premium:after{
content:"";
position:absolute;

width:350px;
height:350px;

left:-100px;
bottom:-100px;

background:
rgba(0,107,67,.06);

border-radius:50%;

filter:blur(60px);
}

/* slide container */

.slides{

display:flex;

height:calc(100vh - 88px);

transition:
transform 1s ease;

}

/* single slide */

.hero-slide{

min-width:100%;

display:grid;

grid-template-columns:
1fr 1fr;

align-items:center;

gap:70px;

padding:0 7%;

}

/* left */

.hero-content{

max-width:700px;

z-index:5;

animation:
heroFade .8s ease;

}

@keyframes heroFade{

from{

opacity:0;

transform:
translateX(-50px)

}

to{

opacity:1;

transform:none

}

}

.hero-content .label{

font-size:13px;

font-weight:900;

letter-spacing:5px;

color:#006B43;

margin-bottom:20px;

}

.hero-content h1{

font-size:72px;

line-height:1;

font-weight:900;

letter-spacing:-3px;

color:#123126;

margin-bottom:30px;

}

.hero-content p{

font-size:20px;

line-height:1.9;

color:#6A7A73;

margin-bottom:40px;

}

/* buttons */

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn{

padding:18px 34px;

border-radius:999px;

font-weight:800;

display:inline-block;

transition:.4s;

}

.btn:hover{

transform:
translateY(-5px);

}

.btn-teal{

background:
linear-gradient(
90deg,
#006B43,
#A6BF2D
);

color:white;

box-shadow:
0 20px 50px
rgba(0,107,67,.18);

}

.btn-glass{

background:white;

border:1px solid #E2EAE3;

color:#006B43;

}

/* right image */

.hero-image{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.hero-image img{

width:100%;

max-width:650px;

object-fit:contain;

animation:
floatDoctor 5s ease-in-out infinite;

filter:
drop-shadow(
0 40px 60px
rgba(0,0,0,.08)
);

}

@keyframes floatDoctor{

0%{
transform:
translateY(0)
}

50%{
transform:
translateY(-18px)
}

100%{
transform:
translateY(0)
}

}

/* floating cards */

.floating{

position:absolute;

padding:25px;

min-width:150px;

background:
rgba(255,255,255,.92);

backdrop-filter:
blur(20px);

border-radius:25px;

box-shadow:
0 20px 60px
rgba(0,0,0,.08);

text-align:center;

}

.floating h3{

font-size:34px;

color:#006B43;

margin-bottom:5px;

}

.floating p{

font-size:14px;

color:#6A7A73;

}

.stat1{

left:-20px;

top:90px;

}

.stat2{

right:-20px;

bottom:120px;

}

/* dots */

.slider-dots{

position:absolute;

bottom:35px;

left:50%;

transform:
translateX(-50%);

display:flex;

gap:12px;

z-index:100;

}

.nav-dot{

width:14px;
height:14px;

border-radius:50%;

background:#d0d0d0;

cursor:pointer;

transition:.4s;

}

.nav-dot.active{

width:45px;

border-radius:30px;

background:
linear-gradient(
90deg,
#006B43,
#A6BF2D
);

}

/* mobile */

/* MOBILE HERO FIX */

@media(max-width:900px){

.hero-slider-premium{
height:auto;
min-height:auto;
padding-top:80px;
overflow:hidden;
}

.slides{
height:auto;
}

.hero-slide{

grid-template-columns:1fr;

padding:50px 6% 100px;

gap:30px;

text-align:center;

min-height:auto;
}

.hero-content{
order:1;
max-width:100%;
}

.hero-content h1{

font-size:38px;

line-height:1.1;

letter-spacing:-1px;

margin-bottom:20px;
}

.hero-content p{

font-size:16px;

line-height:1.8;

margin-bottom:25px;
}

.hero-buttons{
justify-content:center;
}

.hero-image{

order:2;

display:flex;

flex-direction:column;

align-items:center;
}

.hero-image img{

width:100%;

max-width:280px;

height:auto;

margin:auto;
}

/* floating cards become normal cards */

.floating{

position:static;

margin-top:15px;

width:100%;

max-width:220px;

padding:18px;
}

.floating h3{

font-size:28px;
}

.slider-dots{

bottom:20px;

left:50%;
}

}