.footer {
  background: #13110c;
  color: #000;
  padding-top: 50px;
  border-top: 1px solid #eee;
}

footer .container-fluid {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 50px;
}

/* .footer-section {
  flex: 1; 
} */
.footer-section img{
    width: 100%;
}
.footer-left {
  width: 400px;
}

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

.footer-right {
  flex: 1;
}

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

.footer-address,
.footer-contact {
  font-size: 20px;
  font-weight: 300;
  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;
}
.footer-btn a{
  display: block;
  border: 1px solid #00B7AC;
  font-size: 21px;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  color: #00B7AC;
  text-decoration: none;
  font-weight: 300;
  margin-bottom: 20px;
}
/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  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;
}
.footer-links{
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}
.footer-links a{
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}
.footer-links a:after{
  content: '';
  height: 25px;
  width: 1px;
  background: #fff;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.footer-links a:last-child:after{
  display: none;
}
.copy-right{
  padding: 20px 0;
  margin-top: 20px;
}
.footer-address{
  margin-bottom: 0 !important;
}
.footer-btn-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 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;
  }
}
@media (max-width:767px){
  .footer .container-fluid{
  flex-direction: column;
  }
  .footer-left{
    width: 100%;
  }
  .footer-section img {
    width: 70%;
    display: block;
    margin: 0 auto;
}
.footer-links a {
  font-size: 12px;
}
.footer-btn{
  grid-template-columns: 1fr;
  margin-bottom: 15px;
}
.footer-btn a{
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-btn a:first-child{
  margin-bottom: 10px;
}
.footer-btn-grid a:first-child{
  margin: 0;
}
.footer-btn-grid{
  gap: 10px;
}
.footer-address, .footer-contact{
  font-size: 16px;
}
}