/* _content/WebSite/Components/Layout/Footer.razor.rz.scp.css */

.fa-solid[b-b0u93w8gwq], .fa-brands[b-b0u93w8gwq] {
    color: white;
}

[dir="ltr"] .fa-solid[b-b0u93w8gwq] {
    transform: rotateY(180deg);
}




/* Main */
.footer-container[b-b0u93w8gwq] {
    width: 100%;
    color: white;
    padding: 50px 15px 15px 15px;
}

.footer-logo[b-b0u93w8gwq] {
    padding: 0 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom:30px;
}

    .footer-logo img[b-b0u93w8gwq] {
        height: 60px;
    }


.footer-title[b-b0u93w8gwq] {
    padding: 10px 0;
    font-size:2rem;
}

.footer-about[b-b0u93w8gwq] {
    text-align: justify;
    width: 80%;
    line-height: 2;
}

/* Apps */
.footer-app-item[b-b0u93w8gwq] {
    width: 100%;
    padding: 3px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s, fill 0.3s, transform 0.3s ease;
}


[dir="rtl"] .footer-app-item:hover[b-b0u93w8gwq] {
    transform: translateX(-5px);
}

[dir="ltr"] .footer-app-item:hover[b-b0u93w8gwq] {
    transform: translateX(5px);
}


.footer-app-title[b-b0u93w8gwq] {
    color: white;
    padding:0 10px;
}

/* contact */
.footer-contact-container[b-b0u93w8gwq] {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.footer-contact-title[b-b0u93w8gwq] {
    direction: ltr;
    padding: 0 10px;
}

/* Copyright */
.footer-copyright[b-b0u93w8gwq] {
    display: flex;
}

.footer-copyright-title[b-b0u93w8gwq] {
    color: white;
    padding: 0 5px;
    font-weight:bold;
}

/* Social */
.footer-social-container[b-b0u93w8gwq] {
    display: flex;
    gap:20px;
}

.footer-social-item[b-b0u93w8gwq] {
    font-size :1.3rem;
    transition: fill 0.3s, transform 0.3s ease;
}

    .footer-social-item:hover[b-b0u93w8gwq] {
        fill: var(--secondary-color);
        transform: translateY(-5px);
    }

.footer-app[b-b0u93w8gwq] {
    height: 40px;
    margin: 5px;
}

/* Media Query for Mobile */
@media (max-width: 768px) {


    .footer-about[b-b0u93w8gwq] {
        width: 100%;
    }

    .footer-logo[b-b0u93w8gwq] {
        padding: 0 ;
        margin-bottom: 30px;
    }

        .footer-logo img[b-b0u93w8gwq] {
            height: 50px;
        }




    .footer-copyright[b-b0u93w8gwq] {
        justify-content: center;
    }

    .footer-social-container[b-b0u93w8gwq] {
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
/* _content/WebSite/Components/Layout/NavMenu.razor.rz.scp.css */

.main-navbar[b-yk1k22oex2] {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--primary-color);
    font-size: 1rem;
    z-index: 9999;
}

    .main-navbar.desktop[b-yk1k22oex2] {
        display: block;
        height: var(--navbar-height);
        overflow: hidden;
    }
    .main-navbar.mobile[b-yk1k22oex2] {
        display: none;
        height: fit-content;
        overflow: scroll;
    }

.main-navbar-logo[b-yk1k22oex2] {
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .main-navbar-logo img[b-yk1k22oex2] {
        height: 40px;
    }


.main-navbar-item[b-yk1k22oex2] {
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #e8dcf7;
    cursor: pointer;
    transition: background 0.5s ease;
}

    .main-navbar-item:hover[b-yk1k22oex2] {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .main-navbar-item i[b-yk1k22oex2] {
        fill: #e8dcf7;
        margin: 0 10px;
        transition: transform 0.5s ease;
    }

    .main-navbar-item:hover i[b-yk1k22oex2] {
        transform: rotate(180deg);
    }

.main-navbar-btn-container[b-yk1k22oex2] {
    height: 100%;
    align-items: center;
    display: flex;
    gap: 10px;
}

.main-navbar-btn[b-yk1k22oex2] {
    color: #e8dcf7;
    border: 1px solid #8659a8;
    border-radius: 7px;
    padding: 5px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.5s ease;
}
    .main-navbar-btn:hover[b-yk1k22oex2] {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .main-navbar-btn.free[b-yk1k22oex2] {
        background-color: #e8dcf7;
        color: var(--primary-color);
        font-weight:bold;
    }
        .main-navbar-btn.free:hover[b-yk1k22oex2] {
            background-color: var(--success-color);
        }

/* Media Query for Mobile */
@media (max-width: 768px) {

    .main-navbar.desktop[b-yk1k22oex2] {
        display: none;
    }

    .main-navbar.mobile[b-yk1k22oex2] {
        display: block;
    }

    .main-navbar-logo[b-yk1k22oex2] {
        padding: 15px 5px;
    }

        .main-navbar-logo img[b-yk1k22oex2] {
            height: 30px;
        }


    .main-navbar-item[b-yk1k22oex2] {
        font-size: 1rem;
        width: 100%;
        padding: 10px 20px;
        border-top: 1px solid var(--primary-dark-color);
    }

    .main-navbar-btn-container[b-yk1k22oex2] {
        margin: auto 0;
        gap: 10px;
    }
    .main-navbar-btn[b-yk1k22oex2] {
        font-size: 0.9rem;
        padding: 5px 10px;
        border-radius: 5px;
    }

        .main-navbar-btn i[b-yk1k22oex2] {
            padding: 3px;
        }

}
/* _content/WebSite/Components/Pages/Contact.razor.rz.scp.css */

/* Header */
.header-container[b-v7gt0l10vk] {
    padding: 5rem 0;
    text-align: center;
}

.header-title[b-v7gt0l10vk] {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
}

.header-description[b-v7gt0l10vk] {
    text-align: center;
    padding: 2rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #8d7fa1;
}

/* Contact */

.contact[b-v7gt0l10vk] {
    height: 100%;
    padding: 15px 30px;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    transition: background 0.3s ease;
}
.contact:hover[b-v7gt0l10vk] {
    background-color: rgba(0, 0, 0, 0.4);
}

    .contact i[b-v7gt0l10vk] {
        color: var(--secondary-color);
        font-size: 32px;
        margin-top: 5px;
        margin-bottom: 20px;
    }

.contact-title[b-v7gt0l10vk] {
    color: white;
    font-size: 1.5rem;
    margin-bottom:40px;
}

.contact-item[b-v7gt0l10vk] {
    display: flex;
    justify-items: center;
    margin-bottom:10px;
}
    .contact-item i[b-v7gt0l10vk] {
        font-size: 0.7rem !important;
        margin: auto 0 !important;
        padding: 0 !important;
    }

.contact-description[b-v7gt0l10vk] {
    color: var(--primary-light2-color);
    font-size: 1.1rem;
    direction: ltr;
}

.contact-text[b-v7gt0l10vk] {
    color: var(--primary-light2-color);
    font-size: 1.1rem;
    margin: 0 15px;
}



/* Message */
.message-container[b-v7gt0l10vk] {
    height: 100%;
    padding: 30px;
    border-radius: 10px;
    background-color: #ece9ef;
}

.message[b-v7gt0l10vk] {
    color: var(--primary-color);
    text-align:start;
}

.message-btn[b-v7gt0l10vk] {
    background-color: var(--primary-color);
    padding: 10px 20px;
    margin: 15px 0;
    border-radius: 10px;
    width: 100%;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .message-btn:hover[b-v7gt0l10vk] {
        background-color: var(--success-color);
        color: var(--primary-color);
    }


.map[b-v7gt0l10vk] {
    padding: 15px;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

    .map iframe[b-v7gt0l10vk] {
        width: 100%;
        height: 500px;
    }



/* Media Query for Mobile */
@media (max-width: 768px) {

    .header-container[b-v7gt0l10vk] {
        padding: 3rem 0;
    }

    .header-title[b-v7gt0l10vk] {
        font-size: 2.5rem;
        font-weight: normal;
    }

    .header-description[b-v7gt0l10vk] {
        padding: 1rem 0;
        font-size: 1.3rem;
        font-weight: normal;
    }

    .contact-item.emil[b-v7gt0l10vk] {
        justify-content: center;
        margin-bottom: 40px;
    }
        .contact-item.emil i[b-v7gt0l10vk] {
            display: none;
        }

    .contact-text.emil[b-v7gt0l10vk] {
        margin-bottom: 5px;
    }

}
/* _content/WebSite/Components/Pages/Home/Benefits.razor.rz.scp.css */
.benefits[b-qdki7gzffe] {
    padding: 60px 0;
    background: #fff;
}


    .benefits h2[b-qdki7gzffe] {
        color: var(--primary-dark-color);
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }
/* _content/WebSite/Components/Pages/Home/CompanyName.razor.rz.scp.css */

strong[b-re9cy4cd6g] {
    font-size: 2rem;
    color: var(--secondary-color);
}

span[b-re9cy4cd6g] {
    color: var(--secondary-color);
    font-size: 1.2rem;
}
/* _content/WebSite/Components/Pages/Home/Features.razor.rz.scp.css */

.features[b-duo5ejbniu] {
    padding: 60px 0;
    background: #fff;
}

    .features h2[b-duo5ejbniu] {
        color: var(--primary-dark-color);
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }

    .features h4[b-duo5ejbniu] {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.2rem;
        color: var(--primary-dark-color);
    }


.feature-grid[b-duo5ejbniu] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-item[b-duo5ejbniu] {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 calc(25% - 40px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-item:hover i[b-duo5ejbniu] {
        color: var(--secondary-color);
    }

    .feature-item i[b-duo5ejbniu] {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .feature-item h3[b-duo5ejbniu] {
        font-size: 1.5rem;
        margin: 10px 0;
        color: #2c3e50;
    }

    .feature-item p[b-duo5ejbniu] {
        font-size: 1rem;
        color: #666;
    }

    .feature-item.coming-soon[b-duo5ejbniu] {
        opacity: 0.7;
        position: relative;
    }

        .feature-item.coming-soon h3 span[b-duo5ejbniu] {
            font-size: 0.8rem;
            color: #e74c3c;
            margin-left: 5px;
        }

        .feature-item.coming-soon[b-duo5ejbniu]::after {
            content: "قريبًا";
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e74c3c;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
        }


/* Media Query for Mobile */
@media (max-width: 768px) {

    .features[b-duo5ejbniu] {
        padding:  0;
    }

        .features h2[b-duo5ejbniu] {
            margin-bottom: 20px;
        }

        .features h4[b-duo5ejbniu] {
            margin-bottom: 10px;
        }
        .features h3[b-duo5ejbniu] {
            margin-top: 20px;
        }

    .feature-grid[b-duo5ejbniu] {
        margin: 30px 0;
        flex-direction: column;
    }

    .feature-item[b-duo5ejbniu] {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

}
/* _content/WebSite/Components/Pages/Home/Header.razor.rz.scp.css */
.header-container[b-8qua60owg8] {
    width: 100%;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.header-title[b-8qua60owg8] {
    font-size: 2.2rem;
    color: white;
}

.header-description[b-8qua60owg8] {
    font-size: 1.2rem;
    color: #e8e6e6;
    margin: 30px 0;
    line-height: 2.2;
}

.header-details-container[b-8qua60owg8] {
    padding: 50px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-details[b-8qua60owg8] {
    font-size: 1rem;
    color: var(--primary-light2-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .header-details i[b-8qua60owg8] {
        font-size: 1rem;
        color: var(--primary-light2-color);
    }


.header-btn[b-8qua60owg8] {
    background-color: var(--secondary-color);
    color: var(--primary-dark-color);
    border-radius: 10px;
    margin-top: 70px;
    padding: 10px 50px;
    width: fit-content;
    display: flex;
    font-size: 1.5rem;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .header-btn:hover[b-8qua60owg8] {
        background-color: var(--success-color);
    }

    .header-btn i[b-8qua60owg8] {
        margin: 0 15px;
        fill: var(--primary-dark-color);
    }

.header-img[b-8qua60owg8] {
    padding: 50px;
    animation: wave-animation-b-8qua60owg8 3s infinite ease-in-out;
}

    .header-img img[b-8qua60owg8] {
        padding: 50px;
        width: 100%;
    }



/* Media Query for Mobile */
@media (max-width: 768px) {

    .header-container[b-8qua60owg8] {
        display: block;
        margin: 0;
    }

    .header-title[b-8qua60owg8] {
        width: 100%;
        font-size: 1.8rem;
        text-align: center;
    }

    .header-description[b-8qua60owg8] {
        font-size: 1.1rem;
        margin: 30px 0;
        line-height: 2.2;
        text-align: center;
    }

    .header-details-container[b-8qua60owg8] {
        display: block;
        line-height: 2.5;
        padding: 20px 10px;
    }


    .header-btn[b-8qua60owg8] {
        font-size: 1.2rem;
        margin: 15px auto;
        padding: 10px 20px;
    }

    .header-img[b-8qua60owg8] {
        padding: 30px;
    }

        .header-img img[b-8qua60owg8] {
            padding: 0px;
        }
}


@keyframes wave-animation-b-8qua60owg8 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
        /* حرك الصورة لأعلى */
    }

    100% {
        transform: translateY(0px);
        /* حرك الصورة لأسفل */
    }
}

/* _content/WebSite/Components/Pages/Home/Index.razor.rz.scp.css */
html[b-2l44wujp1i] {
    scroll-behavior: smooth;
}
/* _content/WebSite/Components/Pages/Home/Pricing.razor.rz.scp.css */
.pricings[b-2lwit1x403] {
    padding: 60px 0;
    background: #fff;
}
    .pricings h2[b-2lwit1x403] {
        color: var(--primary-dark-color);
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }

    .pricings h4[b-2lwit1x403] {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.2rem;
        color: var(--primary-dark-color);
    }


.pricing-grid[b-2lwit1x403] {
    margin-top:50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-item[b-2lwit1x403] {
    background: linear-gradient(195deg, rgb(243, 242, 254) 15%, rgb(235, 229, 252) 70%);
    border: 1px solid #ddd;
    padding: 50px 30px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 40px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease;
}

    .pricing-item:hover[b-2lwit1x403] {
        background: linear-gradient(195deg, rgb(237, 236, 255) 15%, rgb(220, 212, 246) 70%);
    }

    .pricing-item h3[b-2lwit1x403] {
        font-size: 2rem;
        margin: 10px 0;
        color: var(--primary-color);
    }

    .pricing-item p[b-2lwit1x403] {
        font-size: 1.2rem;
        color: var(--primary-color);
        line-height: 1.8;
    }


    .pricing-item button[b-2lwit1x403] {
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        width:100%;
        border-radius: 10px;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 1em;
    }

        .pricing-item button:hover[b-2lwit1x403] {
            background-color: var(--primary-dark-color);
        }

.recommended[b-2lwit1x403] {
    position: relative;
}

    .recommended[b-2lwit1x403]::before {
        content: "توصيك بها";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--secondary-color);
        color: #fff;
        padding: 10px 30px;
        font-size: 1em;
        border-radius: 4px;
    }

.plan-price-container[b-2lwit1x403] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.plan-price-container1[b-2lwit1x403] {
    display: flex;
}

.plan-price-container2[b-2lwit1x403] {
    display: flex;
}

.plan-price[b-2lwit1x403] {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.plan-curr[b-2lwit1x403] {
    font-size: 1rem;
    margin-right: 5px;
}

.plan-price-discount[b-2lwit1x403] {
    font-size: 1rem;
    text-decoration: line-through;
    color: #555;
}

.plan-curr-discount[b-2lwit1x403] {
    font-size: 1rem;
    margin-left: 5px;
    color: #555;
}

.plan-description[b-2lwit1x403] {
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}



/* Media Query for Mobile */
@media (max-width: 768px) {

    .pricing-item[b-2lwit1x403] {
        margin-bottom:15px;
    }
}
/* _content/WebSite/Components/Pages/Home/Systems.razor.rz.scp.css */

.systems[b-rbv7pvezef] {
    padding: 40px 0;
    background: #f4f4f4;
}

    .systems h2[b-rbv7pvezef] {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
        color: var(--primary-dark-color);
        line-height: 1.5;
    }

.system-item[b-rbv7pvezef] {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.system-content[b-rbv7pvezef] {
    flex: 1;
    padding-right: 20px;
}

    .system-content h3[b-rbv7pvezef] {
        font-size: 1.8rem;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

.system-description[b-rbv7pvezef] {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.system-content h4[b-rbv7pvezef] {
    font-size: 1.4rem;
    color: var(--primary-dark-color);
    margin-bottom: 10px;
}

.system-components[b-rbv7pvezef] {
    list-style: none;
    padding: 0;
}

    .system-components li[b-rbv7pvezef] {
        font-size: 1rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

        .system-components li i[b-rbv7pvezef] {
            color: var(--secondary-color);
            margin-left: 10px;
        }

.system-image[b-rbv7pvezef] {
    flex: 1;
    text-align: center;
}

    .system-image img[b-rbv7pvezef] {
        max-width: 60%;
        height: auto;
    }

/* Coming Soon Style */
.system-item.coming-soon[b-rbv7pvezef] {
    opacity: 0.7;
    position: relative;
}

    .system-item.coming-soon h3 span[b-rbv7pvezef] {
        font-size: 0.8rem;
        color: #e74c3c;
        margin-left: 5px;
    }

    .system-item.coming-soon[b-rbv7pvezef]::after {
        content: "قريبًا";
        position: absolute;
        top: 10px;
        right: 10px;
        background: #e74c3c;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.8rem;
    }


/* Media Query for Mobile */
@media (max-width: 768px) {

    .system-item[b-rbv7pvezef] {
        flex-direction: column;
        padding: 0 10px;
    }

    .system-content[b-rbv7pvezef] {
        padding : 0;
        margin-bottom: 20px;
    }

    .system-image[b-rbv7pvezef] {
        width: 100%;
        order: -1; /* الصورة تظهر أولاً على الجوال */
        margin-bottom: 20px;
    }

    .system-components[b-rbv7pvezef] {
        margin: 20px 10px;
    }
}
/* _content/WebSite/Components/Pages/Home/Trial.razor.rz.scp.css */

.trial[b-nrqj6k6ked] {
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

    .trial h2[b-nrqj6k6ked] {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .trial h4[b-nrqj6k6ked] {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .trial p[b-nrqj6k6ked] {
        color: var(--primary-light2-color);
        font-size: 1.3rem;
        margin-bottom: 40px;
    }

    .trial .btn[b-nrqj6k6ked] {
        background-color: var(--secondary-color);
        color: var(--primary-dark-color);
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1.1rem;
    }

        .trial .btn:hover[b-nrqj6k6ked] {
            background-color: var(--success-color);
        }


/* Media Query for Mobile */
@media (max-width: 768px) {

}
/* _content/WebSite/Components/Pages/Home/Units.razor.rz.scp.css */

.units[b-arw32ac3h8] {
    padding: 60px 0;
    background: #fff;
}

    .units h2[b-arw32ac3h8] {
        color: var(--primary-dark-color);
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }

        .units h2 strong[b-arw32ac3h8] {
            color: var(--secondary-color);
        }

        .units h2 span[b-arw32ac3h8] {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

    .units h4[b-arw32ac3h8] {
        text-align: center;
        margin-bottom: 15px;
        font-size: 1.2rem;
        color: #2c3e50;
    }


.unit-grid[b-arw32ac3h8] {
    margin-top:40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.unit-item[b-arw32ac3h8] {
    background: #ece9ef;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 calc(25% - 40px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .unit-item:hover[b-arw32ac3h8] {
        transform: translateY(-10px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .unit-item i[b-arw32ac3h8] {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .unit-item h3[b-arw32ac3h8] {
        font-size: 1.5rem;
        margin: 10px 0;
        color: #2c3e50;
    }

    .unit-item p[b-arw32ac3h8] {
        font-size: 1rem;
        color: #666;
    }

    .unit-item.coming-soon[b-arw32ac3h8] {
        opacity: 0.7;
        position: relative;
    }

        .unit-item.coming-soon h3 span[b-arw32ac3h8] {
            font-size: 0.8rem;
            color: #e74c3c;
            margin-left: 5px;
        }

        .unit-item.coming-soon[b-arw32ac3h8]::after {
            content: "قريبًا";
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e74c3c;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
        }


/* Media Query for Mobile */
@media (max-width: 768px) {

    .units h2[b-arw32ac3h8] {
        margin-bottom: 20px;
    }

    .units h4[b-arw32ac3h8] {
        margin-bottom: 10px;
    }

    .unit-grid[b-arw32ac3h8] {
        margin-top: 15px;
        flex-direction: column;
    }

    .unit-item[b-arw32ac3h8] {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

        .unit-item:last-child[b-arw32ac3h8] {
            margin-bottom: 0;
        }
}
/* _content/WebSite/Components/Pages/Home/WhyChoose.razor.rz.scp.css */

.why-choose[b-zr408ohjnj] {
    padding: 60px 0;
    background-color: #ece9ef;
    text-align: center;
}

    .why-choose h2[b-zr408ohjnj] {
        color: var(--primary-dark-color);
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }

.why-grid[b-zr408ohjnj] {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 0 auto;
}

.why-item[b-zr408ohjnj] {
    padding: 20px;
    text-align: center;
}

    .why-item:hover .why-icon[b-zr408ohjnj] {
        background: var(--success-color);
        color: var(--primary-color);
        transform: translateY(-10px);
    }

.why-icon[b-zr408ohjnj] {
    background: var(--primary-color);
    color: #fff;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease ,transform 0.3s ease;
}


.why-title[b-zr408ohjnj] {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.why-description[b-zr408ohjnj] {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-color);
}


/* Media Query for Mobile */
@media (max-width: 768px) {

}
/* _content/WebSite/Components/Pages/Plan.razor.rz.scp.css */

/* Header */
.header-container[b-tqysxq0wky] {
    padding: 5rem 0;
    text-align: center;
}

.header-title[b-tqysxq0wky] {
    text-align: center;
    font-size: 2.5rem;
    color: white;
}

.header-description[b-tqysxq0wky] {
    text-align: center;
    padding: 15px 0;
    font-size: 1.7rem;
    color: #8d7fa1;
}


/* Switch */
.toggle-container[b-tqysxq0wky] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 50px 0;
}

.toggle-label[b-tqysxq0wky] {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.toggle-switch[b-tqysxq0wky] {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .toggle-switch.monthly[b-tqysxq0wky] {
        background-color: #ddd;
    }

.toggle-circle[b-tqysxq0wky] {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.monthly .toggle-circle[b-tqysxq0wky] {
    transform: translateX(25px);
}


/* Plan Header */
.plan-header-container[b-tqysxq0wky] {
    position: sticky;
    top: var(--navbar-height);
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #E6E7F2;
    z-index: 1;
    width: 100%;
    display: flex;
    overflow:hidden;
}

.plan-header[b-tqysxq0wky] {
    background: linear-gradient(195deg, rgb(243, 242, 254) 15%, rgb(235, 229, 252) 70%);
    width: 25%;
    border-inline-start: 1px solid #E6E7F2;
    padding: 25px 20px;
    color: var(--primary-color);
}

.plan-title[b-tqysxq0wky] {
    color: inherit;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}
    .plan-price-container[b-tqysxq0wky] {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

.plan-price-container1[b-tqysxq0wky] {
    display: flex;
}

.plan-price-container2[b-tqysxq0wky] {
    display: flex;
}

.plan-price[b-tqysxq0wky] {
    font-size: 3rem;
    font-weight: bold;
}

.plan-curr[b-tqysxq0wky] {
    font-size: 1rem;
    margin-right: 5px;
}

.plan-price-discount[b-tqysxq0wky] {
    font-size: 1rem;
    text-decoration: line-through;
    color: #555;
}

.plan-curr-discount[b-tqysxq0wky] {
    font-size: 1rem;
    margin-left: 5px;
    color: #555;
}

.plan-description[b-tqysxq0wky] {
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.plan-basic[b-tqysxq0wky] {
    color: #1bb6f9;
}

.plan-professional[b-tqysxq0wky] {
    color: #fc787d;
}

.plan-advanced[b-tqysxq0wky] {
    color: #00ceb3;
}

/* Plan Details */
.details-container[b-tqysxq0wky] {
    border: 1px solid #E6E7F2;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.details[b-tqysxq0wky] {
    width: 100%;
}

.details-title[b-tqysxq0wky] {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 20px;
}

.details-item-container[b-tqysxq0wky] {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.details-item[b-tqysxq0wky] {
    width: 25%;
    border-top: 1px dashed #E6E7F2;
    border-inline-start: 1px solid #E6E7F2;
    padding: 15px 20px;
}

.details-item-title[b-tqysxq0wky] {
    font-size: 1rem;
}

.details-item-description[b-tqysxq0wky] {
    font-size: 0.9rem;
    font-weight: bold;
    width:100%;
}
    .details-item-description.des1[b-tqysxq0wky] {
        width: fit-content;
    }

    .details-item-description.des2[b-tqysxq0wky] {
        color: #bbc0c5;
        font-weight: normal;
        width: fit-content;
    }

.details-item-check[b-tqysxq0wky] {
    color: green;
    font-size: 1.1rem;
}

.details-item-cross[b-tqysxq0wky] {
    color: red;
    font-size: 1.1rem;
}

/* Media Query for Mobile */
@media (max-width: 768px) {

    .header-container[b-tqysxq0wky] {
        padding: 3rem 0;
    }

    .header-title[b-tqysxq0wky] {
        font-size: 1.7rem;
    }

    .header-description[b-tqysxq0wky] {
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .toggle-container[b-tqysxq0wky] {
        padding: 25px 0;
    }

    .toggle-label[b-tqysxq0wky] {
        font-size: 1rem;
        font-weight: normal;
    }

    .plan-header[b-tqysxq0wky] {
        text-align:center;
        padding: 5px 0;
    }

    .plan-title[b-tqysxq0wky] {
        font-size: 0.9rem;
    }

    .plan-price-container[b-tqysxq0wky] {
        display: block;
    }

    .plan-price-container1[b-tqysxq0wky] {
        width: 100%;
        display: block;
    }
        .plan-price-container1 div[b-tqysxq0wky] {
          justify-content:center;
        }

    .plan-price-container2[b-tqysxq0wky] {
        justify-content: center;
        padding:10px 0;
    }

    .plan-price[b-tqysxq0wky] {
        font-size: 1.5rem;
    }
    .plan-curr[b-tqysxq0wky] {
        font-size: 0.8rem;
    }

    .plan-price-discount[b-tqysxq0wky] {
        font-size: 0.8rem;
    }
    .plan-curr-discount[b-tqysxq0wky] {
        font-size: 0.8rem;
    }

    .plan-description[b-tqysxq0wky] {
        font-size: 0.8rem;
    }

    .details-title[b-tqysxq0wky] {
        font-size: 0.8rem;
        padding: 10px 15px;
    }

    .details-item[b-tqysxq0wky] {
        padding: 10px 15px;
    }

    .details-item-title[b-tqysxq0wky] {
        font-size: 0.8rem;
    }

    .details-item-description[b-tqysxq0wky] {
        font-size: 0.8rem;
    }


    .details-item-check[b-tqysxq0wky] {
        font-size: 0.9rem;
    }

    .details-item-cross[b-tqysxq0wky] {
        font-size: 0.9rem;
    }

}
