
#header-8 {
  /* position: sticky; */
  top: 0;
  width: 100%;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
#header-8 .navbar {
  padding: 0.75rem 1rem;
}
#header-8 .navbar-brand img {
  height: 42px;
}
#header-8 .navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
#header-8 .nav-link.active,
#header-8 .nav-link:hover {
  color: #007bff;
}
#header-8 .hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4rem 1rem;
  background-color: #f8f9fa;
}
#header-8 .hero-text {
  max-width: 540px;
}
#header-8 .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#header-8 .hero-subtitle {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 2rem;
}
#header-8 .cta-button {
  background-color: #007bff;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}
#header-8 .cta-button:hover {
  background-color: #0056b3;
}
#header-8 .hero-image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  #header-8 .hero {
    flex-direction: column;
    text-align: center;
  }
  #header-8 .hero-text {
    margin-bottom: 2rem;
  }
}



@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes float-effect {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
#useful-link-13 {
  min-height: 65vh;
  background: linear-gradient(
    -45deg,
    var(--gradient-color-1, #ee7752),
    var(--gradient-color-2, #e73c7e),
    var(--gradient-color-3, #23a6d5),
    var(--gradient-color-4, #23d5ab)
  );
  background-size: 400% 400%;
  animation: gradient-shift 18s ease infinite;
}
#useful-link-13 .section-title,
#useful-link-13 .section-subtitle {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
#useful-link-13 .link-wrapper {
  animation: float-effect 5s ease-in-out infinite;
}
#useful-link-13 .link-float-item {
  width: 65px;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}
#useful-link-13 .link-float-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  animation-play-state: paused;
}
#useful-link-13 .link-icon {
  font-size: 1.5rem;
}
.tooltip-inner {
  background-color: #000;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}
.tooltip .tooltip-arrow::before {
  border-top-color: #000;
}



/* Footer-5 Styles */
#footer-5 {
  background-color: var(--footer-bg-color, #ffffff);
  color: var(--footer-text-color, #6c757d);
  padding: 3rem 0 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid var(--footer-separator-color, #dee2e6);
}
#footer-5 .footer-logo {
  max-height: 55px;
  margin-bottom: 0.75rem;
}
#footer-5 .footer-tagline {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--footer-text-color);
  font-weight: 300;
}
#footer-5 .footer-block-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--footer-text-color);
  opacity: 0.7;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem; /* Space if multiple blocks */
}
#footer-5 .footer-nav-list,
#footer-5 .footer-partners-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem; /* row-gap column-gap for links */
}
#footer-5 .footer-nav-list li a,
#footer-5 .footer-partners-list li a {
  color: var(--footer-link-color, #007bff);
  text-decoration: none;
  transition: color 0.2s ease;
}
#footer-5 .footer-nav-list li a:hover,
#footer-5 .footer-nav-list li a.active,
#footer-5 .footer-partners-list li a:hover {
  color: var(--footer-link-hover-color, #0056b3);
  text-decoration: underline;
}
#footer-5 .footer-bottom-content {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-separator-color, #dee2e6);
}
#footer-5 .footer-social-icons a {
  color: var(--footer-social-icon-color, #6c757d);
  margin: 0 0.6rem;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}
#footer-5 .footer-social-icons a:hover {
  color: var(--footer-social-icon-hover-color, #007bff);
}
#footer-5 .footer-copyright-text {
  font-size: 0.8rem;
  color: var(--footer-text-color);
  opacity: 0.8;
  margin-top: 1rem; /* Space above copyright if social icons are present */
}
#footer-5 .footer-copyright-text p {
  margin-bottom: 0;
}


