.timeline-section {
  background: #000;
  color: #fff;
  margin: 0 auto;
  padding: 50px 0px 70px 0px;
}
.timeline-section .title {
  font-family: "Lato";
  color: #fff;
  font-size: 46px;
  margin-bottom: 30px;
}
.timeline-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.timeline-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #444;
}
.timeline-track {
  display: flex;
  gap: 0px;
  transition: transform 0.45s ease;
  /*cursor: grab;*/
  user-select: none;
}
.timeline-item {
  flex-shrink: 0;
  padding: 0 40px 18px 40px;
  color: #aaa;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  font-size: 20px;
  border-bottom: 3px solid transparent;
  transition: all 0.5s ease-in-out; 
}
.timeline-item.active {
  color: #fff;
  border-bottom: 3px solid #ec6521;
}
.timeline-item.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 4px;
  background: orange;
}
.timeline-section .content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.timeline-section .content-image {
  background: transparent;
  min-height: 50px;
  padding: 0px;
  border-radius: 20px;
  
}
.timeline-section .content-image img {
  width: 480px;
  border-radius: 20px;
  background-color: #fff;
  border: 10px solid #fff;
}
.content-text {
 
}
.timeline-section #eventTitle {
  margin-bottom: 15px;
}
.timeline-section .content-text h2 {
  font-size: 30px;
  color: #fff;
  font-family: "Lato";
}
.imeline-section .content-text p {
  color: #bbb;
  max-width: 480px;
  line-height: 1.6;
}
/* 📱 Mobile */
@media (max-width: 768px) {
  .timeline-section {
    padding: 30px 20px 60px 20px;
  }
  .timeline-section .content {
    flex-direction: column;
    text-align: center;
    gap: 45px;
  }
  .timeline-section .timeline-track {
    
  }
  .timeline-section .content-image img {
    /*width: 220px;*/
  }

  .timeline-item {
    flex-shrink: 0;
    padding: 0 20px 12px 20px;
    color: #aaa;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    font-size: 18px;
    border-bottom: 3px solid transparent;
    transition: all 0.5s ease-in-out; 
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.timeline-section .fade-in-left {
  animation: fadeInLeft 1s ease forwards;
  word-break: break-word;
}
.timeline-section .timeline-wrapper {
  position: relative;
  overflow: hidden; /* 👈 important */
  margin-bottom: 60px;
}


