.footer {
  position: relative;
  background: url("../logo/footer.jpeg") no-repeat center center / cover;
  background-attachment: fixed;
  padding: 80px 8% 50px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.footer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* dark overlay */
  z-index: 1;
}

.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2; /* content above overlay */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  color: #f9b233;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column p,
.footer-column ul li a {
  color: #eee;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f9b233;
}

.social-icons a {
  color: #f9b233;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}
