.footer {
  position: relative;
  width: 100%;
  background-image: url("/assets/images/home/footr.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 70px 0;
  display: flex;
  align-items: center;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}

.footer .footer-bg-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.footer .footer-container {
  position: relative;
  z-index: 2;
  padding: 35px 15px;
}
.footer .footer-bg-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.footer .footer-container {
  position: relative;
  z-index: 2;
  padding: 35px 15px;
}
.footer .footer-logo-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.footer .footer h5 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
  color: #111111;
}
.footer .footer-links {
  padding-left: 25px;
}
.footer .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .footer-links li {
  margin-bottom: 3px;
}
.footer .footer-links a {
  text-decoration: none;
  color: #111111;
  font-size: 17px;
  transition: 0.3s ease;
}
.footer .footer-links a:hover {
  color: #2864df;
}
.footer .footer-contact {
  padding-left: 25px;
}
.footer .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer .contact-item p {
  margin: 0;
  color: #111111;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.footer .contact-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dce5fa;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.footer .footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .social-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .social-icons a {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #2864df;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}
.footer .social-icons a:hover {
  background: #111111;
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .footer {
    min-height: auto;
  }
  .footer .footer-container {
    padding: 45px 25px;
  }
  .footer .footer-logo-col {
    margin-bottom: 30px;
  }
  .footer .footer-links,
  .footer .footer-contact {
    padding-left: 0;
  }
  .footer .footer-social {
    margin-top: 30px;
  }
  .footer .social-icons {
    flex-direction: row;
  }
  .footer .footer-bg-green,
  .footer .footer-bg-blue {
    opacity: 0.4;
  }
}

@media (max-width: 767px) {
  .footer .footer-container {
    padding: 40px 25px;
  }
  .footer .footer-logo-col {
    justify-content: center;
    margin-bottom: 35px;
  }
  .footer .footer-logo {
    width: 150px;
  }
  .footer .footer-links,
  .footer .footer-contact,
  .footer .footer-social {
    margin-bottom: 28px;
    text-align: center;
  }
  .footer .footer-links h5,
  .footer .footer-contact h5,
  .footer .footer-social h5 {
    margin-bottom: 15px;
  }
  .footer .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .contact-item {
    justify-content: center;
  }
  .footer .contact-item p {
    max-width: 300px;
    text-align: left;
  }
  .footer .footer-social {
    align-items: center;
    margin-bottom: 0;
  }
  .footer .social-icons {
    flex-direction: row;
  }
  .footer .footer-bg-green {
    width: 250px;
    height: 250px;
    right: -100px;
    top: -70px;
  }
  .footer .footer-bg-blue {
    width: 250px;
    height: 250px;
    right: -90px;
    bottom: -100px;
  }
}
