
#header-12 .top-bar {
  background: #f8f9fa;
  font-size: 0.875rem;
}
#header-12 .top-bar a {
  color: #6c757d;
  text-decoration: none;
}
#header-12 .top-bar a:hover {
  color: #0d6efd;
}
#header-12 .navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#header-12 .btn {
  text-transform: uppercase;
}



#link-section-3 {
  background-color: var(--primary_color);
  color: var(--text_color);
  padding: 4rem 0;
  text-align: center;
}
#link-section-3 .section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#link-section-3 .section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}
#link-section-3 .row {
  max-width: 1100px;
  margin: 0 auto;
}
#link-section-3 .link-card {
  background-color: var(--card_color);
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  padding: 2rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#link-section-3 .link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#link-section-3 .link-card i {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}





/* Footer-2 Fully Revised Styles */
#footer-2 {
  background-color: var(--footer-bg-color, #343a40);
  color: var(--footer-text-color, #f8f9fa);
  padding: 3.5rem 0 2.5rem 0; /* Added bottom padding */
  font-size: 0.9rem;
}
#footer-2 .footer-logo {
  max-height: 50px;
  margin-bottom: 1rem;
  /* If logo is dark and needs to be light on dark BG */
  /* filter: brightness(0) invert(1) opacity(0.9);*/
}
#footer-2 .brand-column-text {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
#footer-2 .social-icons-inline a {
  color: var(--footer-text-color, #f8f9fa);
  margin-right: 1rem;
  font-size: 1.3rem;
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
}
#footer-2 .social-icons-inline a:last-child {
  margin-right: 0;
}
#footer-2 .social-icons-inline a:hover {
  opacity: 1;
  color: var(--footer-link-color, #17a2b8);
}
#footer-2 .footer-column-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--footer-title-color, #ffffff);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--footer-link-color, #17a2b8);
  display: inline-block; /* To make border only as wide as text */
}
#footer-2 .footer-navigation-list {
  list-style: none;
  padding-left: 0;
}
#footer-2 .footer-navigation-list li {
  margin-bottom: 0.6rem;
}
#footer-2 .footer-navigation-list a {
  color: var(--footer-link-color, #17a2b8);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
#footer-2 .footer-navigation-list a:hover,
#footer-2 .footer-navigation-list a.active {
  color: var(--footer-link-hover-color, #138496);
  padding-left: 5px;
}
#footer-2 .contact-details-list p,
#footer-2 .contact-details-list a {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--footer-text-color, #f8f9fa);
  opacity: 0.9;
  text-decoration: none;
}
#footer-2 .contact-details-list i {
  width: 18px;
  margin-right: 8px;
  color: var(--footer-link-color, #17a2b8);
}
#footer-2 .contact-details-list a:hover {
  color: var(--footer-link-hover-color, #138496);
  opacity: 1;
}
#footer-2 .footer-copyright-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Separator for copyright */
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}
#footer-2 .footer-copyright-section p {
  margin-bottom: 0;
}
/* Responsive */
@media (max-width: 767.98px) {
  #footer-2 .footer-column {
    margin-bottom: 2rem;
  }
  #footer-2 .footer-logo,
  #footer-2 .social-icons-inline {
    display: block;
    text-align: center; /* Center logo and social icons on mobile */
  }
  #footer-2 .social-icons-inline a {
    margin: 0 0.5rem; /* Adjust spacing for centered icons */
  }
  #footer-2 .brand-column-text {
    text-align: center;
  }
}


