/* Modern Timeline Styles for Development Process */
.modern-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}
.modern-timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
  transition: box-shadow 0.3s;
}
.modern-timeline .timeline-item:hover {
  box-shadow: 0 8px 32px rgba(26,42,68,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}
.modern-timeline .timeline-dot {
  min-width: 48px;
  min-height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,215,0,0.15);
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
  transition: background 0.3s, color 0.3s;
}
.modern-timeline .timeline-dot span {
  display: block;
}
.modern-timeline .timeline-content {
  background: rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26,42,68,0.06);
  flex: 1;
  position: relative;
  z-index: 1;
}
.modern-timeline .timeline-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.modern-timeline h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.modern-timeline p {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .modern-timeline .timeline-item {
    flex-direction: column;
    align-items: stretch;
  }
  .modern-timeline .timeline-dot {
    margin-bottom: 1rem;
    margin-right: 0;
    align-self: flex-start;
  }
  .modern-timeline .timeline-content {
    padding: 1rem;
  }
}
