/* Responsive Design */
@media (max-width: 768px) {
    #skills {
        padding: 60px 5%;
        flex-direction: column;
    }

    .skills-header {
        text-align: left;
        width: 100%;
    }

    .skills-heading {
        font-family: var(--font-heading);
        font-size: clamp(55px, 12vw, 85px);
        text-align: left;
        width: 100%;
        line-height: 0.9;
        letter-spacing: -3px;
        margin-bottom: 20px;
    }

    .skills-ps {
        text-align: left;
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .skills-split-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .skills-col {
        width: 100%;
    }

    .skills-col.left {
        grid-row: 1;
        grid-column: 1;
        height: auto;
        position: relative;
        z-index: 10;
        margin-bottom: 30px;
    }

    .skills-col.middle {
        grid-row: 2;
        grid-column: 1;
        position: relative;
        z-index: 0;
        opacity: 0.5;
        pointer-events: none;
        height: auto;
        justify-content: start;
    }

    .middle-image-wrapper {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .skills-col.right {
        grid-row: 2;
        grid-column: 1;
        padding: 0;
        position: relative;
        z-index: 10;
        padding-bottom: 10px;
    }

    .skill-category-title {
        text-align: left;
        padding-left: 0;
        margin-left: 0;
    }

    .skills-bubble-container {
        padding: 0;
    }
}