.stats-section {
    padding: 150px 0 0;
    background: var(--white-color);
}

.stats-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--tertiary-color);
    margin-bottom: 70px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.stat-card {
    background: var(--primary-color);
    border-radius: 70px;
    padding: 0 20px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 150px;
    height: 150px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    top: -50px;
    margin-bottom: -40px;
    box-shadow: 0 34px 50px rgba(4, 120, 188, 0.7);
    border: 8px solid var(--secondary-color);
}

.stat-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.stat-number {
    font-size: 50px;
    font-weight: 900;
    color: var(--white-color);
    margin-top: 10px;
    direction: ltr;
}

.stat-label {
    font-size: 28px;
    color: #003656;
    font-weight: 700;
}



@media (max-width: 1200px) {
    .stats-title {
        font-size: 32px;
    }

    .stats-section {
        padding: 170px 0 0;
    }

    .stat-icon {
        width: 140px;
        height: 140px;
    }

    .stat-card {
        border-radius: 60px;
    }

    .stat-number {
        font-size: 44px;
    }

    .stat-label {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .stats-section {
        padding: 150px 0 0;
    }

    .stats-title {
        font-size: 28px;
        margin-bottom: 70px;
    }

    .stat-icon {
        width: 120px;
        height: 120px;
    }

    .stat-card {
        border-radius: 50px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 20px;
    }

    .stat-number {
        margin-top: 4px;
    }

    .stat-icon img {
        width: 90px;
        height: 90px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 130px 0 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 30px;
    }

    .stats-title {
        font-size: 26px;
        margin-bottom: 60px;
    }

    .stat-icon {
        width: 100px;
        height: 100px;
    }

    .stat-icon img {
        width: 86px;
        height: 86px;
    }

    .stat-label {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 180px 0 0;
    }

    .stats-title {
        font-size: 24px;
        margin-bottom: 60px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 20px;
    }

    .stat-card {
        border-radius: 40px;
        padding: 0 20px 20px;
    }

    .stat-icon img {
        width: 78px;
        height: 78px;
    }

    .stat-icon {
        width: 90px;
        height: 90px;
    }

    .stat-icon {
        top: -40px;
    }

    .stat-number {
        margin-top: 8px;
    }

    .stats-container {
        gap: 60px 30px;
    }
}

@media (max-width: 480px) {

    .stats-title {
        font-size: 22px;
        margin-bottom: 54px;
    }

    .stat-icon {
        width: 80px;
        height: 80px;
    }

    .stat-icon img {
        width: 70px;
        height: 70px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-icon {
        box-shadow: 0 20 50px rgba(4, 120, 188, 0.7);
    }

    .stat-label {
        font-size: 18px;
    }
}

@media (max-width: 390px) {

    .stats-section {
        padding: 170px 0 0;
    }

    .stats-title {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .stat-icon img {
        width: 60px;
        height: 60px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
         border: 5px solid var(--secondary-color);
    }

    .stat-card {
        border-radius: 30px;
        padding: 0 20px 14px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-icon {
        top: -34px;
    }

    .stat-icon {
        box-shadow: 0 20px 50px rgba(4, 120, 188, 0.7);
    }

    .stats-container {
        gap: 50px 20px;
    }
}