.vf-process-section{
    padding:0;
    margin:0;
    background:#fff;
    font-family:'Inter',sans-serif;
}

.vf-subtitle{
    color:#2D7CFF;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.vf-process-header h2{
    font-size:42px;
    color:#111827;
    margin-top:10px;
    font-weight:800;
}

.vf-timeline{
    max-width:100%;
    margin:0;
    display:flex;
    justify-content:space-between;
    position:relative;
    padding:0;
}

.vf-line{
    position:absolute;
    left:5%;
    right:5%;
    top:30px;
    height:3px;

    background:
    linear-gradient(
    90deg,
    #2d7cff 0%,
    #4b92ff 25%,
    #ff9c3f 75%,
    #ff7a00 100%);

    z-index:1;
}

.vf-step{
    width:180px;
    text-align:center;
    position:relative;
    z-index:2;
}

.vf-icon{

    width:62px;
    height:62px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    border:2px solid #d9e6ff;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 10px 25px rgba(45,124,255,.15);

    transition:.4s;
}

.vf-icon i{
    color:#2d7cff;
    font-size:20px;
}

.vf-step:hover .vf-icon{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:
    0 20px 35px rgba(255,122,0,.25);
}

.vf-step:hover i{
    color:#ff7a00;
}

.vf-number{

    margin-top:8px;

    font-size:28px;

    font-weight:800;

    color:#111827;
}

.vf-step h3{

    font-size:18px;

    margin-top:5px;

    margin-bottom:10px;

    color:#111827;

    font-weight:700;
}

.vf-step p{

    font-size:14px;

    line-height:1.7;

    color:#6b7280;
}

@media(max-width:991px){

    .vf-timeline{

        flex-wrap:wrap;

        gap:40px;

        justify-content:center;
    }

    .vf-line{
        display:none;
    }

    .vf-step{
        width:250px;
    }

}