*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif}

body{background:#0f172a;color:#fff}

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1519389950473-47ba0277781c') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.overlay{
background:rgba(0,0,0,0.6);
padding:40px;
border-radius:15px;
animation:fade 2s ease;
}

@keyframes fade{
from{opacity:0;transform:translateY(40px)}
to{opacity:1;transform:translateY(0)}
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#00e0ff;
color:#000;
text-decoration:none;
border-radius:5px;
}

.about{
padding:80px 40px;
}

.container{
display:flex;
gap:40px;
align-items:center;
}

.container img{
width:50%;
border-radius:10px;
}

.services{
padding:80px 40px;
text-align:center;
}

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

.card{
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:15px;
transition:0.3s;
}

.card:hover{
transform:scale(1.05);
background:#00e0ff;
color:#000;
}

.gallery{
padding:80px 40px;
text-align:center;
}

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

.img-grid img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
transition:0.3s;
}

.img-grid img:hover{
transform:scale(1.1);
}

.contact{
padding:80px;
text-align:center;
}

.map iframe{
width:100%;
height:400px;
border:0;
}

footer{
text-align:center;
padding:20px;
background:#020617;
}
