.timeline-wrapper {
  position: relative;
  padding-left: 0px; /* space for line + dot + content */
}

/* Removed this block to prevent full line:
.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  width: 3px;
  height: 100%;
  background-color: #e0e0e0;
  z-index: 0;
}
*/

/* Timeline container */
.timeline {
  display: flex;
  flex-direction: column;
}

/* Each item appears after 100px line */
.timeline-item {
  position: relative;
  padding-left: 90px; /* space between dot and content */
  margin-top: 100px; /* gives you 100px of line before dot */
}

/* Add this: vertical line for each item */
.timeline-item::before {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 60px;
  width: 3px;
  background-color: #e0e0e0;
  z-index: -1; /* 👈 sends line behind dot and content */
}


/* Perfectly centered dot */
.timeline-dot {
  width: 14px;
  height: 14px;
  background-color: var(--secondary-color);
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 60px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px #e0e0e0;
  z-index: 1;

}

/* Content next to the dot */
.timeline-content {
  padding-left: 0;
}

.timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #000;
}
.timeline-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 15px;
  margin: 0;
  color: var(--ar-body-text);
}
