:root{
--primary:#2563eb;
--primary-light:#60a5fa;
--dark:#050505;
--card:#111827;
--muted:#d1d5db;
}

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

body{
font-family:Arial,Helvetica,sans-serif;
background:#050505;
color:white;
line-height:1.6;
}

nav{
background:#000;
padding:18px 6%;
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid rgba(37,99,235,.2);
}

.logo{
font-size:1.5rem;
font-weight:700;
}

.logo span{
color:#2563eb;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:600;
}

section{
padding:80px 7%;
}

.section-title{
font-size:2.5rem;
text-align:center;
margin-bottom:20px;
}

.section-sub{
text-align:center;
max-width:900px;
margin:auto;
margin-bottom:40px;
color:#d1d5db;
}

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

.card{
background:#111827;
padding:30px;
border-radius:18px;
border:1px solid rgba(255,255,255,.05);
}

.card h3{
color:#60a5fa;
margin-bottom:10px;
}

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

.area{
background:#111827;
padding:18px;
border-radius:12px;
text-align:center;
font-weight:bold;
}

.area a{
color:white;
text-decoration:none;
}

footer{
padding:40px;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){
.nav-links{
display:none;
}
}
.logo-link{
display:flex;
align-items:center;
text-decoration:none;
}

.logo-img{
height:120px;
width:auto;
transition:0.3s;
filter: drop-shadow(0 0 10px rgba(255,255,255,0.35));
}

.logo-img:hover{
transform:scale(1.05);
}
nav{
display:flex;
justify-content:center;
padding:25px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-links{
display:flex;
gap:40px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:18px;
}

.hero{
min-height:80vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;

background:
linear-gradient(
rgba(0,0,0,0.65),
rgba(0,0,0,0.65)
),
url("image.jpeg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-logo{
max-width:150px;
width:100%;
height:auto;
margin-bottom:30px;
}

.hero h1{
font-size:64px;
margin-bottom:20px;
max-width:1000px;
}
.hero h2{
font-size:28px;
color:#60a5fa;
font-weight:normal;
margin-bottom:25px;
}

.hero p{
font-size:22px;
margin-bottom:30px;
}

.trust{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
padding:40px 20px;
}

.trust-item{
background:#0f172a;
padding:20px 30px;
border-radius:12px;
}

.services-section,
.areas-section{
max-width:1200px;
margin:auto;
padding:70px 20px;
text-align:center;
}

.services-section h2,
.areas-section h2{
font-size:42px;
margin-bottom:40px;
}

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

.service-card{
background:#0f172a;
padding:30px;
border-radius:12px;
font-size:20px;
font-weight:bold;
}

.service-card a{
color:white;
text-decoration:none;
}

footer{
text-align:center;
padding:50px 20px;
border-top:1px solid rgba(255,255,255,.08);
margin-top:50px;
}

@media(max-width:768px){

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

.hero h2{
font-size:22px;
}

.nav-links{
gap:20px;
flex-wrap:wrap;
}

}

