.step-box {
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #00a35f;
    width: 0%;
}

.active-step .progress-bar {
    transition: width 5s linear;
    width: 100%;
}

.active-step {
    background-color: rgba(0, 163, 95, 0.25);
    /* Darker green tone with opacity */
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: default;
}

.inactive-step {
    background-color: #202328;
    /* Original card background */
    color: #ffffff;
}

.hidden-description {
    opacity: 0;
    display: none;
    height: 0;
    transition: opacity 0.3s ease-in-out;
}

.step-description {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Icon Alignment */
.step-icon {
    margin-top: 0 !important;
    align-self: flex-start;
}

.bg-custom-green {
    background-color: #0C3D1E;
    /* This is the green tone we want to use */
}