*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

:root{
--navy:#001f5b;
--gold:#d4af37;
--light:#f8fafc;
}

body{
background:#fff;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.top-bar{
background:var(--gold);
color:#001f5b;
text-align:center;
padding:12px;
font-weight:700;
}

header{
background:var(--navy);
padding:15px 0;
}

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

.logo img{
height:80px;
}

.hero{
background:linear-gradient(rgba(0,31,91,.85),rgba(0,31,91,.85));
color:white;
text-align:center;
padding:100px 20px;
}

.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero p{
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.btn-primary,
.cta-btn{
display:inline-block;
background:var(--gold);
color:var(--navy);
padding:15px 30px;
text-decoration:none;
font-weight:700;
border-radius:50px;
}

.counters{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
padding:50px;
text-align:center;
background:#f3f4f6;
}

.counter{
font-size:2.5rem;
color:var(--navy);
}

.section{
padding:80px 20px;
}

.light{
background:#f8fafc;
}

.section h2{
text-align:center;
margin-bottom:40px;
color:var(--navy);
}

.cards,
.steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card,
.step,
.testimonial{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.testimonial{
margin-bottom:20px;
}

.cta-section{
background:var(--navy);
color:white;
text-align:center;
padding:80px 20px;
}

.cta-section h2{
margin-bottom:20px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}

details{
margin-bottom:15px;
padding:20px;
background:white;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
border-radius:50%;
text-decoration:none;
z-index:999;
}

.call-float{
position:fixed;
right:20px;
bottom:90px;
width:60px;
height:60px;
background:var(--navy);
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
border-radius:50%;
text-decoration:none;
z-index:999;
}

@media(max-width:768px){

.hero h1{
font-size:2rem;
}

.logo img{
height:60px;
}

}
