.timeline-container::-webkit-scrollbar {
  display: none;
}

.timeline-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 1rem 0;
}

.milestone-icon {
  width: 3rem;
  height: 3rem;
  transition: transform 0.3s ease;
}

.milestone-icon:hover {
  transform: scale(1.1);
}

.ship {
  transition: transform 0.5s ease-in-out;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

#timeline {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

#timeline .flex-none {
  transition: transform 0.3s ease;
}

#timeline .flex-none:hover {
  transform: translateY(-5px);
}


/* certifaction section */
.icon-wrapper {
    transition: transform 0.4s ease;
  }
  .card:hover .icon-wrapper {
    animation: bounce 1s infinite;
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }