.timeline-wrapper {
    position: relative;
    padding-left: 35px;
  }

  .timeline-line {
    position: absolute;
    left: 10px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, white, transparent);
    background-size: 100% 200%;
    animation: lightFlow1 3s linear infinite;
  }

  @keyframes lightFlow1 {
    0% {
      background-position: 0% -100%;
    }

    100% {
      background-position: 0% 200%;
    }
  }


  .timeline-item {
    position: relative;
    padding: 20px 0;
    margin-left: 50px;
    border-bottom: 2px solid #17a2b8;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .timeline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #ff4081;
  }

  .timeline-item::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #17a2b8;
    transition: background-color 0.3s;
  }

  .timeline-item:hover::before {
    background-color: #ff4081;
  }

  .timeline-content {
    padding: 15px;
    background: linear-gradient(45deg, #000 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #1d1d1d;
  }

  .timeline-content h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }

  .timeline-item:hover .timeline-content h5 {
    color: #ff4081;
  }


  .timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 10px;
  }

  .timeline-content .fs-6 {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 8px;
  }

  .timeline-icon {
    position: absolute;
    left: -40px;
    top: 20px;
    transition: transform 0.4s ease-in-out, color 0.3s ease;
    color: #17a2b8;
  }

  .timeline-item:hover .timeline-icon {
    transform: scale(1.2) rotate(360deg);
    color: #ff4081;
  }

  .timeline-icon i {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
  }

  .timeline-icon:hover i {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .timeline-item {
    display: flex;
    align-items: center;
  }

  .timeline-item .timeline-icon {
    margin-right: 20px;
  }

  .timeline-item .timeline-content {
    flex: 1;
  }

  .timeline-item {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .timeline-item .timeline-icon {
    position: static;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .timeline-item .timeline-content {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
  }

  .timeline-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
  }