/* Skills section layout */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    border: 2px solid #313131;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 40px;
    transition: border-color 0.3s ease;
}

.skills-container:hover {
    border-color: #FF0077;
}

.skills-column {
    flex: 1;
    min-width: 300px;
}

.skill-item {
    margin-bottom: 45px;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.skill-name {
    font-size: 15px;
    color: #9DA0A7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.skill-percent {
    font-size: 15px;
    color: #9DA0A7;
    font-weight: 600;
}

/* Progress bar styles */
.progress {
    height: 6px;
    background: #E1E1E1;
    position: relative;
}

.progress::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #FF0077;
    transition: width 2.4s ease-in-out;
}

/* Skill bar animations */
.progress.animate-on-scroll.visible::before {
    width: var(--progress-width);
}

/* Set initial progress widths */
.percent90 { --progress-width: 90%; }
.percent85 { --progress-width: 85%; }
.percent80 { --progress-width: 80%; }
.percent75 { --progress-width: 75%; }
.percent70 { --progress-width: 70%; }
.percent65 { --progress-width: 65%; }
.percent60 { --progress-width: 60%; }

/* Responsive design */
@media only screen and (max-width: 768px) {
    .skills-container {
        flex-direction: column;
        padding: 30px;
    }
    
    .skills-column {
        width: 100%;
    }
}
        width: 100%;
    }
}
