
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif}
html{scroll-behavior:smooth}
body{
background:#eef8ff;
color:#222;
line-height:1.7;
overflow-x:hidden;
}
header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(0,28,61,.92);
backdrop-filter:blur(8px);
z-index:999;
}
.container{width:90%;max-width:1280px;margin:auto}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}
.logo img{
height:78px;
background:#fff;
padding:6px;
border-radius:14px;
}
nav a{
color:#fff;
text-decoration:none;
margin-left:18px;
font-weight:bold;
transition:.3s;
}
nav a:hover{color:#5fd6ff}
.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('assets/hero.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
padding:20px;
}
.hero h1{
font-size:68px;
margin-bottom:20px;
}
.hero p{
max-width:950px;
margin:auto;
font-size:22px;
}
.buttons{
margin-top:35px;
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}
.btn{
padding:16px 32px;
border-radius:12px;
font-weight:bold;
text-decoration:none;
transition:.3s;
}
.primary{background:#00a6ff;color:#fff}
.whatsapp{background:#25D366;color:#fff}
.instagram{background:#E1306C;color:#fff}
.btn:hover{transform:translateY(-5px)}
.section{padding:100px 0}
.title{
text-align:center;
font-size:44px;
margin-bottom:45px;
color:#003b88;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}
.card{
background:#fff;
border-radius:22px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.12);
transition:.3s;
}
.card:hover{transform:translateY(-10px)}
.card img{
width:100%;
height:240px;
object-fit:cover;
}
.card-content{padding:28px}
.card-content h3{
color:#003b88;
margin-bottom:15px;
}
.blue{
background:#002b5b;
color:#fff;
}
.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}
.grid img{
width:100%;
border-radius:24px;
}
.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
margin-top:40px;
}
.stat{
background:#fff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,.1);
}
.stat h2{
font-size:48px;
color:#00a6ff;
}
.table{
width:100%;
border-collapse:collapse;
background:#fff;
}
.table th,.table td{
padding:18px;
border:1px solid #ccc;
}
.table th{
background:#003b88;
color:#fff;
}
.contact{
background:#fff;
padding:45px;
border-radius:22px;
box-shadow:0 12px 30px rgba(0,0,0,.1);
}
.contact input,.contact textarea{
width:100%;
padding:16px;
margin-bottom:16px;
border:1px solid #ccc;
border-radius:10px;
}
.contact button{
background:#00a6ff;
border:none;
padding:16px 28px;
color:#fff;
font-weight:bold;
border-radius:12px;
}
footer{
background:#001c3d;
color:#fff;
padding:70px 0;
}
.footer-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:40px;
}
.footer-grid a{
display:block;
color:#8ddcff;
margin-bottom:10px;
text-decoration:none;
}
.whatsapp-fixed{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:#fff;
padding:16px 20px;
border-radius:50px;
font-weight:bold;
text-decoration:none;
z-index:999;
box-shadow:0 8px 20px rgba(0,0,0,.2);
}
@media(max-width:768px){
.hero h1{font-size:40px}
.grid,.footer-grid{grid-template-columns:1fr}
.navbar{flex-direction:column}
nav{margin-top:15px;text-align:center}
}
