*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Roboto', sans-serif;
scroll-behavior:smooth;
}

body{
background:#f5f7fa;
color:#333;
}

header{
background:#403152;
color:white;
}

.nav{
max-width:1200px;
display:flex;
margin:auto;
justify-content:space-between;
align-items:center;
padding:20px;
}

.nav h2{
font-size:20px;
}

.nav ul{
display:inline-flex;
flex-wrap:wrap;
list-style:none;
gap:15px;
margin-left:15px;
font-size:18px;
}

.nav a{
color:white;
text-decoration:none;
font-weight:500;
}

/* MENU BUTTON */

.menu-toggle{
display:none;
font-size:26px;
color:white;
cursor:pointer;
z-index:1200;
}

/* OVERLAY */

#overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:900;
}

#overlay.active{
opacity:1;
visibility:visible;
}

.hero{
height:62vh;
background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("image1.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:40px;
margin:20px;
}

.hero p{
font-size:20px;
margin:20px;
}

.hero button{
margin-top:25px;
padding:14px 32px;
border:none;
background:#ffb400;
font-weight:bold;
border-radius:30px;
cursor:pointer;
}

.section{
max-width:1200px;
margin:auto;
padding:80px 20px;
text-align:center;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.card h3{
margin-bottom:10px;
}

.nocard{
}

.projects{
background:#eef2f7;
}

.project-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.project{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.project img{
width:100%;
height:180px;
object-fit:cover;
}

.project h4{
padding:15px;
}

.stats{
background:#412f51;
color:white;
padding:60px 20px;
}

.stats-container{
max-width:1200px;
margin:auto;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:80px;
text-align:center;
}

.stats p{
margin-left:20px;
margin-right:20px;	
}

.contact{
max-width:1200px;
margin:auto;
padding:20px;
text-align:center;
}

.contact h2{
margin-bottom:10px;
}

.contact-grid{
display:grid;
align-items: center;
}

footer{
background:#111;
color:#bbb;
text-align:center;
padding:20px;
}

/* MOBILE NAV */

@media (max-width:675px){

.menu-toggle{
display:block;
}

/* side menu */

.nav ul{
position:fixed;
top:0;
right:-280px;
width:175px;
height:100vh;
background:#403152;
flex-direction:column;
padding-top:100px;
gap:25px;
transition:0.35s ease;
z-index:1000;
}

/* visible menu */

.nav ul.active{
right:0;
}

.nav ul li{
padding:10px 30px;
font-size:16px;
}

}