/* Footer Styling */
footer {
  background-color: #1a1a1a;
  /* Match navbar background for consistency */
  color: #bbb;
  /* Lighter gray for better readability */
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
}

.social-icons a {
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffbb33 !important;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: #ffbb33;
}

footer ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

footer ul li i {
  color: #ffbb33;
  /* Yellow icons for contact info */
}

footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffbb33;
}

/* Responsive Adjustments for Footer */
@media (max-width: 767px) {
  .footer-logo {
    font-size: 1.5rem;
  }

  .social-icons a {
    font-size: 1.2rem;
    margin: 0 8px;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  footer ul li {
    font-size: 0.9rem;
  }
}


.footer-gradient {
  background: linear-gradient(to right, #24387A, #0097CA);
  color: white;
  /* ensures text stays visible */
}

footer ul li a {
  color: #ffffff;
  /* or any color you want */
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .info-section {
    text-align: center;
  }
}
