.footer {
  background: linear-gradient(135deg, #02142b, #003b8f);
  color: #fff;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Glow effect background */
.footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 153, 255, 0.2);
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 20px 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #4facfe;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col p {
  font-size: 14px;
  color: #cde6ff;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bcd7ff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00c6ff;
  padding-left: 5px;
}

/* Social Icons */
.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  background: #00c6ff;
  color: #000;
  transform: translateY(-5px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #9ecbff;
}