#technologies {
  padding: 100px 10%;
}

#technologies h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0077aa;
}

.tech-intro {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: center;
  line-height: 1.6;
  opacity: 0.85;
}

/* GRID - FIXNÉ BREAKPOINTY */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* tablet */
@media (max-width: 1100px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.tech-card {
  background: rgba(0,0,0,0.03);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* ANIMATION STATE */
.tech-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE WINDOW */
.tech-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #f5f5f5;
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* hover zoom */
.tech-card:hover img {
  transform: scale(1.05);
}

/* TITLE */
.tech-card h3 {
  padding: 15px;
  font-size: 1rem;
  color: #0077aa;
}

/* hover effect card */
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}