.stats-section {
  /* background-color: #1a1f37; */
  padding: 10px 0;
}
.stats-card {
  /* background-color:#1E2130; */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.02);
  /* background-color:#1e21305b; */
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  margin: 10px 0;
  text-align: center;
  transition: transform 0.3s;
}
.stats-card:hover {
  transform: translateY(-5px);
}
.stats-number {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.stats-text {
  color: white;
  font-size: 1rem;
}