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

html{
scroll-behavior:smooth;
}

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

header{
position:fixed;
width:100%;
background:#0f172a;
padding:20px 10%;
z-index:1000;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:2rem;
}

.logo span{
color:#38bdf8;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:white;
transition:.3s;
}

.nav-links a:hover{
color:#38bdf8;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 10%;
background:
linear-gradient(
135deg,
#0f172a,
#1e293b,
#2563eb
);
}

.hero h1{
font-size:4rem;
}

.hero span{
color:#38bdf8;
}

.hero h3{
margin:20px 0;
font-size:1.8rem;
}

.hero p{
max-width:700px;
margin:auto;
line-height:1.8;
}

.hero-buttons{
margin-top:30px;
}

.btn{
padding:12px 30px;
background:#38bdf8;
border-radius:30px;
text-decoration:none;
color:white;
margin:10px;
display:inline-block;
}

.secondary{
background:transparent;
border:2px solid #38bdf8;
}

section{
padding:100px 10%;
}

.section-title{
text-align:center;
margin-bottom:50px;
font-size:2.5rem;
}

.glass-card{
background:rgba(255,255,255,.05);
backdrop-filter:blur(10px);
padding:30px;
border-radius:15px;
border:1px solid rgba(255,255,255,.1);
}

.skills-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.skill h3{
margin-bottom:10px;
}

.bar{
height:10px;
background:#1e293b;
border-radius:20px;
overflow:hidden;
}

.progress{
height:100%;
background:#38bdf8;
}

.p1{width:90%;}
.p2{width:85%;}
.p3{width:95%;}
.p4{width:90%;}
.p5{width:88%;}
.p6{width:80%;}

.project-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.project-card{
background:#1e293b;
padding:25px;
border-radius:15px;
transition:.4s;
}

.project-card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px #38bdf8;
}

.project-card h3{
margin-bottom:15px;
color:#38bdf8;
}

.contact-card{
text-align:center;
}

.contact-card p{
margin:15px;
font-size:1.1rem;
}

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

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.nav-links{
display:none;
}

}