/*===============================
SUCCESS STORIES
================================*/

.success-top {
    display: flex;
    align-items: stretch;
}

.success-image {
    flex: 1;
    overflow: hidden;
    border-radius: 0;
}

.success-stats {
    width: 120px;
    background: #f4f7fb;
    display: flex;
    flex-direction: column;
}

.stat-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.stat-box:first-child {
    border-bottom: 1px solid #e5e7eb;
}

.stat-box h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ef3b83;
}

.stat-box span {
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
}

/*==========================
Pagination
==========================*/

.success-pagination {
    margin-top: 30px;
    position: relative;
}

.success-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    transition: .3s;
}

.success-pagination .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 50px;
    background: #ef3b83;
}

/*==========================
Responsive
==========================*/

@media (max-width:991px) {

    .success-top {
        flex-direction: column;
    }

    .success-stats {
        width: 100% !important;
        flex-direction: row;
    }

    .stat-box {
        width: 50%;
    }

    .stat-box:first-child {
        border-right: 1px solid #e5e7eb;
        border-bottom: 0;
    }
}

.why-card {
    background: #fff8f8;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    height: 100%;
}

/*==================================
Technology Stack
==================================*/

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.tech-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s ease;
    cursor: pointer;
    min-height: 100%;
    flex-direction: row;
    padding: 5px;
}

.tech-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin: 0;
}

.tech-item span {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1;
    white-space: nowrap;
}

.tech-item:hover {
    transform: translateY(-4px);
}

.tech-item:hover span {
    color: #ef3b83;
}

/* .why-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
} */

/*==========================
Responsive
==========================*/

@media (max-width:991px) {

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

}

@media (max-width:767px) {

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tech-item {
        justify-content: flex-start;
    }

    .tech-item img {
        width: 30px;
        height: 30px;
    }

    .tech-item span {
        font-size: 15px;
    }

}