
/* CARD */
.timeline-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}



/* TABLE */
.timeline-table {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.timeline-table thead {
  background: var(--primary-blue);
  color: #fff;
}

.timeline-table th {
  padding: 14px;
  text-align: left;
  font-weight: 600;
}

/* BODY */
.timeline-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  color: #444;
  vertical-align: top;
}

/* YEAR COLUMN */
.timeline-table td:first-child {
  font-weight: 600;
  color: var(--primary-blue);
  width: 120px;
}

/* ROW HOVER */
.timeline-table tbody tr {
  transition: 0.3s;
}

.timeline-table tbody tr:hover {
  background: #f1f4ff;
  transform: scale(1.01);
}

/* ALTERNATE ROW */
.timeline-table tbody tr:nth-child(even) {
  background: #fafbff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .timeline-card {
    padding: 20px;
  }

  .timeline-table th,
  .timeline-table td {
    padding: 10px;
    font-size: 14px;
  }

}