.rotate-svg {
  width: 100%;
  height: 100%;
  animation: rotateCircle 14s linear infinite;
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-rotate-slow {
  animation: slowRotate 40s linear infinite;
}


.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(251, 146, 60, 0.5);
  color: #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-rotate-slow {
  animation: rotateSlow 35s linear infinite;
}

