Enable Notifications OK No thanks

/* 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;
}

.header-icons .search-box button[type=”button”] {
background-color: #305CDE!important; /* Soft, beautiful light blue background tint */
color: #1e3a8a !important; /* High-contrast Navy Blue icon color to match your new branding */
padding: 9px 8px !important; /* Comfortable, balanced light padding */
border-radius: 50% !important; /* Makes the background highlight a clean circle */
border: 2px solid #C11C84 !important; /* Extremely soft matching outline border */
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
transition: all 0.25s ease-in-out !important; /* Smooth animation when clicked or hovered */
cursor: pointer !important;
outline: none !important;
box-shadow: 0 4px 10px rgba(30, 58, 138, 0.05) !important; /* Elegant subtle floating drop shadow */
}

/* Micro-interaction adjustment when the customer hovers their mouse over the icon */
.header-icons .search-box button:hover {
background-color: #1e3a8a !important; /* Flips color profile cleanly to main Navy Blue */
color: #ffffff !important; /* Icon icon turns pure white */
box-shadow: 0 6px 15px rgba(30, 58, 138, 0.2) !important; /* Dynamic expansion of elevation shadow */
transform: translateY(-1px); /* Crisp responsive lift action */
}

/* Make sure the nested theme icon vector sizing stays consistent inside its new circular home */
.header-icons .search-box button i,
.header-icons .search-box button .fa-search {
font-size: 16px !important;
line-height: 1 !important;
margin: 0 !important;
padding: 0 !important;
}

/* Ensure spacing adjustments look symmetric next to your account avatar icon */
.header-icons .search-box {
margin-right: 5px !important;
vertical-align: middle !important;
}