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

body{
font-family:'Poppins',sans-serif;
background:#f8fafc;
color:#0f172a;
line-height:1.7;
}

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

header{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
z-index:999;
}

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

.logo-box{
display:flex;
align-items:center;
gap:14px;
}

.logo-box img{
width:58px;
}

.logo-box h2{
font-size:18px;
line-height:1;
}

.logo-box p{
font-size:14px;
color:#475569;
}

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

nav a{
text-decoration:none;
color:#0f172a;
font-weight:600;
}

.nav-btn{
background:#1d4ed8;
padding:14px 22px;
border-radius:999px;
text-decoration:none;
color:white;
font-weight:600;
}

.hero{
padding-top:130px;
padding-bottom:100px;
background:white;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero-left h1{
font-size:68px;
line-height:1.05;
margin:24px 0;
font-weight:800;
}

.hero-left h1 span{
color:#1d4ed8;
}

.hero-left p{
font-size:18px;
color:#475569;
margin-bottom:36px;
}

.badge{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:#e0e7ff;
color:#1d4ed8;
font-size:12px;
font-weight:700;
letter-spacing:1px;
}

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

.btn-primary{
background:#1d4ed8;
padding:16px 28px;
border-radius:999px;
text-decoration:none;
color:white;
font-weight:600;
}

.btn-secondary{
border:1px solid #cbd5e1;
padding:16px 28px;
border-radius:999px;
text-decoration:none;
color:#0f172a;
font-weight:600;
}

.hero-right img{
width:100%;
border-radius:28px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.services{
padding:100px 0;
}

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

.section-title span{
color:#2563eb;
font-weight:700;
font-size:12px;
letter-spacing:2px;
}

.section-title h2{
font-size:46px;
margin-top:14px;
}

.services-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.service-card{
background:white;
border-radius:30px;
overflow:hidden;
box-shadow:0 15px 50px rgba(0,0,0,0.08);
}

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

.service-content{
padding:36px;
}

.icon-circle{
width:60px;
height:60px;
border-radius:50%;
margin-bottom:20px;
}

.blue{
background:#1d4ed8;
}

.gold{
background:#d4a017;
}

.service-content h3{
font-size:30px;
margin-bottom:14px;
}

.stats{
padding:70px 0;
background:#1d4ed8;
color:white;
}

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

.stat-box h2{
font-size:54px;
}

.about{
padding:100px 0;
background:white;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-images img{
width:100%;
border-radius:30px;
}

.about-content span{
color:#2563eb;
font-size:12px;
font-weight:700;
letter-spacing:2px;
}

.about-content h2{
font-size:52px;
line-height:1.1;
margin:20px 0;
}

.about-content p{
margin-bottom:20px;
color:#475569;
}

.about-content ul{
padding-left:20px;
}

.about-content li{
margin-bottom:10px;
}

.cta{
padding:80px 0;
}

.cta-box{
background:linear-gradient(135deg,#0f172a,#1d4ed8);
padding:60px;
border-radius:32px;
display:flex;
justify-content:space-between;
align-items:center;
color:white;
}

footer{
background:#020617;
color:white;
padding:60px 0;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer-logo{
display:flex;
align-items:center;
gap:14px;
margin-bottom:20px;
}

.footer-logo img{
width:60px;
}

.footer-text{
color:rgba(255,255,255,0.7);
max-width:380px;
}

footer h4{
margin-bottom:16px;
}

footer p{
color:rgba(255,255,255,0.7);
margin-bottom:10px;
}

@media(max-width:991px){

nav,
.nav-btn{
display:none;
}

.hero-grid,
.services-grid,
.about-grid,
.stats-grid,
.footer-grid,
.cta-box{
grid-template-columns:1fr;
flex-direction:column;
}

.hero-left h1{
font-size:46px;
}

.section-title h2,
.about-content h2{
font-size:36px;
}

}
