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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f5f7fa;
color:#1c1c1c;
line-height:1.6;
}

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

header{
background:#ffffff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
}

.logo{
height:140px;
width:auto;
display:block;
}

nav ul{
display:flex;
list-style:none;
gap:28px;
}

nav a{
text-decoration:none;
color:#111827;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#0d8fe5;
}

.hero{
min-height:88vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(1,18,45,0.82),rgba(1,18,45,0.82)),
url('https://images.unsplash.com/photo-1510511459019-5dda7724fd87?q=80&w=1920&auto=format&fit=crop')
center/cover no-repeat;
color:white;
}

.hero-content{
max-width:720px;
}

.hero h1{
font-size:4rem;
line-height:1.1;
margin-bottom:22px;
font-weight:700;
}

.hero p{
font-size:1.15rem;
margin-bottom:32px;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
background:#0d8fe5;
color:white;
padding:15px 30px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

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

.secondary{
background:transparent;
border:2px solid white;
}

section{
padding:90px 0;
}

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

.section-title h2{
font-size:2.6rem;
margin-bottom:10px;
color:#0f172a;
}

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

.card{
background:white;
padding:32px;
border-radius:16px;
box-shadow:0 6px 22px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.card h3{
color:#0d8fe5;
margin-bottom:16px;
font-size:1.3rem;
}

.story{
background:white;
}

.story-content{
max-width:920px;
margin:auto;
text-align:center;
font-size:1.05rem;
}

.story-content p{
margin-bottom:22px;
}

.contact-box{
background:white;
padding:45px;
border-radius:18px;
max-width:750px;
margin:auto;
box-shadow:0 6px 22px rgba(0,0,0,0.08);
text-align:center;
}

.contact-box p{
margin-bottom:16px;
font-size:1.1rem;
}

footer{
background:#08111c;
color:white;
padding:35px 0;
}

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

@media(max-width:900px){

.navbar{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.logo{
height:110px;
}

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

.hero{
text-align:center;
}

.hero-buttons{
justify-content:center;
}

}

@media(max-width:600px){

.logo{
height:95px;
}

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

.section-title h2{
font-size:2rem;
}

.card{
padding:25px;
}

}
