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

body{
font-family:'Inter',sans-serif;
background:#f8f9fb;
color:#222;
line-height:1.8;
}

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

/* NAVIGATION */

.navbar{
background:#071A35;
padding:20px 0;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.15);
}

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

.logo{
color:white;
font-size:28px;
font-weight:700;
letter-spacing:1px;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#D4AF37;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#071A35,#0B3C5D);
color:white;
padding:140px 0;
text-align:center;
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:68px;
line-height:1.1;
margin-bottom:25px;
}

.hero p{
font-size:22px;
max-width:850px;
margin:0 auto 40px auto;
opacity:.95;
}

.btn{
display:inline-block;
padding:16px 34px;
background:#D4AF37;
color:#071A35;
font-weight:700;
text-decoration:none;
border-radius:6px;
transition:.3s;
}

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

/* STATS */

.stats{
background:white;
padding:70px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.stats h2{
font-size:54px;
color:#0B3C5D;
margin-bottom:10px;
}

.stats p{
font-size:18px;
font-weight:500;
}

/* GENERAL SECTIONS */

section{
padding:90px 0;
}

section h2{
font-family:'Playfair Display',serif;
font-size:42px;
margin-bottom:30px;
text-align:center;
color:#071A35;
}

.grey{
background:#eef2f6;
}

/* ABOUT */

#about p{
max-width:1000px;
margin:0 auto 20px auto;
font-size:18px;
}

/* SERVICES */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;
}

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

.card h3{
color:#071A35;
margin-bottom:20px;
}

.card ul{
padding-left:20px;
}

.card li{
margin-bottom:10px;
}

/* EXPERIENCE */

.timeline-item{
background:white;
padding:30px;
margin-bottom:20px;
border-left:6px solid #D4AF37;
border-radius:0 10px 10px 0;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.timeline-item h3{
color:#071A35;
margin-bottom:8px;
}

/* FEATURED */

#featured .card img{
width:100%;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 8px 20px rgba(0,0,0,.1);
}

.btn-small{
display:inline-block;
margin-top:20px;
padding:12px 24px;
background:#D4AF37;
color:#071A35;
font-weight:600;
text-decoration:none;
border-radius:6px;
transition:.3s;
}

.btn-small:hover{
transform:translateY(-2px);
}

/* CONTACT */

.contact{
background:#071A35;
color:white;
text-align:center;
}

.contact h2{
color:white;
}

.contact-box{
background:white;
color:#222;
padding:35px;
border-radius:12px;
max-width:700px;
margin:40px auto 0 auto;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

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

/* FOOTER */

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

/* MOBILE */

@media(max-width:900px){

.hero h1{
font-size:50px;
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

nav{
display:none;
}

.hero{
padding:100px 0;
}

.hero h1{
font-size:40px;
}

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

.stats-grid{
grid-template-columns:1fr;
}

section{
padding:70px 0;
}

section h2{
font-size:34px;
}

.card{
padding:25px;
}

.contact-box{
padding:25px;
}

}
