.custom-footer {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

/* ===== Banner Section ===== */
.footer-banner {
  position: relative;
}

.footer-banner img {
  width: 100%;
  display: block;
}

/* ===== Overlapping Logo ===== */
.footer-logo {
  position: absolute;
  left: 50%;
  bottom: -70px;   /* Controls overlap */
  transform: translateX(-50%);
  z-index: 10;
}

.footer-logo img {
  width: 160px;
  height: auto;
}

/* ===== Bottom Section ===== */
.footer-bottom {
  padding-top: 100px;  /* space for overlapped logo */
  padding-bottom: 30px;
}

/* ===== Social Icons ===== */
.footer-social {
  margin-bottom: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  border-radius: 50%;
  background: #f26522;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #d94e10;
}

/* ===== Copyright ===== */
.copyright {
  font-size: 20px;
  font-weight: bold;
  color: #f26522;
  margin: 0;
}

/* ============================= */
/* ========= Responsive ======== */
/* ============================= */

@media (max-width: 768px) {

  .footer-logo img {
    width: 120px;
  }

  .footer-logo {
    bottom: -55px;
  }

  .footer-bottom {
    padding-top: 80px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .copyright {
    font-size: 14px;
    padding: 0 15px;
  }
}