
html {
    width: 100%;
    overflow-x: hidden;
}

header {
    width: 100%;
    background-color: transparent;
}

.header-content {
    width: 1200px;  /* Same as wrapper width */
    margin: 0 auto;
    position: relative;
}

header .header-logo {
    position: relative;
    top: 30px;
}



/* Responsive styles for header */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .header-content {
        width: 980px;  /* Match wrapper width for this breakpoint */
    }
    header .top-menu-header {
        height: 80px !important;
    }
    
    header .header-logo {
        width: 256px;
        height: 70px;   
        margin-top: -3px;
    } 
   
    
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header-content {
        width: 100%;
        padding: 0 15px;
    }
    
    header .header-logo {
        width: 256px;
        height: 70px;
        margin-top: -30px;
        margin-left: -40px;
    }

    header nav {
        margin-top: -8px;
    }
    header nav a {
        font-size: 14px;
        padding: 5px 17px;
    }
} 

@media screen and (max-width: 767px) {
    .header-content {
        width: 100%;
        padding: 0 15px;
        margin-top: 0px;
    }

    header .header-logo {
        width: 256px;
        height: 70px;
        margin-top: -30px;
        margin-left: -40px;
    }
}