/* Make header not transparent on mobile */
@media (max-width: 767px) {
.header-wrapper {
background-color: #09316D; /* Change to your desired color */
/* Optional: Add a transition for a smoother effect */
transition: background-color 0.3s ease;
}
}