/* SECTION BACKGROUND */
.gallery-section {
  padding: 60px;
}

.soontext {
  font-family: "GraphikLight", sans-serif !important;
  text-align: justify;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.gallery-card {
  height: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6f7f78, #3f5a50);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

/* TEXT */
.gallery-card p {
  font-family: "GraphikLight", sans-serif !important;
  color: #fff;
  font-size: 14px;
  text-align: start;
  letter-spacing: 1px;
}

/* HOVER EFFECT */
.gallery-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1700px) {
  .gallery-section {
    padding: 200px;
  }
}

/* 📲 TABLET */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .gallery-section {
    padding: 40px;
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .gallery-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .gallery-section {
    padding: 20px;
  }

  .gallery-card {
    height: 320px;
    width: 290px;
  }
}
