 .gallery-section {
  background: #f4fafc; /* soft clean background to match site */
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3b4c;
}

.section-title p {
  color: #47545f;
  font-size: 1rem;
}
.gallery-card {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 300px; /* Fixed height for all cards */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card img {
  width: 100%;
  height: 100%; 
  transition: transform 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.gallery-card:hover img {
  transform: scale(1.07);
}


.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.gallery-card:hover img {
  transform: scale(1.07);
}

/* Responsive adjustments (optional) */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
  .section-title p {
    font-size: 0.95rem;
  }
}

