/* ======= FOOTER STYLING ======= */
.footer {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle glowing gradient circle background */
.footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, #ff007a 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.footer-about,
.footer-social,
.footer-contact {
  flex: 1 1 300px;
  margin: 20px;
}

.footer h2,
.footer h3 {
  color: #ff007a;
  margin-bottom: 15px;
}

.footer p {
  color: #ccc;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff007a;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ff007a;
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 0, 122, 0.4);
}

/* Contact Section */
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.footer-contact i {
  color: #ff007a;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  color: #888;
  font-size: 0.85rem;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}
