
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}
#header-3 .navbar {
  padding: 0.8rem 1rem;
}
#header-3 .navbar-brand img {
  height: 50px;
}
#header-3 .nav-link {
  color: #343a40 !important;
  transition: color 0.3s;
  font-size: 1.1rem;
}
#header-3 .nav-link:hover {
  color: #007bff !important;
}
#header-3 .navbar-toggler {
  border: none;
}
#header-3 .btn-contact {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: bold;
  transition: all 0.3s;
}
#header-3 .btn-contact:hover {
  background-color: #007bff;
  color: #fff;
}
#header-3 .btn-cta {
  background-color: #ffc107;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: bold;
  margin-left: 10px;
  transition: background-color 0.3s;
}
#header-3 .btn-cta:hover {
  background-color: #e0a800;
}



#link-section-4 {
  background-color: var(--background_color);
  color: var(--text_color);
  padding: 5rem 0;
  text-align: center;
}
#link-section-4 .section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
#link-section-4 .section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.75;
}
#link-section-4 .row {
  max-width: 1000px;
  margin: 0 auto;
}
#link-section-4 .circle-link {
  width: 4rem;
  height: 4rem;
  background: var(--circle_bg_gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
#link-section-4 .link-item {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
}
#link-section-4 .link-item:hover .circle-link {
  transform: scale(1.1);
}
#link-section-4 .link-label {
  font-size: 0.95rem;
}





/* Footer-8 Styles */
#footer-8 {
  /* Background image will be set inline from data.json */
  background-color: var(--footer-bg-fallback-color, #eef2f5);
  background-size: cover;
  background-position: center center;
  position: relative; /* For overlay */
  color: var(--footer-text-color, #333);
  padding: 3.5rem 0 0 0; /* No bottom padding, bottom bar handles it */
  text-align: center;
}
#footer-8::before {
  /* Optional overlay for readability over background image */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--footer-bg-overlay-color, rgba(255, 255, 255, 0.8));
  z-index: 1;
}
#footer-8 .container {
  position: relative; /* To sit above the overlay */
  z-index: 2;
}
#footer-8 .footer-logo-f8 {
  max-height: 60px; /* Adjust as needed */
  margin-bottom: 1rem;
}
#footer-8 .footer-welcoming-msg {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--footer-text-color, #333);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}
#footer-8 .footer-block-title-f8 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--footer-text-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#footer-8 .footer-horizontal-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem; /* row-gap column-gap */
  max-width: 900px; /* Limit width of horizontal lists for better centering */
}
#footer-8 .footer-horizontal-list li a {
  color: var(--footer-link-color, #d63384);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem; /* Give some clickable area */
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
#footer-8 .footer-horizontal-list li a:hover,
#footer-8 .footer-horizontal-list li a.active {
  color: var(--footer-link-hover-color, #b02a6c);
  background-color: rgba(0, 0, 0, 0.05); /* Subtle hover background */
  text-decoration: none;
}
#footer-8 .footer-bottom-bar-f8 {
  background-color: var(--footer-bottom-bar-bg, rgba(0, 0, 0, 0.05));
  color: var(--footer-bottom-bar-text, #555);
  padding: 1.5rem 0;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}
#footer-8 .footer-bottom-bar-f8 .social-icons-f8 a {
  color: var(
    --footer-bottom-bar-text,
    #555
  ); /* Match text color or define new social color */
  margin: 0 0.7rem;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}
#footer-8 .footer-bottom-bar-f8 .social-icons-f8 a:hover {
  color: var(--footer-link-color, #d63384); /* Use main link color for hover */
}
#footer-8 .footer-bottom-bar-f8 .copyright-f8 {
  margin-top: 1rem; /* Space above copyright if social is present */
  opacity: 0.9;
}
#footer-8 .footer-bottom-bar-f8 .copyright-f8 p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #footer-8 .footer-bottom-bar-f8 .row > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #footer-8 .footer-bottom-bar-f8 .copyright-f8 {
    margin-top: 0;
    text-align: right; /* Or left, depends on desired layout */
  }
  #footer-8 .footer-bottom-bar-f8 .social-icons-f8 {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  #footer-8 .footer-bottom-bar-f8 .social-icons-f8 {
    margin-bottom: 0.75rem;
  }
}


