/* TIMELINE CONTAINER */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

/* REMOVED VERTICAL LINE */
.timeline:before {
  display: none;
}

/* TIMELINE ITEM */
.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
  opacity: 0; /* Initially hidden for animation */
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

/* FADE-IN ANIMATION */
.timeline > li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TIMELINE DATE */
.timeline .timeline-time {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: black; /* Deep Navy Blue */
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

/* REMOVED CIRCLE ICON */
.timeline .timeline-icon {
  display: none;
}

/* TIMELINE BOX */
.timeline .timeline-body {
  background: #222; /* Light Gray-Blue */
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

/* HOVER EFFECT */
.timeline .timeline-body:hover {
  transform: translateY(-5px);
}

/* TITLE */
.timeline .timeline-body h4 {
  margin-top: 0;
  font-size: 20px;
  font-weight: bold;
  color: white; /* Deep Navy Blue */
}

/* DESCRIPTION */
.timeline .timeline-body p {
  color: #ffc107;
  font-size: 16px;
}
