/* FINAL PREMIUM STYLE.CSS */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#f4f7fb;
color:#0f172a;
overflow-x:hidden;
}



/* CONTAINER */

.container{
width:92%;
max-width:1450px;
margin:auto;
}



/* TOPBAR */

.topbar{
background:#001b44;
color:white;
padding:14px 0;
font-size:14px;
font-weight:500;
}

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



/* HEADER */

header{
background:rgba(255,255,255,0.92);
padding:24px 0;
border-bottom:1px solid #edf2f7;
position:sticky;
top:0;
z-index:999;
backdrop-filter:blur(10px);
}

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

.logo{
font-size:42px;
font-weight:800;
color:#041b52;
letter-spacing:-1px;
}

.logo span{
color:#1454ff;
}

nav a{
text-decoration:none;
margin:0 14px;
font-weight:600;
color:#0f172a;
transition:0.3s;
}

nav a:hover{
color:#1454ff;
}

nav a.active{
color:#1454ff;
}

.consult-btn{
background:#1454ff;
color:white;
padding:16px 24px;
border-radius:16px;
text-decoration:none;
font-weight:700;
transition:0.3s;
box-shadow:0 10px 25px rgba(20,84,255,0.18);
}

.consult-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(20,84,255,0.28);
}



/* HERO */

.hero{
padding:100px 0;
background:
linear-gradient(
135deg,
#eef5ff 0%,
#ffffff 45%,
#f2f8ff 100%
);
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
top:-220px;
right:-220px;
width:520px;
height:520px;
background:#dbeafe;
border-radius:50%;
filter:blur(100px);
opacity:0.55;
}

.hero::after{
content:'';
position:absolute;
bottom:-250px;
left:-250px;
width:520px;
height:520px;
background:#bfdbfe;
border-radius:50%;
filter:blur(100px);
opacity:0.35;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr 520px 340px;
gap:40px;
align-items:center;
position:relative;
z-index:2;
}



/* TRUST BADGE */

.trust-badge{
display:inline-block;
padding:12px 18px;
background:white;
border:1px solid #dbeafe;
border-radius:999px;
font-weight:700;
color:#1454ff;
margin-bottom:28px;
box-shadow:0 8px 20px rgba(0,0,0,0.04);
}



/* HERO TEXT */

.hero-left h1{
font-size:68px;
line-height:1.02;
margin-bottom:28px;
color:#041b52;
font-weight:800;
letter-spacing:-2px;
}

.hero-left p{
font-size:23px;
line-height:1.8;
color:#475569;
max-width:700px;
}



/* HERO ICONS */

.hero-icons{
display:flex;
gap:18px;
margin-top:35px;
flex-wrap:wrap;
}

.hero-icon-box{
display:flex;
gap:14px;
align-items:flex-start;
background:white;
padding:18px;
border-radius:18px;
box-shadow:0 12px 28px rgba(0,0,0,0.05);
transition:0.3s;
}

.hero-icon-box:hover{
transform:translateY(-4px);
}

.icon-circle{
width:58px;
height:58px;
background:#eef4ff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
}

.hero-icon-box strong{
display:block;
font-size:16px;
font-weight:700;
}

.hero-icon-box span{
display:block;
margin-top:6px;
font-size:15px;
color:#64748b;
}



/* HERO BUTTONS */

.hero-buttons{
display:flex;
gap:18px;
margin-top:42px;
}

.primary-btn{
background:#1454ff;
color:white;
padding:18px 30px;
border-radius:16px;
text-decoration:none;
font-weight:700;
transition:0.3s;
box-shadow:0 12px 30px rgba(20,84,255,0.25);
display:inline-block;
}

.primary-btn:hover{
transform:translateY(-3px);
}

.secondary-btn{
border:2px solid #1454ff;
color:#1454ff;
padding:18px 30px;
border-radius:16px;
text-decoration:none;
font-weight:700;
transition:0.3s;
background:white;
}

.secondary-btn:hover{
background:#1454ff;
color:white;
}



/* PREMIUM HERO IMAGE */

.hero-image{
position:relative;
}

.hero-image::after{
content:'';
position:absolute;
inset:0;
background:
linear-gradient(
to top,
rgba(0,0,0,0.18),
rgba(0,0,0,0.02)
);
border-radius:32px;
}

.hero-image img{
width:100%;
height:860px;
object-fit:cover;
object-position:center top;
border-radius:32px;
display:block;
box-shadow:
0 25px 70px rgba(0,0,0,0.18);
filter:
saturate(1.02)
contrast(1.03);
}



/* CONSULT CARD */

.consult-card{
background:rgba(255,255,255,0.96);
padding:40px;
border-radius:30px;
backdrop-filter:blur(14px);
box-shadow:0 15px 50px rgba(0,0,0,0.08);
border:1px solid rgba(255,255,255,0.7);
}

.consult-card h3{
font-size:42px;
margin-bottom:20px;
color:#041b52;
font-weight:800;
letter-spacing:-1px;
}

.consult-card p{
font-size:20px;
line-height:1.8;
margin-bottom:28px;
color:#475569;
}

.consult-card ul{
list-style:none;
margin-bottom:35px;
}

.consult-card li{
margin-bottom:18px;
font-size:19px;
font-weight:500;
}

.consult-big-btn{
display:block;
background:#1454ff;
color:white;
padding:18px;
border-radius:16px;
text-align:center;
text-decoration:none;
font-size:20px;
font-weight:700;
transition:0.3s;
box-shadow:0 10px 25px rgba(20,84,255,0.2);
}

.consult-big-btn:hover{
transform:translateY(-3px);
}



/* MEDICATIONS SECTION */

.medications-section{
padding:90px 0;
}

.meds-grid{
display:grid;
grid-template-columns:380px 1fr;
gap:30px;
}



/* BMI CARD */

.bmi-card{
background:#031d52;
padding:38px;
border-radius:30px;
color:white;
box-shadow:0 18px 45px rgba(3,29,82,0.25);
}

.bmi-card h2{
font-size:42px;
margin-bottom:14px;
font-weight:800;
}

.bmi-card p{
font-size:18px;
margin-bottom:26px;
opacity:0.9;
}

.bmi-inputs{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
margin-bottom:18px;
}

.bmi-inputs input{
padding:18px;
border:none;
border-radius:14px;
font-size:18px;
outline:none;
}

.bmi-card button{
width:100%;
background:#19c76b;
color:white;
border:none;
padding:18px;
font-size:20px;
font-weight:700;
border-radius:14px;
cursor:pointer;
transition:0.3s;
}

.bmi-card button:hover{
transform:translateY(-3px);
}

#result{
margin-top:24px;
font-size:22px;
font-weight:700;
text-align:center;
}



/* MEDICATIONS */

.meds-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:28px;
}

.meds-header h2{
font-size:44px;
font-weight:800;
letter-spacing:-1px;
}

.meds-header a{
text-decoration:none;
font-weight:700;
color:#1454ff;
}

.meds-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}



/* MED CARD */

.med-card{
background:white;
padding:34px;
border-radius:26px;
border:1px solid #e5e7eb;
transition:0.35s;
box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.med-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.med-card h3{
font-size:38px;
margin-bottom:12px;
font-weight:800;
}

.med-card p{
font-size:18px;
line-height:1.7;
margin-bottom:18px;
color:#475569;
}

.med-card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:18px;
margin:18px 0;
display:block;
}

.med-card a{
display:inline-block;
margin-top:10px;
text-decoration:none;
font-weight:700;
color:#1454ff;
}



/* COLORS */

.purple{
color:#7e22ce;
}

.blue{
color:#1454ff;
}

.red{
color:#ef4444;
}



/* BOTTOM ROW */

.bottom-row{
padding-bottom:90px;
}

.bottom-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:18px;
}

.bottom-box{
background:white;
padding:28px;
border-radius:22px;
font-size:20px;
font-weight:700;
border:1px solid #e5e7eb;
box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.sale-box{
background:
linear-gradient(
to right,
#3b82f6,
#6d28d9
);
color:white;
padding:28px;
border-radius:22px;
text-align:center;
font-size:22px;
font-weight:700;
box-shadow:0 18px 45px rgba(59,130,246,0.3);
}

.sale-box strong{
display:block;
font-size:56px;
margin-top:14px;
}



/* CTA SECTION */

.cta-section{
padding:90px 0;
}

.cta-box{
background:
linear-gradient(
to right,
#1454ff,
#2563eb
);
padding:70px;
border-radius:32px;
text-align:center;
color:white;
box-shadow:0 20px 60px rgba(20,84,255,0.25);
}

.cta-box h2{
font-size:54px;
margin-bottom:20px;
font-weight:800;
}

.cta-box p{
font-size:22px;
margin-bottom:30px;
opacity:0.95;
}



/* FOOTER */

footer{
background:#031d52;
color:white;
padding:34px 0;
}

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

.footer-links a{
color:white;
margin-left:18px;
text-decoration:none;
opacity:0.9;
}



/* RESPONSIVE */

@media(max-width:1200px){

.hero-grid,
.meds-grid,
.meds-cards,
.bottom-grid{
grid-template-columns:1fr;
}

.hero-left h1{
font-size:54px;
}

.hero-image img{
height:auto;
}

nav{
display:none;
}

.hero-buttons{
flex-direction:column;
}

.topbar-flex{
flex-direction:column;
gap:10px;
text-align:center;
}

.footer{
flex-direction:column;
gap:20px;
text-align:center;
}

.hero{
padding:60px 0;
}

.cta-box{
padding:40px;
}

.cta-box h2{
font-size:40px;
}

}