 /* İSTATİSTİKLER*/
  .statistics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 50px 0;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}

.stat {
  background: linear-gradient(135deg, #1a1a1a, #222);
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  width: 150px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  cursor: default;
  transition: all 0.5s ease-in-out;
  transform: translateY(50px);
  opacity:1;
  margin-bottom:50px;
}



.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

