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

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

nav{
display:flex;
justify-content:space-between;
padding:20px 50px;
background:rgba(0,0,0,0.6);
position:fixed;
width:100%;
z-index:1000;
}

nav a{
margin-left:20px;
color:#fff;
text-decoration:none;
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(-45deg,#020617,#0ea5e9,#020617);
background-size:400% 400%;
animation:gradient 10s ease infinite;
}

@keyframes gradient{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

.hero h1{
font-size:48px;
animation:fadeUp 1.5s ease;
}

.hero p{
margin:20px 0;
animation:fadeUp 2s ease;
}

.btn{
background:#00e0ff;
padding:12px 25px;
border-radius:5px;
color:#000;
text-decoration:none;
}

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

.services{
padding:100px 50px;
text-align:center;
}

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

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

.card:hover{
transform:translateY(-10px) scale(1.05);
background:rgba(0,224,255,0.2);
}

.images{
padding:80px 50px;
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.05);
}

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

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

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