/* process bar */

.tf-process-bar .skill {
    margin-bottom: 20px;
    opacity: 0; 
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.tf-process-bar .skill-name {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1px;
}
.tf-process-bar .progress-bar {
    width: 100%;
    height: 15px;
    background-color: #E3E3E3;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: none;
}
.tf-process-bar .progress-fill {
    height: 100%;
    background-color: var(--theme-primary-color);
    width: 0;
    transition: width 3.5s ease-in-out;
}

.tf-process-bar .skill-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #00194C;
}