/* Timeline for Qualifications (used in About page) */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: #e9ecef;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
  }
  
  .timeline-icon {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: var(--primary-color);
    color: white;
  }
  
  .timeline-icon i {
    font-size: 1.2rem;
  }
  
  .timeline-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  