
#header-5 {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  position: sticky;
  top: 0;
  width: 100%;
}
#header-5 .navbar {
  padding: 0.75rem 1rem;
}
#header-5 .navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
#header-5 .nav-link.active,
#header-5 .nav-link:hover {
  color: #007bff;
}
#header-5 .navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#header-5 .navbar-brand img {
  height: 45px;
}
#header-5 .cta-button {
  background-color: #007bff;
  color: #fff;
  border-radius: 25px;
  padding: 0.4rem 1.2rem;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}
#header-5 .cta-button:hover {
  background-color: #0056b3;
}
@media (max-width: 767.98px) {
  #header-5 .navbar-brand {
    position: static;
    transform: none;
    margin: 0 auto;
  }
  #header-5 .cta-button {
    width: 100%;
    margin-top: 0.5rem;
  }
  #header-5 .navbar-collapse {
    text-align: center;
  }
}



#link-section-6 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: #fff;
  text-align: center;
}

/* Animated gradient background */
#link-section-6::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    var(--gc1),
    var(--gc2),
    var(--gc3),
    var(--gc4)
  );
  background-size: 600% 600%;
  animation: gradientBG var(--anim-duration) ease infinite;
  z-index: -1;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#link-section-6 .section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

#link-section-6 .section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

#link-section-6 .link-item {
  background: rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

#link-section-6 .link-item:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-4px);
}

#link-section-6 .link-item i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}






/* Footer-13 Styles - Minimalist, Text-Focused */
#footer-13 {
  background-color: #f8f9fa; /* Light grey background */
  color: #495057; /* Dark grey text */
  padding: 2.5rem 0;
  font-size: 0.875rem; /* Slightly smaller base font */
  border-top: 1px solid #dee2e6; /* Standard Bootstrap border color */
}
#footer-13 .footer-brand-info .site-name-link-f13 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529; /* Bootstrap's darker grey / almost black */
  text-decoration: none;
}
#footer-13 .footer-brand-info .site-name-link-f13:hover {
  color: #007bff; /* Standard Bootstrap primary color */
}
#footer-13 .footer-brand-info .site-logo-f13 {
  max-height: 40px;
  margin-right: 0.75rem; /* If logo and text name are side-by-side */
}
#footer-13 .footer-tagline-f13 {
  font-size: 0.9rem;
  color: #6c757d; /* Bootstrap's muted text color */
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}
#footer-13 .footer-block-title-f13 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #343a40; /* Darker grey for titles */
  margin-bottom: 0.75rem;
  margin-top: 1.5rem; /* Space between blocks */
}
#footer-13 .footer-block-title-f13:first-of-type {
  /* No top margin for the very first title */
  margin-top: 0;
}
#footer-13 .footer-link-list-f13 {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0; /* Reset default ul margin */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align left by default */
  gap: 0.5rem 1.25rem; /* row-gap column-gap */
}
#footer-13 .footer-link-list-f13 a {
  color: #007bff; /* Standard Bootstrap primary color */
  text-decoration: none;
}
#footer-13 .footer-link-list-f13 a:hover {
  color: #0056b3; /* Darker primary color on hover */
  text-decoration: underline;
}
#footer-13 .footer-copyright-f13 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef; /* Lighter border for copyright separation */
  text-align: center;
  font-size: 0.8rem;
  color: #6c757d;
}
#footer-13 .footer-copyright-f13 p {
  margin-bottom: 0;
}
/* Responsive: Stack elements and center text on smaller screens */
@media (max-width: 767.98px) {
  #footer-13 {
    text-align: center;
  }
  #footer-13 .footer-link-list-f13 {
    justify-content: center;
  }
  #footer-13 .footer-brand-info {
    margin-bottom: 1.5rem;
  }
}


