/* General Styles */

#stats {
    background: transparent !important;
}

.stats-wrapper {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
}

.stat-desc {
    font-size: 1.2rem !important;
    color: #666 !important;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .stat-card {
      min-width: 250px;
      margin: 0 auto 20px;
    }
  }
