.footer {
  background: linear-gradient(to right, #f5fbff 0%, #ffffff 100%);
  color: #000;
  padding: 60px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-section {
  flex: 1.5;
  /* min-width: 300px; */
}

.footer-logo-section img {
  width: 220px;
  height: 64px;
  vertical-align: middle;
}

.footer-logo-section h1 {
  display: inline-block;
  font-size: 28px;
  /* margin-left: 10px; */
  /* vertical-align: left; */
}

.footer-logo-section h3 {
  color: #03D382;
  margin-top: 30px;
}

.footer-logo-section p {
  line-height: 1.8;
  margin-top: 10px;
  max-width: 500px;
  text-align: justify;
}

.footer-links {
  flex: 0;
  min-width: 220px;
}

.footer-links h3 {
  background: linear-gradient(95.76deg, #03D382 -0.95%, #0171E7 116.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 18px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  position: relative;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  /* background-color: #03D382; */
  background: linear-gradient(95.76deg, #03D382 -0.95%, #0171E7 116.32%);
  transition: width .4s ease-out;
}
.footer-links ul li:hover a:after {
  width: 100%;
}



.footer-social {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-social h3 {
  background: linear-gradient(95.76deg, #03D382 -0.95%, #0171E7 116.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.footer-social-icons {
  margin-bottom: 30px;
}

.footer-social-icons img {
  max-width: 35px;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

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

.store-buttons img {
  width: 140px;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: left;
    text-align: left;
  }

  .footer-logo-section,
  .footer-links,
  .footer-social {
    padding: 20px 0;
    align-items: left;
    text-align: left;
  }

  .footer-links ul li {
    margin-bottom: 12px;
  }
}



.footer_logo{
  width: 100%;
}