.scroll-left {
  height: 50px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #ffffff, #f8f9fa);
  color: #111827;
  border: 1px solid #e5e7eb;
  margin: 50px 0;
  border-radius: 9999px; /* fully rounded */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.scroll-left p {
  position: absolute;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 50px;
  color: #1f2937;
  transform: translateX(100%);
  animation: scroll-left 35s linear infinite;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Optional: hover effect */
.scroll-left:hover p {
  animation-play-state: paused;
  color: #2563eb;
  transition: color 0.3s ease;
}


.blur-4{
    filter:blur(10px);   
}