* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pixeline-footer {
  position: relative;
  background: linear-gradient(135deg, #021b2f, #111f2e, #111f2e);
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
  font-family: "Poppins", sans-serif;
}

/* Animated Background */
.footer-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left, #111f2e),
    radial-gradient(circle at bottom right, #455c04, transparent 35%);
  animation: moveBg 8s linear infinite alternate;
  z-index: 1;
}

@keyframes moveBg {
  0% {
    transform: scale(1) translateY(0px);
  }

  100% {
    transform: scale(1.1) translateY(-20px);
  }
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding-bottom: 40px;
}

.footer-col {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #a8adae;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: #f9be17;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
  margin-left: 0px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #a8adae;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
}

/* Link Hover Effect */
.footer-col ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #f9be17;
  transition: 0.4s;
}

.footer-col ul li a:hover::before {
  width: 100%;
}

.footer-col ul li a:hover {
  color: #f9be17;
  transform: translateX(8px);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.footer-social a:hover {
  background: #f9be17;
  color: #000;
  transform: translateY(-6px) rotate(360deg);
  box-shadow: 0 0 15px #f9be17;
}

.footer-contact-info p {
  margin-bottom: 12px;
  color: #a8adae;
  font-size: 15px;
}

.footer-contact-info i {
  color: #f9be17;
  margin-right: 10px;
}

.footer-contact-info a {
  color: #a8adae;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact-info a:hover {
  color: #f9be17;
}

.footer-contact-info i {
  color: #f9be17;
  margin-right: 10px;
}
.address {
  line-height: 1.9;
  color: #a8adae;
  margin-bottom: 25px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #d6d6d6;
}

.newsletter-form button {
  width: 60px;
  border: none;
  background: #f9be17;
  color: #000;
  cursor: pointer;
  transition: 0.4s;
  font-size: 18px;
}

.newsletter-form button:hover {
  background: #fff;
  transform: scale(1.1);
}

.tagline {
  margin-top: 20px;
  font-size: 13px;
  color: #f9be17;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 22px 10px;
  font-size: 15px;
  color: #dbe7ea;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    gap: 40px;
  }

  .footer-col h3 {
    font-size: 22px;
  }

  .footer-logo img {
    width: 150px;
  }
}
