/* Background Gradient */
footer {
  background: #ffffff;
  color: rgb(0, 0, 0);
  padding: 3rem 2rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2f1dd7;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #444;
  color: #888;
}


    /* Reveal animation */
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .footer-reveal {
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .footer-reveal-delay-1 { animation-delay: 0.2s; }
    .footer-reveal-delay-2 { animation-delay: 0.4s; }
    .footer-reveal-delay-3 { animation-delay: 0.6s; }
    .footer-reveal-delay-4 { animation-delay: 0.8s; }