/* Footer Styles */
.w3l-footer {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff; /* Light text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.w3l-footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.w3l-footer p {
  color: #cccccc;
  font-size: 14px;
}

/* Logo and Brand */
.navbar-brand .logo img {
  max-width: 100%;
  height: auto;
}

/* Contact Info */
.contact li {
  list-style: none;
  margin-bottom: 10px;
}

.contact li p {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #cccccc;
}

.contact li span {
  margin-right: 8px;
  color: #f97316; /* Accent color */
}

.contact li a {
  color: #cccccc;
  text-decoration: none;
}

.contact li a:hover {
  color: #ffffff;
}

/* Social Media Icons */
.social {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social li a {
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social li a:hover {
  color: #f97316;
}

/* Footer Links */
.footer-gd-16 {
  list-style: none;
  padding: 0;
}

.footer-gd-16 li {
  margin-bottom: 10px;
}

.footer-gd-16 li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-gd-16 li a:hover {
  color: #ffffff;
}

/* Stay Connected - Facebook iframe */
iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
}

/* Below Section (Copyright) */
.below-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.below-section p {
  font-size: 13px;
  color: #bbbbbb;
  margin: 0;
}

.below-section a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.below-section a:hover {
  text-decoration: underline;
}

/* Back to Top Button */
#movetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #f97316;
  color: white;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

#movetop:hover {
  background-color: #fb923c;
}