
h2 span {
    color: #1B89FE;
}

.small-title {
    font-size: 20px;
    font-weight: 600;
    color: #3999ff;
    margin-bottom: 20px;
}
.header-banner .platform-icons{
    margin-bottom: 30px;
}

.c-bottom{
    margin-bottom: 20px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.products h3 {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.products p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}

.products_dec {
    text-align: center;
    max-width: max-content;
    margin: 0 auto 2rem;
}

.product-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 380px;
    max-width: 380px;
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.card-bg {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 20px 20px;
}

.steps-container {
    display: flex;
    gap: 30px;
}

.steps-container .steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 550px;
}

.steps-container .step-content p {
    max-width: max-content;
}

.steps-container .step {
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #ECECEC;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all .25s ease;
}

.steps-container .step:hover {
    border-color: #1B89FE;
}

.steps-container .step.active {
    border-color: #1B89FE;
}

.steps-container .step p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
}


.steps-container .step.active p {
    color: #1B89FE;
}

.steps-container .images {
    flex: 1;
    position: relative;
}

.steps-container .images img {
    width: 100%;
    border-radius: 10px;
    display: none;
}

.steps-container .images img.active {
    display: block;
}

@media (max-width: 767px) {
    .products_dec{
        text-align: left;
    }
    .small-title{
        text-align: left;
    }
    .product-card {
        min-width: 280px;
    }
    .content-text p{
        text-align: left;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .steps-container .steps {
        flex-direction: column;
        gap: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        width: auto;
        padding: 0rem 0rem 0rem;
    }

    .steps-container .step {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        max-width: 100%;
        cursor: pointer;
    }

    .steps-container .step-icon img {
        width: 38px;
        height: 38px;
    }

    .steps-container .image {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
    }

    .steps-container .image img {
        width: 90%;
        max-width: 420px;
        border-radius: 8px;
        transition: opacity 0.3s ease, transform 0.4s ease;
    }

    .steps-container .image img.active {
        opacity: 1;
        transform: scale(1);
    }

    .steps-container .image img:not(.active) {
        opacity: 0;
        transform: scale(0.96);
    }
}

@media(min-width: 767px) and (max-width: 1023px){
    .header-banner .hero{
        margin-top: 20px;
    }
    .products{
        margin-bottom: 30px;
    }
    .product-card {
        min-width: 300px;
    }
    .steps-container .steps{
        width: 100%;
    }
    .steps-container .step{
        max-width: 100%;
    }
    .c-bottom{
        text-align: center;
    }
}



