
.timeline-container {
  position: relative;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline-progress-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #015AA9, #00ABE3);
  z-index: 1;
  transition: height 0.3s ease-out;
}
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px 0;
  position: relative;
  z-index: 2;
}
.timeline-item.right {
  flex-direction: row-reverse;
}
.timeline-content {
  width: 45%;
  position: relative;
}
.timeline-image {
  width: 45%;
  text-align: center;
}
.timeline-image img {
  max-width: 80%;
  border-radius: 8px;
}
.timeline-number {
  position: absolute;
  top: -40px;
  font-size: 80px;
  font-weight: bold;
  color: rgba(77, 131, 229, 0.08);
}
.timeline-title {
  font-family: "League Spartan", sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
}
.timeline-sub-title {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}
.timeline-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }
  .timeline-content, .timeline-image {
    width: 100%;
    padding: 0 10px;
  }
  .timeline-progress-line {
    left: -10px;
  }
}
