.timeline-modern {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 4px solid #7d75ff;
}
.timeline-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(125,117,255,0.08);
  margin-bottom: 32px;
  padding: 18px 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.timeline-card:hover {
  box-shadow: 0 6px 24px rgba(125,117,255,0.18);
  transform: translateY(-2px) scale(1.02);
}
.timeline-icon {
  width: 48px;
  height: 48px;
  background: #f6f6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  box-shadow: 0 2px 8px rgba(125,117,255,0.08);
}
.timeline-icon img {
  width: 28px;
  height: 28px;
}
.timeline-content {
  flex: 1;
}
.timeline-date {
  font-size: 0.95em;
  color: #7d75ff;
  font-weight: 600;
}
.timeline-card h3 {
  margin: 0 0 6px 0;
  font-size: 1.15em;
  font-weight: 700;
}
.timeline-card p {
  margin: 0;
  color: #474559;
}
.badge {
  font-size: 0.85em;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 8px;
  vertical-align: middle;
}
.badge-success { background: #d1fae5; color: #065f46; }
.badge-primary { background: #dbeafe; color: #1e40af; }
.badge-info { background: #e0f2fe; color: #0369a1; }
.badge-warning { background: #fef9c3; color: #92400e; }
@media (max-width: 991px) {
  .timeline-modern { margin-left: 0; padding-left: 0; border-left: none; }
  .timeline-card { flex-direction: column; align-items: flex-start; }
  .timeline-icon { margin-bottom: 10px; margin-right: 0; }
}