.header {
    background-color: var(--header-background-color);
    {% if module.style.header_background_color.enable %}
    background-color: rgba(, );
    ;
    {% endif %}
}

.header-right .btn-primary {
    background-color: rgba(, );
    border-color: rgba(, );
    color: rgba(, );
}

.header-right .btn-secondary-hover:hover {
    background-color: rgba(, );
    border-color: rgba(, );
    color: rgba(, );
}

.header-right .btn-light-outline {
    background-color: transparent;
    border-color: rgba(, );
    color: rgba(, );
}

.header-right .btn-primary-hover:hover {
    background-color: rgba(, );
    border-color: rgba(, );
    color: rgba(, );
}

.header {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 111;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Menu Styles */
[role="menu"] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 767px) {
    [role="menu"] {
        flex-direction: column;
    }
}

[role="menu"] li {
    display: inline-block;
    margin-right: 15px;
}

[role="menu"] li:last-child {
    margin-right: 0;
}

[role="menu"] a {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

[role="menu"] a:hover {
    background-color: #f0f0f0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), 
only screen and (min-width: 768px) and (max-width: 991px), 
only screen and (max-width: 767px) {
    .header {
        padding: 15px 0;
    }
}

.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    background-color: var(--header-background-color);
    border: none;
    animation: fadeInDown 1s both;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    padding-bottom: 20px;
}

@-webkit-keyframes fadeInDown {
    from {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), 
only screen and (max-width: 767px) {
    .header-left {
        display: none;
    }
}

.header-center {
    max-width: 240px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), 
only screen and (max-width: 767px) {
    .header-center {
        max-width: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-center {
        min-height: auto;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), 
only screen and (max-width: 767px) {
    .header-right {
        flex: 0 0 auto;
        max-width: none;
    }
}

.header-logo {
    line-height: 1;
    display: flex;
}

@media only screen and (max-width: 575px) {
    .header-right .btn {
        display: block;
        padding: 15px 15px;
    }
}

@media only screen and (max-width: 479px) {
    .header-right .btn {
        display: none;
    }
}

/* Menu Toggle Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media only screen and (max-width: 767px) {
    .menu-toggle {
        display: flex;
              justify-content: flex-end;
      color:green;
    }

    .header {
        height: auto;
    }
  
  .header-sticky.is-sticky {
    position: relative;
  }

    .header .container-fluid .row {
        display: flex;
        flex-direction: column;
    }

    .header-right .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--header-background-color);
    }

    .header-right .menu-items.active {
        display: flex;
    }
}
