/* Footer */
.main-footer {
  background: linear-gradient(135deg, var(--themesecondaryclr) 0%, #040269 100%);
  color: var(--plainclr);
  padding-top: 80px;
}

.footer-logo {
  font-size: 2.5rem;
  color: var(--themeprimaryclr);
  margin-bottom: 20px;
}

.main-footer h3 {
  color: var(--plainclr) !important;
}

.main-footer p {
  color: var(--plainclr) !important;
}

.footer-heading {
  color: var(--plainclr);
  font-size: 1.3rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--themeprimaryclr);
  display: inline-block;
}

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

.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--light-primaryclr);
  padding-left: 5px;
}

.footer-links a i {
  margin-right: 10px;
  font-size: 0.9rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--plainclr) !important;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--themeprimaryclr) !important;
  transform: translateY(-5px);
  color: var(--plainclr) !important;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.copyright a:hover {
  color: var(--plainclr);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--themeprimaryclr) !important;
  color: var(--plainclr) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(255, 103, 31, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--dark-primaryclr) !important;
  color: var(--plainclr) !important;
  transform: translateY(-5px);
}/*# sourceMappingURL=footer.css.map */