.skills{
    padding:100px 10%;
    background:#111827;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#38bdf8;
    font-size:18px;
    font-weight:600;
}

.section-title h2{
    color:white;
    font-size:45px;
    margin:10px 0;
}

.section-title p{
    color:#94a3b8;
    max-width:700px;
    margin:auto;
}

.skills-container{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
}

.skill{
    margin-bottom:30px;
}

.skill-info{
    display:flex;
    justify-content:space-between;
    color:white;
    margin-bottom:10px;
}

.progress{
    width:100%;
    height:12px;
    background:#1e293b;
    border-radius:20px;
    overflow:hidden;
}

.progress-bar{
    height:100%;
    border-radius:20px;
    background:linear-gradient(90deg,#38bdf8,#0ea5e9);
    animation:load 2s ease forwards;
}

.html{
    width:95%;
}

.css{
    width:90%;
}

.js{
    width:85%;
}

.react{
    width:80%;
}

.laravel{
    width:85%;
}

@keyframes load{
    from{
        width:0;
    }
}

/* RIGHT */
.skills-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.tech-card{
    background:#1e293b;
    padding:25px;
    border-radius:20px;
    transition:.4s;
    border:1px solid transparent;
}

.tech-card:hover{
    transform:translateY(-10px);
    border-color:#38bdf8;
    box-shadow:0 10px 25px rgba(56,189,248,.2);
}

.tech-card h3{
    color:#38bdf8;
    margin-bottom:15px;
}

.tech-card p{
    color:#cbd5e1;
    line-height:1.7;
}
@media(max-width:992px){

    .skills-container{
        grid-template-columns:1fr;
    }

    .skills-right{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){

    .section-title h2{
        font-size:35px;
    }

    .skills-right{
        grid-template-columns:1fr;
    }
}