/* Start custom CSS for html, class: .elementor-element-b6ca9f8 *//* ==============================
   ✅ FOOTER SECTION
============================== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 45px 0 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* ✅ Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  flex-wrap: wrap;
  gap: 25px;
}

/* ✅ Logo + Brand */
.footer-brand-box img {
  width: 160px;
  margin-bottom: 10px;
}

.footer-brand {
  font-size: 28px;
  font-weight: 700;
  color: #d7522d;
  margin-bottom: 8px;
}

/* ✅ Taglines */
.footer-tagline {
  font-size: 14px;
  color: #eee;
  white-space: nowrap;  /* ✅ single line always */
  margin-bottom: 4px;
}

.footer-subtagline {
  font-size: 14px;
  color: #ddd;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* ✅ Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #d7522d;
}

/* ✅ Social Icons */
.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: #fff;
  font-size: 22px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #d7522d;
  transform: translateY(-3px);
}

/* ✅ Bottom Bar */
.footer-bottom {
  margin-top: 35px;
  padding-top: 12px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 13px;
}

/* ==============================
   ✅ RESPONSIVE DESIGN
============================== */

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-brand-box img {
    width: 140px;
  }

  .footer-brand {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .footer-brand-box img {
    width: 110px;
  }

  .footer-brand {
    font-size: 22px;
  }

  .footer-tagline,
  .footer-subtagline {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .footer-container {
    padding: 0 5%;
  }

  .footer-brand {
    font-size: 20px;
  }
}/* End custom CSS */