.custom-footer {
  background: #2f3742;
  color: #fff;
  padding: 60px 40px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LEFT */
.footer-left h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-left li {
  margin-bottom: 12px;
}

.footer-left a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

.footer-left a:hover {
  text-decoration: underline;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.footer-right .copyright {
  font-size: 14px;
}

/* SCROLL BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #e6e6e6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#scrollTopBtn svg {
  display: block;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    text-align: right; /* ✅ FIX */
    width: 100%;       /* ensures full width */
  }
}

@media (max-width: 600px) {
  .custom-footer {
    padding: 40px 20px;
  }

  #scrollTopBtn {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 900px) {
  .footer-right {
    text-align: right;
    width: 100%;
  }

  .footer-right img,
  .footer-right svg {
    display: block;
    margin-left: auto;
  }
}