/* Make the header transparent and overlay it on the revslider6 */
.header.apply-header.white-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 9999;
    padding-top: 30px; /* Ensure at least 30px of padding on top */
}

/* Ensure the navigation bar does not push down the content */
body {
    margin-top: 0 !important;
}

/* Adjust the logo visibility for better contrast */
.top-logo img {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

/* Ensure the menu items are visible on top of the slider */
.main-menu.menu-wrapper {
    position: relative;
}

/* Add a slight text shadow for better readability */
.main-menu.menu-wrapper a {
    color: #ffffff !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .header.apply-header.white-header {
        position: fixed;
        background: rgba(0, 0, 0, 0.7) !important;
        padding-top: 20px; /* Adjust padding for smaller screens */
    }
}