.scroll-text-bottom {
  position: fixed; /* ✅ FIXED to screen */
  bottom: 0; /* ✅ sticks to bottom */
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #1c3f94 65%, #f9f9f6 100%);
  overflow: hidden;
  padding: 8px 0;
  white-space: nowrap;
  z-index: 9999; /* ✅ stays above all content */
}

.scroll-text-bottom span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 35s linear infinite;
  font-size: 15px;
  font-weight: 500;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  } /* ✅ start off-screen */
  100% {
    transform: translateX(-100%);
  }
}
