:root{
--primary:#ff7b00;
--secondary:#0f172a;
--accent:#1e40af;
--light:#f8fafc;
--dark:#020617;
--text:#475569;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#fff;
color:var(--text);
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background-color: rgb(2, 6, 23);
box-shadow:0 3px 10px rgba(0,0,0,.08);
z-index:1000;

}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:5px 0;
min-height:120px;
}

.logo img{
max-height:120px;
height:200px;
width:auto;
display:block;
}

.logo{
display:flex;
align-items:center;
}


nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:30px;
}

nav ul li a{
text-decoration:none;
font-weight:500;
color:#f4f4f4;
}

.btn{
background:var(--primary);
color:white;
padding:12px 24px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.hero{
height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(15,23,42,.85),
rgba(15,23,42,.85)),
url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");
background-size:cover;
background-position:center;
color:white;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:60px;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:35px;
}

.hero-buttons a{
margin-right:15px;
}

.btn-secondary{
background:transparent;
border:2px solid white;
}

section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:40px;
color:var(--secondary);
}

.stats{
background:var(--secondary);
color:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
}

.stat h3{
font-size:48px;
color:var(--primary);
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card{
background:white;
padding:35px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-card i{
font-size:45px;
color:var(--primary);
margin-bottom:20px;
}

.projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.project-card{
background:white;
overflow:hidden;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.project-img{
height:220px;
background:#ddd;
}

.project-content{
padding:25px;
}

.why{
background:#f8fafc;
}

.why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.why-item{
background:white;
padding:20px;
border-left:5px solid var(--primary);
font-weight:500;
}

.clients{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.client{
background:#f1f5f9;
height:100px;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
font-weight:600;
}

.contact{
background:var(--secondary);
color:white;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:none;
border-radius:5px;
}

.contact-form button{
width:100%;
padding:15px;
border:none;
background:var(--primary);
color:white;
font-size:16px;
cursor:pointer;
border-radius:5px;
}

footer{
background:var(--dark);
color:white;
text-align:center;
padding:25px;
}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.stats-grid,
.contact-grid,
.why-grid,
.clients{
grid-template-columns:1fr;
}

nav{
display:none;
}


}

