#skills {
    padding: 100px 5%;
    background-color: #F0EEF4;
    color: var(--bg-dark);
}

#skills .section-title {
    color: var(--bg-dark);
}

#skills .section-badge {
    color: var(--primary-blue);
}

#skills .section-divider {
    background-color: var(--primary-blue);
}

.skills-experience-container {
    max-width: 1000px;
    margin: 0 auto;
}

.experience-tabs {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    margin-top: 3rem;
}

.tab-list {
    display: flex;
    flex-direction: column;
    border-bottom: none;
    border-left: 2px solid rgba(29, 28, 35, 0.1);
    min-width: 220px;
    height: fit-content;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0 0.5rem 0.5rem 0;
}

.tab-btn:hover {
    color: var(--primary-blue);
    background-color: rgba(30, 114, 204, 0.05);
}

.tab-btn.active {
    color: var(--primary-blue);
    background-color: rgba(30, 114, 204, 0.08);
}

.tab-btn::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 0;
    background-color: var(--primary-blue);
    transition: height 0.3s ease;
}

.tab-btn.active::after {
    height: 100%;
}

.tab-content {
    flex: 1;
    min-height: 300px;
}

@media screen and (max-width: 768px) {
    .experience-tabs {
        flex-direction: column;
        gap: 2rem;
    }

    .tab-list {
        flex-direction: row;
        border-left: none;
        border-bottom: 2px solid rgba(29, 28, 35, 0.1);
        overflow-x: auto;
        min-width: 100%;
    }

    .tab-btn {
        padding: 1rem 1.5rem;
        border-radius: 0.5rem 0.5rem 0 0;
        white-space: nowrap;
    }

    .tab-btn::after {
        left: 0;
        top: auto;
        bottom: -2px;
        width: 0;
        height: 2px;
        transition: width 0.3s ease;
    }

    .tab-btn.active::after {
        width: 100%;
        height: 2px;
    }
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.exp-header {
    margin-bottom: 1.5rem;
}

.exp-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.exp-header .company {
    color: var(--primary-blue);
}

.exp-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.exp-details {
    list-style: none;
    padding-left: 0;
}

.exp-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.exp-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}
