October is Cybersecurity Awareness Month | NWU 2025
/* === Hero Rotating Banner === */
.hero-rotating {
position: relative;
width: 100%;
max-width: 1140px;
height: 350px;
margin: 20px auto;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.hero-rotating img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
animation: fadeHero 18s infinite;
}
.hero-rotating img:nth-child(1){animation-delay:0s;}
.hero-rotating img:nth-child(2){animation-delay:6s;}
.hero-rotating img:nth-child(3){animation-delay:12s;}
@keyframes fadeHero {