/* ===== STATS SECTION PROFESSIONAL ===== */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    background: #f4f6fa;
    margin-top: 40px;
}

/* Chart Text Box */
.chart-text {
    flex: 1 1 380px;
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.chart-text:hover {
    transform: translateY(-5px);
}

.chart-text h2 {
    color: #259FF0;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-text p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Stats Cards */
.stats-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    flex: 1 1 150px;
    min-width: 150px;
    background: linear-gradient(135deg, #ffffff, #e6f0ff);
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 159, 240, 0.3);
    background: linear-gradient(135deg, #259FF0, #3b3ce3);
    color: #fff;
}

.card i {
    font-size: 1.8rem;
    color: #259FF0;
    margin-bottom: 12px;
    transition: 0.4s;
}

.card:hover i {
    color: #fff;
}

.card span {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}

.card strong {
    font-size: 1.5rem;
}

/* Chart Box Responsive */
.chart-box {
    flex: 1 1 380px;
    min-width: 500px;
    max-width: 600px;
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, width 0.3s ease;
}

.chart-box:hover {
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .stats-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stats-cards {
        justify-content: space-around;
    }

    .chart-box {
        flex: 1 1 100%;
        max-width: 90%;
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {
    .chart-box {
        padding: 25px 20px;
        max-width: 100%;
        min-width: 300px;
    }

    .chart-text h2 {
        font-size: 1.5rem;
    }

    .card {
        padding: 25px 15px;
    }
}