.skills-progress-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    width: 100%;
}

.skill-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 4px;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-bar-fill {
    height: 100%;
    background-color: #1e3a8a;
    border-radius: 10px;
    transition: width 1s ease-in-out;
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from {
        width: 0%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .skill-name {
        font-size: 13px;
    }
}