
    /* footer */
    .footer {
  background: radial-gradient(
      at top left,
      #ff6ec4,
      transparent 40%
    ),
    radial-gradient(at bottom right, #7873f5, transparent 40%),
    linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff6ec4;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.4s;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}