.elementor-12009 .elementor-element.elementor-element-190339e{--display:flex;}@media(min-width:768px){.elementor-12009 .elementor-element.elementor-element-190339e{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-7a0f6d0 *//* Footer Base section */
.site-footer {
  background: linear-gradient(135deg, #0a1a2f, #123456);
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Footer Columns */
.footer-col {
  flex: 1 1 220px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid goldenrod;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  margin: 8px 0;
  line-height: 1.6;
}

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

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f1c40f;
}

/* Logo */
.footer-logo {
  margin-top: 10px;
  max-width: 120px;
}

/* Social Links */
.social-links {
  margin: 10px 0 15px;
}

.social-links a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #f1c40f;
}

/* Newsletter */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.newsletter button {
  padding: 10px;
  background: goldenrod;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #0a2a66;
}

.footer-divider {
  border: none;
  border-top: 2px solid #e0e0e0; /* grey line */
  margin: 10px auto 0;           /* keep it close to copyright */
  max-width: 1200px;             /* boxed layout */
}


/* Footer Bottom */
/* Footer Bottom Container */
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 0.9rem;
  color: #fff;
}

.footer-bottom-container a {
  color: #f1c40f;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-container a:hover {
  color: #fff;
}

/* Back to Top Button */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-size: 22px;
  background: #0073e6;
  color: #000;
  border: none;
  padding: 14px 18px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: all 0.3s, ease-in-out;
}
#backToTopBtn.show {
  display: block;
}

#backToTopBtn:hover {
  background: #005bb5;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .social-links {
    justify-content: center;
  }
}


/* ===== COMPREHENSIVE RESPONSIVE MEDIA QUERIES ===== */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }/* End custom CSS */