.processflow-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.processflow-line {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e6e6e6;
    z-index: 1;
}

.processflow-line-fill {
    height: 4px;
    width: 0%;
    background: #FFD54F;
    transition: width .5s ease-out;
}

.processflow-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.flow-step {
    text-align: center;
    width: 14%;
    cursor: pointer;
}

.flow-step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFD54F;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    font-weight: 700;
    font-size: 18px;
}

.processflow-image-card {
    margin: 60px auto 0 auto;
    width: 480px;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
}

.flow-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
}

.flow-image.active {
    opacity: 1;
}
