.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    position: relative;
}

.step-card .step-image {
    background: #0069aa;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card .step-image img{
    max-width:100px;
    width: 100%;
}

.step-card {
        width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 0px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 6px 10px 0 rgb(0 105 170 / 9%);
    position: relative;
}

.step-content {
    padding: 30px;
}

.step-card:after {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url('/wp-content/uploads/2026/01/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: -35px; /* bahar nikalne ke liye */
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.step-card.stepthree:after{
    content: unset;
}

@media (max-width:991px){
    .steps-wrapper {
        overflow-x: scroll;
        scrollbar-width: thin;
        scrollbar-color: #0069aa;
    }

    .step-card {
        width: 320px;
        min-width: 320px;
}

.step-card .step-image img {
    max-width: 70px;
}

h3.step-heading {
    font-size: 20px !important;
}
}