  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* FOOTER CONTAINER */
  .footer {
    background: #1c1c1c;
    text-align: center;
    padding: 30px 20px;
    color: #ccc;
    font-size: 14px;
  }

  /* PAYMENT ICONS */
  .payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }

  .payment-icons i {
    font-size: 30px;
    color: #bbb;
    transition: color 0.3s ease;
  }

  .payment-icons i:hover {
    color: #3155c1;
  }

  /* DIVIDER */
  .footer-divider {
    margin: 20px auto;
    width: 90%;
    border: none;
    height: 1px;
    background: #333;
  }

/* LINKS */
.footer-links {
  margin: 10px 0;
  text-align: center;   /* Center align karega */
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;       /* Links ke beech equal gap */
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3c44ce;
}

  .footer-links a:hover {
    color: #3c44ce;
  }

  /* DISCLAIMER */
  .disclaimer {
    color: #aaa;
    max-width: 900px;
    margin: 15px auto 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #f1f1f1;
    padding: 60px 30px 30px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
  }

  /* Column Headers */
  .footer-column h3 {
  text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f5f6f7;
    display: block;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out;
  }

  .footer-column h3 i {
  text-align: center;
      color: #13bbe5;
    font-size: 1.2rem;
  }

  /* List Links */
  .footer-column ul {
    list-style: none;
  }

  .footer-column ul li {
    margin: 10px 0;
    opacity: 0;
    animation: fadeInUp 1s forwards;
  }

  .footer-column ul li:nth-child(1) { animation-delay: 0.2s; }
  .footer-column ul li:nth-child(2) { animation-delay: 0.3s; }
  .footer-column ul li:nth-child(3) { animation-delay: 0.4s; }

  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease;
    align-items: center;
  }

  .footer-column ul li a i {
  text-align: center;
    margin-right: 8px;
    color: #0a06ed;
    transition: 0.3s;
  }

  .footer-column ul li a:hover {
  text-align: center;
    color: #fff;
    text-shadow: 0 0 5px #0404f7;
    transform: translateX(5px);
  }

  .footer-column ul li a:hover i {
    transform: scale(1.2);
  }

  /* Contact Info */
  .footer-column p {
    color: #bbb;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease forwards;
  }

  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #999;
  }

  /* Floating Circles BG (subtle effect) */
  .footer::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,247,255,0.2), transparent 70%);
    top: -100px;
    left: -100px;
    animation: pulse 6s infinite;
  }

  .footer::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,247,255,0.15), transparent 70%);
    bottom: 0;
    right: 0;
    animation: pulse 8s infinite;
  }

  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-column h3 {
      justify-content: center;
    }

    .footer-column ul li a {
      justify-content: center;
    }
  }
/* FOOTER LINKS */
.footer-links {
  margin: 15px 0;
  display: flex;
  justify-content: center;  /* Center align karega */
  gap: 25px;                /* Links ke beech ka gap */
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3c44ce;
}
