.marquee-container {
  background: linear-gradient(to right, #0054a6, #13a9db);
  color: #fff;
  overflow: hidden;
  padding: 8px 8px;
  position: stic;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0px;
}

.marquee-text {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.marquee-content {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-icon {
  margin-right: 10px;
  color: #ffc107;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
