/* =====================================================
   Footer — Modern Gradient Glassy Style
===================================================== */
.footer {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  color: #0b1f52;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

  font-family: 'Poppins', sans-serif;
  padding: 80px 20px 40px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1), transparent 70%),
              radial-gradient(circle at 70% 80%, rgba(0, 255, 200, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

/* =====================================================
   Logo Section
===================================================== */
.footer-logo {
  flex: 1 1 250px;
  text-align: left;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-logo p {
  font-size: 0.95rem;
  color: #0b1f52;
  max-width: 250px;
}

/* =====================================================
   Footer Columns
===================================================== */
.footer-columns {
  flex: 2 1 600px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0b1f52;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   Links + Animations
===================================================== */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  position: relative;
  color: #0b1f52;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-column ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #fcdd2b, #f5f108);
  transition: width 0.3s ease;
}

/* .footer-column ul li a:hover {
  color: #0b1f52;
}

.footer-column ul li a:hover::after {
  width: 100%;
} */

/* =====================================================
   Contact & Social
===================================================== */
.footer-column a {
  color: #0b1f52;
  transition: color 0.3s ease;
}

/* .footer-column a:hover {
  color: rgb(192, 192, 3);
} */

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001344;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* .social-icons a:hover {
  background: #00cfc1;
  background: linear-gradient(90deg, #fcdd2b, #f5f108);
  transform: translateY(-3px);
} */

/* =====================================================
   Divider & Bottom
===================================================== */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: 50px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #0b1f52;
}

.footer-bottom a {
  color: linear-gradient(90deg, #e2e516, #2181e7);

  text-decoration: none;
  transition: color 0.3s ease;
}
/* 
.footer-bottom a:hover {
  color:  #00cfc1;
  text-decoration: underline;
} */

/* =====================================================
   Responsive
===================================================== */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo p {
    margin: 0 auto;
  }

  .footer-columns {
    justify-content: center;
  }
}
