/* Tech carousel wrapper */
.tech-carousel-wrapper {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}

/* Flex container for items */
.tech-carousel {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 60px; /* spacing between items */
}

/* Each logo + name */
.tech-item {
  flex: 0 0 auto; /* prevents shrinking */
  width: 120px; /* adjust size */
  text-align: center;
}

.tech-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.tech-item p {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* Optional: smooth scroll for auto sliding later */
.tech-carousel-wrapper {
  scroll-behavior: smooth;
}