.elementor-440 .elementor-element.elementor-element-1b9f6b4{--display:flex;}.elementor-440 .elementor-element.elementor-element-36fae8d{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-36fae8d *//* GLOBAL FONT */
.footer {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(270deg, #000, #1a0000, #000);
  background-size: 600% 600%;
  animation: gradientMove 12s ease infinite;
  color: #fff;
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
}

/* 🔥 ANIMATED BACKGROUND */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🔥 MOVING LIGHT EFFECT */
.footer::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,0,0.3), transparent);
  top: 20%;
  left: -100px;
  animation: moveLight 8s linear infinite;
  filter: blur(60px);
}

@keyframes moveLight {
  0% { left: -100px; }
  100% { left: 100%; }
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* TEXT STYLING */
.footer-left, .footer-right {
  width: 30%;
}

.footer h3 {
  color: #ff2a2a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer p {
  color: #ccc;
  font-size: 14px;
  margin: 6px 0;
}

/* LOGO */
.footer-center {
  width: 30%;
  text-align: center;
}

.footer-center img {
  height: 95px;
  transition: 0.4s;
}

.footer-center img:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 0 25px red);
}

/* 🔥 SOCIAL PREMIUM */
.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #e50914;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 0 20px rgba(255,0,0,0.8);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  color: #888;
  font-size: 13px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-left,
  .footer-right,
  .footer-center {
    width: 100%;
  }

  .footer-center img {
    height: 75px;
  }
}/* End custom CSS */