html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial,sans-serif;
background:#f5f7fb;
color:#111827;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;

background:rgba(7,21,47,.85);

backdrop-filter:blur(10px);

position:sticky;
top:0;

z-index:1000;

border-bottom:1px solid rgba(245,210,122,.45);
}

position:sticky;
top:0;

z-index:1000;
}

.logo{
display:flex;
flex-direction:column;
align-items:flex-start;
}

.logo-icon{
width:48px;
height:48px;

border-radius:12px;

background:#2563eb;

display:flex;
justify-content:center;
align-items:center;

font-size:24px;
font-weight:bold;
}

.logo-text{
font-size:42px;
font-weight:600;
letter-spacing:6px;
color:#f5d27a;
font-family:Georgia,serif;
}

.sub-logo{
font-size:16px;
letter-spacing:5px;
color:#f5d27a;
margin-top:6px;
}


nav a{
color:white;
text-decoration:none;
margin-left:30px;
font-size:18px;
}

.hero{
height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;

background:linear-gradient(
135deg,
#07152f,
#0b2c67
);

color:white;
padding:30px;
}

.hero-content{
max-width:850px;
}

.hero h1{
font-size:65px;
margin-bottom:25px;
line-height:1.2;
}

.hero p{
font-size:22px;
line-height:1.8;
opacity:.9;
margin-bottom:40px;
}

.btn{
background:#2563eb;
padding:18px 40px;
border-radius:12px;
text-decoration:none;
color:white;
font-weight:bold;
display:inline-block;
}

.about{
background:white;
padding:90px 60px;
text-align:center;
}

.about h2{
font-size:42px;
margin-bottom:25px;
}

.about p{
max-width:900px;
margin:auto;
font-size:20px;
line-height:1.8;
color:#4b5563;
}

.services{
padding:90px 40px;
text-align:center;
}

.services h2{
font-size:42px;
margin-bottom:50px;
}

.cards{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:white;
width:300px;
padding:35px;
border-radius:22px;
box-shadow:0 15px 40px rgba(15,23,42,.08);
border:1px solid rgba(15,23,42,.06);
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(15,23,42,.14);
}

.card h3{
margin-bottom:20px;
}.contact{
background:#07152f;
color:white;
text-align:center;
padding:90px 40px;
}

.contact h2{
font-size:42px;
margin-bottom:20px;
}

.contact p{
font-size:20px;
margin-bottom:35px;
opacity:.9;
}footer{
background:#020817;
color:#94a3b8;
text-align:center;
padding:25px;
font-size:14px;
}
.why{
background:#eef2ff;
padding:90px 40px;
text-align:center;
}

.why h2{
font-size:42px;
margin-bottom:50px;
}
@media(max-width:768px){

header{
padding:20px;
flex-direction:column;
}

nav{
margin-top:20px;
}

nav a{
display:inline-block;
margin:10px;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}

.about,
.services,
.contact,
.why{
padding:60px 20px;
}

}.hero-content,
.about,
.services,
.why,
.contact{
animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(25px);
}

to{
opacity:1;
transform:translateY(0);
}
}

.btn,
.card,
nav a{
transition:all .3s ease;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(37,99,235,.35);
}

nav a:hover{
color:#f5d27a;
}
