.fixed-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e3a8a; /* navy blue or any color */
  padding: 10px 0;
  z-index: 9999;
  overflow: hidden;
  white-space: nowrap;
}

.animate-scroll {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
  font-size: 16px;
  font-weight: 500;
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
