/* Isolated Lightwaala header. Do not add theme header classes here. */
.lightwaala-header,
.lightwaala-header * {
    box-sizing: border-box;
}

.lightwaala-header {
    position: relative;
    z-index: 100;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    /*font-family: "Rethink Sans", Arial, sans-serif;*/
}

.lightwaala-header a {
    text-decoration: none;
}

.lightwaala-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lightwaala-header .container {
    max-width: 1240px;
}

.lightwaala-top-header {
    width: 100%;
    background: #101827;
    color: #ffffff;
}

.lightwaala-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 44px;
}

.lightwaala-top-left,
.lightwaala-top-right {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.lightwaala-top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.lightwaala-top-link:hover {
    color: #ffc107;
}

.lightwaala-top-link i {
    color: #ffc107;
    font-size: 14px;
}

.lightwaala-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightwaala-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #101827;
    background: #ffc107;
    border-radius: 50%;
    font-size: 13px;
    transition: 0.2s ease;
}

.lightwaala-social a:hover {
    color: #101827;
    background: #ffffff;
}

.lightwaala-main-header {
    position: relative;
    width: 100%;
    min-height: 86px;
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 24, 39, 0.08);
    box-shadow: 0 12px 34px rgba(16, 24, 39, 0.08);
}

.lightwaala-main-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 86px;
}

.lightwaala-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.lightwaala-header-logo {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
}

.lightwaala-nav-wrap,
.lightwaala-nav,
.lightwaala-menu-wrap {
    min-width: 0;
}

.lightwaala-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lightwaala-menu-item {
    position: relative;
    flex: 0 0 auto;
}

.lightwaala-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 86px;
    padding: 0 15px;
    color: #182234;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition: 0.2s ease;
}

.lightwaala-nav-link::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 24px;
    left: 15px;
    height: 3px;
    background: #ffc107;
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.4);
    transition: 0.25s ease;
}

.lightwaala-menu-item:hover > .lightwaala-nav-link,
.lightwaala-nav-link:hover,
.lightwaala-nav-link.active {
    color: #d69b00;
}

.lightwaala-menu-item:hover > .lightwaala-nav-link::after,
.lightwaala-nav-link:hover::after,
.lightwaala-nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.lightwaala-toggle-icon {
    font-size: 11px;
}

.lightwaala-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 110;
    display: block;
    min-width: 286px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 39, 0.08);
    border-radius: 8px;
    box-shadow: 0 20px 46px rgba(16, 24, 39, 0.18);
    transform: translateY(10px);
    transition: 0.2s ease;
}

.lightwaala-has-submenu:hover > .lightwaala-sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.lightwaala-sub-link {
    display: block;
    padding: 11px 12px;
    color: #182234;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.lightwaala-sub-link:hover {
    color: #101827;
    background: #fff4c7;
}

.lightwaala-main-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lightwaala-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 22px;
    color: #101827;
    background: #ffc107;
    border: 1px solid #ffc107;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(255, 193, 7, 0.28);
    transition: 0.2s ease;
}

.lightwaala-header-cta:hover {
    color: #ffffff;
    background: #101827;
    border-color: #101827;
}

.lightwaala-header .navbar-toggle,
.lightwaala-header .responsive-menu {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .lightwaala-main-inner {
        gap: 18px;
    }

    .lightwaala-header-logo {
        width: 190px;
    }

    .lightwaala-nav-link {
        padding: 0 10px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .lightwaala-top-inner {
        justify-content: center;
    }

    .lightwaala-top-left {
        display: none;
    }

    .lightwaala-main-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .lightwaala-main-actions {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    body.mobile-menu-open {
        height: 100dvh;
        overflow: hidden !important;
        overscroll-behavior: none;
        touch-action: none;
    }

    @supports selector(html:has(body.mobile-menu-open)) {
        html:has(body.mobile-menu-open) {
            height: 100%;
            overflow: hidden !important;
        }
    }

    .lightwaala-top-header {
        display: none;
    }

    .lightwaala-main-header {
        min-height: 72px;
    }

    .lightwaala-main-inner {
        display: flex;
        min-height: 72px;
        justify-content: space-between;
        gap: 14px;
    }

    .lightwaala-header-logo {
        width: 162px;
    }

    .lightwaala-nav-wrap,
    .lightwaala-main-actions {
        display: none !important;
    }

    .lightwaala-header .navbar-toggle,
    .lightwaala-header .responsive-menu {
        display: block;
    }

    .lightwaala-header .navbar-toggle {
        position: relative;
        top: auto;
        right: auto;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        margin: 0;
        padding: 0;
    }

    .lightwaala-header .slicknav_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 0;
        margin: 0;
        background: #101827;
        border-radius: 8px;
    }

    .lightwaala-header .responsive-menu {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        overflow: hidden;
        pointer-events: none;
    }

    body.mobile-menu-open .lightwaala-header .responsive-menu {
        pointer-events: auto;
    }

    .lightwaala-header .slicknav_menu {
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        pointer-events: auto;
    }

    .lightwaala-header .slicknav_nav {
        margin: 0;
        padding: 8px 12px 12px;
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
        background: #101827;
        box-shadow: 0 20px 38px rgba(16, 24, 39, 0.18);
        overscroll-behavior: contain;
    }

    .lightwaala-header .slicknav_nav a {
        color: #ffffff;
        border-radius: 6px;
    }

    .lightwaala-header .slicknav_nav a:hover {
        color: #101827;
        background: #ffc107;
        /*height: 35px;*/
    }
}
