footer {
  background-color: #080808;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer h5 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

footer p {
  color: #ddd;
  line-height: 1.8;
  font-size: 0.95rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.gallery img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #bbb;
  font-size: 0.9rem;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 1s;
}