
header {
  width: 100%;
  position: relative;
}
#header-1.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}
#header-1 .navbar {
  padding: 0.8rem 1rem;
}
#header-1 .navbar-brand img {
  max-height: 50px;
  max-width: 200px;
  height: auto;
  width: auto;
  object-fit: contain;
}
#header-1 .nav-link {
  color: #fff !important;
  transition: color 0.3s;
}
#header-1 .active {
  color: #ffc107 !important;
}

#header-1 .nav-link:hover {
  color: #ffc107 !important;
}
#header-1 .navbar-toggler {
  border: none;
}
#header-1 .btn-warning {
  color: #343a40;
  font-weight: bold;
}
#header-1 .btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
}



#link-section-10 {
  position: relative;
  padding: 6rem 0;
  background: var(--background-gradient);
  text-align: center;
  overflow: hidden;
  color: #fff;
}
#link-section-10::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 70%);
  z-index: 0;
}
#link-section-10 .container {
  position: relative;
  z-index: 1;
}
#link-section-10 .section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
#link-section-10 .section-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#link-section-10 .link-card {
  position: relative;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(var(--blur-intensity));
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  overflow: hidden;
}
#link-section-10 .link-card:hover {
  transform: translateY(-10px) scale(1.05);
}
#link-section-10 .link-card i {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
#link-section-10 .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}





/* Footer-9 Styles */
#footer-9 {
  background-color: var(--footer-bg-color, #f9f9f9);
  color: var(--footer-text-color, #5a5a5a);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  border-top: 1px solid var(--footer-border-top-color, #e1e1e1);
}
#footer-9 .footer-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem; /* Gap between items when they wrap */
}
#footer-9 .footer-block {
  margin-bottom: 0; /* No bottom margin for direct children of flex */
}
#footer-9 .copyright-block a {
  color: var(--footer-link-color, #3498db);
  text-decoration: none;
  font-weight: 500;
}
#footer-9 .copyright-block a:hover {
  color: var(--footer-link-hover-color, #2374a9);
  text-decoration: underline;
}
#footer-9 .quick-links-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem; /* row-gap column-gap */
}
#footer-9 .quick-links-block ul li a {
  color: var(--footer-link-color, #3498db);
  text-decoration: none;
}
#footer-9 .quick-links-block ul li a:hover {
  color: var(--footer-link-hover-color, #2374a9);
  text-decoration: underline;
}
#footer-9 .contact-short-block .contact-prefix {
  margin-right: 0.3rem;
  opacity: 0.8;
}
#footer-9 .contact-short-block a {
  color: var(--footer-link-color, #3498db);
  text-decoration: none;
}
#footer-9 .contact-short-block a:hover {
  color: var(--footer-link-hover-color, #2374a9);
  text-decoration: underline;
}
#footer-9 .social-minimal-block a {
  color: var(--footer-icon-color, #777777);
  margin-left: 0.75rem; /* Space between icons */
  font-size: 1.1rem; /* Slightly larger icons */
  transition: color 0.2s ease;
}
#footer-9 .social-minimal-block a:first-child {
  margin-left: 0;
}
#footer-9 .social-minimal-block a:hover {
  color: var(--footer-icon-hover-color, #3498db);
}
/* Responsive adjustments */
@media (max-width: 991.98px) {
  /* Stack items below lg */
  #footer-9 .footer-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  #footer-9 .footer-block {
    margin-bottom: 0.75rem; /* Add margin when stacked */
  }
  #footer-9 .footer-block:last-child {
    margin-bottom: 0;
  }
  #footer-9 .quick-links-block ul {
    justify-content: center;
  }
  #footer-9 .social-minimal-block a {
    margin: 0 0.5rem; /* Adjust spacing for centered icons */
  }
}


