*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
background:#0f172a;
color:#e2e8f0;
font-family:'Share Tech Mono', monospace;
}

header{
background:#020617;
border-bottom:1px solid #00ff9c;
position:sticky;
top:0;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
}

.logo{
color:#00ff9c;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav a{
text-decoration:none;
color:#e2e8f0;
transition:0.3s;
}

nav a:hover{
color:#00ff9c;
text-shadow:0 0 10px #00ff9c;
}

.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.profile-pic{
width:220px;
height:auto;
border-radius:20px;
object-fit:contain;
border:3px solid #00ff9c;
box-shadow:0 0 25px #00ff9c;
margin-bottom:20px;
}

.hero h2{
color:#00ff9c;
font-size:40px;
}

.tagline{
margin:10px 0;
}

.hero-buttons{
display:flex;
gap:10px;
}

.btn{
padding:10px 20px;
background:#00ff9c;
color:black;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

.btn.secondary{
background:transparent;
border:1px solid #00ff9c;
color:#00ff9c;
}

.btn:hover{
box-shadow:0 0 10px #00ff9c;
}

section{
padding:70px 20px;
text-align:center;
}

h2{
color:#38bdf8;
margin-bottom:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
max-width:900px;
margin:auto;
}

.card{
padding:20px;
border:1px solid #00ff9c;
transition:0.3s;
}

.card:hover{
box-shadow:0 0 15px #00ff9c;
transform:scale(1.05);
}

.projects{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.project-card{
border:1px solid #38bdf8;
padding:20px;
width:250px;
}

.project-btn{
display:inline-block;
margin-top:10px;
padding:5px 10px;
border:1px solid #00ff9c;
color:#00ff9c;
text-decoration:none;
}

.project-btn:hover{
background:#00ff9c;
color:black;
}

#contact a{
color:#00ff9c;
}

footer{
margin-top:40px;
padding:20px;
background:#020617;
border-top:1px solid #00ff9c;
text-align:center;
}
