/* Section Container */
.premium-section-wrapper {
background: #ffffff;
padding: 0px 0;
margin: 15px 0;
border-radius: 20px;
box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.section-title {
padding-left: 20px;
font-size: 16px;
font-weight: 900;
color: #001f3f; /* Navy Blue to match header */
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

/* Horizontal Scroll Container */
.banner-static-glow {
display: flex;
overflow-x: auto;
padding: 8px 5px;
gap: 1px;
scrollbar-width: none; /* Hide scrollbar Firefox */
}

.banner-static-glow::-webkit-scrollbar {
display: none; /* Hide scrollbar Chrome/Safari */
}

/* Individual Item */
.banner-item {
flex: 0 0 5px; /* Fixed width */
text-align: center;
text-decoration: none !important;
}

.img-container {
width: 80px;
height: 80px;
border-radius: 50%;
padding: 3px;
background: linear-gradient(45deg, #001f3f, #FFD54F); /* Navy to Yellow Glow */
margin-bottom: 8px;
animation: float-soft 3s ease-in-out infinite;
}

.banner-item img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
border: 2px solid #fff;
}

.banner-text {
font-size: 11px;
font-weight: 700;
color: #444;
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

/* Floating Animation */
@keyframes float-soft {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); } /* Gently bob up and down */
}

/* Staggered Animation (Optional: makes them move at different times) */
.banner-item:nth-child(even) .img-container {
animation-delay: 0.5s;
}