.footer-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.5)
  );
  filter: blur(20px);
  z-index: -1;
}



footer {
  /* background-color: #0b0b1f; */
  padding: 60px 20px 30px;
  position: relative;
  z-index: 1;
  background: rgba(11, 11, 31, 0.3); /* Semi-transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-col {
  flex: 1 1 220px;
  margin: 20px 10px;
  min-width: 220px;
}

.footer-col h3 {
  color: whitesmoke;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.footer-link {
  font-size: 16px;
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #17d4fc;
  padding-left: 5px;
}

.footer-col.no-effect p,
.footer-col.no-effect a {
  transition: none;
  color: #ccc;
  pointer-events: none;
  cursor: default;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 15px;
}

.quote {
  font-size: 25px;
  font-weight: 500;
  color: transparent;
  background-image: linear-gradient(90deg, #17d4fc, #7e5bef);
  background-clip: text;
  -webkit-background-clip: text;
  animation: fadeIn 2s ease-in-out, glow 4s ease-in-out infinite;
  text-align: left;
  margin-top: 10px;
  max-width: 280px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 5px #17d4fc;
  }
  50% {
    text-shadow: 0 0 15px #7e5bef;
  }
}

.footer-bottom {
  color: whitesmoke;
  text-align: start;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  margin-top: 40px;
}

.footer-bottom a {
  color: #17d4fc;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start; /* Align to left */
  }

  .footer-col {
    text-align: left; /* Align content to left */
    width: 100%;
    margin: 20px 0;
  }
}

/* above from style footer  */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  /* background: rgba(0, 0, 0, 0.8); */
  color: #fff;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

.footer-bottom .left a {
  background: linear-gradient(90deg, #ff6b9d, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  margin-left: 5px;
}

.footer-bottom .right a:hover {
  text-decoration: none;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom .right a {
    margin: 0 10px;
  }
}
