.timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
  }

  .timeline .step {
    display: flex;
    align-items: center;
  }

  .timeline .circle {
    background-color: #9C27B0;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 10px rgba(156, 39, 176, 0.2);
    cursor: pointer;
  }

  .circle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 16px rgba(156, 39, 176, 0.3);
  }

  .timeline .step .content{
    margin-left: 20px;
    border-bottom: 2px solid #9C27B0;
    padding-bottom: 5px;
  }

  .timeline .step .title {
    font-weight: 700;
    color: #9C27B0;
    font-size: 18px;
  }

  .timeline .year {
    color: #FFB74D;
    font-weight: bold;
  }

  /* Optional animation on load */
  .timeline .step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.5s ease forwards;
  }

  .step:nth-child(1) {
    animation-delay: 0.1s;
  }

  .step:nth-child(2) {
    animation-delay: 0.3s;
  }

  .step:nth-child(3) {
    animation-delay: 0.5s;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }