/* Counter Styles */
.counter-item {
  margin-bottom: 30px;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4CAF50; /* Πράσινο χρώμα */
  margin-bottom: 5px;
  display: inline-block;
  min-width: 80px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Animation Effects */
@keyframes counterPulse {
  0% { transform: scale(1); color: #4CAF50; }
  50% { transform: scale(1.05); color: #8BC34A; }
  100% { transform: scale(1); color: #4CAF50; }
}

.is-counting .counter {
  animation: counterPulse 0.7s ease infinite;
}

/* Gradient Text Effect (Προαιρετικό) */
.gradient-text {
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .counter {
      font-size: 2rem;
  }
}
