*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#0b1c22;
color:white;
}

.container{
max-width:1200px;
margin:auto;
padding:0 60px;
}

header{
display:flex;
justify-content:space-between;
padding:25px 60px;
align-items:center;
}

.logo{
font-weight:600;
font-size:20px;
}

nav a{
margin-left:30px;
text-decoration:none;
color:white;
}

.hero{
padding:140px 0;
}

.hero h1{
font-size:60px;
line-height:1.2;
}

.hero span{
color:#f59e0b;
}

.hero p{
margin-top:20px;
max-width:600px;
color:#cbd5e1;
}

.hero-buttons{
margin-top:30px;
}

.btn-primary{
background:#f59e0b;
padding:14px 28px;
border-radius:6px;
color:black;
text-decoration:none;
margin-right:10px;
}

.btn-secondary{
border:1px solid white;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
color:white;
}

.about{
padding:120px 0;
}

.about-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:60px;
}

.about-text p{
margin-bottom:20px;
color:#cbd5e1;
}

.about-stats{
display:flex;
flex-direction:column;
gap:20px;
}

.stat{
background:#132a33;
padding:25px;
border-radius:8px;
text-align:center;
}

.stat h3{
color:#f59e0b;
font-size:28px;
}

.skills{
padding:120px 0;
}

.skills-grid{
display:grid;
gap:25px;
}

.skill p{
display:flex;
justify-content:space-between;
margin-bottom:6px;
}

.bar{
background:#1e3942;
height:8px;
border-radius:10px;
}

.progress{
background:#f59e0b;
height:8px;
border-radius:10px;
}

.p95{width:95%;}
.p90{width:90%;}
.p70{width:70%;}
.p85{width:85%;}
.p60{width:60%;}

.projects{
padding:120px 0;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.project{
background:#132a33;
padding:20px;
border-radius:10px;
transition:0.3s;
}

.project:hover{
transform:translateY(-6px);
}

.project img{
width:100%;
border-radius:6px;
margin-bottom:15px;
}

.project h3{
margin-bottom:8px;
}

.project p{
color:#cbd5e1;
font-size:14px;
}

.contact{
padding:120px 0;
text-align:center;
}

.contact p{
color:#cbd5e1;
margin-top:10px;
}

.contact-buttons{
margin-top:30px;
}

.btn-contact{
background:#f59e0b;
padding:14px 30px;
margin:10px;
display:inline-block;
border-radius:6px;
text-decoration:none;
color:black;
font-weight:500;
}

footer{
text-align:center;
padding:40px;
color:#cbd5e1;
}

@media(max-width:900px){

.projects-grid{
grid-template-columns:1fr;
}

.about-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:40px;
}

}