@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#050816;
color:white;
overflow-x:hidden;
}

.skills{
padding:100px 10%;
min-height:100vh;
}

.page-title{
text-align:center;
margin-bottom:60px;
}

header{

position:fixed;
top:0;
left:0;
width:100%;
padding:25px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(5,8,22,.6);
backdrop-filter:blur(20px);
z-index:1000;

}

nav ul{

display:flex;
list-style:none;
gap:30px;

}

nav ul li a{

text-decoration:none;
color:white;
transition:.3s;

}

nav ul li a:hover{

color:#7c5cff;

}

.page-title h1{
font-size:3rem;
}

.page-title p{
color:#9c9c9c;
margin-top:10px;
}

.skills-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:50px;
}

.skills-column{
background:#0c1126;
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,.05);
}

.skills-column h2{
margin-bottom:30px;
color:#9d6bff;
}

.skill{
margin-bottom:25px;
}

.info{
display:flex;
justify-content:space-between;
margin-bottom:8px;
}

.bar{
height:8px;
background:#1a1f36;
border-radius:30px;
overflow:hidden;
}

.progress{
height:100%;
background:linear-gradient(
90deg,
#6d00ff,
#b066ff
);
border-radius:30px;
}

.html{width:95%;}
.css{width:90%;}
.js{width:85%;}
.node{width:78%;}
.express{width:77%;}
.postgres{width:85%;}
.api{width:80%;}
.git{width:80%;}
.angular{width:75%;}
.java{width:75%;}

.tech-cards{
margin-top:60px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:#0c1126;
padding:30px;
text-align:center;
border-radius:20px;
border:1px solid rgba(255,255,255,.05);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
border-color:#8a4fff;
box-shadow:0 0 20px rgba(138,79,255,.4);
}

.card i{
font-size:40px;
margin-bottom:15px;
color:#8a4fff;
}

.card h3{
margin-bottom:10px;
}

.card p{
color:#bdbdbd;
font-size:14px;
}

@media(max-width:900px){

.skills-container{
grid-template-columns:1fr;
}

.tech-cards{
grid-template-columns:repeat(2,1fr);
}

}
@media (max-width:768px){

.menu-toggle{
    display:block;
    font-size:30px;
    cursor:pointer;
    z-index:1002;
}

nav{
    position:fixed;
    top:80px;
    left:-100%;
    width:100%;
    background:#050816;
    transition:.4s ease;
    z-index:1000;
}

nav.active{
    left:0;
}

nav ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
    padding:30px 0;
}

}
