/* =========================================
   IMPACT STATS EXCLUSIVE CSS
   ========================================= */
.chairy-stats-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* लाइट ग्रे बैकग्राउंड ताकि सफेद कार्ड चमकें */
    text-align: center;
}

.chairy-stats-heading {
    font-size: 2.2rem;
    color: #2c3e50; /* Deep Blue */
    margin-bottom: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.chairy-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 बराबर कॉलम */
    gap: 30px;
    max-width: 1000px; /* कार्ड्स को बीच में रखने के लिए */
    margin: 0 auto;
}

.chairy-stat-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent; /* होवर इफ़ेक्ट के लिए जगह */
}

/* Premium Hover Effect */
.chairy-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-bottom: 4px solid #f39c12; /* Seva Orange line on hover */
}

.chairy-stat-card h3 {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 10px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.chairy-stat-card p {
    font-size: 1.1rem;
    color: #555555;
    font-weight: 600;
    margin: 0;
}

/* =========================================
   STATS MOBILE VIEW (< 991px)
   ========================================= */
@media (max-width: 991px) {
    .chairy-stats-grid {
        grid-template-columns: 1fr; /* मोबाइल और टैब पर एक के नीचे एक कार्ड */
        gap: 20px;
        padding: 0 20px;
    }
    .chairy-stats-heading { font-size: 2rem; margin-bottom: 30px; }
}

@media (max-width: 480px) {
    .chairy-stats-section { padding: 50px 0; }
    .chairy-stat-card h3 { font-size: 2.5rem; }
    .chairy-stat-card p { font-size: 1rem; }
}