*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:owsald;
}

body{
background:#f4f6f9;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background:#FFFFFF;
color:#003366;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:60px;
}

nav ul{
display:flex;
gap:20px;
list-style:none;
}

nav a{
color:#c40000;
text-decoration:none;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}


/* HERO */

.hero{
height:80vh;
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url(images/man.jpg);
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.hero h1{
font-size:50px;
}

.hero button{
margin-top:20px;
padding:12px 25px;
border:none;
background:#ff9900;
color:white;
}


/* SECTIONS */

section{
padding:80px 10%;
text-align:center;
}


/* SERVICES */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.service{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.service img{
width:100%;
border-radius:8px;
}

/* GALLERY */

#gallery{
text-align:center;
}

.gallery{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.2);
}

.projects-section{
padding:80px 5%;
background:#f7f7f7;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:50px;
color:#c40000;
}

.projects-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.project-card{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
cursor:pointer;
}

.project-card img{
width:100%;
height:320px;
object-fit:cover;
transition:0.5s;
}

.project-overlay{
position:absolute;
bottom:0;
background:linear-gradient(transparent,rgba(0,0,0,0.8));
color: white;
width:100%;
padding:20px;
}

.project-overlay h3{
margin-bottom:5px;
font-size:20px;
}

.project-overlay span{
font-size:14px;
color:#c40000;
}

.project-card:hover img{
transform:scale(1.1);
}
.clients-section{
padding:80px 5%;
background:white;
}

.clients-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:30px;
align-items:center;
}

.client-card{
background:white;
border-radius:10px;
padding:20px;
text-align:center;
box-shadow:0 6px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.client-card img{
width:100%;
max-height:60px;
object-fit:contain;
}

.client-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

/* CONTACT */

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input, textarea{
padding:12px;
border:1px solid #ccc;
}

button{
padding:12px;
background:#003366;
color:white;
border:none;
}


/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#003366;
color:white;
}


/* MOBILE VERSION */

@media (max-width:768px){

nav{
position:absolute;
top:70px;
left:0;
width:100%;
background:#8dc6ff;
display:none;
}

nav ul{
flex-direction:column;
text-align:center;
padding:10px;
}

.menu-toggle{
display:block;
}

.hero h1{
font-size:20px;
}

section{
padding:60px 20px;
}

	@media(max-width:768px){

.section-title{
font-size:28px;
}

.project-card img{
height:240px;
}

.clients-grid{
grid-template-columns:repeat(2,1fr);
}

}