.full-banner-section {
  position: relative;   /* makes bottom anchoring possible */
}

.scroll-text {
  position: absolute;
  bottom: 0;            /* always stays at bottom of banner */
  left: 0;
  width: 100%;
  height: 30px;

  background: linear-gradient(90deg, #1c3f94 60%, #ffffff);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* z-index: 50; */
}


.scroll-text span {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: #ebedf2;
  animation: scroll 25s linear infinite;
}

/* Smooth scrolling animation */
@keyframes scroll {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}
