.footer {
  background: #13110c;
  color: #000;

  border-top: 1px solid #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

/* .footer-section {
  flex: 1; 
} */
.footer-section img{
    width: 230px;
}
.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer-logo {
  max-width: 220px;
  height: auto;
}

.footer-address,
.footer-contact {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.footer-contact strong {
  font-weight: 600;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #034EA1;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 15px;
}
.footer-bottom p {
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 30px;
}
.footer-text p{
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.copyright-mh{
    color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
}
/* Responsive */
@media (max-width: 769px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-logo {
    max-width: 180px;
  }
  .footer-left{
    text-align: center;
  }
}
