/* Statistics Position Fix for Mobile Devices */

/* Make sure statistics section appears right after About Us section */
.stats-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Mobile specific positioning */
@media (max-width: 992px) {
    .about-us {
        margin-bottom: 0 !important;
        padding-bottom: 30px !important;
    }
    
    .stats-section {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    /* Ensure stats grid is visible and properly spaced */
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .stat-box {
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        padding: 15px 10px !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }
    
    /* Enhance visibility of statistics */
    .stat-number {
        font-size: 32px !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin-bottom: 5px !important;
    }
    
    .stat-label {
        font-size: 14px !important;
        color: #666 !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .stat-box {
        padding: 12px 8px !important;
    }
    
    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 13px !important;
    }
}
