
/* Header #11 */
#header-11 {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#header-11 .navbar-brand img {
  max-height: 40px;
}
#header-11 .nav-link {
  color: #333;
}
#header-11 .nav-link.active {
  color: #0d6efd;
  font-weight: 500;
}
#header-11 a.d-flex {
  color: #333;
  text-decoration: none;
  margin-right: 1rem;
}
#header-11 a.d-flex:hover {
  color: #0d6efd;
}
#header-11 .btn {
  text-transform: uppercase;
}
/* Ẩn số điện thoại trên mobile */
@media (max-width: 767.98px) {
  #header-11 .d-flex {
    display: none !important;
  }
}



#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-2 Fully Revised Styles */
#footer-2 {
  background-color: var(--footer-bg-color, #343a40);
  color: var(--footer-text-color, #f8f9fa);
  padding: 3.5rem 0 2.5rem 0; /* Added bottom padding */
  font-size: 0.9rem;
}
#footer-2 .footer-logo {
  max-height: 50px;
  margin-bottom: 1rem;
  /* If logo is dark and needs to be light on dark BG */
  /* filter: brightness(0) invert(1) opacity(0.9);*/
}
#footer-2 .brand-column-text {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
#footer-2 .social-icons-inline a {
  color: var(--footer-text-color, #f8f9fa);
  margin-right: 1rem;
  font-size: 1.3rem;
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
}
#footer-2 .social-icons-inline a:last-child {
  margin-right: 0;
}
#footer-2 .social-icons-inline a:hover {
  opacity: 1;
  color: var(--footer-link-color, #17a2b8);
}
#footer-2 .footer-column-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--footer-title-color, #ffffff);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--footer-link-color, #17a2b8);
  display: inline-block; /* To make border only as wide as text */
}
#footer-2 .footer-navigation-list {
  list-style: none;
  padding-left: 0;
}
#footer-2 .footer-navigation-list li {
  margin-bottom: 0.6rem;
}
#footer-2 .footer-navigation-list a {
  color: var(--footer-link-color, #17a2b8);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
#footer-2 .footer-navigation-list a:hover,
#footer-2 .footer-navigation-list a.active {
  color: var(--footer-link-hover-color, #138496);
  padding-left: 5px;
}
#footer-2 .contact-details-list p,
#footer-2 .contact-details-list a {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--footer-text-color, #f8f9fa);
  opacity: 0.9;
  text-decoration: none;
}
#footer-2 .contact-details-list i {
  width: 18px;
  margin-right: 8px;
  color: var(--footer-link-color, #17a2b8);
}
#footer-2 .contact-details-list a:hover {
  color: var(--footer-link-hover-color, #138496);
  opacity: 1;
}
#footer-2 .footer-copyright-section {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Separator for copyright */
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}
#footer-2 .footer-copyright-section p {
  margin-bottom: 0;
}
/* Responsive */
@media (max-width: 767.98px) {
  #footer-2 .footer-column {
    margin-bottom: 2rem;
  }
  #footer-2 .footer-logo,
  #footer-2 .social-icons-inline {
    display: block;
    text-align: center; /* Center logo and social icons on mobile */
  }
  #footer-2 .social-icons-inline a {
    margin: 0 0.5rem; /* Adjust spacing for centered icons */
  }
  #footer-2 .brand-column-text {
    text-align: center;
  }
}


