

.facility-container {
  padding: 5rem;
}

.facility-section {
    padding-bottom: 12rem;
    max-width: 1000px;
    margin: auto;
}

.facility-section h2 {
  color: #086483;
  margin-bottom: 1rem;
 /* border-left: 5px solid #086483;*/
  padding-left: 10px;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.img-box {
  flex: 1 1 250px;
  overflow: hidden;
  border-radius: 8px;
 /* background: #ccc;*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-box img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.img-box:hover img {
  transform: scale(1.05);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .image-gallery {
    flex-direction: column;
  }
}
