body{
font-family:Arial;
margin:0;
background:#0f172a;
color:white;
}

/* NAVBAR */

.navbar{
background:#020617;
padding:20px 0;
}

.nav-flex{
display:flex;
justify-content:space-between;
align-items:center;
width:90%;
margin:auto;
}

.navbar ul{
display:flex;
gap:20px;
list-style:none;
}

.navbar a{
color:white;
text-decoration:none;
}

/* HERO */

.hero{
padding:80px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
width:90%;
margin:auto;
}

.hero-sub{
color:#94a3b8;
margin:20px 0;
}

.profile{
width:260px;
border-radius:50%;
}

/* BUTTONS */

.btn{
background:#22c1c3;
padding:12px 25px;
border-radius:6px;
color:white;
text-decoration:none;
}

.btn-outline{
border:2px solid #22c1c3;
padding:10px 20px;
border-radius:6px;
color:#22c1c3;
text-decoration:none;
}

/* STATS */

.stats{
display:flex;
justify-content:center;
gap:50px;
padding:50px;
background:#111827;
}

.stat h2{
color:#22c1c3;
}

.social{
margin-top:20px;
display:flex;
gap:15px;
font-size:20px;
}

.social a{
color:#22c1c3;
}
/* SKILLS */

.skills{
text-align:center;
padding:70px;
}

.skills-grid{
display:flex;
justify-content:center;
gap:40px;
margin-top:30px;
}

/* FEATURED */

.featured{
padding:80px;
}

.featured-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.featured img{
width:100%;
border-radius:10px;
}

.kpi-grid{
display:flex;
gap:40px;
margin:20px 0;
}

.kpi-grid h4{
color:#94a3b8;
margin:0;
}

.kpi-grid p{
font-size:22px;
color:#22c1c3;
margin:5px 0;
}

/* PROJECTS */

.projects{
text-align:center;
padding:80px;
}

.project-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.card{
background:#1e293b;
padding:30px;
border-radius:10px;
transition:0.4s;
}
.project-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:40px;
}

.project-img{
width:100%;
border-radius:8px;
margin-bottom:15px;
}

.project-buttons{
margin-top:15px;
display:flex;
gap:15px;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

/* CONTACT */

.contact{
text-align:center;
padding:80px;
}

.contact-links{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
}

.contact-links a{
border:1px solid #22c1c3;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
color:white;
}

.contact-links a:hover{
background:#22c1c3;
color:white;
}