/* _content/Travilege-Website/src/Components/Badge/Badge.razor.rz.scp.css */
.badge[b-r6o3j6w7bx] {
    padding: 6px 16px;
    border-radius: 60px;
}

@media (max-width: 767.98px) {
    .badge[b-r6o3j6w7bx] {
        padding: 6px 14px;
    }
}

.primary[b-r6o3j6w7bx] {
    background-color: #0181D133;
}

.sucess[b-r6o3j6w7bx] {
    background-color: #5EED3E33;
}
/* _content/Travilege-Website/src/Components/ButtonAction/ButtonAction.razor.rz.scp.css */
/*
button {
    width: 100%;
    border-width: 1px;
    border-color: #0181D1;
    padding: 14.5px 32px;
    background-color: #0181D1;
    cursor: pointer;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/

.custom-btn[b-7gl49p7nv5] {
    width: 100%;
    border-width: 1px;
    border-color: #0181D1;
    padding: 14.5px 32px;
    background-color: #0181D1;
    cursor: pointer;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* default text color */
    transition: all 0.2s ease; /* smooth hover/disable transitions */
}

    .custom-btn:hover:not(:disabled)[b-7gl49p7nv5] {
        background-color: #026bb3; /* darker blue on hover */
    }

    .custom-btn:disabled[b-7gl49p7nv5] {
        background-color: #cccccc; /* gray background */
        border-color: #aaaaaa; /* light gray border */
        color: #666666 !important; /* dimmed text */
        cursor: not-allowed;
        opacity: 0.7;
    }
/* _content/Travilege-Website/src/Components/Button/Button.razor.rz.scp.css */
/*a {
    border-width: 60px;
    padding: 14.5px 32px;
    background-color: #0181D1;
    cursor: pointer;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

*/

.custom-button[b-4cszvt3eit] {
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    padding: 14.5px 32px;
    cursor: pointer;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: border-color 0.3s ease;
}

.custom-button-bg-base[b-4cszvt3eit],
.custom-button-bg-hover[b-4cszvt3eit],
.custom-button-bg-active[b-4cszvt3eit] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.custom-button-bg-hover[b-4cszvt3eit],
.custom-button-bg-active[b-4cszvt3eit] {
    transition: opacity 0.3s ease;
}

.custom-button-text[b-4cszvt3eit] {
    position: relative;
    z-index: 100;
    transition: color 0.3s ease;
}

    .custom-button-text *[b-4cszvt3eit] {
        position: relative;
        z-index: 100;
    }
/* _content/Travilege-Website/src/Components/CommentCard/Comment.razor.rz.scp.css */
.commentCard[b-8ef2tmidqg] {
    position: relative;
    padding: 30px;
    /*    width: 380px;*/
    border-radius: 12px;
    background: linear-gradient(to bottom, #05638F1A, #09A9F5);
    /*overflow: hidden;*/ /* keeps rounded corners clean */
}

    .commentCard[b-8ef2tmidqg]::before {
        content: "";
        position: absolute;
        inset: 1px; /* border thickness */
        border-radius: 10px; /* radius - thickness */
        background: #fff; /* inner background */
        /*z-index: 0;*/ /* put it behind the content */
    }

    /* everything inside should sit above the ::before layer */
    .commentCard > *[b-8ef2tmidqg] {
        position: relative;
        z-index: 1;
    }

.gap[b-8ef2tmidqg] {
    gap: 12px;
}

.gap-16[b-8ef2tmidqg] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.image[b-8ef2tmidqg] {
    width: 48px;
    height: 48px;
}

@media (max-height: 576px) {
    .image[b-8ef2tmidqg] {
        width: 40px;
        height: 40px;
    }

}
@media (max-height: 768px) {
    .image[b-8ef2tmidqg] {
        width: 44px;
        height: 44px;
    }

}
/* _content/Travilege-Website/src/Components/FeatureCard/FeatureCard.razor.rz.scp.css */
/*.featurCard {
    padding: 40px 24px;
    border: 1px solid var(--light-gray);
    background-color: var(--off-white);
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

    .featurCard:hover {
        transform: scale(1.1);
        background-color: #0181D133;
    }

        .featurCard:hover .icon:hover {
            transform: scale(1.1);
            background-color: red;
        }



.card-content {
    padding: 24px 24px;
}
*/

.featurCard[b-alb638d815] {
    padding: 40px 24px;
    border: 1px solid var(--light-gray);
    margin-bottom: 24px;
    background-color: var(--off-white);
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
    position: relative; /* This prevents layout shift */
    z-index: 1;
}



@media (min-width: 1200px) {
    .featurCard:hover[b-alb638d815] {
        transform: scale(1.1);
        background-color: #0181D133;
        z-index: 10; /* Brings the hovered card to the front */
    }
}



.card-content[b-alb638d815] {
/*    padding: 24px 24px;*/
}

@media (max-width:991px) {
/*    .card-content {
        padding: 0 0;
    }*/
}
/* _content/Travilege-Website/src/Components/Footer/Footer.razor.rz.scp.css */
/*.footerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.title {
    display: flex;
    flex-direction: column;
    padding-right: 40px;
    gap: 24px;
}*/

.headingFooter[b-zr9xid71zf] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .headingFooter:dir(ltr)[b-zr9xid71zf] {
        padding-right: 40px;
    }

    .headingFooter:dir(rtl)[b-zr9xid71zf] {
        padding-left: 40px;
    }

.footerText[b-zr9xid71zf] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footerBtn[b-zr9xid71zf] {
    display: flex;
}

.coloredText[b-zr9xid71zf] {
    display: flex;
    gap: 12px;
}

.reachOutContainer[b-zr9xid71zf] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.socialMediaContainer[b-zr9xid71zf] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item[b-zr9xid71zf] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.linksContainer[b-zr9xid71zf] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.links[b-zr9xid71zf] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.icon[b-zr9xid71zf] {
    width: 24px;
    height: 24px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.separator[b-zr9xid71zf] {
    height: 1px;
    background-color: #98A1AE;
    opacity: 0.1;
    margin: 32px 0;
}

.footerCopyWrite[b-zr9xid71zf] {
    display: flex;
    justify-content: space-between;
}

.footerTerms[b-zr9xid71zf] {
    display: flex;
    gap: 24px;
}

a[b-zr9xid71zf] {
    text-decoration: none;
}

    a:hover[b-zr9xid71zf] {
        text-decoration: underline;
        color: white;
    }
/* _content/Travilege-Website/src/Components/Header/Header.razor.rz.scp.css */
.header-container[b-1skc0lxpj2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.header-visible[b-1skc0lxpj2] {
    transform: translateY(0);
}

.header-hidden[b-1skc0lxpj2] {
    transform: translateY(-100%);
}

.nav[b-1skc0lxpj2] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 20px;
}

.logo[b-1skc0lxpj2] {
    display: flex;
    padding-right: 36px;
    padding: 24px 0 24px 0;
}

.pages[b-1skc0lxpj2] {
    display: flex;
    gap: 16px;
    /*    width: 633px;*/
}

.pagesMenu[b-1skc0lxpj2] {
    position: fixed; /* Changed from absolute to fixed */
    top: 72px;
    width: 100%;
    background-color: #0D1F2D;
    right: 0;
    left: 0;
    z-index: 999; /* Ensure it's below the header but above content */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-bottom: 1px solid white;
}

/* When header is hidden, hide mobile menu too */
.header-hidden .pagesMenu[b-1skc0lxpj2] {
    transform: translateY(-100%);
}

.page[b-1skc0lxpj2] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 16px;
    padding-left: 16px;
    height: 32px;
}

    .page:hover[b-1skc0lxpj2] {
        text-decoration: underline;
    }

.pageMobile[b-1skc0lxpj2] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11.5px 0 11.5px 0;
    /*    padding-right: 16px;
    padding-left: 16px;*/
}

.menu-toggle[b-1skc0lxpj2] {
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
}

    .menu-toggle:hover[b-1skc0lxpj2] {
        transform: scale(1.1);
    }

.menu-closed[b-1skc0lxpj2] {
    opacity: 0;
    display: none !important;
}

.menu-open[b-1skc0lxpj2] {
    opacity: 1;
}

.pageMobile[b-1skc0lxpj2] {
    width: 100%;
    height: 48px;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .pageMobile:last-child[b-1skc0lxpj2] {
        border-bottom: none;
    }

    .pageMobile a[b-1skc0lxpj2] {
        display: block;
        width: 100%;
        text-decoration: none;
        transition: padding-left 0.2s ease;
    }

.separator[b-1skc0lxpj2] {
    height: 1px;
    background-color: #98A1AE;
    opacity: 0.1;
}

a[b-1skc0lxpj2] {
    text-decoration: none;
    color: white;
}

.actionContainer[b-1skc0lxpj2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.langContainer[b-1skc0lxpj2] {
    padding: 0 16px;
}

.langButtonAr[b-1skc0lxpj2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    border: 1px solid white;
    padding-left: 16px;
    border-right: none;
    height: 40px;
}

.langButtonEn[b-1skc0lxpj2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    border: 1px solid white;
    padding-left: 16px;
    border-right: none;
    height: 40px;
}

.globalIcon[b-1skc0lxpj2] {
    border-radius: 40px;
    background-color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--primary-blue);
}

.lang[b-1skc0lxpj2] {
    height: 32px;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .lang:hover[b-1skc0lxpj2] {
        text-decoration: underline;
    }
/* _content/Travilege-Website/src/Components/Icon/Icon.razor.rz.scp.css */
/*.icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background-color: white;
}


    .icon:hover {
        width: 60px;
        height: 60px;
        background-color: var(--primary-blue);*/
/*transform: scale(1);*/ /* optional tilt effect */
/*}

        .icon:hover .material-symbols-rounded {
            color: white;*/
/*            transform: scale(1.2);
            transition: transform 0.3s ease, color 0.3s ease;*/
/*font-variation-settings: 'FILL'1;
        }*/


.icon[b-o22jxq99fg] {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    background-color: white;
}
/* _content/Travilege-Website/src/Components/ScrollToTopButton.razor.rz.scp.css */
.scroll-to-top-btn[b-0lzmmpis69] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 1000;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*    .scroll-to-top-btn:dir(rtl) {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        z-index: 1000;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
*/

[dir="rtl"] .scroll-to-top-btn[b-0lzmmpis69] {
    right: auto;
    left: 30px;
}
/* _content/Travilege-Website/src/Components/Text/Text.razor.rz.scp.css */

p[b-5iw8rud6zm] {
    margin-bottom: 0;
}

/* _content/Travilege-Website/src/Layout/MainLayout.razor.rz.scp.css */
.page[b-shgo4r1bht] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-shgo4r1bht] {
    flex: 1;
}

.sidebar[b-shgo4r1bht] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-shgo4r1bht] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-shgo4r1bht]  a, .top-row[b-shgo4r1bht]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-shgo4r1bht]  a:hover, .top-row[b-shgo4r1bht]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-shgo4r1bht]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-shgo4r1bht] {
        justify-content: space-between;
    }

        .top-row[b-shgo4r1bht]  a, .top-row[b-shgo4r1bht]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-shgo4r1bht] {
        flex-direction: row;
    }

    .sidebar[b-shgo4r1bht] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-shgo4r1bht] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-shgo4r1bht]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }
}

#blazor-error-ui[b-shgo4r1bht] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-shgo4r1bht] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Travilege-Website/src/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ebgoi5auwv] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ebgoi5auwv] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ebgoi5auwv] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ebgoi5auwv] {
    font-size: 1.1rem;
}

.bi[b-ebgoi5auwv] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ebgoi5auwv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ebgoi5auwv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ebgoi5auwv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ebgoi5auwv] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ebgoi5auwv] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ebgoi5auwv] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ebgoi5auwv]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ebgoi5auwv]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ebgoi5auwv]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ebgoi5auwv] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ebgoi5auwv] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ebgoi5auwv] {
        display: none;
    }

    .nav-scrollable[b-ebgoi5auwv] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/Travilege-Website/src/Pages/404Page/NotFound.razor.rz.scp.css */
.contentSection[b-omrtjr5iaz] {
    padding: 80px;
    padding-top: 120px !important;
}

img[b-omrtjr5iaz] {
    max-width: 336px
}

@media (max-width:992px) {
    .contentSection[b-omrtjr5iaz] {
        padding: 120px 80px;
        padding-bottom: 80px !important;
    }
}

@media (max-width:576px) {
    .contentSection[b-omrtjr5iaz] {
        padding: 120px 60px;
        padding-bottom: 60px !important;
    }

    img[b-omrtjr5iaz] {
        max-width: 280px
    }
}
/* _content/Travilege-Website/src/Pages/DemoRequest/RequestDemo.razor.rz.scp.css */
.section-padding[b-8dw455rf13] {
    padding: 64px 16px 64px 64px;
}

    .section-padding:dir(rtl)[b-8dw455rf13] {
        padding: 64px 64px 64px 16px;
    }

@media (max-width: 576px) { /* Bootstrap "sm" breakpoint */
    .section-padding[b-8dw455rf13] {
        padding: 30px!important;
    }
}

a[b-8dw455rf13] {
    text-decoration: none;
    color: black;
}

.paddingSection[b-8dw455rf13] {
    padding-top: 80px;
    padding-bottom: 80px
}

.icon[b-8dw455rf13] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.gap-32[b-8dw455rf13] {
    gap: 32px !important;
}

.gap-30[b-8dw455rf13] {
    gap: 30px !important;
}

.gap-16[b-8dw455rf13] {
    gap: 16px !important;
}

.firstSectionPadding[b-8dw455rf13] {
    padding-top: 120px;
    padding-bottom: 120px;
}

.inputText[b-8dw455rf13] {
    border-radius: 8px;
    border: 0.5px solid var( --light-gray);
    background-color: #766C7F33;
    padding: 16px 20px 16px 20px;
    color: white;
    font-size: 14px;
}

/* kill the white pill behind the floated label */
.form-floating > label[b-8dw455rf13]::after {
    background-color: transparent !important;
}

/* optional: also force the container’s bg var to transparent */
.form-floating[b-8dw455rf13] {
    --bs-body-bg: transparent;
}
/* Remove blue border glow */
.form-control:focus[b-8dw455rf13] {
    box-shadow: none !important;
    border-color: var(--light-gray) !important;
}

.form-floating > label[b-8dw455rf13] {
    left: unset;
}


/* Hide default checkbox */
.customCheck input[b-8dw455rf13] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.im[b-8dw455rf13] {
    background-image: url("/Frame.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
    border-radius: 12px;
}

@media (max-width:992px) {
    .im[b-8dw455rf13] {
        height: 220px;
        margin-bottom: 24px;
        margin-top:76px;
    }

    .firstSectionPadding[b-8dw455rf13] {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media (max-width:576px) {
    .im[b-8dw455rf13] {
        height: 180px;
        margin-bottom: 24px;
        margin-top: 76px;
    }

    .firstSectionPadding[b-8dw455rf13] {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}


/* The custom square */
.customCheck .checkmark[b-8dw455rf13] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-gray); /* border when unchecked */
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s ease;
    display: flex;
}

/* When checked → change border + fill color */
.customCheck input:checked + .checkmark[b-8dw455rf13] {
    background-color: var(--primary-blue); /* fill color */
    border-color: var(--primary-blue); /* border color */
}

/* Optional: Add a checkmark symbol */
.customCheck .checkmark[b-8dw455rf13]::after {
    content: "";
    position: absolute;
    display: none;
}

.customCheck input:checked + .checkmark[b-8dw455rf13]::after {
    display: block;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin: 3px 6px;
}


input[type=number][b-8dw455rf13]::-webkit-inner-spin-button,
input[type=number][b-8dw455rf13]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number][b-8dw455rf13] {
    -moz-appearance: textfield;
}

/* Style the main select box */
.form-select[b-8dw455rf13] {
    background-color: #766C7F33;
    color: white; /* text color */
    border: 0.5px solid var( --light-gray);
    background-color: #766C7F33;
}

    /* Style the dropdown list (options) */
    .form-select option[b-8dw455rf13] {
        background-color: #1e2a38; /* dropdown background */
        color: white; /* text color */

        height: 50px;
    }

        /* Optional: hover effect inside dropdown */
        .form-select option:hover[b-8dw455rf13] {
            background-color: #2f3e4f;
        }



.phonesPadding[b-8dw455rf13] {
    padding: 24px 16px 24px 16px;
}
/* _content/Travilege-Website/src/Pages/Home/Home.razor.rz.scp.css */

.pageContainer[b-1nfrf337a6] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header[b-1nfrf337a6] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 128px;
    gap: 16px;
}

.title[b-1nfrf337a6] {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.discription[b-1nfrf337a6] {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.laptop[b-1nfrf337a6] {
    padding-top: 64px;
}

.benefitsSection[b-1nfrf337a6] {
    padding-top: 80px;
    padding-bottom: 80px;
}


.featuresList[b-1nfrf337a6] {
}

.overflow-x-auto[b-1nfrf337a6] {
    scrollbar-width: none;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .featuresList[b-1nfrf337a6] {
    }
}

@media (max-width: 768px) {
    .featuresList[b-1nfrf337a6] {
        align-items: center;
    }
}

.solutionsContainer[b-1nfrf337a6] {
    padding-top: 80px;
    padding-bottom: 80px;
}

.seprator[b-1nfrf337a6] {
    border: 1px solid #FFFFFF1A;
    margin-top: 40px;
    margin-bottom: 40px;
}

.seprator-dark[b-1nfrf337a6] {
    border: 1px solid #0000001A;
    margin-top: 40px;
    margin-bottom: 40px;
}

.gap[b-1nfrf337a6] {
    gap: 20px;
}


.successNumber[b-1nfrf337a6] {
    padding-top: 80px;
    padding-bottom: 80px
}

.videoContainer[b-1nfrf337a6] {
    padding-top: 120px;
    padding-bottom: 120px
}


/*iframe {
    border-radius: 12px;
    margin-top: 40px;
}*/

.video-responsive[b-1nfrf337a6] {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 * 100) */
    height: 0;
    margin-top: 40px;
}

    .video-responsive iframe[b-1nfrf337a6] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        border: none;
    }

.paddingSection[b-1nfrf337a6] {
    padding-top: 80px;
    padding-bottom: 80px
}

.testimonials-masonry[b-1nfrf337a6] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonials-column[b-1nfrf337a6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.testimonial-content[b-1nfrf337a6] {
    line-height: 1.6;
}


@media (max-width: 768px) {
    .testimonials-masonry[b-1nfrf337a6] {
        flex-direction: column;
    }

    .paddingSection[b-1nfrf337a6] {
        padding-top: 60px;
        padding-bottom: 60px
    }


    .testimonials-container[b-1nfrf337a6] {
        padding: 1rem;
    }

    .testimonial-card.small[b-1nfrf337a6],
    .testimonial-card.medium[b-1nfrf337a6],
    .testimonial-card.large[b-1nfrf337a6] {
        /*        min-height: auto;*/
        margin-bottom: 15px;
    }
}


.accordion[b-1nfrf337a6] {
    border-radius: 12px !important;
    --bs-accordion-border-color: transparent;
}

.accordion-item[b-1nfrf337a6] {
    border: 1px solid transparent;
    border-radius: 12px !important;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.accordion .accordion-item:has(.accordion-collapse.show)[b-1nfrf337a6] {
    border-color: #0181D1;
}


.accordion-button[b-1nfrf337a6] {
    border: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    background-color: transparent !important;
}

    .accordion-button:focus[b-1nfrf337a6],
    .accordion-button:not(.collapsed)[b-1nfrf337a6] {
        box-shadow: none !important;
        background-color: transparent !important;
    }

    .accordion-button:dir(rtl)[b-1nfrf337a6] {
        border: none !important;
        box-shadow: none !important;
        border-radius: 12px !important;
        background-color: transparent !important;
        text-align: start;
    }


.seprator-accordionn[b-1nfrf337a6] {
    border: 1px solid #0D1F2D1A;
    margin-right: 20px;
    margin-left: 20px;
}


.logos-marquee[b-1nfrf337a6] {
    --gap: 4rem;
    --item-h: 28px;
    --fade: 64px;
    width: 100%;
    max-width: 99vw;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    margin-top: 40px;
    height: 72px;
    direction: ltr;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 var(--fade), #000 calc(100% - var(--fade)), transparent);
    mask-image: linear-gradient(to right, transparent, #000 var(--fade), #000 calc(100% - var(--fade)), transparent);
}

.logos-track[b-1nfrf337a6] {
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: max-content;
    animation: logos-scroll-b-1nfrf337a6 var(--duration, 30s) linear infinite;
    will-change: transform;
}

.logos-marquee:hover .logos-track[b-1nfrf337a6] {
    animation-play-state: paused;
}

.logo-item[b-1nfrf337a6] {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    height: var(--item-h);
}

    .logo-item img[b-1nfrf337a6] {
        height: 100%;
        width: auto;
        display: block;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .logos-marquee[b-1nfrf337a6] {
        --gap: 2.5rem;
        --item-h: 22px;
        --fade: 40px;
    }
}

/* Infinite scroll keyframes */
@keyframes logos-scroll-b-1nfrf337a6 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
    /* because list is duplicated */
}

.gap-30[b-1nfrf337a6] {
    gap: 30px !important;
}

.section-padding[b-1nfrf337a6] {
    padding: 64px 16px 64px 64px;
}

    .section-padding:dir(rtl)[b-1nfrf337a6] {
        padding: 64px 64px 64px 16px;
    }

@media (max-width: 576px) { /* Bootstrap "sm" breakpoint */
    .section-padding[b-1nfrf337a6] {
        padding: 30px;
    }

        .section-padding:dir(rtl)[b-1nfrf337a6] {
            padding: 30px;
        }
}

.phonesPadding[b-1nfrf337a6] {
    padding: 24px 16px 24px 16px;
}


.accordion-button:dir(rtl)[b-1nfrf337a6]::after {
    margin-right: auto !important;
    margin-left: unset !important;
}
/* _content/Travilege-Website/src/Pages/TermsPage/Terms.razor.rz.scp.css */
/*.padding-80 {
    padding: 80px;
    padding-top: 120px !important;
}
*/
.padding[b-t05af9jrbu] {
    padding-top: 120px !important;
    padding-bottom: 60px;
}

/*@media (min-width: 992px) {
    .padding-80 {*/
/*        padding: 80px;*/
/*padding-top: 120px !important;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 768px) {
    .padding-80 {*/
/*        padding: 80px;*/
/*padding-top: 120px !important;
        padding-left: 56px;
        padding-right: 56px;
    }
}*/


.btn-outline-primary[b-t05af9jrbu] {
    border-color: var(--light-gray);
    border-radius: 60px;
    padding: 14.5px 16px 14.5px 16px;
    box-shadow: none !important;
}

.btn-outline-primary-selected[b-t05af9jrbu] {
    border-color: var(--secondary-blue);
    border-radius: 60px;
    padding: 14.5px 16px 14.5px 16px;
    box-shadow: none !important;
}

.btn:hover[b-t05af9jrbu] {
    background-color: #0181D133 !important;
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

p[b-t05af9jrbu] {
    font-size: 18px;
}


.loading-overlay[b-t05af9jrbu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-popup[b-t05af9jrbu] {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .loading-popup p[b-t05af9jrbu] {
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
    }
