.footer {
  background: #111;
  color: #ccc;
  padding: 4rem 2rem 2rem;
  font-family: "Poppins", sans-serif;
}

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

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-heading {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

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

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

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

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

.footer-address,
.footer-contact {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #808080;
}

.footer-bottom a {
  color: #04b97d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icons i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #aaa;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #fff;
}

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

  .footer-col {
    margin-bottom: 2rem;
  }

  .social-icons {
    align-items: left;
  }
}
