:root{
--primary:#00205b;
--secondary:#2563eb;
--bg:#f4f7fb;
--card:#ffffff;
--text:#0f172a;
--muted:#64748b;
--border:#e2e8f0;
--gradient:linear-gradient(135deg,#00205b,#2563eb);
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:Inter,sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
line-height:1.5;
transition:.25s;
}

body.dark{
--bg:#020817;
--card:#0f172a;
--text:#f8fafc;
--muted:#cbd5e1;
--border:rgba(255,255,255,.08);
--primary:#3b82f6;
--secondary:#60a5fa;
}

img{
max-width:100%;
display:block;
}

.container{
width:min(1220px,calc(100% - 40px));
margin:auto;
}

.blur{
position:fixed;
width:500px;
height:500px;
background:#2563eb20;
filter:blur(100px);
z-index:-1;
border-radius:50%;
}

.blur.one{
top:-200px;
left:-200px;
}

.blur.two{
bottom:-200px;
right:-200px;
}

header{
position:sticky;
top:0;
z-index:999;
background:rgba(255,255,255,.82);
backdrop-filter:blur(10px);
border-bottom:1px solid var(--border);
}

#home{
scroll-margin-top:80px;
}

body.dark header{
background:rgba(2,8,23,.88);
}

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

.logo h1{
font-size:1.25rem;
font-weight:800;
color:var(--text);
}

.logo p{
font-size:.82rem;
color:var(--muted);
}

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

nav a{
text-decoration:none;
color:var(--text);
font-weight:600;
font-size:.95rem;
transition:.2s;
}

nav a:hover{
opacity:.7;
}

.actions{
display:flex;
align-items:center;
gap:12px;
}

.theme-btn{
width:48px;
height:48px;
border:none;
border-radius:14px;
background:var(--card);
cursor:pointer;
font-size:1rem;
color:var(--text);
border:1px solid var(--border);
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 22px;
border-radius:16px;
font-weight:700;
text-decoration:none;
transition:.25s;
border:none;
cursor:pointer;
white-space:nowrap;
}

.btn-primary{
background:var(--gradient);
color:#fff;
box-shadow:0 10px 30px rgba(37,99,235,.2);
}

.btn-light{
background:var(--card);
border:1px solid var(--border);
color:var(--text);
}

body.dark .btn-light{
background:#111827;
color:#fff;
border:1px solid rgba(255,255,255,.08);
}

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

.hero{
display:grid;
grid-template-columns:1.1fr .9fr;
align-items:center;
gap:70px;
padding:60px 0 80px;
min-height:90vh;
}

.badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 18px;
background:var(--card);
border:1px solid var(--border);
border-radius:999px;
margin-bottom:28px;
font-size:.92rem;
font-weight:600;
color:var(--text);
}

.dot{
width:10px;
height:10px;
background:#22c55e;
border-radius:50%;
}

.hero h2{
font-size:clamp(2.4rem,5vw,4.5rem);
line-height:1.05;
max-width:700px;
}

.hero p{
font-size:1.08rem;
color:var(--muted);
margin-bottom:34px;
max-width:620px;
}

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:16px;
margin-bottom:40px;
}

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:14px;
max-width:720px;
}

.stat{
background:var(--card);
border:1px solid var(--border);
padding:14px 18px;
border-radius:18px;
min-width:auto;
}

.stat strong{
font-size:1.05rem;
margin-bottom:4px;
}

.stat span{
font-size:.82rem;
line-height:1.3;
}

@media(max-width:768px){

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

}

.stat strong{
display:block;
font-size:1.3rem;
margin-bottom:4px;
color:var(--text);
}

.stat span{
color:var(--muted);
font-size:.92rem;
}

.image-wrap{
position:relative;
display:flex;
justify-content:flex-end;
}

.image-glow{
position:absolute;
width:75%;
height:75%;
background:#2563eb30;
filter:blur(90px);
border-radius:50%;
z-index:0;
}

.image-card{
position:relative;
z-index:1;
max-width:80%;
}

.image-card img{
width:100%;
height:auto;
object-fit:contain;
aspect-ratio:733/1267;
}

.about,
.services,
.banner{
padding:90px 0;
}

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

.section-head span{
font-size:.78rem;
font-weight:800;
letter-spacing:4px;
text-transform:uppercase;
color:var(--secondary);
}

.section-head h3{
font-size:clamp(2rem,5vw,3.8rem);
margin-top:16px;
color:var(--text);
}

.section-head h3 a{
text-decoration:none;
color:inherit;
}

.about-grid,
.cards{
display:grid;
gap:24px;
}

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

.cards{
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}

.about-card,
.card{
background:var(--card);
border:1px solid var(--border);
border-radius:28px;
padding:32px;
}

.card{
position:relative;
overflow:hidden;
transition:.25s;
text-decoration:none;
}

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

.card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:var(--gradient);
}

.card-icon{
width:60px;
height:60px;
border-radius:18px;
display:grid;
place-items:center;
font-size:1.4rem;
background:#dbeafe;
margin-bottom:22px;
}

.about-card h4,
.card h4,
h5{
color:var(--text);
}

.about-card p,
.card p{
color:var(--muted);
margin-top:12px;
}

.checks{
display:grid;
gap:12px;
margin-top:22px;
}

.check{
display:flex;
gap:10px;
color:var(--muted);
}

.check a{
color:inherit;
text-decoration:none;
font-weight:600;
}

.banner-box{
background:linear-gradient(135deg,#1d4ed8,#2563eb);
border-radius:36px;
padding:60px;
color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.banner-box h3{
font-size:clamp(2rem,5vw,3.5rem);
line-height:1;
margin-bottom:18px;
}

.banner-box p{
color:#dbeafe;
}

footer{
padding:80px 0 30px;
border-top:1px solid var(--border);
}

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

.footer-grid h5{
margin-bottom:18px;
font-size:1.1rem;
}

.footer-grid p,
.footer-grid li{
list-style:none;
line-height:1.9;
color:var(--muted);
}

.footer-grid a{
color:inherit;
text-decoration:none;
}

.footer-grid a:hover{
opacity:.7;
}

.footer-bottom{
margin-top:40px;
padding-top:30px;
border-top:1px solid var(--border);
}

.footer-legal{
color:var(--muted);
font-size:.92rem;
line-height:1.9;
margin-bottom:24px;
}

.footer-legal a{
color:inherit;
font-weight:700;
text-decoration:none;
}

.copyright{
padding-top:24px;
border-top:1px solid var(--border);
text-align:center;
color:var(--muted);
font-size:.92rem;
}

@media(max-width:980px){

.hero,
.about-grid{
grid-template-columns:1fr;
}

.logo{
display:flex;
align-items:center;
}

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

.hero{
text-align:center;
padding:70px 0;
}

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

.hero p{
margin-inline:auto;
}

.image-wrap{
justify-content:center;
}

.image-card{
max-width:320px;
}

.banner-box{
flex-direction:column;
text-align:center;
padding:40px 30px;
}

}

@media(max-width:768px){

nav{
display:none;
}

.actions .btn-primary{
display:none;
}

.image-wrap{
display:none;
}

.about,
.services,
.banner{
padding:70px 0;
}

}