.footer {
  background-color: #010127; /* Navy blue */
  color: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box {
  flex: 1;
  min-width: 220px;
}

.footer-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-box p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #cccccc;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #4caf50; /* Highlight on hover */
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaaaaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-box {
    text-align: center;
  }
}

