.stats-section {
  max-width: 1160px;
  margin: 0 auto;
  font-family: 'Inter', Arial, sans-serif;
}

.stat-card {
  border-radius: 18px;
  /* box-shadow: 0 4px 24px rgba(38, 66, 103, 0.11); */
  padding: 20px 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* border: 1px solid black; */
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(250, 117, 226, 0.3), 0 4px 20px rgba(127, 216, 255, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  color: #67c1fa;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.stat-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stat-card {
    padding: 30px 12px;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-title {
    font-size: 0.95rem;
  }
}
