/* roadmap.css */

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ========== HERO / TITLE AREA ========== */
.roadmap-section {
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.roadmap-title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}

.roadmap-description {
  font-size: 1.2rem;
}

/* ========== TIMELINE SECTION ========== */
.timeline-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

/* 
  Center the timeline container with a 1200px max width.
  This ensures both heading and content align under the same block.
*/
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline-heading {
  font-size: 32px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 40px;
  text-align: center;
}

/* Remove default list styling */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Vertical line running through the timeline */
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #dddddd;
}

/* Each timeline item */
.timeline li {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}

/* Circle marker for each quarter */
.timeline li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 4px;
  width: 18px;
  height: 18px;
  background-color: #a18cd1;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #a18cd1;
}

/* Quarter heading (date) */
.timeline-date {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #6a1b9a;
  margin-bottom: 8px;
}

/* Descriptive text under each date */
.timeline-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #444444;
}

/* Ensure last item has no extra margin */
.timeline li:last-child {
  margin-bottom: 0;
}
