/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5%;
}

.skills .skill-box p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.6;
}

.skills .skill-box .progress {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 50px;
    height: 8px;
    margin-top: 5px;
    overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
    background-color: var(--accent-color);
    height: 100%;
    position: relative;
    border-radius: 50px;
    transition: 0.9s;
    width: 1px;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-item {
    margin-bottom: 3rem;
}

.resume .resume-item .resume-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    color: var(--heading-color);
}

.resume .resume-item .resume-title::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.resume .resume-item .resume-content {
    padding-left: 1.25rem;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume .resume-item article {
    position: relative;
    margin-bottom: 2.5rem;
}

.resume .resume-item article::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: -1.8rem;
    top: 0.25rem;
    background: var(--background-color);
    border: 2px solid var(--accent-color);
}

.resume .resume-item article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.resume .resume-item article h5 {
    font-size: 1rem;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 0.375rem 0.75rem;
    display: inline-block;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--accent-color);
    border-radius: 4px;
}

.resume .resume-item article .institution,
.resume .resume-item article .company {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume .resume-item article p {
    margin-bottom: 1rem;
}

.resume .resume-item article ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.resume .resume-item article ul li {
    padding-bottom: 0.75rem;
    position: relative;
}

.resume .resume-item article ul li:last-child {
    padding-bottom: 0;
}

.resume .skill-item {
    margin-bottom: 2rem;
}

.resume .skill-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.resume .skill-item .progress {
    height: 0.75rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 1rem;
    overflow: visible;
}

.resume .skill-item .progress .progress-bar {
    background-color: var(--accent-color);
    position: relative;
    border-radius: 1rem;
    width: 0;
    transition: width 1s ease;
}

.resume .skill-item .progress .progress-bar::after {
    content: attr(aria-valuenow) "%";
    position: absolute;
    right: 0;
    top: -1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .resume .resume-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .resume .resume-content {
        padding-left: 1rem !important;
    }

    .resume article::before {
        left: -2rem !important;
    }
}