/* Hero */
.hero-section{
  position:relative;min-height:70vh;display:flex;align-items:center;justify-content:center;
  background-image:url('/assets/images/homepage/diverse-facial-portraits-assembly-of-men-and-women-2025-03-18-19-02-57-utc.png');
  background-size:cover;background-position:center; background-attachment:fixed;
  padding-top: var(--nav-offset); /* Account for fixed navbar */
}
.hero-section .overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(49,120,156,.9), rgba(74,144,181,.85));
}
.hero-section .container{position:relative;z-index:2}
.hero-logo{height:120px;}

/* Mobile: use scroll instead of fixed bg for performance */
@media (max-width: 992px){
  .hero-section{background-attachment:scroll;}
  .hero-logo{height:80px;}
}