/* ============================
   Footer Styling
=============================== */
.site-footer {
  background: #001f3f !important;   /* ✅ Dark Navy Background */
  color: #ffffff !important;        /* ✅ White text */
  font-size: 0.9rem;
  margin-top: auto;                 /* ✅ Footer bottom chipka rahe */
  padding-top: 20px;
  padding-bottom: 10px;
}

/* ✅ Links White */
.site-footer .footer-link {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.site-footer .footer-link:hover {
  color: #ffc107 !important;   /* ✅ Hover Yellow */
  text-decoration: underline;
}

/* ✅ HR line subtle white */
.site-footer hr {
  border-color: rgba(255,255,255,0.3);
  margin: 12px 0;
}

/* ✅ Social Icons */
.site-footer .social-icons a {
  font-size: 1.4rem;
  color: #ffffff !important;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.site-footer .social-icons a:hover {
  color: #ffc107 !important;
}
