.stats-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
  color: #e0e0e0;
}

.section-title {
  color: #00ffff;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #aaa;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-style: italic;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(25, 25, 30, 0.85);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.stat-card h3 {
  margin-bottom: 0.8rem;
  color: #00ffff;
  font-weight: 600;
  font-size: 1.2rem;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.05);
  height: 10px;
  border-radius: 5px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #00bcd4);
  border-radius: 5px;
  transition: width 1s ease-in-out;
}

.stat-card p {
  font-size: 0.95rem;
  color: #ccc;
}
