/* Gallery CSS (galleryback.css) */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gallery-item {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-label {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
  transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-item-label {
  bottom: 0;
}

.gallery-item-label h3 {
  margin-bottom: 10px;
}

.gallery-item-label .btn {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
}

.gallery-item-label .btn:hover {
  background-color: #2980b9;
}

/* Footer CSS */
.ftco-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
