  html {
      scroll-behavior: smooth;
    }

    .slider-container {
      position: relative;
      max-width: 100%;
      height: 100vh;
      margin: auto;
      overflow: hidden;
      user-select: none;
    }



    .slider-image {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: none !important;
    }

    @media (max-width: 768px) {
      .slider-container {
        height: 65vh;
      }

    }


    .slider-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 4px;
      background-color: #FF5F00;
      /* Using secondary/orange-bright color */
      cursor: ew-resize;
      transition: none !important;
      z-index: 20;
    }

    .slider-handle {
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 28px;
      height: 28px;
      background-color: #FF5F00;
      /* Using secondary/orange-bright color */
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-weight: bold;
      cursor: grab;
      z-index: 40;
    }

    .slider-handle.dragging {
      cursor: grabbing;
    }

    .mobile-footer img {
      width: 150%;
    }

    @media (max-width: 768px) {
      /* #leftImage {
        transform: scale(1.3);
        transform-origin: center center;
      } */
    }


    .racesWrapper {
      overflow: hidden;
      position: relative;
      height: 70vh;
      /* bottom: -150px; */
    }

    .races {
      /* width: fit-content; */
      display: flex;
      gap: 100px;
      flex-wrap: nowrap;
      pointer-events: none;
      will-change: transform;
      /* margin-bottom: 250px; */
      margin-bottom: -50px;
    }

    .races h2 {
      flex-shrink: 0;
      margin-top: 90px;
      margin: 0;
      line-height: 1;
      will-change: transform;
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .races h2:last-of-type {
      /* background: #e1e1ff; */
      padding-left: 30px;
      margin-right: 30px;

    }

    .races h2 div {
      margin-top: 18px;
    }

    .races h2:last-of-type div {
      margin-right: 20px;
    }

    .races h2:first-of-type img {
      margin-left: 26px;
    }

    /* Mobile optimizations */
    @media (max-width: 768px) {
      .races h2 {
        font-size: 25vw;
        padding-right: 0.2em;
        padding-left: 0.2em;
      }
    }

    @media (max-width: 480px) {
      .races h2 {
        font-size: 20vw;
      }
    }

    .lightBG {
      background: #313143;
    }

    .space-20vh {
      height: 20vh;
    }

    .space-30vh {
      height: 30vh;
    }

    .space-50vh {
      height: 50vh;
    }

    .space-100vh {
      height: 100vh;
    }

    /* Timeline Indicator Styles */
    .timeline-container {
      position: relative;
      z-index: 30;
      padding: 8px 0;
    }

    .timeline-indicator {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #E5E7EB;
      border: 2px solid #D1D5DB;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: default;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      touch-action: none;
      -webkit-tap-highlight-color: transparent;
    }

    @media (max-width: 480px) {
      .timeline-indicator {
        width: 44px;
        height: 44px;
      }

      .timeline-container {
        padding: 12px 0;
      }
    }



    .timeline-indicator.active {
      background-color: #FF5F00;
      border-color: #FF5F00;
      transform: scale(1.15);
      box-shadow: 0 4px 12px rgba(255, 95, 0, 0.3);
    }

    .timeline-number {
      font-size: 18px;
      font-weight: 600;
      color: #374151;
      transition: color 0.3s ease;
    }

    .timeline-indicator.active .timeline-number {
      color: white;
    }

    /* Add connecting line between indicators */
    .timeline-indicator:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -24px;
      width: 12px;
      height: 2px;
      background-color: #D1D5DB;
      transform: translateY(-50%);
      transition: background-color 0.3s ease;
    }

    .timeline-indicator.active:not(:last-child)::after {
      background-color: #FF5F00;
    }




    /* hover border animation */
/* 
.shine-card2 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.shine-card2::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 400%;
  height: 400%;
  background: conic-gradient(
    from 0deg,
    #ff5f00,
    transparent 25%,
    #ff5f00 50%,
    transparent 75%,
    #ff5f00
  );
  z-index: 0;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
}

.shine-card2:hover::before {
  opacity: 1;
  animation: rotateBorder 2s linear infinite;
}

.shine-card2::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: white;
  border-radius: inherit;
  z-index: 1;
}

.shine-card2 > * {
  position: relative;
  z-index: 2;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
} */
