.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white  ; /* Light purple/blue background */
    border: 2px solid #2f2e7873; /* Slightly darker purple/blue border */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    z-index: 20;
}



.step-circle.completed {
    background-color: white  ; /* Green for completed steps */
    border-color: #34A853;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2f2e7873; /* Dark purple/blue dot */
}
.step-circle.completed .step-dot {
    background-color: #34A853; /* Green for completed steps */
    border-color: #34A853;
}

/* .step-circle.active .step-dot,
.step-circle.completed .step-dot {
    display: none;
} */

.step-label {
    color: #6b7280; /* Light gray for inactive */
    transition: all 0.3s ease;
    text-align: center;
    max-width: 120px;
    line-height: 1.2;
}

.step-label.active {
    color: #111827; /* Dark gray/black for active */
    font-weight: 600;
}

.step-label.completed {
    color: #10b981; /* Green for completed */
    font-weight: 600;
}

/* Timeline line styling */
.timeline-line {
    background-color: #e0e7ff; /* Light purple/blue line */
}

/* Progress fill line */
.progress-fill {
    background-color: #10b981; /* Green progress line */
}

/* Vertical dashed line */
.vertical-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #3b82f6 0,
        #3b82f6 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 15;
    transform: translateX(-50%);
}

/* Custom Radio Button Styles */
.custom-radio {
    position: relative;
    display: flex;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-radio .radio-circle {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #6b7280;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.custom-radio .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2F2E78;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-radio input[type="radio"]:checked + .radio-circle {
    border-color: #2F2E78;
    background-color: white;
}

.custom-radio input[type="radio"]:checked + .radio-circle::after {
    opacity: 1;
}

.custom-radio .radio-label {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.custom-radio:hover .radio-circle {
    border-color: #1e40af;
}
@media (max-width: 768px) {
    .custom-radio .radio-circle {
            width: 16px;
            height: 16px;
    }
    .custom-radio .radio-circle::after {
        width: 8px;
        height: 8px;
    }
    .custom-radio .radio-label {
        font-size: 12px;
    }
}


.progress-line{
    position: relative;
}
.progress-line::after{
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    right: 0px;
    height: 3px;
    background-color: #e5e7eb;
}

.progress-line::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    height: 3px;
    background-color: transparent;
    width: 0%;
    transition: width 0.5s ease-in-out;
    z-index: 2;
}

/* Progress line fill with green color - step by step */
.progress-line-fill{
    position: relative;
}
.progress-line-fill::after{
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    right: 0px;
    height: 3px;
    background-color: #e5e7eb;
}

.progress-line-fill::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    height: 3px;
    background-color: #10b981;
    width: 100%;
    transition: width 0.5s ease-in-out;
    z-index: 2;
}

@media (max-width: 768px) {
    .progress-line-fill::after{
        top: 6px!important;
        ;
    }
    .progress-line-fill::before{
        top: 6px!important;
    }
    .progress-line::after{
        top: 6px!important;
    }
    .progress-line::before{
        top: 6px!important;
    }
    .step-label{
        margin-right: 15px!important;
    }
}
