/* Start custom CSS for html, class: .elementor-element-a9ec419 *//* FOOTER */
.footer {
  background: linear-gradient(135deg, #020617, #1e1b4b);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.footer-container {
  display: grid;
  gap: 30px;
}

/* LOGO */
.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

/* HEADINGS */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  color: #c4b5fd; /* LIGHT PURPLE */
}

/* TEXT */
.footer-col p {
  color: #e2e8f0;
  margin: 6px 0;
  line-height: 1.6;
}

/* LINKS */
.footer-col a {
  display: block;
  color: #cbd5f5;
  text-decoration: none;
  margin: 6px 0;
  transition: 0.3s;
}

/* LINK HOVER */
.footer-col a:hover {
  color: #7c3aed;
  padding-left: 5px;
}

/* HIGHLIGHT TEXT */
.highlight-text {
  color: #22c55e;
  font-weight: 600;
}

/* BUTTON */
.footer-btn {
  margin-top: 12px;
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  color: #fff;
  padding: 11px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(124,58,237,0.5);
  transition: 0.3s;
}

.footer-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* SOCIAL */
.footer-social {
  text-align: center;
  margin-top: 40px;
}

.footer-social p {
  color: #e2e8f0;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ICON STYLE */
.social-icons a {
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(124,58,237,0.4);
}

/* ICON HOVER */
.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  color: #cbd5f5;
}

/* DESKTOP */
@media(min-width:768px){
  .footer-container {
    grid-template-columns: repeat(4,1fr);
    max-width: 1100px;
    margin: auto;
  }
}/* End custom CSS */