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

body{
background:#ffffff;
color:#222;
line-height:1.6;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#004aad,#e30613);
color:white;
padding:100px 20px;
text-align:center;
}

.hero h1{
font-size:42px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}

.hero-btn{
background:white;
color:#004aad;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.hero-btn:hover{
background:#e30613;
color:white;
}

/* SERVICES */

.services{
padding:70px 20px;
text-align:center;
background:#f4f6fb;
}

.services h2{
font-size:30px;
margin-bottom:40px;
color:#004aad;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.service-card{
background:white;
border-radius:12px;
padding:30px;
text-decoration:none;
color:#222;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
border-top:5px solid #e30613;
opacity:0;
transform:translateY(30px);
}

.service-card.visible{
opacity:1;
transform:translateY(0);
transition:all 0.6s ease;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.service-card .icon{
font-size:36px;
margin-bottom:12px;
}

.service-card h3{
color:#004aad;
margin-bottom:6px;
}

/* ABOUT */

.about{
padding:60px 20px;
text-align:center;
max-width:900px;
margin:auto;
}

.about h2{
color:#004aad;
margin-bottom:15px;
}

/* HELP */

.help{
background:#004aad;
color:white;
text-align:center;
padding:60px 20px;
}

.help-btn{
display:inline-block;
margin-top:15px;
background:#e30613;
padding:14px 28px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:600;
}

/* FOOTER */

footer{
background:#e30613;
color:white;
text-align:center;
padding:18px;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
font-size:26px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
