/*FOOTER SECTION STYLES*/

.footer {
  margin-top: 80px;
  background-color: #00307c;
  color: white;
  padding: 20px 0 0;
  width: 100%; /* Ensure full width */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 180px;

}

.footer-logo {
  width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: white;
}

.footer-heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
    color: white;
    font-size: 13px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.1s;
  color: white;
}

.footer-links a:hover {
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.social-icon {
  font-size: 18px;
  color: white;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #ccc;
}

.footer-email {
  font-size: 14px;
  color: white;
}

/* Copyright strip */
.footer-bottom {
  margin-top: 0px;
  padding: 15px 30px;
  background-color: #00307c;
  text-align: center;
  color: white;
  font-size: 14px;
}

/* MOBILE: Keep columns side-by-side (wraps if needed) */
@media (max-width: 768px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-column {
    flex: 1 1 45%;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}