.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    counter-reset: step;
}

.stepper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
    border-radius: 2px;
}

.progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    z-index: 2;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    width: 25%;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7f8c8d;
    font-weight: bold;
    border: 3px solid #e0e0e0;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-title {
    margin-top: 10px;
    padding: 0 10px 0 10px;
    text-align: center;
    color: #95a5a6;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.step.active .step-icon {
    background: #2575fc;
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.step.completed .step-icon {
    background-color: #747a77;
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(184, 230, 203, 0.4);
}

.step.completed .step-icon::after { 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.step.active .step-title {
    color: #2c3e50;
    font-weight: 700;
}


.step-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    font-size: .5rem;
}

 
