/* STEP Circle Animation */
.step-circle {
  transition: all 0.5s ease;
}

.step-circle.active {
  content: url('https://mn-sekizai.com/wp-content/uploads/circle_blue_filled.svg');
  transform: scale(1.15);
}

.step-text {
  transition: color 0.6s ease, text-shadow 0.6s ease;
}

.step-text.active {
  color: #ffffff !important;
}

.step-text.active h3,
.step-text.active p {
  color: #ffffff !important;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.8));
  }
}
