.footer-contact {
    text-decoration: none;   /* remove underline */
    color: inherit;          /* use parent text color */
}

  .forgot-link {
    color: #007bff;       /* blue link color */
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9em;     /* slightly smaller than input text */
    display: inline-block;
    margin-top: 5px;      /* some spacing */
}

.forgot-link:hover {
    color: #0056b3;       /* darker on hover */
}

/* FOOTER */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Logo inside footer */
.footer-logo .logo-ka {
  border-radius: 4px;
  margin-right: 2px;
  line-height: 1;
}

.footer-logo .logo-ksha {
  color: white;
  background: transparent;
}

/* Footer sections */
.footer-links, .footer-contact, .footer-socials {
  min-width: 150px;
}

.footer-links h4,
.footer-contact h4,
.footer-socials h4 {
  color: #caa34d; /* gold accent */
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #caa34d; /* gold accent */
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 6px;
}
.footer-contact p a{
 color: #fff;
}
.footer-contact p a:hover {
  color: #caa34d;
}
/* Socials */
.footer-socials a {
  color: #fff;
  margin-right: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #caa34d;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-links, .footer-contact, .footer-socials {
    text-align: center;
    min-width: auto;
  }

  .footer-socials a {
    margin-right: 8px;
    margin-left: 8px;
  }
}

 

