@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

::selection {
    color: #f7f5fa;
    background: #9C4DF4;
}

::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #9C4DF4;
    border-radius: 60px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #FF6652;
}

html {
     scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
box-sizing: inherit;
cursor: url(/asset/images/cursor.png), auto;

}

body {
    background-color: #F7F5FA;
    direction: rtl;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;


}

@font-face {
    font-family: dinbold;
    src: url(/asset/fonts/ArbFONTS-DINNextLTArabic-Bold-2.ttf);
}

@font-face {
    font-family: direg;
    src: url(/asset/fonts/ArbFONTS-DINNextLTArabic-Regular-2.ttf);
}

/*start nav */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    max-width: 1363px;
    width: 100%;
    margin-right: 60px;
}

.navbar {
    position: fixed !important;
    top: 20px;
    width: 100% !important;
    color: #000;
    z-index: 100;
    direction: rtl;
    font-family: "Cairo", serif;
    padding: 20px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
    background-color: #f7f5fa2d;
    backdrop-filter: blur(10px);
    border: 1px solid #9b4df429;
    border-radius: 40px;
}

.menu-items {
    order: 2;
    display: flex;
    margin-right: 125px;
}

.logo img {
    order: 1;
    width: 150px;
    margin-top: 10px;
    color: #0A033C;
    margin-right: 25px;
}

.menu-items li {
    list-style: none;
    margin-left: 2.5rem;
    font-size: 20px;
}

.co {
    margin-right: 250px;
}

.navbar a {
    color: #0A033C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #6f1df4;
}

@media (max-width: 992px) {
    .container {
        max-width: 1363px;
        width: 100%;
        margin-right: 0px;
    }



    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
        width: 300px;
        top: 0px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 23px;
        width: 29px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #f7f5fa;
        border-right: 1px solid #6f1df4;
        height: 100vh;
        /* max-width: 300px; */
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        padding-right: 20px;
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .logo img {
        position: absolute;
        right: 15px;
        font-size: 20px;
    }

    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    .navbar {
        width: 350px;
    }
}

/* ... existing styles ... */

.menu-items li {
    position: relative;
    /* لجعل الدروب مينيو يظهر بشكل صحيح */
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 20px;
}

.menu-items li:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 10px;
}

.dropdown li a {
    color: black;
    text-decoration: none;
    padding: 2px;
}

.dropdown li a:hover {
    border-bottom: 1px solid #6f1df4;

    transition: all 0.3s ease-in-out;
}


/* End nav */

/* Start the first sec */
.containerr {
    background: url(/asset/images/back.png);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.image img {
    width: 648px;
    height: 673px;
    margin-top: 35px;
}

.text {
    margin-top: 100px;
    padding: 40px;
    align-items: center;
    align-content: center;
}

.text h3 {
    font-size: 30px;
    background-color: #FFFFFF;
    color: #FF6652;
    display: inline-block;
    width: 200px;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: direg;
}

.text h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 450;
    color: #0A033C;
    font-family: direg;
    line-height: 1.2;
}

.menu-items li {
    position: relative;
    /* لجعل الدروب مينيو يظهر بشكل صحيح */
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 20px;
}

.menu-items li:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 10px;
}

.dropdown li a {
    color: black;
    text-decoration: none;
    padding: 2px;
}

.dropdown li a:hover {
    border-bottom: 1px solid #6f1df4;

    transition: all 0.3s ease-in-out;
}

span {
    color: #FF6652;
}

.text p {
    font-size: 16px;
    color: #5D5A6F;
    font-family: "Cairo", serif;
    margin-top: 30px;
}

.text button {
    background-color: #9C4DF4;
    width: 311px;
    height: 50px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 24px;
    font-family: "Cairo", serif;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.text button:hover {
    background-color: #FF6652;
}

.online button:hover {
    background-color: #FF6652;
}

/* responsive the first section */

@media (max-width: 992px) {
    .co {
        margin-right: 0px;
    }

    .text h3 {
        font-size: 20px;
        background-color: #FFFFFF;
        color: #FF6652;
        display: inline-block;
        width: 100px;
        align-items: center;
        text-align: center;
        border-radius: 20px;
        margin-bottom: 10px;
        font-weight: 400;
        font-family: direg;
    }

    .text {
        margin-top: 150px;
        padding: 40px;
        align-items: center;
        align-content: center;
    }

    .image img {
        width: 448px;
        height: 473px;
        margin-top: 105px;
    }

    .text h1 {
        font-size: 35px;
        margin-bottom: 20px;
        font-weight: 450;
        color: #0A033C;
        font-family: direg;
        line-height: 1.2;
    }

    .text p {
        font-size: 10px;
        color: #5D5A6F;
        font-family: "Cairo", serif;
        margin-top: 30px;
    }

    .text button {
        background-color: #9C4DF4;
        width: 211px;
        height: 40px;
        margin-top: 20px;
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 18px;
        font-family: "Cairo", serif;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
}

@media (max-width: 768px) {
    .containerr {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .co {
        margin-right: 0px;
    }

    .text h3 {
        font-size: 15px;
        background-color: #FFFFFF;
        color: #FF6652;
        display: inline-block;
        width: 100px;
        align-items: center;
        text-align: center;
        border-radius: 20px;
        margin-bottom: 10px;
        font-weight: 400;
        font-family: direg;
    }

    .text {
        margin-top: 90px;
        padding: 40px;
        align-items: center;
        align-content: center;
    }

    .image img {
        width: 428px;
        height: 433px;
        margin-top: 5px;
    }

    .text h1 {
        font-size: 35px;
        margin-bottom: 20px;
        font-weight: 450;
        color: #0A033C;
        font-family: direg;
        line-height: 1.2;
    }

    .text p {
        font-size: 10px;
        color: #5D5A6F;
        font-family: "Cairo", serif;
        margin-top: 30px;
    }

    .text button {
        background-color: #9C4DF4;
        width: 211px;
        height: 40px;
        margin-top: 20px;
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 18px;
        font-family: "Cairo", serif;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
}

@media (max-width: 427px) {
    .image img {
        width: 348px;
        height: 373px;
        margin-top: 5px;
    }
}

/* end responsive section */

/*start online section */
.online {
    align-items: center;
    text-align: center;
    margin-top: 100px;
    position: relative;
}

.online h1 {
    font-size: 45px;
    color: #0A033C;
    font-family: dinbold;
    width: 750px;
    display: inline-block;
}

.online p {
    font-size: 16px;
    color: #5D5A6F;
    font-family: cairo;
    margin-top: 20px;
    display: inline-block;
    width: 700px;
}

.online button {
    background-color: #9C4DF4;
    width: 311px;
    height: 50px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 24px;
    font-family: "Cairo", serif;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

@media (max-width: 992px) {
    .online {
        align-items: center;
        text-align: center;
        margin-top: 50px;
    }

    .online h1 {
        font-size: 35px;
        color: #0A033C;
        font-family: dinbold;
        width: 300px;
        display: inline-block;
    }

    .online p {
        font-size: 10px;
        color: #5D5A6F;
        font-family: cairo;
        margin-top: 20px;
        display: inline-block;
        width: 300px;
    }

    .online button {
        background-color: #9C4DF4;
        width: 211px;
        height: 40px;
        margin-top: 20px;
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 18px;
        font-family: "Cairo", serif;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
}

.video-call {
    width: 100%;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
}

.video-call img {
    width: 1000px;
}

@media (max-width: 992px) {
    .video-call img {
        width: 700px;
    }
}

@media (max-width: 768px) {
    .video-call img {
        width: 400px;
    }
}

@media (max-width: 412px) {
    .video-call img {
        width: 350px;
    }
}

.pattern-left {
    position: absolute;
    left: 0;
    overflow: hidden;
}

.pattern-right {
    position: absolute;
    overflow: hidden;
}

@media (max-width: 992px) {
    .pattern-left {
        position: absolute;
        left: 0;
        overflow: hidden;
    }

    .pattern-left img {
        width: 120px;
    }

    .pattern-right {
        position: absolute;
        overflow: hidden;
    }

    .pattern-right img {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .pattern-left {
        position: absolute;
        left: 0;
        overflow: hidden;
    }

    .pattern-left img {
        width: 80px;
    }

    .pattern-right {
        position: absolute;
        overflow: hidden;
    }

    .pattern-right img {
        width: 80px;
    }
}

@media (max-width: 412px) {
    .pattern-left {
        position: absolute;
        left: 0;
        overflow: hidden;
    }

    .pattern-left img {
        width: 50px;
    }

    .pattern-right {
        position: absolute;
        overflow: hidden;
    }

    .pattern-right img {
        width: 50px;
    }
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: direg;
    font-size: 12px;
    gap: 100px;
}

.icon-one {
    display: flex;
    text-align: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    width: 300px;
    justify-content: center;
    height: 100px;
    transition: all 0.5s ease;
}

.icon-two {
    display: flex;
    text-align: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    width: 300px;
    justify-content: center;
    height: 100px;
    transition: all 0.5s ease;
}

.icon-three {
    display: flex;
    text-align: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    width: 300px;
    justify-content: center;
    height: 100px;
    transition: all 0.5s ease;
}

.icon-one:hover {
    transform: translateY(-15px);
}

.icon-two:hover {
    transform: translateY(-15px);
}

.icon-three:hover {
    transform: translateY(-15px);
}

.icon img {
    margin-left: 40px;
}

@media (max-width: 992px) {
    .icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
        font-family: direg;
        font-size: 12px;
        gap: 22px;
    }
}

/*animation */
.fade-in-left,
.fade-in-right {
    opacity: 0;
    /* اجعل العنصر غير مرئي في البداية */
    transition: opacity 1s ease-in-out;
    /* إضافة انتقال سلس */
}

.fade-in-left.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInLeft 1s forwards;
}

.fade-in-right.visible {
    opacity: 1;
    /* اجعل العنصر مرئي عند إضافة الفئة */
    animation: fadeInRight 1s forwards;
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*services section*/
.services {
    align-items: center;
    text-align: center;
    margin-top: 100px;
}

.services h1 {
    font-size: 45px;
    color: #0A033C;
    font-family: dinbold;
    width: 750px;
    display: inline-block;
}

.services p {
    font-size: 16px;
    color: #5D5A6F;
    font-family: cairo;
    margin-top: 20px;
    display: inline-block;
    width: 700px;
}


@media (max-width: 992px) {


    .services h1 {
        font-size: 35px;
        color: #0A033C;
        font-family: dinbold;
        width: 300px;
        display: inline-block;
    }

    .services p {
        font-size: 10px;
        color: #5D5A6F;
        font-family: cairo;
        margin-top: 20px;
        display: inline-block;
        width: 300px;
    }

    .services {
        margin-top: 20px;
    }
}

.container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    font-family: cairo;
    row-gap: 0px;
}

.card {
    background-color: white;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.053);
    transition: all .5s ease;
    margin-top: 50px;
}

.card h3 {
    font-size: 24px;
    color: #0A033C;
    margin: 0;
    font-weight: 600;
}

.card p {
    margin: 10px 0;
    color: #5D5A6F;
}

.card .number {
    font-size: 30px;
    font-weight: bold;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
}

.card button {
    border: 1px solid #9C4DF4;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    background-color: transparent;
    color: #9C4DF4;
    font-family: cairo;
    transition: all 0.5s ease;
}

.card button:hover {
    background-color: #9C4DF4;
    color: #f7f5fa;
}

.card:hover {
    transform: translateY(-15px);

}

/*contact form */
.contact-section {
    width: 100%;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1rem;
}

.contact-intro>*+* {
    margin-top: 1rem;
}

.contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.contact-description {
    color: rgb(107 114 128);
}

.form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
    color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.form-textarea {
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background-color: #9C4DF4;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
    border: none;
    transition: all 0.5s ease;
}

.form-submit:hover {
    background-color: #FF6652;
}

.contact {
    display: flex;
    font-family: cairo;
    margin-top: 100px;
}

.contact img {
    width: 350px;
    height: 350px;
    align-items: center;
    text-align: center;
    align-content: center;
    margin-top: 300px;
    margin-left: 200px;
    margin-right: 100px;
}

.form-textarea {
    font-family: cairo;
}

@media (max-width:992px) {
    .contact {
        display: flex;
        flex-direction: column;
        font-family: cairo;
        margin-top: 100px;
    }

    .contact img {
        width: 350px;
        height: 350px;
        align-items: center;
        text-align: center;
        align-content: center;
        margin-top: 300px;
        margin-left: 200px;
        margin-right: 100px;
        display: none;
    }
}

.containerf {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: cairo;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    color: #333;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.section {
    margin: 10px;
    text-align: right;
}

.section h3 {
    margin: 5px 0;
    font-size: 16px;
    font-weight: normal;
    color: #555;
}

.section h3:hover {
    color: #9C4DF4;
}

.social-media {
    text-align: center;
    margin: 20px 0;
}

.social-media a {
    color: #333;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #9C4DF4;
}

.footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #777;
}



a {
    text-decoration: none;

}

.footer p {
    margin: 5px 0;
    text-decoration: none;
    border: none;

}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .section {
        margin: 10px 0;
        text-align: center;
    }

    .social-media {
        margin: 10px 0;
    }
}
.container, .containerr {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    /* يمكن تعديل القيمة حسب الحاجة */
}

.containerr {
    margin-top: 120px;
}


.text-quran h1{
    margin-top: 100px;
    padding: 30px;
}
.h1{
    margin-bottom: 10px;
    align-items: center;
    text-align: center;
    
}
.he{
    color: #9C4DF4;
}
.text-quran p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}

.text-quran1 h1{
    margin-top: 100px;
    padding: 30px;
}

.text-quran1 p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}
.text-quran2 h1{
    margin-top: 100px;
    padding: 30px;
}

.text-quran2 p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}

.text-quran3 h1{
    margin-top: 100px;
    padding: 30px;
}

.text-quran3 p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}

.text-quran4 h1{
    margin-top: 100px;
    padding: 30px;
}

.text-quran4 p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}
.text-quran5 h1{
    margin-top: 100px;
    padding: 30px;
}

.text-quran5 p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}

.text-quran6 h1{
    margin-top: 100px;
    padding: 30px;
}

.text-quran6 p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}
.text-quran7 h1{
    margin-top: 100px;
    padding: 30px;
}

.text-quran7 p{
    padding: 10px;
    margin-right: 20px;
    color: #0A033C;
    font-size: 20px;
}

