/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 40px 0;
  background: #f8f9fa;
}

/* Title */
.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtitle */
.gallery-subtitle {
  color:black;
    font-size: 2.2rem;
  margin-bottom: 40px;
}

/* Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 120, 130, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-overlay i {
  color: #fff;
  font-size: 28px;
}

/* Hover Effects */
.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}