/* ===== Footer Section Styling ===== */
footer {
  background: url('assets/images/banner-bg.jpg') no-repeat center center/cover;
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Dark overlay for readability */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(151, 84, 182, 0.5); /* semi-dark overlay */
  z-index: 0;
}

footer .container {
  position: relative;
  z-index: 1;
}

/* Company description */
footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

/* Section titles */
footer h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffcc00; /* golden heading */
  font-family: 'Playfair Display', serif;
  position: relative;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #00eaff; /* cyan underline */
  border-radius: 2px;
}

/* Quick Links */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 12px;
}

footer ul li a {
  color: #d1c365;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: #00eaff;
  padding-left: 5px;
  text-decoration: underline;
}

/* Social Icons */
footer .social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-right: 10px;
  font-size: 16px;
  color: #ffcc00;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background: #ffcc00;
  color: #0b1c39;
  transform: translateY(-3px) scale(1.1);
}

/* Contact info */
footer strong {
  color: #ffcc00;
  font-weight: 600;
}

/* Bottom copyright */
footer .col-lg-12.text-center {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 767px) {
  footer {
    text-align: center;
  }
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  footer .social-icons {
    margin-top: 15px;
  }
}
