.timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 60px;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #4f46e5, #9333ea);
}

/* Timeline Item */
.timeline-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
}

/* Dot */
.timeline-dot {
  width: 20px;
  height: 20px;
  background: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(79,70,229,0.2);
}

/* Icon inside dot */
.timeline-dot .icon {
  font-size: 10px;
}

/* Content Box */
.timeline-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  max-width: 600px;
}

/* Date */
.timeline-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
  display: block;
}

/* Scroll Animation */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-container {
    padding-left: 40px;
  }

  .timeline-content {
    max-width: 100%;
  }
}