
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f7fb;
color:#111;
}

.navbar{
position:fixed;
top:0;
width:100%;
padding:20px 8%;
background:rgba(11,31,58,.95);
display:flex;
justify-content:space-between;
align-items:center;
z-index:999;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:#fff;
font-size:28px;
font-weight:bold;
}

.logo img{
width:45px;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-weight:bold;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('assets/hero.jpg') center/cover;
display:flex;
align-items:center;
padding:0 8%;
color:#fff;
}

.hero h1{
font-size:72px;
margin-bottom:20px;
line-height:1.1;
}

.hero span{
color:#d4af37;
}

.hero p{
max-width:700px;
line-height:1.9;
font-size:18px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:16px 38px;
background:#d4af37;
border-radius:40px;
text-decoration:none;
color:#111;
font-weight:bold;
}

section{
padding:100px 8%;
}

.title{
text-align:center;
margin-bottom:60px;
}

.title h2{
font-size:45px;
color:#0b1f3a;
margin-bottom:10px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:230px;
object-fit:cover;
}

.card-content{
padding:30px;
}

.card-content h3{
margin-bottom:15px;
color:#0b1f3a;
}

.dark{
background:#0b1f3a;
color:#fff;
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
text-align:center;
}

.stat{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,.07);
}

.stat h2{
font-size:50px;
color:#d4af37;
margin-bottom:10px;
}

footer{
background:#071426;
padding:30px;
text-align:center;
color:#aaa;
}

@media(max-width:900px){
.hero h1{
font-size:42px;
}
.nav-links{
display:none;
}
}
