.footer-section {
  background: #015A99;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.5rem;
  background: white; /* Green gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.footer-description {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links{ display:flex; gap:15px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #015A99; /* brand blue icons */
  background: #ffffff; /* white background */
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,.3);
  background: #37B34A; /* brand green hover */
  color: #ffffff;
}


.footer-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 10px;
}
.footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: .95rem;
  transition: color .3s ease, padding-left .3s ease;
}
.footer-menu a:hover {
  color: #37B34A; /* Brand green hover */
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 25px;
}
.copyright {
  color: #ffffff;
  margin: 0;
  font-size: .9rem;
}
.footer-contact {
  text-align: right;
}
.contact-item {
  color: #ffffff;
  font-size: .9rem;
}

@media (max-width:768px) {
  .footer-contact {
    text-align: left;
    margin-top: 15px;
  }
}