.footer {
  background: #0f172a;
  color: white;
  margin-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  padding: 70px 8%;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: white;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 12px;
  color: #cbd5e1;
  line-height: 1.7;
}
.footer-column ul li i {
  color: #25a888;
  width: 22px;
}
.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}
.footer-column a:hover {
  color: #25a888;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-logo .logo-icon {
  width: 15%;
  height: 15%;
}
.footer-logo .logo-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.footer-logo h3 {
  color: white;
  margin-bottom: 3px;
}
.footer-logo span {
  color: #94a3b8;
  font-size: 13px;
}

.logo-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25a888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.8;
}

.social-media {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-media a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.social-media a:hover {
  background: #25a888;
  transform: translateY(-4px);
}
.social-media a i {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer {
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .social-media {
    justify-content: center;
  }
}/*# sourceMappingURL=footer.css.map */