/* Start custom CSS for html, class: .elementor-element-e9209bc *//* ===== Footer Wrapper ===== */
.sj-footer {
  background: #000000;
  padding: 60px 20px 40px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

/* Inner layout */
.sj-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo */
.sj-footer-logo img {
  width: 120px;
  height: auto;
  border-radius: 50%;
}

/* Copyright text */
.sj-footer-copy {
  font-size: 14px;
  opacity: 0.8;
  text-align: center;
  flex: 1;
}

/* Social Icons */
.sj-footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sj-footer-social-icons .sj-icon {
  font-size: 20px;
  color: #ffffff;
  opacity: 0.9;
  transition: 0.25s ease;
  display: inline-block;
}

.sj-footer-social-icons .sj-icon i {
  font-weight: 300;
}

.sj-footer-social-icons .sj-icon:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .sj-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .sj-footer-social-icons {
    justify-content: center;
    margin-top: 12px;
  }

  .sj-footer-copy {
    margin: 10px 0;
  }
}/* End custom CSS */