.gallery-section {
  background: #f8f9fa;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* OPTIONAL OVERLAY */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 72, 116, 0.4);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(44, 72, 116, 0.35);
}

#imageModal .modal-content {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
}

#imageModal .modal-body {
  position: relative;
}


.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
