.feature-ticker {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #001f4d, #003c8f, #001f4d);
  padding: 14px 0;
  position: relative;
  border-top: 1px solid rgba(0, 123, 255, 0.4);
  border-bottom: 1px solid rgba(0, 123, 255, 0.4);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 25s linear infinite;
}

.ticker-track span {
  margin: 0 18px;
  padding: 10px 22px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 153, 255, 0.4);
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.25);
}

.ticker-track span:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

