.Gnutti.timeslider {
  padding-top:120px;
  border-radius: 6px;
}

.Gnutti-slider {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  /* remove transition line entirely */
  /* transition: transform 0.6s cubic-bezier…; */
}

/* 3) Animate */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.Gnutti-slider {
  display: flex;
  gap: 0;
  will-change: transform;
  position: relative;
  z-index: 2;
  height: 100%;
  user-select: none;
  transition: none !important; /* <-- override any accidental transitions */
}





.Gnutti {
  background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
  padding: 20px;
}

.Gnutti-timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;

}

.Gnutti-timeline-title {
  text-align: center;
  margin-bottom: 4rem;
}
.Gnutti-timeline-content h3 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.Gnutti-timeline-title span {
  display: block;
  color: #69f5ff;
  font-size: 0.875rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 300;
}

.Gnutti-timeline-title h1,
.Gnutti-timeline-title h2,
.Gnutti-timeline-title h3,
.Gnutti-timeline-title h4,
.Gnutti-timeline-title h5,
.Gnutti-timeline-title h6 {
  color: white;
}

.Gnutti-slider-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 120px;
  height: 400px;
  width: 100%;
}

.Gnutti-slider-container::before,
.Gnutti-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.Gnutti-slider-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(15, 20, 25, 1), rgba(26, 35, 50, 0));
  width: 20%;
}

.Gnutti-slider-container::after {
  right: 0;
  background: linear-gradient(to left, rgb(15, 20, 25, 1), rgba(26, 35, 50, 0));
  width: 20%;
}

.Gnutti-timeline-line {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #69f5ff 0px,
    #69f5ff 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 1;
}

.Gnutti-slider {
      display: flex;
  gap: 40px
      gap: 0;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
      position: relative;
      z-index: 2;
      height: 100%;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
}

.Gnutti-timeline-item {
  flex: 0 0 330px;
  padding: 0 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 330px;
  margin-left: 30px;
}

.Gnutti-timeline-dot {
  width: 12px;
  height: 12px;
  background: #69f5ff;
  border-radius: 50%;
  position: absolute;
  top: 22.5px;
  left: 0;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 20px rgba(105, 245, 255, 0.6);
}

.Gnutti-timeline-connector {
  position: absolute;
  top: 30px;
  left: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  z-index: 2;
}

.Gnutti-timeline-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 40px;
  background: #69f5ff;
}

.Gnutti-timeline-connector::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 18px;
  height: 20px;
  border-left: 2px solid #69f5ff;
  border-bottom: 2px solid #69f5ff;
  border-bottom-left-radius: 15px;
}

.Gnutti-timeline-end-dot {
  position: absolute;
  bottom: 15px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: #69f5ff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(105, 245, 255, 0.6);
}

.Gnutti-timeline-content {
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 75px;
  width: 260px;
  position: relative;
  margin-left: 25px;
}

.Gnutti-timeline-item .Gnutti-timeline-content--year {
  color: #69f5ff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.Gnutti-timeline-item p {
  color: #e1e1e1;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "IBM Plex Sans", sans-serif;
  
}

.Gnutti-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.Gnutti-nav-btn {
  background: rgba(105, 245, 255, 0.1);
  border: 2px solid #69f5ff;
  color: #69f5ff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.Gnutti-nav-btn:hover {
  background: #69f5ff;
  color: #1a2332;
  transform: translateY(-2px);
}

.Gnutti-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive adjustments - keep item width consistent */
@media (max-width: 1024px) {
  .Gnutti-slider-container {
    padding: 0px 20px;
  }

  .Gnutti-slider-container {
    height: 380px;
  }

  .Gnutti-timeline-title h1 {
    font-size: 2.2rem;
  }

  .Gnutti-timeline-item {
    margin-top: 31px;
  }
}

@media (max-width: 768px) {
  .Gnutti-timeline-item {
    margin-top: 0px;
  }

  .Gnutti-timeline-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .Gnutti-slider-container {
    height: 360px;
    padding: 1.5rem 0 3rem 0;
  }

  .Gnutti-slider-container::before,
  .Gnutti-slider-container::after {
    width: 20px;
  }

  .Gnutti-timeline-title h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .Gnutti-timeline-title span {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .Gnutti-timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .Gnutti-timeline-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .Gnutti-nav-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .Gnutti-timeline-dot {
    top: 30px;
  }

  .Gnutti-nav-buttons {
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .Gnutti-timeline-content {
    margin-top: 79px;
  }
}

@media (max-width: 480px) {
  .Gnutti-slider-container {
    height: 340px;
  }

  .Gnutti-timeline-title h1 {
    font-size: 1.5rem;
  }

  .Gnutti-timeline-item h3 {
    font-size: 1.2rem;
  }

  .Gnutti-timeline-item p {
    font-size: 0.85rem;
  }

  .Gnutti-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .Gnutti-slider-container::before,
  .Gnutti-slider-container::after {
    width: 15px;
  }
}
