body{

font-family:Poppins,sans-serif;
margin:0;
background:#0f172a;
color:white;

}

nav{

display:flex;
justify-content:space-between;
padding:20px 60px;
background:#020617;

}

nav ul{

display:flex;
list-style:none;
gap:20px;

}

nav a{

color:white;
text-decoration:none;

}

.hero{

text-align:center;
padding:120px 20px;
background:linear-gradient(135deg,#0f172a,#1e293b);

}

.hero h1{

font-size:55px;

}

.hero-buttons a{

margin:10px;
padding:10px 18px;
background:#1e293b;
border-radius:8px;
text-decoration:none;
color:white;
transition:0.3s;

}

.hero-buttons a:hover{

background:#38bdf8;
color:black;

}

section{

max-width:1000px;
margin:auto;
padding:60px 20px;

}

h2{

border-bottom:2px solid #38bdf8;
display:inline-block;
padding-bottom:5px;

}

.projects{

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

}

.card{

background:#1e293b;
padding:25px;
border-radius:12px;
transition:0.3s;

}

.card:hover{

transform:translateY(-6px);

}

.card a{

color:#38bdf8;
text-decoration:none;

}

.skills{

display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:20px;

}

.skills span{

background:#1e293b;
padding:8px 15px;
border-radius:6px;

}

footer{

text-align:center;
padding:30px;
opacity:0.6;

}
