/* Footer widget titles */
.footer__widget-title h2 {
  font-size: 2rem !important;
  color: #ffffff;
}

/* Footer list text */
.footer__widget ul li span {
  color: #d9d9d9;
  font-size: 0.95rem;
  display: block;
}

/* Footer social toggle */
.footer__social details summary {
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
}

/* Footer content, links & newsletter text */
.footer__content p,
.footer__link a,
.footer__newsletter p,
.footer__conditions a {
  color: #e5e5e5;
}

.footer__link a:hover,
.footer__conditions a:hover {
  color: #ffffff;
}

/* Newsletter input field */
.footer__newsletter-input input[type="email"] {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
}

.footer__newsletter-input input[type="email"]::placeholder {
  color: #666;
}

/* Newsletter button */
.footer__round-btn {
  background: #533DEA;
  color: #ffffff;
  border: none;
}

.footer__round-btn:hover {
  background: #3e2bb7;
}

/* Social icons */
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 5px 0;
  border-radius: 50%;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  color: #e5e5e5;
  background: transparent;
}

.footer__social a:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

/* Ensure icons are visible */
.footer__social a i {
  font-size: 1.2rem;
}

/* WhatsApp share button */
.share-button.whatsapp.small {
  color: #ffffff;
  background: #25D366;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  display: inline-block;
}

.share-button.whatsapp.small:hover {
  background: #1da851;
}

/* Footer background */
.footer__area-common {
  background: #1a1a1a;
}

/* Footer copyright */
.footer__copyright p {
  color: #d9d9d9;
}

/* Campus Cybercafe link */
.footer__copyright a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
}

.footer__copyright a:hover {
  color: #533DEA !important;
}

/* Fix newsletter form layout and button alignment */
.footer__newsletter-from {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__newsletter-input {
  display: flex;
  align-items: center;
  position: relative;
}

.footer__newsletter-input input[type="email"] {
  flex: 1;
  padding-right: 45px; /* space for the button */
}

.footer__newsletter-input .footer__round-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  font-size: 1.2rem;
}
