
#header-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: all 0.4s ease;
}
#header-7.scrolled {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}
#header-7 .navbar {
  padding: 0.75rem 1rem;
}
#header-7 .navbar-brand img {
  height: 40px;
}
#header-7 .navbar-nav .nav-link {
  color: #111211;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
#header-7.scrolled .nav-link {
  color: #222;
}
#header-7 .nav-link.active,
#header-7 .nav-link:hover {
  color: #00b4d8;
}
#header-7 .cta-button {
  background-color: #00b4d8;
  color: #fff;
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-weight: 600;
  transition: all 0.3s;
}
#header-7 .cta-button:hover {
  background-color: #0096c7;
}
#header-7.scrolled .cta-button {
  background-color: #0077b6;
}
@media (max-width: 767.98px) {
  #header-7 .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
  }
  #header-7 .nav-link {
    color: #222 !important;
  }
  #header-7 .cta-button {
    margin-top: 0.5rem;
    width: 100%;
  }
}



#useful-link-15 {
  background-color: #f1f3f5;
}
#useful-link-15 .section-title {
  font-weight: 700;
}
#useful-link-15 .section-subtitle {
  font-size: 1.15rem;
}
#useful-link-15 .link-tile {
  aspect-ratio: 4 / 3;
  min-height: 220px;
  text-decoration: none;
  transition: box-shadow 0.35s ease;
  background-color: #6c757d;
}
#useful-link-15 .link-tile:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}
#useful-link-15 .tile-background {
  background-size: cover;
  background-position: center center;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#useful-link-15 .link-tile:hover .tile-background {
  transform: scale(1.08);
}
#useful-link-15 .tile-icon {
  color: rgba(255, 255, 255, 0.7);
}
#useful-link-15 .tile-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
  z-index: 1;
}
#useful-link-15 .link-tile:hover .tile-overlay {
  opacity: 1;
}
#useful-link-15 .tile-content {
  transform: translateY(calc(100% - 2.5rem));
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#useful-link-15 .link-tile:hover .tile-content {
  transform: translateY(0);
}
#useful-link-15 .tile-title {
  font-weight: 600;
}
#useful-link-15 .tile-description {
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  max-height: 0;
  overflow: hidden;
}
#useful-link-15 .link-tile:hover .tile-description {
  opacity: 0.9;
  max-height: 3em;
}



/* 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;
  }
}


