body{

font-family:Poppins,sans-serif;
margin:0;
text-align:center;

}

.header{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#111;
color:white;

}

.logo img{

height:90px;

}

nav a{

color:white;
margin:0 15px;
text-decoration:none;

}

.social i{

color:white;
font-size:22px;
margin-left:15px;

}

.hero{

height:65vh;

background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") center/cover;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;

}

.btn-primary{

background:#f4b400;
padding:15px 30px;
color:black;
text-decoration:none;
border-radius:6px;

}


section{

padding:80px 10%;

}

.services-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;

}

.service{

background:#f5f5f5;
padding:40px;
border-radius:10px;
transition:0.3s;

}

.service-desc{

opacity:0;

}

.service:hover .service-desc{

opacity:1;

}

.gallery{

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

}

.gallery img{

width:100%;
height:230px;
object-fit:cover;
border-radius:10px;
cursor:pointer;

}

.modal{

display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
align-items:center;
justify-content:center;

}

.modal img{

max-width:70%;
max-height:70%;
border:6px solid white;
border-radius:10px;

}

.close{

position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;

}

.contact-form{

max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

padding:12px;
border:1px solid #ccc;
border-radius:6px;

}

.file-label{

text-align:left;
font-size:14px;

}

button{

background:#f4b400;
border:none;
padding:15px;
border-radius:6px;
cursor:pointer;
color:black;
text-decoration:none;

}

footer{

background:#111;
color:white;
padding:40px;

}

.social-footer i{

font-size:22px;
margin:10px;
color:white;

}