.tech-marquee-container {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.marquee {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.marquee-top {
  top: 0;
}

.marquee-bottom {
  bottom: 0;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  width: max-content;
  flex-shrink: 0;
}

/* Top marquee (leftward scroll: start from right) */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-247%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(229%);
  }
}

.marquee-left .marquee-content.animate-left {
  animation: scroll-left 150s linear;
}

.marquee-right .marquee-content.animate-right {
  animation: scroll-right 150s linear;
}


.marquee-content img {
  height: 36px;
  width: auto;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color:rgba(128, 128, 128, 0.048);
}

.marquee-content img:hover {
  transform: scale(1.15);
  opacity: 1;
}
