/*
	Theme Name: Hoor
	Theme URI: https://foursw.com/
	Author: تم تصميم وتطوير بواسطة شركة foursw
	Author URI: https://foursw.com/
*/
/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    --yallow: #FFA500;
    --Dark-blue: #1A3D5D;
    --Green: #5DB168;
    --blue: #00AAFF;
    --Silver: #6D6E71;



    /*========== Font and typography ==========*/
    --body-font: 'Inter', sans-serif;

    --h1-font-size: 2.986rem;
    /* 47.776px */
    --h2-font-size: 2.986rem;
    /* 47.776px */
    --h3-font-size: 2.074rem;
    /* 33.184px */
    --h4-font-size: 1.728rem;
    /* 27.648px */
    --h5-font-size: 1.44rem;
    /* 23.04px */
    --h6-font-size: 1.2rem;
    /* 19.2px */
    --normal-font-size: 1rem;
    /* 16px */

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--body-font);
}

html {
    scroll-behavior: smooth;
}

input,
button {
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: 0.6rem;
    background-color: hsl(24, 32%, 95%);
    border-radius: 0.2rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--yallow);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e69500;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1320px;
    margin-inline: 1.5rem;
    margin: 0 auto;
}

.section {
    padding-block: 5rem 1rem;
}

div.prog {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 5px;
    background-color: var(--Linear);
    z-index: 999;
    animation: pro linear forwards;
    animation-timeline: scroll();


}

@keyframes pro {
    0% {
        width: 10px;
        background-color: #fff3e0;
        /* لون برتقالي فاتح جداً */
    }

    30% {
        background-color: #ffd180;
        /* درجة وسط */
    }

    50% {
        background-color: #ffb74d;
        /* أغمق شوية */
    }

    100% {
        width: 100%;
        background-color: var(--yallow);
        /* اللون الأساسي */
    }
}

.play-movie {
    position: absolute;
    color: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--yallow);
    font-size: var(--h3-font-size);
    animation: animate 2s linear infinite;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* video-container */

.video-container {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-container.active {
    display: flex;
}

.video-box {
    position: relative;
    max-width: 800px;
    width: 90%;

    video {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
}

.close-video {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 162, 43, 0.7);
        /* بداية الظل بلون الجديد */
    }

    40% {
        box-shadow: 0 0 0 50px rgba(239, 162, 43, 0);
        /* توسع الظل ويصير شفاف */
    }

    80% {
        box-shadow: 0 0 0 50px rgba(239, 162, 43, 0);
        /* الظل لسه مفتوح */
    }

    100% {
        box-shadow: 0 0 0 rgba(239, 162, 43, 0);
        /* اختفاء الظل */
    }
}


/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: box-shadow .4s;
    background: white;
    box-shadow: 0px 7.5px 37.5px 0px #0000000D;
    padding: 0 4rem;
}

.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90.14816284179688px;
    width: 100%;
}

.nav_logo img {
    width: 153.01760864257812px;
    height: 58.521053314208984px;
}


.nav_list {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}


.nav_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 0 16px;
    height: 35.30803298950195px;
    color: var(--yallow);
    font-size: 12.76px;
    font-weight: 800;
    border: 1.42px solid var(--yallow);
    border-radius: 11.34px;
}

.nav_link:hover {
    color: white;
    transition: all 0.3s ease;
    background: var(--yallow);
}

.nav_link.active {
    color: white;
    background: var(--yallow);
}

.btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .btn,
.btn-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 190.2538604736328px;
    height: 36.5634651184082px;
    font-size: 15.82px;
    font-weight: var(--font-medium);
    border-radius: 4.52px;
    background: var(--Dark-blue);
    transition: all 0.3s ease-in-out;
    color: white;
}


.nav_toggle,
.nav_close,
.btn-mobile {
    display: none;
}

/* لما المنيو يتفعل، بنغير الـ right عشان يظهر */
.nav_menu.active {
    right: 0;
}



/*=============== PAGE 1 ===============*/
/*=============== HOME ===============*/
.home {
    position: relative;
    padding: 13rem 3rem 5rem 6rem;

    &::before {
        content: "";
        position: absolute;
        background-image: url(assets/image/plan.webp);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 195px;
        height: 130px;
        left: 0;
        bottom: 55%;
    }

    .home_container {

        .home_content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .home_text {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;


                h2 {
                    font-size: var(--h3-font-size);
                    font-weight: var(--font-bold);
                    color: var(--Dark-blue);
                    width: 515px;

                    span {
                        color: var(--yallow);
                    }
                }

                p {
                    font-size: 15px;
                    font-weight: var(--font-medium);
                    color: var(--Silver);
                    width: 621.75px;
                }

                .features {
                    display: flex;
                    gap: 1rem;

                    .first,
                    .second,
                    .third {
                        width: 143.5314px;
                        height: 56.91398239135742px;
                        border-radius: 7.5px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 5px;
                    }

                    .first {
                        background: #D2F0FF;

                        h6 {
                            font-size: 12.79px;
                            font-weight: var(--font-bold);
                            color: var(--blue);
                        }

                        p {
                            font-size: 10.4px;
                            font-weight: var(--font-semi-bold);
                            color: var(--blue);
                            width: fit-content;
                        }
                    }

                    .second {
                        background: #FFEDCD;

                        h6 {
                            font-size: 12.79px;
                            font-weight: var(--font-bold);
                            color: var(--yallow);
                        }

                        p {
                            font-size: 10.4px;
                            font-weight: var(--font-semi-bold);
                            color: var(--yallow);
                            width: fit-content;
                        }
                    }

                    .third {
                        background: #C8E5FF;

                        h6 {
                            font-size: 12.79px;
                            font-weight: var(--font-bold);
                            color: var(--blue);
                        }

                        p {
                            font-size: 10.4px;
                            font-weight: var(--font-semi-bold);
                            color: var(--blue);
                            width: fit-content;
                        }
                    }


                }

                .home_btns {
                    display: flex;
                    justify-content: center;
                    flex-direction: column;
                    gap: 1.5rem;
                    margin-top: 1rem;

                    .btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 460.5px;
                        height: 45px;
                        color: white;
                        background: var(--yallow);
                        border-width: 1.23px, 1.23px, 3.69px, 1.23px;
                        border-style: solid;
                        border-color: #E5E5E5;
                        border-radius: 6px;
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-semi-bold);
                    }

                    p {
                        font-size: 13.75px;
                        font-weight: var(--font-medium);
                        color: var(--Silver);
                        text-align: center;
                        width: 460.5px;

                        a {
                            color: var(--yallow);
                            font-weight: var(--font-bold);
                        }
                    }
                }
            }

            .home_img {
                position: relative;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;


                .img1 {
                    width: 396.2589111328125px;
                    height: 408.5221252441406px;
                }

                .img2 {
                    position: absolute;
                    width: 111.66075897216797px;
                    height: 108.32310485839844px;
                    top: -15px;
                    left: 150px;
                }


                .icon1 {
                    position: absolute;
                    width: 44.251861572265625px;
                    height: 44.44742965698242px;
                    top: 100px;
                    left: 125px;
                }

                .icon2 {
                    position: absolute;
                    width: 54.40850067138672px;
                    height: 54.64045333862305px;
                    bottom: 230px;
                    right: 110px;
                }
            }
        }
    }
}

/*=============== PATH ===============*/
.path {
    padding: 5rem 3rem;

    .path_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        h2 {
            font-size: 36px;
            font-weight: var(--font-semi-bold);
            color: #111214;
            text-align: center;
            margin-bottom: 1rem;
        }

        p {
            font-size: 13.5px;
            font-weight: var(--font-medium);
            color: var(--Silver);
            text-align: center;
        }

        .path_content {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 4rem;

            .item_1 {
                background: #E8F7FF;

                .item_body {

                    p {
                        color: var(--blue);
                    }
                }
            }

            .item_2 {
                background: #FFF6E6;

                .item_body {

                    p {
                        color: var(--yallow);
                    }
                }
            }

            .item_3 {
                background: #E3F2FF;

                .item_body {

                    p {
                        color: var(--blue);
                    }
                }
            }

            .item {
                display: flex;
                /* justify-content: space-between; */
                align-items: start;
                flex-direction: column;
                gap: 1rem;
                border-radius: 30px;
                width: 249px;
                height: 248.5px;
                padding: 20px 20px 10px 20px;

                .item_header {
                    display: flex;
                    justify-content: space-between;
                    align-items: end;
                    gap: 15px;
                    width: 100%;
                    margin-bottom: 1.5rem;

                    img {
                        width: 45.578575134277344px;
                        height: 37.5px;
                    }

                    h3 {
                        font-size: 15px;
                        font-weight: var(--font-semi-bold);
                        color: #252525;
                        width: 160.5px;
                    }
                }

                .item_body {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 12px;

                    p {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        font-size: 10.5px;
                        font-weight: var(--font-semi-bold);
                        width: 177px;
                        text-align: start;

                        i {
                            font-size: 8px;
                        }
                    }
                }
            }

            .path_img {
                position: absolute;
                right: 50px;
                top: -25px;
                width: 278.25px;
                height: 281.25px;

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

/*=============== COURSE ===============*/
.course {
    padding: 5rem 1rem;


    .course_container {

        h2 {
            font-size: 36px;
            font-weight: var(--font-semi-bold);
            color: #111214;
            margin-bottom: 3rem;
        }

        p {
            font-size: 13.5px;
            font-weight: var(--font-medium);
            color: var(--Silver);
            margin-bottom: 1rem;
        }

        .course_tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin: 2rem 0;

            .tab {
                width: 143.5313720703125158px;
                height: 56px;
                color: var(--yallow);
                background: white;
                cursor: pointer;
                border: 2px solid var(--yallow);
                font-size: 16.5px;
                font-weight: var(--font-bold);

                &:nth-child(1) {
                    border-radius: 19.18px 0 0 19.18px;
                    border-right: none;
                }

                &:nth-child(3) {
                    border-radius: 0 19.18px 19.18px 0;
                    border-left: none;
                }
            }

            .tab.active {
                position: relative;
                background: var(--yallow);
                color: white;

                &::after {
                    content: "";
                    position: absolute;
                    width: 0;
                    height: 0;
                    border-left: 10px solid transparent;
                    border-right: 10px solid transparent;
                    border-top: 11px solid var(--yallow);
                    bottom: -11px;
                    left: 60px;
                }
            }
        }



        .course_content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3.5rem 2.5rem;
            /* justify-items: center; */
            margin-bottom: 5rem;


            .course_item {
                width: fit-content;
                height: auto;
                border-radius: 12px;
                padding: 15px;


                .course_img {
                    position: relative;
                    width: 100%;
                    height: 219px;
                    border-radius: 15px 15px 0 0;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .course_text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 10px;
                    padding: 20px;
                    box-shadow: 0px 0px 45px 0px #0000000D;
                    border-radius: 0 0 15px 15px;


                    h3 {
                        margin-top: 15px;
                        font-size: 16.5px;
                        font-weight: var(--font-bold);
                        color: var(--Dark-blue);
                    }

                    p {
                        font-size: 12px;
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        margin-bottom: 15px;
                        width: 350.25px;
                    }

                    .btn_logo {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 1rem;
                        width: 100%;


                        img {
                            width: 39.41474151611328px;
                            height: 44.64532470703125px;
                        }

                        a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            width: 118.5px;
                            height: 36px;
                            border-radius: 50px;
                            background: white;
                            color: var(--yallow);
                            border: 0.75px solid var(--yallow);
                            font-size: 10.5px;
                            font-weight: var(--font-semi-bold);
                            transition: all 0.3s ease-in-out;
                        }
                    }
                }
            }
        }
    }
}

/*=============== OUR BLOGS ===============*/
.our_blog {
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem 7rem 3rem;
    background-image: url(assets/image/background\ islamic\ past.webp);
    background-position: left;
    background-size: 563.3214111328125px 100%;
    background-repeat: no-repeat;

    &::after {
        position: absolute;
        content: "";
        width: 135px;
        height: 135px;
        border-radius: 50%;
        border: 22.5px solid var(--yallow);
        right: -80px;
        top: 20px;
        z-index: -1;
    }

    &::before {
        content: "";
        position: absolute;
        right: 0px;
        bottom: -35px;
        background-image: url(assets/image/islamic\ past\ girl.webp);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 308.1850280761719px;
        height: 266.9180603027344px;
    }

    .our_blog_container {

        h2 {
            font-size: 36px;
            font-weight: var(--font-semi-bold);
            color: var(--Silver);
            text-align: center;
            margin-bottom: 3rem;
        }

        .our_blog_articles_items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            background-color: white;
            padding: 1rem;
            border-radius: 20px;



            .item {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1rem;
                flex-direction: column;



                .item_img {
                    position: relative;
                    width: 405px;
                    height: 283px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .item_content {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 10px;
                    flex-direction: column;
                    width: 402px;
                    margin-top: 10px;

                    .date {

                        span {
                            font-size: 14px;
                            font-weight: var(--font-regular);
                            color: #B1B1B1;
                        }
                    }


                    h3 {
                        font-size: 18px;
                        font-weight: var(--font-medium);
                        color: black;
                        width: 396px;
                    }

                    p {
                        font-size: 14px;
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        width: 368px;
                    }

                    .btn_read {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 12px;
                        width: 100%;

                        .btn {

                            a {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                gap: 10px;
                                /* text-decoration: underline; */
                                color: var(--Green);
                                font-size: var(--normal-font-size);
                                font-weight: var(--font-semi-bold);
                            }
                        }

                        .read {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            gap: 12px;
                            color: var(--yallow);

                            h4 {
                                font-size: 14px;
                                font-weight: var(--font-medium);
                            }

                            i {
                                font-size: var(--normal-font-size);
                            }
                        }
                    }
                }
            }
        }

        .btn_blog {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 3rem;

            a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 242.25px;
                height: 41.25px;
                border-radius: 7.5px;
                background-color: var(--Silver);
                font-size: 15px;
                font-weight: var(--font-semi-bold);
                color: white;
            }
        }

    }
}

/*=============== TESTIMONIALS ===============*/
.testimonials {
    position: relative;
    padding: 8rem 3rem;

    &::after {
        position: absolute;
        content: "";
        width: 160.76434326171875px;
        height: 91.78387451171875px;
        background-image: url(assets/image/plan\ 2.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        right: 30px;
        top: 30px;
    }

    .testimonials_container {
        position: relative;
        background: #ffa50012;
        padding-bottom: 2rem;

        &::after {
            position: absolute;
            content: "";
            width: 200.674484px;
            height: 155.989883px;
            background-image: url(assets/image/cup\ 2.webp);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            right: 50px;
            top: 0;
        }

        &::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 55.989883px;
            background-image: url(assets/image/testimonial\ 2.webp);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            top: -36px;
        }

        .testimonials_content {

            .title_img {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                gap: 10px;
                margin-bottom: 3rem;

                .img {
                    width: 62.68px;
                    height: 64.86px;
                    margin-top: -95px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .title {

                    h2 {
                        width: 340px;
                        font-size: 18.8px;
                        font-weight: var(--font-semi-bold);
                        color: var(--yallow);
                    }
                }
            }

            h3 {
                font-size: var(--h4-font-size);
                font-weight: var(--font-semi-bold);
                color: var(--Silver);
                text-align: center;
                margin-bottom: 1.5rem;
            }

            .swiper {
                padding: 5rem 2.5rem;

                .swiper-wrapper {
                    gap: 5rem;
                }

                .swiper-slide {
                    width: 395.0197px !important;
                }

                .btns_swiper {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    position: absolute;
                    top: 50%;
                    width: 90%;
                    padding: 0 1rem;
                    transform: translateY(-50%);
                    z-index: 2;
                    pointer-events: none;
                    /* عشان ميأثرش على السلايدر */

                    .swiper-button-next,
                    .swiper-button-prev {
                        width: 40px;
                        height: 40px;
                        border: 2.25px solid var(--Green);
                        border-radius: 50%;
                        color: var(--Green);
                        font-size: 12px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        pointer-events: all;
                    }



                    .swiper-button-next::after,
                    .swiper-button-prev::after {
                        font-family: "Font Awesome 6 Free";
                        /* أو أي أكونت مناسب عندك */
                        font-weight: 900;
                        content: "";
                        font-size: 18px;
                        /* هنستخدم أيقونة السهم من Font Awesome أو Swiper */
                    }

                    .swiper-button-next::after {
                        content: "\f105";
                        /* FontAwesome right arrow */
                    }

                    .swiper-button-prev::after {
                        content: "\f104";
                        /* FontAwesome left arrow */
                    }
                }
            }

            .testimonial {
                position: relative;
                display: flex;
                justify-content: space-between;
                align-items: start;
                background-color: var(--yallow);
                border-radius: 5.88px;
                padding: .8rem 1.5rem;
                transform: rotate(3.88deg);
                height: 200px;
                z-index: 1;

                &::after {
                    position: absolute;
                    content: "";
                    width: 100%;
                    height: 100%;
                    border: 1.18px dashed var(--yallow);
                    transform: rotate(-3.88deg);
                    left: -15px;
                    border-radius: 7.84px;
                    z-index: -1;
                }

                .data {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 1rem;

                    .name_img {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 1.5rem;

                        img {
                            width: 40.0035px;
                            height: 30.9915px;
                        }

                        h4 {
                            font-size: 14.58px;
                            font-weight: var(--font-bold);
                            color: white;
                        }

                    }

                    p {
                        font-size: 12px;
                        font-weight: var(--font-semi-bold);
                        color: white;
                        text-align: start;
                        line-height: 19.5px;
                        width: 245.7083px;
                    }
                }

                .testimonial_img {
                    position: relative;
                    width: 80.7106px;
                    height: 113.5948px;

                    &::after {
                        position: absolute;
                        content: "";
                        width: 12.650851px;
                        height: 30.601603px;
                        background-image: url(assets/image/pin.webp);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        left: -8px;
                        top: -18px;
                    }

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .name_teacher {
                    position: absolute;
                    display: flex;
                    right: 10px;
                    bottom: 10px;

                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        font-size: 12px;
                        font-weight: var(--font-semi-bold);
                        color: white;
                    }
                }
            }

            .testimonials_btn {
                display: flex;
                justify-content: center;
                align-items: center;

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: var(--Green);
                    border-radius: 7.5px;
                    width: 242.25px;
                    height: 41.25px;
                    font-size: var(--font-semi-bold);
                    font-weight: 15px;
                    color: white;
                }
            }
        }
    }
}

/*=================== LEARNING FROM HOME ================*/
.learning_from_home {
    padding: 5rem 3rem;

    .from_home_container {
        position: relative;

        .from_home_content {
            display: flex;
            /* justify-content: space-between; */
            align-items: center;

            .from_home_img {
                width: 482.18182373046875px;
                height: 663px;
                border-radius: 37.5px;

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            .from_home_text {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                margin-left: -80px;

                p {
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 320.5px;
                    height: 20px;
                    background-color: var(--yallow);
                    font-size: 10.5px;
                    font-weight: var(--font-semi-bold);
                    color: white;

                    &::before {
                        content: "";
                        position: absolute;
                        background-image: url(assets/image/arrow\ l.webp);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        left: 5px;
                        width: 39px;
                        height: 7.399387359619141px;
                    }

                    &::after {
                        content: "";
                        position: absolute;
                        background-image: url(assets/image/arrow\ r.webp);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        right: 5px;
                        width: 39px;
                        height: 7.399387359619141px;
                    }

                }

                h2 {
                    font-size: 36px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Silver);
                    width: 567px;
                }

                .featuers {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;
                    gap: 5rem;

                    .item {
                        position: relative;
                        width: 277.5px;
                        height: 169.75px;
                        display: flex;
                        /* justify-content: space-between; */
                        align-items: start;
                        gap: 1.5rem;
                        text-align: start;
                        background-color: white;
                        border: 0.75px solid var(--yallow);
                        padding: 2rem;
                        padding-left: 3rem;
                        border-radius: 15px;
                        flex-direction: column;

                        &::before {
                            position: absolute;
                            content: "";
                            top: 20px;
                            left: -25px;
                            background-image: url(assets/image/icon\ 3.webp);
                            background-position: center;
                            background-repeat: no-repeat;
                            background-size: cover;
                            width: 60px;
                            height: 60px;

                        }

                        &:nth-child(2)::before {
                            background-image: url(assets/image/icon\ 8.webp);
                        }

                        span {
                            font-size: 13.5px;
                            font-weight: var(--font-semi-bold);
                            color: var(--Silver);
                        }

                        h3 {
                            font-size: 16.5px;
                            font-weight: var(--font-bold);
                            color: var(--yallow);
                        }

                        p {
                            width: 206.25px;
                            font-size: 12px;
                            font-weight: var(--font-regular);
                            line-height: 15px;
                            color: var(--Silver);
                            background-color: transparent;
                        }
                    }
                }
            }
        }

        .achivements {
            position: absolute;
            right: 125px;
            bottom: -180px;
            width: 967.5px;
            height: 315px;
            border-radius: 37.5px;
            background-color: var(--Dark-blue);

            .achivements_content {
                display: flex;
                justify-content: space-between;
                align-items: center;
                background-image: url(assets/image/bg.webp);
                background-position: center;
                padding: 3rem;
                background-repeat: no-repeat;
                background-size: cover;

                .achivements_text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 1.5rem;

                    span {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 10.5px;
                        font-weight: var(--font-semi-bold);
                        color: white;

                        &::after {
                            content: "";
                            position: absolute;
                            background-image: url(assets/image/arrow\ r.webp);
                            background-position: center;
                            background-repeat: no-repeat;
                            background-size: cover;
                            right: -50px;
                            width: 41px;
                            height: 8.399387px;
                        }
                    }

                    h2 {
                        font-size: 31.5px;
                        font-weight: var(--font-bold);
                        color: white;
                        width: 381px;
                        line-height: 45px;
                        margin-bottom: 1rem;
                    }

                    p {
                        font-size: 12px;
                        font-weight: var(--font-regular);
                        color: white;
                        width: 345px;
                    }
                }

                .achivements_fetures {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 1rem;

                    .item {
                        width: 245px;
                        height: 116.25px;
                        padding: 1.5rem;
                        border-radius: 15px;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        border: 0.75px solid #FFFFFF;



                        .img {
                            width: 48px;
                            height: 48px;

                            img {
                                width: 100%;
                                height: 100%;
                            }
                        }

                        .data {
                            display: flex;
                            justify-content: center;
                            align-items: start;
                            flex-direction: column;

                            h3 {
                                font-size: 37.5px;
                                font-weight: var(--font-bold);
                                color: white;
                            }

                            p {
                                font-size: 12px;
                                font-weight: var(--font-regular);
                                color: white;
                                line-height: 22.5px;
                                width: 115px;
                            }
                        }
                    }
                }
            }
        }
    }
}

/*=================== READY ================*/
.ready {
    padding: 15rem 3rem 5rem 3rem;

    .ready_container {

        h2 {
            position: relative;
            font-size: 36px;
            font-weight: var(--font-semi-bold);
            color: #111214;
            text-align: center;
            margin-bottom: 15px;
            z-index: 1;

            &::after {
                content: "";
                position: absolute;
                right: 36%;
                bottom: 0px;
                width: 130.156006px;
                transform: rotate(-3deg);
                height: 4px;
                background: var(--yallow);
                z-index: -1;
            }

            &::before {
                content: "";
                position: absolute;
                right: 36%;
                bottom: -6px;
                width: 130.156006px;
                transform: rotate(-7deg);
                height: 4px;
                background: var(--yallow);
                z-index: -1;
            }
        }

        p {
            font-size: 13.5px;
            font-weight: var(--font-medium);
            color: var(--Silver);
            text-align: center;

            span {
                color: var(--yallow);
            }
        }

        .ready__content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .ready_text {
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;
                gap: 2rem;

                .icon_text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 1rem;


                    .icon {
                        margin-top: 3px;

                        i {
                            font-size: 17.75px;
                            color: var(--Dark-blue);
                        }
                    }

                    .text {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 5px;

                        h3 {
                            font-size: 17.5px;
                            font-weight: var(--font-bold);
                            color: var(--Dark-blue);
                        }

                        p {
                            font-size: 13.5px;
                            font-weight: var(--font-medium);
                            color: var(--Silver);
                        }
                    }
                }

                .ready_btns {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 3rem;
                    margin-top: 2rem;

                    .btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 168.75px;
                        height: 41.25px;
                        border-radius: 7.5px;
                        background-color: var(--yallow);
                        color: white;
                    }

                    .whatsapp {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 10px;

                        i {
                            font-size: 45px;
                            color: var(--Green);
                        }

                        .number {
                            display: flex;
                            justify-content: space-between;
                            align-items: start;
                            flex-direction: column;
                            gap: 5px;

                            h6 {
                                font-size: 15px;
                                font-weight: var(--font-regular);
                                color: var(--Silver);
                            }

                            span {
                                font-size: 13.5px;
                                font-weight: var(--font-semi-bold);
                                color: var(--Green);
                            }
                        }
                    }
                }

            }

            .ready_img {
                position: relative;
                width: 505.7602233886719px;
                height: 439.5428771972656px;
                z-index: 1;

                img {
                    width: 100%;
                    height: 100%;
                }

                &::after {
                    content: "";
                    position: absolute;
                    background-image: url(assets/image/ready\ 2.webp);
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: cover;
                    right: -45px;
                    top: -55px;
                    width: 193.156005859375px;
                    height: 193.15599060058594px;
                    z-index: -1;
                }
            }
        }
    }
}

/*=================== PAGE 2 ================*/
/*=================== PRICING ================*/
.pricing {
    position: relative;
    padding: 15rem 3rem 5rem 3rem;
    background-color: var(--Dark-blue);
    height: 95vh;

    .pricing_container {

        .pricing_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            gap: 5rem;


            .pricing_text {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 10px;


                h2 {
                    font-size: 38px;
                    font-weight: var(--font-semi-bold);
                    color: white;

                    span {
                        color: var(--yallow);
                    }
                }

                p {
                    font-size: 15px;
                    font-weight: var(--font-medium);
                    color: white;
                    width: 862px;
                    text-align: center;
                    line-height: 20.01px;
                }
            }

            .pricing_img {
                position: absolute;
                width: 1033.9996px;
                height: 411.8422px;
                bottom: -20%;

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

/*=================== PRICING PLANS  ================*/
.pricing_plans {
    padding: 5rem 3rem;
    height: 100vh;
    margin-top: 10rem;

    .pricing_plans_container {

        h2 {
            font-size: 26px;
            font-weight: var(--font-medium);
            color: var(--Silver);
            text-align: center;
        }

        .content_header {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            text-align: center;
            flex-direction: column;
            margin-bottom: 2rem;

            h3 {
                font-size: 38px;
                font-weight: var(--font-semi-bold);
                color: var(--Dark-blue);

                span {
                    color: var(--yallow);
                }
            }

            p {
                font-size: 15px;
                font-weight: var(--font-medium);
                color: var(--Silver);
                max-width: 799px;
                width: 100%;
            }

        }


        .pricing_plans_content {
            /* display: grid;
            grid-template-columns: repeat(4, 1fr);
            justify-items: center; */
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1rem;
            background-image: url(assets/image/bg\ pricing.webp);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 4rem 0;

            .pricing_plan {
                position: relative;
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1.5rem;
                flex-direction: column;
                padding: 2rem 2rem 4rem 1rem;
                border: 0.76px solid #E3DBD8;
                /* height: 556.3393px; */
                z-index: 2;
                background-color: white;

                &:nth-child(1) {
                    border-radius: 0 0 0 12.92px;
                }

                &:nth-child(4) {
                    border-radius: 0 0 12.92px 0;
                }

                h3 {
                    font-size: 22.77px;
                    font-weight: var(--font-semi-bold);
                    color: black;
                }

                .price {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 26px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Green);
                    gap: 10px;

                    span {
                        font-size: 13.35px;
                        color: var(--Silver);
                    }
                }

                a {
                    text-align: center;
                    width: 234.4138px;
                    height: 40.8036px;
                    border-radius: 7.42px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--yallow);
                    color: white;
                    font-size: 14.84px;
                    font-weight: var(--font-semi-bold);
                    margin: 1rem 0;
                }

                .features {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 1rem;
                    flex-direction: column;

                    li {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        font-size: 13.35px;
                        font-weight: var(--font-medium);
                        color: var(--Silver);

                        i {
                            font-size: 15px;
                            color: var(--Green);
                        }
                    }
                }

                .discount {
                    position: absolute;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--Dark-blue);
                    top: 0;
                    right: 0;
                    width: 61.5707px;
                    height: 37.0908px;
                    border-radius: 0 0 0 13.35px;

                    h5 {
                        font-size: 20.77px;
                        font-weight: var(--font-semi-bold);
                        color: white;
                    }
                }

            }
        }

        .pra {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 5rem;

            p {
                font-size: 11px;
                font-weight: var(--font-bold);
                color: white;
                width: 871px;
                height: 41.14960861206055px;
                border-radius: 6.84px;
                background-color: var(--Green);
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 12px;

                i {
                    font-size: 15px;
                    width: 27.4331px;
                    height: 27.4331px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: white;
                    color: var(--Green);
                    border-radius: 50%;
                }
            }
        }
    }
}

/*=================== EVERYONE ================*/
.everyone {
    padding: 10rem 3rem 5rem 3rem;
    margin-top: 3rem;

    .everyone_container {

        h2 {
            font-size: 26px;
            font-weight: var(--font-semi-bold);
            color: #111214;
            text-align: center;
        }

        p {
            font-size: 13.5px;
            font-weight: var(--font-medium);
            color: var(--Silver);
            text-align: center;
        }

        .everyone_content {
            /* display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 5rem; */
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5rem;
            flex-wrap: wrap;
            margin-top: 8rem;


            .everyone_item {
                position: relative;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: center;
                flex-direction: column;
                gap: 2rem;
                width: 489px;
                padding: 7rem 10px 2rem 10px;
                border-radius: 8px;
                box-shadow: 0px 1px 30px 0px #0000000D;

                &:nth-child(1) {
                    h3 {
                        color: var(--Dark-blue);
                    }

                    span {
                        color: var(--Dark-blue);
                    }
                }

                &:nth-child(2) {
                    h3 {
                        color: var(--Green);
                    }

                    span {
                        color: var(--Green);
                    }
                }

                &:nth-child(3) {
                    margin-top: 3rem;

                    h3 {
                        color: var(--blue);
                    }

                    span {
                        color: var(--blue);
                    }
                }

                &:nth-child(4) {
                    margin-top: 3rem;

                    h3 {
                        color: var(--yallow);
                    }

                    span {
                        color: var(--yallow);
                    }
                }

                img {
                    position: absolute;
                    width: 160px;
                    height: 160px;
                    top: -70px;
                }

                h3 {
                    font-size: 18px;
                    font-weight: var(--font-bold);
                }

                p {
                    font-size: 12px;
                    font-weight: var(--font-bold);
                    color: #727272;
                    width: 417px;
                }

                span {
                    font-size: 12px;
                    font-weight: var(--font-medium);
                }
            }
        }
    }
}


/*=============== PAGE 3 ===============*/
/*=============== COURSES HERO ===============*/
.courses_hero {
    padding: 7rem 0rem 5rem 0;

    .courses_hero_container {
        position: relative;
        padding: 5rem 6rem 7rem 3rem;
        border: 6px solid #EDEDED;
        border-radius: 22px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);

        .courses_hero_content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .courses_hero_text {
                display: flex;
                flex-direction: column;
                gap: 1.8rem;


                h2 {
                    font-size: 38px;
                    font-weight: var(--font-semi-bold);
                    color: #111214;
                    width: 630px;

                    span {
                        background-color: var(--yallow);
                        color: white;
                    }
                }

                p {
                    font-size: var(--normal-font-size);
                    font-weight: var(--font-medium);
                    color: #111214;
                }

                .courses_hero_btns {
                    display: flex;
                    align-items: center;
                    gap: 1rem;

                    .btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 144px;
                        height: 41px;
                        color: white;
                        background: var(--yallow);
                        border-radius: 7.5px;
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-semi-bold);
                    }

                    .second_btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 221px;
                        height: 41px;
                        color: var(--yallow);
                        background: white;
                        border: 1px solid var(--yallow);
                        border-radius: 7.5px;
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-semi-bold);
                    }
                }

                .features {
                    display: flex;
                    gap: 1rem;
                    margin-top: 1rem;

                    .item {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 10px;

                        img {
                            width: 30px;
                            height: 30px;
                        }

                        p {
                            font-size: 14px;
                            font-weight: var(--font-medium);
                            color: var(--Silver);
                        }
                    }


                }
            }

            .courses_hero_img {
                position: relative;
                width: 384px;
                height: 384px;

                img {
                    width: 100%;
                    height: 100%;
                }

                .item1_course {
                    position: absolute;
                    left: -25%;
                    top: 80px;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    width: fit-content;
                    padding: 10px;
                    padding-right: 1rem;
                    background: white;
                    box-shadow: 0px 1px 70px 0px #6D6E7133;
                    border-radius: 4px;

                    .img {
                        width: 28px;
                        height: 26px;

                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }

                    .data {
                        display: flex;
                        flex-direction: column;
                        gap: 3px;

                        span {
                            font-size: 12px;
                            font-weight: var(--font-bold);
                            color: var(--Green);
                        }

                        p {
                            font-size: 9px;
                            font-weight: var(--font-medium);
                            color: #727272;
                        }
                    }
                }

                .item2_course {
                    position: absolute;
                    right: -19%;
                    bottom: 80px;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    width: fit-content;
                    padding: 10px;
                    padding-right: 1rem;
                    background: white;
                    box-shadow: 0px 1px 70px 0px #6D6E7133;
                    border-radius: 4px;

                    .img {
                        width: 28px;
                        height: 26px;

                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }

                    .data {
                        display: flex;
                        flex-direction: column;
                        gap: 3px;

                        span {
                            font-size: 12px;
                            font-weight: var(--font-bold);
                            color: var(--yallow);
                        }

                        p {
                            font-size: 9px;
                            font-weight: var(--font-medium);
                            color: #727272;
                        }
                    }
                }

                .item3_course {
                    position: absolute;
                    left: -15%;
                    bottom: 15px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 15px;
                    width: 210px;
                    padding: 10px;
                    padding-right: 1rem;
                    background: white;
                    box-shadow: 0px 1px 70px 0px #6D6E7133;
                    border-radius: 8px;

                    .img {
                        width: 85px;
                        height: 26px;

                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }

                    p {
                        font-size: 12px;
                        font-weight: var(--font-medium);
                        color: #727272;
                    }

                }


            }
        }

        .end {
            position: absolute;
            display: flex;
            justify-content: end;
            align-items: center;
            gap: 1rem;
            right: 1rem;
            bottom: 1rem;
            margin: 1rem;

            .stars {
                display: flex;
                justify-content: center;
                align-items: center;

                i {
                    font-size: var(--normal-font-size);
                    color: var(--yallow);
                }
            }

            .data {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;

                span {
                    font-size: 28px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Green);
                }

                p {
                    font-size: 9px;
                    font-weight: var(--font-medium);
                    color: var(--Silver);
                    width: 79px;
                }
            }
        }
    }
}

/*=============== COURSES ===============*/
.courses {
    padding: 5rem 1rem;


    .courses_container {

        h2 {
            font-size: 26px;
            font-weight: var(--font-semi-bold);
            color: #727272;
            margin-bottom: 3rem;
            text-align: center;
        }

        .courses_content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3.5rem 2.5rem;
            justify-items: center;
            margin-bottom: 5rem;


            .courses_item {
                width: fit-content;
                height: auto;
                border-radius: 12px;
                padding: 15px;


                .courses_img {
                    position: relative;
                    width: 100%;
                    height: 219px;
                    border-radius: 15px 15px 0 0;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .courses_text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 10px;
                    padding: 20px;
                    box-shadow: 0px 0px 45px 0px #0000000D;
                    border-radius: 0 0 15px 15px;


                    h3 {
                        margin-top: 15px;
                        font-size: 16.5px;
                        font-weight: var(--font-bold);
                        color: var(--Dark-blue);
                    }

                    p {
                        font-size: 12px;
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        margin-bottom: 15px;
                        width: 350.25px;
                    }

                    .btn_logo {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 1rem;
                        width: 100%;


                        img {
                            width: 39.41474151611328px;
                            height: 44.64532470703125px;
                        }

                        a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            width: 118.5px;
                            height: 36px;
                            border-radius: 50px;
                            background: white;
                            color: var(--yallow);
                            border: 0.75px solid var(--yallow);
                            font-size: 10.5px;
                            font-weight: var(--font-semi-bold);
                            transition: all 0.3s ease-in-out;
                        }
                    }
                }
            }
        }

        .courses_content2 {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2.5rem;
            justify-items: center;
            margin-bottom: 5rem;


            .courses_item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: fit-content;
                height: auto;
                padding: 5px;
                box-shadow: 0px 1px 70px 0px #6D6E711A;


                .courses_img {
                    position: relative;
                    width: 378px;
                    height: 280px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .courses_text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 10px;
                    padding: 20px;


                    h3 {
                        margin-top: 15px;
                        font-size: 16.5px;
                        font-weight: var(--font-bold);
                        color: var(--Dark-blue);
                    }

                    p {
                        font-size: 12px;
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        margin-bottom: 15px;
                        width: 610px;
                    }

                    .btn_logo {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 1rem;
                        width: 100%;


                        img {
                            width: 39.41474151611328px;
                            height: 44.64532470703125px;
                        }

                        a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            width: 189px;
                            height: 36px;
                            border-radius: 50px;
                            background: white;
                            color: var(--yallow);
                            border: 0.75px solid var(--yallow);
                            font-size: 10.5px;
                            font-weight: var(--font-semi-bold);
                            transition: all 0.3s ease-in-out;
                        }
                    }
                }
            }
        }
    }
}

/*=================== AT HOME ================*/
.at_home {
    padding: 5rem 3rem;

    .at_home_container {

        h2 {
            font-size: 26px;
            font-weight: var(--font-semi-bold);
            color: var(--Dark-blue);
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .featuers {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 6rem;

            .item {
                position: relative;
                width: 277.5px;
                height: 169.75px;
                display: flex;
                /* justify-content: space-between; */
                align-items: start;
                gap: 1rem;
                text-align: start;
                background-color: white;
                border: 0.75px solid var(--yallow);
                padding: 2rem;
                padding-left: 3rem;
                border-radius: 15px;
                flex-direction: column;

                &::before {
                    position: absolute;
                    content: "";
                    top: 20px;
                    left: -25px;
                    background-image: url(assets/image/icon\ 3.webp);
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: cover;
                    width: 60px;
                    height: 60px;

                }

                &:nth-child(2)::before {
                    background-image: url(assets/image/icon\ 8.webp);
                }

                &:nth-child(3)::before {
                    background-image: url(assets/image/icon\ 14.webp);
                }

                span {
                    font-size: 13.5px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Silver);
                }

                h3 {
                    font-size: 16.5px;
                    font-weight: var(--font-bold);
                    color: var(--yallow);
                }

                p {
                    width: 206.25px;
                    font-size: 12px;
                    font-weight: var(--font-regular);
                    line-height: 15px;
                    color: var(--Silver);
                    background-color: transparent;
                }
            }
        }
    }
}

/*=============== BANNAR ===============*/
.bannar_section {
    /* padding: 5rem 1rem; */
    display: flex;
    justify-content: center;
    align-items: center;

    .bannar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 1026px;
        height: 315px;
        border-radius: 37.5px;
        background: var(--Dark-blue);

        .text {
            display: flex;
            justify-content: space-between;
            align-items: start;
            flex-direction: column;
            padding: 34px 50px;
            gap: 1.5rem;

            img {
                width: 71.4299px;
                height: 71.4299px;
            }

            h4 {
                font-size: 23px;
                font-weight: var(--font-bold);
                color: white;
            }

            p {
                font-size: 14px;
                font-weight: var(--font-medium);
                color: white;
                line-height: 21px;
                width: 612px;
            }

            a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 250.26976013183594px;
                height: 41px;
                border-radius: 7.5px;
                font-size: 15px;
                font-weight: var(--font-semi-bold);
                color: var(--yallow);
                background-color: white;
            }
        }

        .bannar_img {
            width: 308px;
            height: 100%;
            display: flex;
            justify-content: end;
            align-items: end;


            img {
                width: 100%;
                height: 289.689208984375px;
            }
        }
    }
}

/*=================== CHAIN ================*/
.chain {
    padding: 5rem 3rem 0 3rem;

    .chain_container {
        padding: 2rem 5rem;

        h2 {
            font-size: 25px;
            font-weight: var(--font-semi-bold);
            color: #111214;
            text-align: center;
            margin-bottom: 15px;

            span {
                color: var(--yallow);
            }
        }

        p {
            font-size: 14px;
            font-weight: var(--font-medium);
            color: var(--Silver);
            text-align: center;
            margin-bottom: 4rem;
        }

        .chain__content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .chain_text {
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;
                gap: 2rem;

                .icon_text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 1rem;


                    .icon {
                        margin-top: 3px;

                        i {
                            font-size: 17.75px;
                            color: var(--Green);
                        }
                    }

                    .text {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 5px;

                        h3 {
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-regular);
                            color: #111214;
                        }
                    }
                }

                .chain_btns {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 1rem;

                    .btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 261px;
                        height: 48.25px;
                        border-radius: 7.5px;
                        background-color: var(--yallow);
                        color: white;
                        font-style: 15px;
                        font-weight: var(--font-semi-bold);
                    }
                }

            }

            .chain_img {
                width: 425.760223px;
                height: 370.542877px;


                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }

        .pra {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5rem 0 0 0;

            p {
                font-size: 14px;
                font-weight: var(--font-semi-bold);
                color: var(--Dark-blue);
            }

            /* &::after {
                content: "";
                position: absolute;
                background-image: url(assets/image/line.webp);
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                bottom: 25%;
                width: 179.05252906900427px;
                height: 10.399387359619141px;
            } */
        }
    }
}

/*=================== PAGE 4 ================*/
/*=================== TESTIMONIAL HERO ================*/
.testimonial_hero {
    padding: 8rem 3rem 5rem 3rem;

    .testimonial_hero_container {
        border: 6px solid var(--yallow);
        box-shadow: 0px 1px 70px 0px #6D6E711A;
        border-radius: 22px;
        padding: 3rem 0;

        .testimonial_hero_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-direction: column;

            .hero_text {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;
                text-align: center;
                flex-direction: column;

                span {
                    font-size: 12px;
                    font-weight: var(--font-medium);
                    color: white;
                    background-color: var(--yallow);
                }

                h2 {
                    font-size: 28px;
                    font-weight: var(--font-semi-bold);
                    color: #111214;
                }

                p {
                    font-size: 15px;
                    font-weight: var(--font-medium);
                    color: var(--Silver);
                    width: 756px;
                }
            }

            .hero_img {
                width: 100%;
                height: 260px;

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            .testimonial_hero_btn {
                display: flex;
                justify-content: center;
                align-items: center;

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 294px;
                    height: 41px;
                    font-size: 15px;
                    font-weight: var(--font-semi-bold);
                    color: white;
                    background-color: var(--Green);
                    border-radius: 7.5px;
                }
            }
        }
    }
}

/*=============== TESTIMONIAL SECTION ===============*/
.testimonial_section {
    padding: 5rem 3rem;

    .testimonial_section_container {

        h2 {
            font-size: 26px;
            font-weight: var(--font-semi-bold);
            color: var(--Dark-blue);
            text-align: center;
            margin-bottom: 5rem;
        }

        .testimonial_section_content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            justify-items: center;
            row-gap: 5rem;

            .testimonial {
                position: relative;
                display: flex;
                justify-content: space-between;
                align-items: start;
                background-color: var(--yallow);
                border-radius: 5.88px;
                padding: .8rem 1.5rem;
                transform: rotate(1.88deg);
                width: 395.0197269491132px;
                height: 200px;
                z-index: 1;

                &::after {
                    position: absolute;
                    content: "";
                    width: 100%;
                    height: 100%;
                    border: 1.18px dashed var(--yallow);
                    transform: rotate(0.88deg);
                    left: -15px;
                    border-radius: 7.84px;
                    z-index: -1;
                }

                .data {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 1rem;

                    .name_img {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 1.5rem;

                        img {
                            width: 40.0035px;
                            height: 30.9915px;
                        }

                        h4 {
                            font-size: 14.58px;
                            font-weight: var(--font-bold);
                            color: white;
                        }

                    }

                    p {
                        font-size: 12px;
                        font-weight: var(--font-semi-bold);
                        color: white;
                        text-align: start;
                        line-height: 19.5px;
                        width: 245.7083px;
                    }
                }

                .testimonial_img {
                    position: relative;
                    width: 80.7106px;
                    height: 113.5948px;

                    &::after {
                        position: absolute;
                        content: "";
                        width: 12.650851px;
                        height: 30.601603px;
                        background-image: url(assets/image/pin.webp);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        left: -8px;
                        top: -18px;
                    }

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .name_teacher {
                    position: absolute;
                    display: flex;
                    right: 10px;
                    bottom: 10px;

                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        font-size: 12px;
                        font-weight: var(--font-semi-bold);
                        color: white;
                    }
                }
            }

            .testimonial2 {
                background-color: var(--Dark-blue);

                &::after {
                    border: 1.18px dashed var(--Dark-blue);
                }
            }

            .testimonial3 {
                background-color: var(--blue);

                &::after {
                    border: 1.18px dashed var(--blue);
                }
            }

            .testimonial4 {
                background-color: var(--Green);

                &::after {
                    border: 1.18px dashed var(--Green);
                }
            }

        }

        .testimonial_section_btn {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 5rem;

            a {
                font-size: 23px;
                font-weight: var(--font-regular);
                color: var(--Silver);
                text-decoration: underline;
            }
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 5rem;
            text-align: center;
        }

        .pagination button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            background-color: white;
            color: var(--yallow);
            font-size: var(--normal-font-size);
            border: 1px solid var(--yallow);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .pagination button:hover {
            background-color: var(--yallow);
            color: #fff;
        }


        .pagination-numbers {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;

            span {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 30px;
                height: 30px;
                background-color: white;
                color: var(--yallow);
                font-size: var(--normal-font-size);
                border: 1px solid var(--yallow);
                border-radius: 50%;
                cursor: pointer;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: var(--yallow);
                    color: #fff;
                }
            }
        }

        .pagination-numbers span.active {
            background-color: var(--yallow);
            color: #fff;
            font-weight: bold;
        }
    }
}

.testimonial_page {
    padding: 10rem 3rem 5rem 3rem;
}


/*=================== PAGE 5 ================*/
/*=================== HERO TEACHER ================*/
.hero_teacher {
    padding: 10rem 3rem 5rem 3rem;

    .hero_teacher_container {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .hero_teacher_content {
            display: flex;
            justify-content: space-between;
            align-items: start;
            flex-direction: column;
            gap: 3.5rem;


            .hero_teacher_text {
                display: flex;
                flex-direction: column;
                gap: 10px;

                h2 {
                    font-size: 28px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Green);
                }

                p {
                    font-size: var(--normal-font-size);
                    font-weight: var(--font-medium);
                    color: var(--Silver);
                    line-height: 20px;
                    width: 536px;
                }
            }

            .hero_teacher_img {
                width: 470px;
                height: 367px;

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }

        .content2 {
            flex-direction: column-reverse;

            .hero_teacher_text {

                h2 {
                    color: var(--yallow);
                }
            }
        }
    }
}

/*=============== TEACHER ===============*/
.teacher {
    padding: 5rem 3rem;

    .teacher_container {

        .teacher_content {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 5rem;

            .teacer_cards {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 3rem;
                flex-direction: column;

                h2 {
                    font-size: 23px;
                    font-weight: var(--font-medium);
                    color: #111214;
                    /* margin-bottom: 2rem; */
                }

                .card {
                    position: relative;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 1rem;
                    padding: 15px;
                    background-color: white;
                    border-radius: 8px;
                    box-shadow: 0px 0px 40px 0px #FFA50026;

                    .card_img {
                        width: 224px;
                        height: 178px;

                        img {
                            width: 100%;
                            height: 100%;
                        }
                    }

                    .card_text {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        gap: 1rem;
                        flex-direction: column;
                        padding: 1rem;

                        h3 {
                            font-size: 20px;
                            font-weight: var(--font-semi-bold);
                            color: #111214;
                        }

                        p {
                            font-size: 14px;
                            font-weight: var(--font-medium);
                            color: var(--Silver);
                            width: 485px;
                            line-height: 20px;
                        }

                        a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            /* width: 220px; */
                            height: 30px;
                            padding: 10px;
                            border-radius: 4px;
                            background-color: var(--yallow);
                            font-size: 14px;
                            font-weight: var(--font-semi-bold);
                            color: white;
                        }
                    }
                }
            }

            .fetures_teach {
                position: absolute;
                right: 25px;
                top: 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;

                span {
                    position: relative;
                    font-size: 13px;
                    font-weight: var(--font-medium);
                    color: var(--Green);

                    &::after {
                        position: absolute;
                        content: "";
                        width: 4px;
                        height: 4px;
                        border-radius: 50%;
                        background: #5DB1684D;
                        right: -7px;
                        bottom: 2px;
                    }
                }
            }

            .teacher_data {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 3rem;
                flex-direction: column;

                h2 {
                    font-size: 23px;
                    font-weight: var(--font-medium);
                    color: var(--Green);
                    /* margin-bottom: 2rem; */
                }

                .icon_text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 1.5rem;

                    .icon {

                        i {
                            font-size: 30px;
                            color: var(--Green);
                        }
                    }

                    .text {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        gap: 12px;
                        flex-direction: column;

                        h3 {
                            font-size: 18px;
                            font-weight: var(--font-bold);
                            color: #111214;
                        }

                        p {
                            font-size: 16px;
                            font-weight: var(--font-medium);
                            color: var(--Silver);
                            width: 400px;
                        }
                    }


                }
            }
        }
    }
}

/*=================== PAGE 6 ================*/
/*=================== SINGLE COURSE ================*/
.single_course {
    padding: 5.8rem 0rem 5rem 0rem;


    .single_course_container {


        .single_course_content {
            display: flex;
            justify-content: space-between;
            align-items: start;
            flex-direction: column;


            .course_img {
                position: relative;
                width: 100%;
                height: 539px;


                img {
                    width: 100%;
                    height: 100%;
                }

                .cours_text {
                    position: absolute;
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 2rem;
                    flex-direction: column;
                    top: 30%;
                    left: 7%;
                    width: 511px;

                    h1 {
                        font-size: 33px;
                        font-weight: var(--font-medium);
                        color: #111214;
                    }

                    p {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-regular);
                        color: #727272;
                        line-height: 20px;
                    }

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 15px;
                        font-weight: var(--font-semi-bold);
                        letter-spacing: 2%;
                        color: white;
                        background-color: var(--Dark-blue);
                        border-radius: 7.5px;
                        width: 180px;
                        height: 41px;
                    }
                }
            }

            .ditalis_course {
                padding: 10px 10rem;
                background-color: #F3F3F3;
                width: 100%;

                .ditalis {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    .item {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 15px;

                        p {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-medium);
                            color: var(--Silver);

                            i {
                                color: var(--yallow);
                            }
                        }

                        .stars {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 4px;

                            i {
                                color: var(--Green);
                            }
                        }

                        img {
                            width: 30px;
                            height: 30px;
                        }
                    }
                }
            }

        }

        .summary {
            padding: 5rem 4rem;

            .summary_text {
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;
                gap: 2rem;
                padding: 2rem;
                background: #FFA50008;

                h2 {
                    font-size: 28px;
                    font-weight: var(--font-medium);
                    color: black;
                }

                p {
                    font-size: var(--normal-font-size);
                    font-weight: var(--font-regular);
                    color: var(--yallow);
                    width: 100%;
                    line-height: 22px;
                }
            }
        }
    }
}


/*=============== SINGLE COURSE DATA ===============*/
.single_course_data {
    padding: 1rem;

    .single_course_data_container {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
        gap: 3rem;

        .single_course_content {
            width: 100%;

            .data {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 5rem;

                .course_desc {

                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 1rem;


                    h2 {
                        font-size: 23px;
                        font-weight: var(--font-semi-bold);
                        color: #111214;
                        margin-bottom: 15px;
                        margin-top: 40px;
                    }

                    h3 {
                        font-size: 20px;
                        font-weight: var(--font-medium);
                        color: #111214;
                        margin-bottom: 15px;
                        margin-top: 40px;
                    }

                    p {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        line-height: 1.9;
                        margin-bottom: 15px;
                        width: 569px;
                    }

                    ul {
                        list-style: disc;
                        margin-left: 25px;
                        margin-bottom: 20px;
                        margin-top: 15px;

                        li {
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-regular);
                            color: var(--Silver);
                            margin-bottom: 15px;
                        }
                    }

                    ol {
                        margin-left: 25px;
                        margin-bottom: 20px;
                        margin-top: 15px;

                        li {
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-regular);
                            color: var(--Silver);
                            margin-bottom: 15px;
                        }
                    }

                }

                .course_desc2 {
                    box-shadow: 0px 1px 70px 0px #6D6E711A;
                    padding: 20px;
                    border-radius: 8px;
                }

                .second_data {
                    position: relative;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-direction: column;
                    gap: 3rem;

                    .build_path {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        flex-direction: column;
                        gap: 1rem;

                        p {
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-medium);
                            color: #727272;
                        }

                        a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 274px;
                            height: 41px;
                            background-color: var(--Green);
                            border-radius: 7.5px;
                            font-size: 15px;
                            font-weight: var(--font-semi-bold);
                            color: white;
                            text-decoration: none;
                            margin-top: 0;
                        }
                    }

                    &::after {
                        position: absolute;
                        content: "";
                        top: -105px;
                        left: 40%;
                        width: 129px;
                        height: 129px;
                        background-image: url(assets/image/icon\ 17.webp);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                    }
                }
            }

            a {
                font-size: 18px;
                font-weight: var(--font-medium);
                color: var(--yallow);
                text-align: center;
                width: 100%;
                display: block;
                text-decoration: underline;
                margin-top: 20px;
            }
        }
    }
}


/*=============== PAGE 7 ===============*/
/*=============== BLOGS ===============*/
.blogs {
    padding: 8rem 3rem 5rem 3rem;


    .blogs_container {

        .blogs_header {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 1rem;
            padding: 5rem 0;

            span {
                font-size: 12px;
                font-weight: var(--font-medium);
                color: white;
                background-color: var(--yallow);
                margin-bottom: 12px;
                padding: 3px;
            }

            h2 {
                font-size: 28px;
                font-weight: var(--font-semi-bold);
                color: #111214;
            }

            p {
                font-size: 15px;
                font-weight: var(--font-medium);
                color: #727272;
            }
        }

        .our_blog_items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            row-gap: 50px;


            .item {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1rem;
                flex-direction: column;



                .item_img {
                    position: relative;
                    width: 405px;
                    height: 283px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .item_content {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 10px;
                    flex-direction: column;
                    width: 402px;
                    margin-top: 10px;

                    .date {

                        span {
                            font-size: 14px;
                            font-weight: var(--font-regular);
                            color: #B1B1B1;
                        }
                    }


                    h3 {
                        font-size: 18px;
                        font-weight: var(--font-medium);
                        color: black;
                        width: 396px;
                    }

                    p {
                        font-size: 14px;
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        width: 368px;
                    }

                    .btn_read {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 12px;
                        width: 100%;

                        .btn {

                            a {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                gap: 10px;
                                /* text-decoration: underline; */
                                color: var(--Green);
                                font-size: var(--normal-font-size);
                                font-weight: var(--font-semi-bold);
                            }
                        }

                        .read {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            gap: 12px;
                            color: var(--yallow);

                            h4 {
                                font-size: 14px;
                                font-weight: var(--font-medium);
                            }

                            i {
                                font-size: var(--normal-font-size);
                            }
                        }
                    }
                }
            }
        }

        #pagination {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
            gap: 0.5rem;
            padding: 3rem 0;
        }

        #pagination button {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0.5rem 1rem;
            width: 32px;
            height: 32px;
            border-radius: 84px;
            font-size: 14px;
            background-color: #fff;
            color: var(--yallow);
            border: 1px solid var(--yallow);
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        #pagination button:hover:not(.active):not(:disabled) {
            background-color: var(--yallow);
            color: white;
        }

        /* الزرار المفعّل */
        #pagination button.active {
            background-color: var(--yallow);
            color: #fff;
            border: none;
            font-weight: bold;
        }

        /* الزرار المعطل (السهم لما يوصل للنهاية أو البداية) */
        #pagination button:disabled {
            background-color: #fff;
            color: var(--yallow);
            border: 1px solid var(--yallow);
            cursor: not-allowed;
            opacity: 0.6;
        }
    }
}

/*=================== BLOGS CATEGORIES ================*/
.blogs_categories {
    padding: 5rem 3rem;
    background-color: #F3F3F3;

    .blogs_categories_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2.5rem;


        .categories_list {
            display: flex;
            justify-content: space-between;
            align-items: start;
            flex-direction: column;
            gap: 3rem;

            h2 {
                font-size: 28px;
                font-weight: var(--font-medium);
                color: var(--Dark-blue);
            }

            .item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;

                .item_img {
                    width: 191.5px;
                    height: 261px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .item_content {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 1rem;
                    width: 200px;

                    .date {
                        span {
                            font-size: 14px;
                            font-weight: var(--font-regular);
                            color: #B1B1B1;
                        }
                    }

                    h3 {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-medium);
                        color: black;
                    }

                    p {
                        font-size: 10px;
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        margin-bottom: 20px;
                    }

                    .btn_read {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;

                        a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            color: var(--Green);
                            font-size: 14px;
                            font-weight: var(--font-semi-bold);
                        }
                    }
                }
            }
        }
    }
}

/*=================== PAGE 8 ================*/
/*=================== SINGLE BLOG ================*/
.single_blog {
    padding: 10rem 3rem 1rem 3rem;

    .single_blog_container {

        .merg {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 1rem;

            .single_blog_content {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1rem;
                flex-direction: column;

                .single_blog_header {

                    h1 {
                        font-size: 38px;
                        font-weight: var(--font-bold);
                        color: black;
                        width: 820px;
                    }

                    .ditails {
                        display: flex;
                        justify-content: start;
                        align-items: center;
                        margin: 1rem 0;
                        gap: 2.5rem;

                        span {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            font-size: 14px;
                            font-weight: var(--font-medium);
                            color: var(--Silver);
                            padding-right: 20px;

                            &:nth-child(1) {
                                border-right: 2px solid var(--Silver);
                            }

                            &:nth-child(2) {
                                border-right: 2px solid var(--Silver);
                            }

                            i {
                                color: var(--Green);
                            }
                        }
                    }

                }

                .single_blog_img {
                    width: 822px;
                    height: 491px;
                    border-radius: 8px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .blog_desc {

                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 1rem;


                    h2 {
                        font-size: 23px;
                        font-weight: var(--font-semi-bold);
                        color: #111214;
                        margin-bottom: 15px;
                        margin-top: 40px;
                    }

                    h3 {
                        font-size: 20px;
                        font-weight: var(--font-medium);
                        color: #111214;
                        margin-bottom: 15px;
                        margin-top: 40px;
                    }

                    p {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        line-height: 1.9;
                        margin-bottom: 15px;
                        width: 569px;
                    }

                    ul {
                        list-style: disc;
                        margin-left: 25px;
                        margin-bottom: 20px;
                        margin-top: 15px;

                        li {
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-regular);
                            color: var(--Silver);
                            margin-bottom: 15px;
                        }
                    }

                    ol {
                        margin-left: 25px;
                        margin-bottom: 20px;
                        margin-top: 15px;

                        li {
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-regular);
                            color: var(--Silver);
                            margin-bottom: 15px;
                        }
                    }

                    a {
                        font-size: 18px;
                        font-weight: var(--font-medium);
                        color: var(--yallow);
                        width: 100%;
                        display: block;
                        margin-top: 30px;
                    }

                }

                .comment {
                    margin-top: 2rem;
                    width: 100%;

                    form {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 1rem;

                        label {
                            font-size: 18px;
                            font-weight: var(--font-regular);
                            color: #111214;
                        }

                        textarea {
                            width: 100%;
                            height: 50px;
                            border-top: none;
                            border-left: none;
                            border-right: none;
                            border-bottom: 1px solid var(--Silver);
                            padding: 12px 16px;
                            font-size: var(--normal-font-size);
                            font-weight: var(--font-regular);
                            color: var(--Dark);
                            resize: none;

                            &:focus {
                                outline: none;
                                border-color: var(--Green);
                            }
                        }

                        button {
                            padding: 12px 16px;
                            font-size: 14px;
                            font-weight: var(--font-semi-bold);
                            color: white;
                            background-color: var(--Dark-blue);
                            border: none;
                            border-radius: 7.5px;
                            cursor: pointer;
                        }
                    }
                }
            }

            .quran_reads {
                position: sticky;
                top: 130px;
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;
                gap: 2rem;

                .unlock {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 2rem;
                    padding: 19px 27px;
                    background-color: var(--Dark-blue);
                    border: 1px solid #FFA50085;
                    border-radius: 18px;
                    width: 359px;

                    h3 {
                        font-size: 23px;
                        font-weight: var(--font-bold);
                        color: white;
                    }

                    p {
                        font-size: 14px;
                        font-weight: var(--font-medium);
                        color: white;
                        width: 317px;
                    }

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: var(--normal-font-size);
                        font-weight: 800;
                        color: white;
                        background-color: var(--yallow);
                        border-radius: 7.5px;
                        width: 100%;
                        height: 41px;
                    }
                }

                .last_article {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 2rem;
                    padding: 19px 27px;
                    background-color: white;
                    border: 1px solid #5DB16885;
                    border-radius: 18px;
                    width: 359px;

                    h2 {
                        font-size: 23px;
                        font-weight: var(--font-bold);
                        color: var(--Green);
                    }

                    .article {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 5px;

                        a {
                            font-size: 18px;
                            font-weight: var(--font-medium);
                            color: black;
                        }

                        span {
                            font-size: 14px;
                            font-weight: var(--font-medium);
                            color: var(--Silver);
                        }
                    }
                }

                .popular {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 2rem;
                    padding: 19px 27px;
                    background-color: white;
                    border: 1px solid #FFA50085;
                    border-radius: 18px;
                    width: 359px;

                    h2 {
                        font-size: 23px;
                        font-weight: var(--font-bold);
                        color: var(--yallow);
                    }

                    .popular_blog {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 5px;

                        a {
                            font-size: 18px;
                            font-weight: var(--font-medium);
                            color: black;
                            width: 300px;
                        }

                        span {
                            font-size: 14px;
                            font-weight: var(--font-medium);
                            color: var(--Silver);
                        }
                    }
                }

                .share {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 1rem;

                    h2 {
                        font-size: 23px;
                        font-weight: var(--font-semi-bold);
                        color: var(--Dark-blue);
                    }

                    .social {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;

                        a {
                            font-size: 23px;
                            color: var(--Dark-blue);
                        }
                    }
                }
            }
        }

        .link {
            font-size: 18px;
            font-weight: var(--font-medium);
            color: var(--yallow);
            text-align: center;
            width: 100%;
            display: block;
            text-decoration: underline;
            margin-top: 30px;
        }
    }
}

/*=================== MORE ARTICLES ================*/
.more_articles {
    padding: 5rem 3rem;

    .more_articles_container {

        h2 {
            font-size: 33px;
            font-weight: var(--font-semi-bold);
            color: #111214;
            text-align: center;
            margin-bottom: 2rem;
        }

        .our_blog_articles_items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            row-gap: 50px;


            .item {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1rem;
                flex-direction: column;



                .item_img {
                    position: relative;
                    width: 405px;
                    height: 283px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .item_content {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    gap: 10px;
                    flex-direction: column;
                    width: 402px;
                    margin-top: 10px;

                    .date {

                        span {
                            font-size: 14px;
                            font-weight: var(--font-regular);
                            color: #B1B1B1;
                        }
                    }


                    h3 {
                        font-size: 18px;
                        font-weight: var(--font-medium);
                        color: black;
                        width: 396px;
                    }

                    p {
                        font-size: 14px;
                        font-weight: var(--font-regular);
                        color: var(--Silver);
                        width: 368px;
                    }

                    .btn_read {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 12px;
                        width: 100%;

                        .btn {

                            a {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                gap: 10px;
                                /* text-decoration: underline; */
                                color: var(--Green);
                                font-size: var(--normal-font-size);
                                font-weight: var(--font-semi-bold);
                            }
                        }

                        .read {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            gap: 12px;
                            color: var(--yallow);

                            h4 {
                                font-size: 14px;
                                font-weight: var(--font-medium);
                            }

                            i {
                                font-size: var(--normal-font-size);
                            }
                        }
                    }
                }
            }
        }
    }
}


/*=================== PAGE 9 ================*/
/*=================== HERO ABOUT ================*/
.hero_about {
    padding: 10rem 3rem 5rem 3rem;

    .hero_about_container {

        .hero_about_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
            flex-direction: column;

            .hero_about_text {

                h2 {
                    font-size: 38px;
                    font-weight: var(--font-semi-bold);
                    color: #111214;
                    text-align: center;
                    width: 875px;

                    span {
                        color: var(--yallow);
                    }

                    .span2 {
                        color: var(--Green);
                    }
                }
            }

            .hero_about_imgs {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;

                .img1 {
                    width: 276px;
                    height: 266px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .img2 {
                    width: 647px;
                    height: 275.0745849609375px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                .img3 {
                    width: 275px;
                    height: 319px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
            }
        }


    }
}

/*=================== MAKE US ================*/
.make_us {
    padding: 5rem 3rem;

    .make_us_container {

        .make_us__content {
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 13rem;

            .make_us_text {
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;
                gap: 1rem;



                .text {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 5px;

                    h2 {
                        font-size: 36px;
                        font-weight: var(--font-semi-bold);
                        color: var(--yallow);
                    }

                    h3 {
                        font-size: 18px;
                        font-weight: 800;
                        color: #111214;
                    }

                    p {
                        font-size: 18px;
                        font-weight: var(--font-medium);
                        color: var(--Silver);
                    }

                }

                .make_us_btns {
                    margin-top: 2rem;

                    .btn {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 274px;
                        height: 41.25px;
                        border-radius: 7.5px;
                        background-color: var(--yallow);
                        color: white;
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-semi-bold);
                    }
                }

            }

            .make_us_img {
                position: relative;
                width: 557.6993408203125px;
                height: 391.2614440917969px;


                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

/*=================== READY BANNAR ================*/
.ready_banner {
    padding: 5rem 3rem;

    .ready_banner_container {
        background-color: var(--Green);
        width: 889px;
        height: 217px;
        padding: 2rem 3rem;
        border-top-left-radius: 50px;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 49.33px;
        border-bottom-left-radius: 25px;

        .ready_banner_content {
            background-image: url(assets/image/bg\ banner.webp);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 1rem;

            h2 {
                font-size: 23px;
                font-weight: var(--font-bold);
                color: white;
                text-align: center;
            }

            p {
                font-size: 14px;
                font-weight: var(--font-medium);
                color: white;
                text-align: center;
                width: 622px;
            }

            i {
                font-size: 18px;
                color: white;
            }

            a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 250px;
                height: 38px;
                border-radius: 7.5px;
                background-color: white;
                color: var(--Green);
                font-size: 14px;
                font-weight: var(--font-semi-bold);
            }
        }
    }
}

/*=================== OUR STORY ================*/
.our_story {
    padding: 5rem 3rem;

    .our_story_container {


        .our_story_content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .our_story_text {
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;

                h2 {
                    font-size: 36px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Green);
                    margin-bottom: 1rem;
                }

                p {
                    font-size: 18px;
                    font-weight: var(--font-medium);
                    color: var(--Silver);
                    width: 565px;
                    line-height: 25px;
                }

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 206px;
                    height: 41px;
                    border-radius: 7.5px;
                    border: 1px solid var(--Green);
                    font-size: var(--normal-font-size);
                    font-weight: var(--font-semi-bold);
                    color: var(--Green);
                    margin-top: 2rem;
                }
            }

            .our_story_img {
                position: relative;
                width: 594px;
                height: 474px;

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}


/*=================== PAGE 10 ================*/
/*=================== TERMS AND PRIVACY ================*/
.terms {
    padding: 10rem 3rem 5rem 3rem;


    .header_terms {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;

        h2 {
            font-size: 38px;
            font-weight: var(--font-semi-bold);
            color: var(--Dark-blue);

            span {
                color: var(--yallow);
            }
        }

        p {
            font-size: var(--normal-font-size);
            font-weight: var(--font-medium);
            color: #727272;
        }

    }

    .terms_container {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 2rem;

        .sidebar {
            position: sticky;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            flex-direction: column;
            border-right: 3px solid rgba(109, 110, 113, 0.1);
            width: 20%;
            top: 135px;

            .teacher_terms {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1.5rem;
                flex-direction: column;
                border-bottom: 3px solid rgba(109, 110, 113, 0.1);
                padding-bottom: 1rem;


                h3 {
                    font-size: 23px;
                    font-weight: var(--font-bold);
                    color: var(--Dark-blue);
                    margin-bottom: 12px;
                }

                a {
                    position: relative;
                    font-size: 18px;
                    font-weight: var(--font-bold);
                    color: var(--Silver);
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        color: var(--yallow);
                    }

                    &::after {
                        content: '';
                        position: absolute;
                        left: 0;
                        bottom: -4px;
                        /* مسافة بسيطة تحت النص */
                        width: 100%;
                        height: 2px;
                        background-color: var(--yallow);
                        transform: scaleX(0);
                        transform-origin: left;
                        transition: transform 0.3s ease-in-out;
                    }

                    &:hover::after {
                        transform: scaleX(1);
                    }
                }
            }

            .student_terms {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1.5rem;
                flex-direction: column;

                h3 {
                    font-size: 23px;
                    font-weight: var(--font-bold);
                    color: var(--Dark-blue);
                    margin-bottom: 12px;
                }

                a {
                    position: relative;
                    font-size: 18px;
                    font-weight: var(--font-bold);
                    color: var(--Silver);
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        color: var(--yallow);
                    }

                    &::after {
                        content: '';
                        position: absolute;
                        left: 0;
                        bottom: -4px;
                        /* مسافة بسيطة تحت النص */
                        width: 100%;
                        height: 2px;
                        background-color: var(--yallow);
                        transform: scaleX(0);
                        transform-origin: left;
                        transition: transform 0.3s ease-in-out;
                    }

                    &:hover::after {
                        transform: scaleX(1);
                    }
                }
            }
        }

        .sidebar a.active {
            color: var(--yallow);
        }

        .sidebar a.active::after {
            transform: scaleX(1);
        }

        .content_terms {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 2rem;
            flex-direction: column;
            width: 80%;

            section {
                scroll-margin-top: 150px;
                /* حسب ارتفاع الهيدر */
            }

            .content_t {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1.5rem;
                flex-direction: column;

                h3 {
                    font-size: 18px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Green);
                    margin-bottom: 12px;
                }

                p {
                    font-size: var(--normal-font-size);
                    font-weight: var(--font-regular);
                    color: #111214;
                    line-height: 26px;
                    width: 960px;
                }

                ul {
                    list-style: disc;
                    margin-left: 1rem;

                    li {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-regular);
                        color: #111214;
                        line-height: 26px;
                        width: 960px;
                    }
                }

                ol {
                    margin-left: 1rem;

                    li {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-regular);
                        color: #111214;
                        line-height: 26px;
                        width: 960px;
                    }
                }

            }

            .content_s {
                display: flex;
                justify-content: space-between;
                align-items: start;
                gap: 1.5rem;
                flex-direction: column;

                h3 {
                    font-size: 18px;
                    font-weight: var(--font-semi-bold);
                    color: var(--Green);
                    margin-bottom: 12px;
                }

                p {
                    font-size: var(--normal-font-size);
                    font-weight: var(--font-regular);
                    color: #111214;
                    line-height: 26px;
                    width: 960px;
                }

                ul {
                    list-style: disc;
                    margin-left: 1rem;

                    li {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-regular);
                        color: #111214;
                        line-height: 26px;
                        width: 960px;
                    }
                }

                ol {
                    margin-left: 1rem;

                    li {
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-regular);
                        color: #111214;
                        line-height: 26px;
                        width: 960px;
                    }
                }

            }
        }
    }

    .pra {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3rem 0;

        p {
            font-size: var(--normal-font-size);
            font-weight: var(--font-medium);
            color: #111214;

            a {
                color: var(--yallow);
            }
        }
    }


}


/*=================== PAGE 11 ================*/
/*=================== FORM ================*/
.form_page {
    padding: 9rem 3rem 5rem 3rem;


    .form_page_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        h3 {
            font-size: 36px;
            font-weight: var(--font-semi-bold);
            color: var(--Silver);
            line-height: 120%;
            text-align: center;
            max-width: 654px;
            width: 100%;

            span {
                color: var(--yallow);
            }
        }

        .form {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-direction: column;
            margin-top: 2rem;
            padding: 3rem;
            border-radius: 20px;
            background: #FBFBFB;
            width: fit-content;


            .form_header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 10px;
                flex-direction: column;
                /* margin-bottom: 2rem; */

                h2 {
                    font-size: 23px;
                    font-weight: var(--font-semi-bold);
                    color: var(--yallow);
                    text-align: center;
                }

                p {
                    font-size: 14px;
                    font-weight: var(--font-regular);
                    color: var(--Silver);
                    line-height: 100%;
                    width: 440px;
                    text-align: center;
                }

            }

            .form_group {
                position: relative;
                /* margin: 1rem 0; */


                label {
                    position: absolute;
                    transform: translateY(-50%);
                    top: 50%;
                    left: 15px;
                    font-size: 12px;
                    font-weight: var(--font-semi-bold);
                    pointer-events: none;
                    color: #111214;
                    padding: 0 5px;
                    transition: 0.5s;
                    background-color: white;

                    span {
                        color: red;
                    }
                }

                input {
                    width: 429px;
                    height: 46px;
                    color: white;
                    font-size: 14px;
                    font-weight: var(--font-regular);
                    border: 1px solid #6D6E7133;
                    background: white;
                    padding: 0 15px;
                    outline: none;
                    border-radius: 8px;

                    &:focus~label,
                    &:valid~label {
                        top: 0;
                    }

                    &:focus {
                        color: var(--Silver);
                    }

                    &::placeholder {
                        opacity: 0;
                        transition: opacity 0.3s ease;
                    }

                    &:focus::placeholder {
                        opacity: 1;
                        transition-delay: 0.2s;
                    }

                }
            }

            .name {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;

                .first_name,
                .last_name {
                    position: relative;
                }

                label {
                    position: absolute;
                    transform: translateY(-50%);
                    top: 50%;
                    left: 15px;
                    font-size: 12px;
                    font-weight: var(--font-semi-bold);
                    pointer-events: none;
                    color: #111214;
                    padding: 0 5px;
                    transition: 0.5s;
                    background-color: white;

                    span {
                        color: red;
                    }
                }

                input {
                    width: 202px;
                    height: 46px;
                    color: white;
                    font-size: 14px;
                    font-weight: var(--font-regular);
                    border: 1px solid #6D6E7133;
                    background: white;
                    padding: 0 15px;
                    outline: none;
                    border-radius: 8px;

                    &:focus~label,
                    &:valid~label {
                        top: 0;
                    }

                    &:focus {
                        color: var(--Silver);
                    }

                    &::placeholder {
                        opacity: 0;
                        transition: opacity 0.3s ease;
                    }

                    &:focus::placeholder {
                        opacity: 1;
                        transition-delay: 0.2s;
                    }
                }
            }

            .agree_terms {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;

                input[type="checkbox"] {
                    appearance: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;

                    width: 20px;
                    /* العرض */
                    height: 20px;
                    /* الطول */
                    border: 2px solid var(--Dark-blue);
                    /* لون وحجم البوردر */
                    border-radius: 4px;
                    /* لو عايزه مربع بزاوية دائرية */
                    background-color: white;
                    cursor: pointer;
                    position: relative;
                    transition: all 0.3s ease;
                    font-family: "Font Awesome 6 Free";
                    /* علشان يقرأ الأيقونة */
                    font-weight: 900;
                    /* ضروري لأيقونات solid */
                    color: white;
                }

                /* لما يكون متعلم عليه */
                input[type="checkbox"]:checked {
                    background-color: var(--Dark-blue);
                    border-color: var(--Dark-blue);
                }

                input[type="checkbox"]:checked::after {
                    content: "\f00c";
                    /* Unicode لأيقونة fa-check */
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }


                label {
                    font-size: 14px;
                    font-weight: var(--font-regular);
                    color: #111214;

                    a {
                        color: var(--yallow);
                    }
                }
            }

            .btn {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 48px;
                background-color: var(--Dark-blue);
                color: white;
                border: none;
                border-radius: 7.5px;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: var(--normal-font-size);
                font-weight: var(--font-bold);
            }
        }


        /* POPUP Overlay */
        .contactUsPopup {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            display: none;
            /* هيظهر لما الفورم يتبعت */
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        /* POPUP Box */
        .popup-content {
            background: #f5fff5;
            /* لون الخلفية الفاتح زي الصورة */
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            max-width: 450px;
            width: 100%;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* النص الرئيسي */
        .popup-text {
            font-size: 18px;
            font-weight: 600;
            color: #111;
            margin-bottom: 20px;
        }

        /* زرار واتساب */
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #25D366;
            color: white;
            padding: 10px 18px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .whatsapp-btn:hover {
            background-color: #1ebe5d;
        }

        /* أيقونة الواتساب */
        .whatsapp-btn i {
            font-size: 18px;
        }

        /* العداد */
        .countdown-text {
            margin-top: 15px;
            font-size: 14px;
            color: #444;
        }

        .countdown {
            font-weight: bold;
            color: #25D366;
        }
    }
}

/*=============== PAGE 12 ===============*/
/*=============== ERROR PAGE ===============*/
.error {
    padding: 10rem 1rem;



    .error_container {


        .error_content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-direction: column;

            .num {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 10rem;
                font-weight: var(--font-semi-bold);
                color: var(--Dark-blue);
            }

            .img {
                width: 387px;
                height: 329.20086669921875px;
                margin-left: 90px;


                img {
                    width: 100%;
                    height: 100%;
                }
            }

            .text {
                p {
                    font-size: 18px;
                    font-weight: var(--font-medium);
                    color: var(--Silver);
                }
            }

            .btn {
                display: flex;
                justify-content: center;
                align-items: center;

                a {
                    color: var(--Dark-blue);
                    font-size: 23px;
                    font-weight: var(--font-semi-bold);
                    text-decoration: underline;
                }
            }
        }
    }
}


/*=============== POPUP FORM HOME ===============*/
.popup-form-home {
    position: fixed;
    /* يخليه يثبت على الشاشة */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    /* خلفية شفافه */
    display: flex;
    align-items: center;
    justify-content: center;


    .popup-form-home_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 3rem;
        border-radius: 14px;
        background-color: white;

        .popup-form-home_content {
            display: flex;
            justify-content: space-between;
            align-items: start;
            flex-direction: column;
            gap: 1rem;

            h3 {
                font-size: 23px;
                font-weight: var(--font-semi-bold);
                color: #111214;
            }

            p {
                font-size: 14px;
                font-weight: var(--font-semi-bold);
                color: var(--Silver);
                width: 460px;
            }

            form {
                margin-top: 2rem;

                .input {
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    border: 1px solid var(--yallow);
                    border-radius: 7.5px;
                    width: 400px;
                    height: 45px;

                    input {
                        padding: 10px;
                        width: 100%;
                        border-radius: 7.5px 0 0 7.5px;
                        height: 100%;
                        font-size: 14px;
                        font-weight: var(--font-medium);
                        color: var(--Silver);
                        background: #FFFBF3;
                    }

                    button {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        width: 180px;
                        height: 100%;
                        border-radius: 0 7.5px 7.5px 0;
                        background-color: var(--yallow);
                        color: white;
                        font-size: var(--normal-font-size);
                        font-weight: var(--font-semi-bold);
                    }
                }
            }
        }

        .popup-form-home_img {
            width: 233.99972534179688px;
            height: 205.90504455566406px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

.popup-form-home.active {
    display: flex;
    /* لما تضيف الكلاس دا يبان */
}

/*=============== POPUP SUCCESS HOME ===============*/
.popup-success-home {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    /* يخليه يثبت على الشاشة */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;

    .popup-success-home_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        border-radius: 14px;
        background-color: white;

        .popup-success-home_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            flex-direction: column;
            gap: 1rem;

            h3 {
                font-size: 23px;
                font-weight: var(--font-semi-bold);
                color: #111214;
            }

            p {
                font-size: 14px;
                font-weight: var(--font-semi-bold);
                color: var(--Silver);
                width: 375px;
            }

            a {
                font-size: var(--normal-font-size);
                font-weight: var(--font-semi-bold);
                color: var(--yallow);
            }
        }

        .popup-form-home_img {
            width: 115px;
            height: 115px;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}



/*=============== FOOTER ===============*/
footer {
    background-color: var(--Dark-blue);
}


.footer_section {
    background-image: url(assets/image/bg\ footer.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 3rem 1rem 3rem;
    margin-top: 3rem;
}

.footer_data {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.desc_img_logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;

    .img_logo img {
        width: 227.3700408935547px;
        height: 86.95556640625px;
    }
}


.footer_info {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    color: white;
}

.footer_info h3 {
    font-size: 16.5px;
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: 20px;
}

.footer_info ul {
    display: flex;
    flex-direction: column;
    gap: 15px;

    li {
        transition: all 0.3s ease;
    }
}

.footer_info a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 13px;
    font-size: 12px;
    font-weight: var(--font-regular);
    color: white;
    transition: all 0.3s ease;

    i {
        font-size: 10px;
        color: var(--yallow);
    }

}

.footer_info .more {

    span {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: var(--font-regular);
        margin-bottom: -10px;

        i {
            color: var(--yallow);
            font-size: 10px;
        }
    }

    a {
        width: 178.5px;
        font-size: 12px;
        font-weight: var(--font-semi-bold);
        line-height: 22.5px;
    }
}

.footer_data .form {

    p {
        font-size: 12px;
        font-weight: var(--font-regular);
        color: white;
        width: 247.875px;
        line-height: 22.5px;
    }

    .input {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 247.875px;
        height: 45px;
        border-radius: 749.25px;
        background-color: white;

        input {
            background: transparent;
        }

        button {
            position: absolute;
            right: 0;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            color: white;
            font-size: 14px;
            background-color: var(--yallow);
            cursor: pointer;
        }
    }
}

.footer_info a:hover,
.footer_info li:hover {
    color: var(--yallow);
}


.desc_img_logo .social {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 15px;
}

.desc_img_logo .social a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--h4-font-size);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        color: var(--yallow);
    }
}


.footer_copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem !important;
}

.footer_copy p {
    color: white;
    font-size: 12px;
    font-weight: var(--font-medium);
}


.footer_copy p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    img {
        width: 116.39999389648438px;
        height: 12.837583541870117px;
    }
}

.footer_copy .pages {
    display: flex;
    gap: 3rem;

    a {
        font-size: 12px;
        font-weight: var(--font-medium);
        color: white;
        cursor: pointer;
    }
}


/*=============== RESPONSIVE ===============*/
@media (max-width: 1200px) {
    .header {
        padding: 0 1rem;
    }

    .nav_list {
        gap: 1rem;
    }

    .nav .btn {
        width: 160px;
        font-size: 13.82px;
    }

    .nav_logo img {
        width: 125.017609px;
        height: 50.521053px;
    }

    /*=============== PAGE 1 ===============*/
    /*=============== HOME ===============*/
    .home {
        padding: 13rem 2rem 4rem 2rem;

        &::before {
            width: 161px;
            height: 105px;
            bottom: 65%;
        }

        .home_container .home_content {
            .home_text {
                h2 {
                    font-size: 28px;
                }

                p {
                    width: 100%;
                    font-size: 14px;
                }
            }

            .home_img {
                .img1 {
                    width: 320px;
                    height: auto;
                }

                .img2 {
                    left: 130px;
                }

                .icon1 {
                    left: 105px;
                }

                .icon2 {
                    bottom: 190px;
                }

            }
        }
    }

    /*=============== PATH ===============*/
    .path {
        padding: 4rem 2rem;

        .path_container {
            h2 {
                font-size: 30px;
            }

            p {
                font-size: 13px;
            }

            .path_content {
                grid-template-columns: repeat(4, 1fr);
                justify-items: center;


                .path_img {
                    right: 20px;
                    width: 240px;
                    height: auto;
                }
            }
        }
    }

    /*=============== COURSE ===============*/
    .course {
        padding: 4rem 2rem;

        .course_container {
            h2 {
                font-size: 32px;
            }

            .course_content {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem 1rem;

                .course_item {
                    padding: 0;

                    .course_text p {
                        width: 100%;
                    }
                }
            }
        }
    }

    /*=============== OUR BLOGS ===============*/
    .our_blog {
        padding: 4rem 2rem 6rem 2rem;
        background-size: 400px auto;

        .our_blog_container {
            h2 {
                font-size: 32px;
            }

            .our_blog_articles_items {
                gap: 15px;

                .item {
                    .item_img {
                        width: 100%;
                        height: auto;

                        img {
                            border-radius: 10px;
                        }
                    }

                    .item_content {
                        width: 100%;

                        h3 {
                            width: 100%;
                        }

                        p {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }

    /*=============== TESTIMONIALS ================*/
    .testimonials {
        padding: 6rem 2rem;

        &::after {
            width: 120px;
            height: 68px;
            right: 15px;
        }

        .testimonials_container {
            padding-bottom: 1.5rem;

            &::after {
                width: 160px;
                height: 125px;
                right: 70px;
            }

            .testimonials_content {
                .swiper {
                    padding: 4rem 1.5rem;
                }
            }
        }
    }

    /*=============== LEARNING FROM HOME ================*/
    .learning_from_home {
        padding: 4rem 2rem;

        .from_home_container {
            .from_home_content {
                .from_home_img {
                    width: 400px;
                    height: auto;
                }

                .from_home_text {
                    margin-left: -40px;

                    h2 {
                        width: 100%;
                        font-size: 30px;
                    }

                    .featuers {
                        gap: 3rem;
                    }
                }
            }

            .achivements {
                right: 60px;
                height: auto;

                .achivements_content {
                    padding: 2rem;
                    gap: 2rem;
                }
            }
        }
    }

    /*=============== READY ===============*/
    .ready {
        padding: 12rem 2rem 4rem 2rem;

        .ready_container {
            h2 {
                font-size: 32px;

                &::after,
                &::before {
                    right: 34%;
                    width: 110px;
                }
            }

            .ready__content {
                gap: 3rem;

                .ready_img {
                    width: 450px;
                    height: auto;

                    &::after {
                        right: -15px;
                    }
                }
            }
        }
    }

    /*=================== PAGE 2 ================*/
    /*=================== PRICING ================*/
    .pricing {
        padding: 12rem 2.5rem 4rem 2.5rem;
        height: 70vh;

        .pricing_container {
            .pricing_content {
                gap: 4rem;

                .pricing_text {
                    h2 {
                        font-size: 34px;
                    }

                    p {
                        width: 700px;
                        font-size: 14px;
                        line-height: 18px;
                    }
                }

                .pricing_img {
                    width: 850px;
                    height: 338px;
                    bottom: -15%;
                }
            }
        }
    }

    /*=================== PRICING PLANS  ================*/
    .pricing_plans {
        padding: 4rem 2.5rem;
        height: auto;
        margin-top: 8rem;

        .pricing_plans_container {
            h2 {
                font-size: 24px;
            }

            .pricing_plans_content {
                flex-wrap: wrap;
                padding: 2rem 0;

                .pricing_plan {
                    padding: 1.5rem 1.5rem 3rem 0.8rem;
                    border-radius: 12.92px;

                    &:nth-child(1),
                    &:nth-child(4) {
                        border-radius: 12.92px;
                    }

                    h3 {
                        font-size: 20px;
                    }

                    .price {
                        font-size: 24px;

                        span {
                            font-size: 12px;
                        }
                    }

                    a {
                        width: 200px;
                        height: 36px;
                        font-size: 13.5px;
                        border-radius: 6.5px;
                    }

                    .features {
                        li {
                            font-size: 12px;

                            i {
                                font-size: 13px;
                            }
                        }
                    }

                    .discount {
                        width: 55px;
                        height: 33px;

                        h5 {
                            font-size: 18px;
                        }
                    }
                }
            }

            .pra {
                margin-top: 4rem;

                p {
                    height: 38px;
                    font-size: 10px;

                    i {
                        width: 24px;
                        height: 24px;
                        font-size: 13px;
                    }
                }
            }
        }
    }

    /*=================== EVERYONE =================*/
    .everyone {
        padding: 8rem 2.5rem 4rem 2.5rem;
        margin-top: 2.5rem;

        .everyone_container {
            h2 {
                font-size: 24px;
            }

            p {
                font-size: 12.5px;
            }

            .everyone_content {
                gap: 4rem;
                margin-top: 6rem;

                .everyone_item {
                    width: 400px;
                    padding: 6rem 8px 1.5rem 8px;

                    img {
                        width: 140px;
                        height: 140px;
                        top: -60px;
                    }

                    h3 {
                        font-size: 16px;
                    }

                    p {
                        font-size: 11px;
                        width: 350px;
                    }

                    span {
                        font-size: 11px;
                    }

                    &:nth-child(3),
                    &:nth-child(4) {
                        margin-top: 2rem;
                    }
                }
            }
        }
    }


    /*=============== PAGE 3 ===============*/
    /*=============== COURSES HERO ================*/
    .courses_hero {
        padding: 6rem 0 4rem 0;

        .courses_hero_container {
            padding: 4rem 5rem 6rem 2.5rem;
            border: 5px solid #EDEDED;
            border-radius: 18px;

            .courses_hero_content {
                gap: 3rem;

                .courses_hero_text {
                    gap: 1.5rem;

                    h2 {
                        font-size: 34px;
                        width: 500px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 1px);
                    }

                    .courses_hero_btns {
                        gap: 0.8rem;

                        .btn {
                            width: 130px;
                            height: 38px;
                            border-radius: 6.5px;
                            font-size: calc(var(--normal-font-size) - 1px);
                        }

                        .second_btn {
                            width: 200px;
                            height: 38px;
                            border-radius: 6.5px;
                            font-size: calc(var(--normal-font-size) - 1px);
                        }
                    }

                    .features {
                        gap: 0.8rem;

                        .item {
                            img {
                                width: 28px;
                                height: 28px;
                            }

                            p {
                                font-size: 13px;
                            }
                        }
                    }
                }

                .courses_hero_img {
                    width: 320px;
                    height: 320px;

                    .item1_course {
                        left: -20%;
                        top: 60px;
                        gap: 12px;
                        padding: 8px;
                        padding-right: 0.8rem;

                        .img {
                            width: 26px;
                            height: 24px;
                        }

                        .data {
                            span {
                                font-size: 11px;
                            }

                            p {
                                font-size: 8px;
                            }
                        }
                    }

                    .item2_course {
                        right: -15%;
                        bottom: 60px;
                        gap: 12px;
                        padding: 8px;
                        padding-right: 0.8rem;

                        .img {
                            width: 26px;
                            height: 24px;
                        }

                        .data {
                            span {
                                font-size: 11px;
                            }

                            p {
                                font-size: 8px;
                            }
                        }
                    }

                    .item3_course {
                        left: -10%;
                        bottom: 10px;
                        width: 180px;
                        padding: 8px;
                        padding-right: 0.8rem;

                        .img {
                            width: 75px;
                            height: 24px;
                        }

                        p {
                            font-size: 11px;
                        }
                    }
                }
            }

            .end {
                right: 0.8rem;
                bottom: 0.8rem;
                gap: 0.8rem;

                .stars {
                    i {
                        font-size: calc(var(--normal-font-size) - 1px);
                    }
                }

                .data {
                    span {
                        font-size: 24px;
                    }

                    p {
                        font-size: 8px;
                        width: 70px;
                    }
                }
            }
        }
    }

    /*=============== COURSES ===============*/
    .courses {
        padding: 4rem 0.8rem;

        .courses_container {
            h2 {
                font-size: 24px;
                margin-bottom: 2.5rem;
            }

            .courses_content {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem 2rem;
                margin-bottom: 4rem;

                .courses_item {
                    padding: 12px;

                    .courses_img {
                        height: 200px;
                    }

                    .courses_text {
                        padding: 15px;

                        h3 {
                            font-size: 15px;
                            margin-top: 12px;
                        }

                        p {
                            font-size: 11px;
                            width: 300px;
                        }

                        .btn_logo {
                            img {
                                width: 35px;
                                height: 40px;
                            }

                            a {
                                width: 100px;
                                height: 32px;
                                font-size: 9.5px;
                            }
                        }
                    }
                }
            }

            .courses_content2 {
                gap: 2rem;
                margin-bottom: 4rem;

                .courses_item {
                    padding: 4px;

                    .courses_img {
                        width: 320px;
                        height: 240px;
                    }

                    .courses_text {
                        padding: 15px;

                        h3 {
                            font-size: 15px;
                            margin-top: 12px;
                        }

                        p {
                            font-size: 11px;
                            width: 500px;
                        }

                        .btn_logo {
                            img {
                                width: 35px;
                                height: 40px;
                            }

                            a {
                                width: 160px;
                                height: 32px;
                                font-size: 9.5px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== AT HOME ================*/
    .at_home {
        padding: 4rem 2.5rem;

        .at_home_container {
            h2 {
                font-size: 24px;
                margin-bottom: 3rem;
            }

            .featuers {
                gap: 4rem;
                flex-wrap: wrap;

                .item {
                    width: 250px;
                    height: 150px;
                    padding: 1.5rem;
                    padding-left: 2.5rem;
                    border-radius: 12px;

                    &::before {
                        top: 15px;
                        left: -20px;
                        width: 50px;
                        height: 50px;
                    }

                    span {
                        font-size: 12.5px;
                    }

                    h3 {
                        font-size: 15px;
                    }

                    p {
                        width: 180px;
                        font-size: 11px;
                        line-height: 14px;
                    }
                }
            }
        }
    }

    /*=============== BANNAR ===============*/
    .bannar_section {
        .bannar {
            width: 900px;
            border-radius: 30px;

            .text {
                padding: 30px 40px;
                gap: 1.2rem;

                img {
                    width: 65px;
                    height: 65px;
                }

                h4 {
                    font-size: 21px;
                }

                p {
                    font-size: 13px;
                    line-height: 19px;
                    width: 500px;
                }

                a {
                    width: 220px;
                    height: 38px;
                    border-radius: 6.5px;
                    font-size: 14px;
                }
            }

            .bannar_img {
                width: 270px;

                img {
                    height: 260px;
                }
            }
        }
    }

    /*=================== CHAIN ================*/
    .chain {
        padding: 4rem 2.5rem 0 2.5rem;

        .chain_container {
            padding: 1.5rem 4rem;

            h2 {
                font-size: 23px;
                margin-bottom: 12px;
            }

            p {
                font-size: 13px;
                margin-bottom: 3rem;
            }

            .chain__content {
                .chain_text {
                    gap: 1.5rem;

                    .icon_text {
                        gap: 0.8rem;

                        .icon {
                            i {
                                font-size: 16px;
                            }
                        }

                        .text {
                            h3 {
                                font-size: calc(var(--normal-font-size) - 1px);
                            }
                        }
                    }

                    .chain_btns {
                        .btn {
                            width: 230px;
                            height: 42px;
                            border-radius: 6.5px;
                            font-size: 14px;
                        }
                    }
                }

                .chain_img {
                    width: 380px;
                    height: 330px;
                }
            }

            .pra {
                padding: 4rem 0 0 0;

                p {
                    font-size: 13px;
                }

                /* &::after {
                        width: 160px;
                        height: 9px;
                        bottom: 20%;
                    } */
            }
        }
    }


    /*=============== PAGE 4 ===============*/
    /*=================== TESTIMONIAL HERO ================*/
    .testimonial_hero {
        padding: 6rem 2.5rem 4rem 2.5rem;

        .testimonial_hero_container {
            border: 5px solid var(--yallow);
            border-radius: 18px;
            padding: 2.5rem 0;

            .testimonial_hero_content {
                gap: 1.5rem;

                .hero_text {
                    gap: 0.8rem;

                    span {
                        font-size: 11px;
                    }

                    h2 {
                        font-size: 26px;
                    }

                    p {
                        font-size: 14px;
                        width: 600px;
                    }
                }

                .hero_img {
                    height: 220px;
                }

                .testimonial_hero_btn {
                    a {
                        width: 260px;
                        height: 38px;
                        font-size: 14px;
                        border-radius: 6.5px;
                    }
                }
            }
        }
    }

    /*=============== TESTIMONIAL SECTION ===============*/
    .testimonial_section {
        padding: 4rem 2.5rem;

        .testimonial_section_container {
            h2 {
                font-size: 24px;
                margin-bottom: 4rem;
            }

            .testimonial_section_content {
                row-gap: 4rem;

                .testimonial {
                    width: 350px;
                    height: 180px;
                    padding: 0.7rem 1.2rem;
                    border-radius: 5px;
                    transform: rotate(1.5deg);

                    &::after {
                        left: -12px;
                        border-radius: 6.5px;
                        transform: rotate(0.7deg);
                    }

                    .data {
                        gap: 0.8rem;

                        .name_img {
                            gap: 1.2rem;

                            img {
                                width: 35px;
                                height: 27px;
                            }

                            h4 {
                                font-size: 13px;
                            }
                        }

                        p {
                            font-size: 11px;
                            line-height: 18px;
                            width: 200px;
                        }
                    }

                    .testimonial_img {
                        width: 70px;
                        height: 100px;

                        &::after {
                            width: 11px;
                            height: 27px;
                            left: -7px;
                            top: -15px;
                        }
                    }

                    .name_teacher {
                        right: 8px;
                        bottom: 8px;

                        span {
                            font-size: 11px;
                            gap: 8px;
                        }
                    }
                }
            }

            .testimonial_section_btn {
                margin-top: 4rem;

                a {
                    font-size: 21px;
                }
            }

            .pagination {
                margin-top: 4rem;
                gap: 8px;

                button {
                    width: 28px;
                    height: 28px;
                    font-size: calc(var(--normal-font-size) - 1px);
                }

                .pagination-numbers {
                    gap: 8px;

                    span {
                        width: 28px;
                        height: 28px;
                        font-size: calc(var(--normal-font-size) - 1px);
                    }
                }
            }
        }
    }

    .testimonial_page {
        padding: 8rem 2.5rem 4rem 2.5rem;
    }

    /*=================== PAGE 5 ================*/
    /*=================== HERO TEACHER ================*/
    .hero_teacher {
        padding: 8rem 2.5rem 4rem 2.5rem;

        .hero_teacher_container {
            .hero_teacher_content {
                gap: 3rem;

                .hero_teacher_text {
                    gap: 8px;

                    h2 {
                        font-size: 26px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 1px);
                        width: 450px;
                        line-height: 18px;
                    }
                }

                .hero_teacher_img {
                    width: 400px;
                    height: 310px;
                }
            }

            .content2 {
                .hero_teacher_text {
                    h2 {
                        font-size: 26px;
                    }
                }
            }
        }
    }

    /*=============== TEACHER ===============*/
    .teacher {
        padding: 4rem 2.5rem;

        .teacher_container {
            .teacher_content {
                gap: 4rem;

                .teacer_cards {
                    gap: 2.5rem;

                    h2 {
                        font-size: 21px;
                    }

                    .card {
                        padding: 12px;
                        border-radius: 7px;

                        .card_img {
                            width: 200px;
                            height: 160px;
                        }

                        .card_text {
                            padding: 0.8rem;

                            h3 {
                                font-size: 18px;
                            }

                            p {
                                font-size: 13px;
                                width: 350px;
                                line-height: 18px;
                            }

                            a {
                                height: 28px;
                                font-size: 13px;
                            }
                        }
                    }
                }

                .fetures_teach {
                    right: 20px;
                    top: 12px;
                    gap: 0.8rem;

                    span {
                        font-size: 12px;

                        &::after {
                            width: 3.5px;
                            height: 3.5px;
                            right: -6px;
                            bottom: 1.5px;
                        }
                    }
                }

                .teacher_data {
                    gap: 2.5rem;

                    h2 {
                        font-size: 21px;
                    }

                    .icon_text {
                        gap: 1.2rem;

                        .icon {
                            i {
                                font-size: 27px;
                            }
                        }

                        .text {
                            gap: 10px;

                            h3 {
                                font-size: 16px;
                            }

                            p {
                                font-size: 15px;
                                width: 100%;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== PAGE 6 ================*/
    /*=================== SINGLE COURSE ================*/
    .single_course {
        padding: 4.5rem 0rem 4rem 0rem;

        .single_course_container {

            .single_course_content {
                .course_img {
                    height: 480px;

                    .cours_text {
                        width: 450px;
                        top: 25%;
                        left: 6%;
                        gap: 1.5rem;

                        h1 {
                            font-size: 30px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 1px);
                            line-height: 18px;
                        }

                        a {
                            width: 160px;
                            height: 38px;
                            font-size: 14px;
                            border-radius: 6.5px;
                        }
                    }
                }

                .ditalis_course {
                    padding: 8px 8rem;

                    .ditalis {
                        .item {
                            gap: 12px;

                            p {
                                font-size: calc(var(--normal-font-size) - 1px);
                                gap: 8px;

                                i {
                                    font-size: 14px;
                                }
                            }

                            .stars {
                                gap: 3px;

                                i {
                                    font-size: 14px;
                                }
                            }

                            img {
                                width: 28px;
                                height: 28px;
                            }
                        }
                    }
                }
            }

            .summary {
                padding: 4rem 3rem;

                .summary_text {
                    gap: 1.5rem;
                    padding: 1.5rem;

                    h2 {
                        font-size: 26px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 1px);
                        line-height: 20px;
                    }
                }
            }
        }
    }


    /*=============== SINGLE COURSE DATA ===============*/
    .single_course_data {
        padding: 1rem 2rem;

        .single_course_data_container {
            gap: 2.5rem;

            .single_course_content {
                .data {
                    gap: 1.5rem;

                    .course_desc {
                        gap: 0.8rem;

                        h2 {
                            font-size: 21px;
                            margin-top: 35px;
                            margin-bottom: 12px;
                        }

                        h3 {
                            font-size: 18px;
                            margin-top: 35px;
                            margin-bottom: 12px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 1px);
                            width: 440px;
                            line-height: 1.7;
                            margin-bottom: 12px;
                        }

                        ul,
                        ol {
                            margin-left: 20px;
                            margin-bottom: 15px;
                            margin-top: 12px;

                            li {
                                font-size: calc(var(--normal-font-size) - 1px);
                                margin-bottom: 12px;
                            }
                        }
                    }

                    .course_desc2 {
                        padding: 15px;
                        border-radius: 7px;
                    }

                    .second_data {
                        gap: 2.5rem;

                        .build_path {
                            gap: 0.8rem;

                            p {
                                font-size: calc(var(--normal-font-size) - 1px);
                            }

                            a {
                                width: 240px;
                                height: 38px;
                                font-size: 14px;
                                border-radius: 6.5px;
                            }
                        }

                        &::after {
                            top: -90px;
                            left: 35%;
                            width: 110px;
                            height: 110px;
                        }
                    }
                }

                a {
                    font-size: 16px;
                    margin-top: 15px;
                }
            }
        }
    }


    /*=============== PAGE 7 ===============*/
    /*=============== BLOGS ===============*/
    .blogs {
        padding: 6rem 2.5rem 4rem 2.5rem;

        .blogs_container {
            .blogs_header {
                padding: 4rem 0;
                gap: 0.8rem;

                span {
                    font-size: 11px;
                    margin-bottom: 10px;
                    padding: 2.5px;
                }

                h2 {
                    font-size: 26px;
                }

                p {
                    font-size: 14px;
                }
            }

            .our_blog_items {
                grid-template-columns: repeat(2, 1fr);
                justify-items: center;
                gap: 15px;
                row-gap: 40px;

                .item {
                    .item_img {
                        width: 350px;
                        height: 245px;
                    }

                    .item_content {
                        width: 350px;
                        margin-top: 8px;

                        .date {
                            span {
                                font-size: 13px;
                            }
                        }

                        h3 {
                            font-size: 16px;
                            width: 340px;
                        }

                        p {
                            font-size: 13px;
                            width: 320px;
                        }

                        .btn_read {
                            margin-top: 10px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 1px);
                                    gap: 8px;
                                }
                            }

                            .read {
                                gap: 10px;

                                h4 {
                                    font-size: 13px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 1px);
                                }
                            }
                        }
                    }
                }
            }

            #pagination {
                margin-top: 2.5rem;
                padding: 2.5rem 0;
                gap: 0.4rem;

                button {
                    width: 30px;
                    height: 30px;
                    font-size: 13px;
                }
            }
        }
    }

    /*=================== BLOGS CATEGORIES ================*/
    .blogs_categories {
        padding: 4rem 2.5rem;

        .blogs_categories_container {
            gap: 2rem;
            flex-wrap: wrap;

            .categories_list {
                gap: 2.5rem;

                h2 {
                    font-size: 26px;
                }

                .item {
                    gap: 0.8rem;

                    .item_img {
                        width: 170px;
                        height: 230px;
                    }

                    .item_content {
                        width: 180px;
                        gap: 0.8rem;

                        .date {
                            span {
                                font-size: 13px;
                            }
                        }

                        h3 {
                            font-size: calc(var(--normal-font-size) - 1px);
                        }

                        p {
                            font-size: 9px;
                            margin-bottom: 15px;
                        }

                        .btn_read {
                            a {
                                font-size: 13px;
                                gap: 8px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== PAGE 8 ================*/
    /*=================== SINGLE BLOG ================*/
    .single_blog {
        padding: 8rem 2.5rem 1rem 2.5rem;

        .single_blog_container {
            .merg {
                gap: 0.8rem;

                .single_blog_content {
                    gap: 0.8rem;

                    .single_blog_header {
                        h1 {
                            font-size: 34px;
                            width: 700px;
                        }

                        .ditails {
                            gap: 2rem;

                            span {
                                font-size: 13px;
                                padding-right: 15px;

                                &:nth-child(1),
                                &:nth-child(2) {
                                    border-right: 1.5px solid var(--Silver);
                                }

                                i {
                                    font-size: 13px;
                                }
                            }
                        }
                    }

                    .single_blog_img {
                        width: 700px;
                        height: 420px;
                        border-radius: 7px;
                    }

                    .blog_desc {
                        gap: 0.8rem;

                        h2 {
                            font-size: 21px;
                            margin-top: 35px;
                            margin-bottom: 12px;
                        }

                        h3 {
                            font-size: 18px;
                            margin-top: 35px;
                            margin-bottom: 12px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 1px);
                            width: 500px;
                            line-height: 1.7;
                            margin-bottom: 12px;
                        }

                        ul,
                        ol {
                            margin-left: 20px;
                            margin-bottom: 15px;
                            margin-top: 12px;

                            li {
                                font-size: calc(var(--normal-font-size) - 1px);
                                margin-bottom: 12px;
                            }
                        }

                        a {
                            font-size: 16px;
                            margin-top: 25px;
                        }
                    }

                    .comment {
                        margin-top: 1.5rem;

                        form {
                            gap: 0.8rem;

                            label {
                                font-size: 16px;
                            }

                            textarea {
                                height: 45px;
                                padding: 10px 14px;
                                font-size: calc(var(--normal-font-size) - 1px);
                            }

                            button {
                                padding: 10px 14px;
                                font-size: 13px;
                                border-radius: 6.5px;
                            }
                        }
                    }
                }

                .quran_reads {
                    gap: 1.5rem;
                    width: 320px;

                    .unlock {
                        padding: 15px 20px;
                        border-radius: 16px;
                        width: 90%;

                        h3 {
                            font-size: 21px;
                        }

                        p {
                            font-size: 13px;
                            width: 280px;
                        }

                        a {
                            height: 38px;
                            font-size: calc(var(--normal-font-size) - 1px);
                            border-radius: 6.5px;
                        }
                    }

                    .last_article {
                        padding: 15px 20px;
                        border-radius: 16px;
                        width: 90%;

                        h2 {
                            font-size: 21px;
                        }

                        .article {
                            gap: 4px;

                            a {
                                font-size: 16px;
                            }

                            span {
                                font-size: 13px;
                            }
                        }
                    }

                    .popular {
                        padding: 15px 20px;
                        border-radius: 16px;
                        width: 90%;

                        h2 {
                            font-size: 21px;
                        }

                        .popular_blog {
                            gap: 4px;

                            a {
                                font-size: 16px;
                                width: 260px;
                            }

                            span {
                                font-size: 13px;
                            }
                        }
                    }

                    .share {
                        gap: 0.8rem;

                        h2 {
                            font-size: 21px;
                        }

                        .social {
                            gap: 8px;

                            a {
                                font-size: 21px;
                            }
                        }
                    }
                }
            }

            .link {
                font-size: 16px;
                margin-top: 25px;
            }
        }
    }

    /*===================MORE ARTICLES================*/
    .more_articles {
        padding: 4rem 2.5rem;

        .more_articles_container {
            h2 {
                font-size: 30px;
                margin-bottom: 1.5rem;
            }

            .our_blog_articles_items {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                row-gap: 40px;

                .item {
                    gap: 0.8rem;

                    .item_img {
                        width: 350px;
                        height: 245px;
                    }

                    .item_content {
                        width: 350px;
                        margin-top: 8px;
                        gap: 8px;

                        .date {
                            span {
                                font-size: 13px;
                            }
                        }

                        h3 {
                            font-size: 16px;
                            width: 340px;
                        }

                        p {
                            font-size: 13px;
                            width: 320px;
                        }

                        .btn_read {
                            margin-top: 10px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 1px);
                                    gap: 8px;
                                }
                            }

                            .read {
                                gap: 10px;

                                h4 {
                                    font-size: 13px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 1px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }


    /*=================== PAGE 9 ================*/
    /*=================== HERO ABOUT ================*/
    .hero_about {
        padding: 8rem 2.5rem 4rem 2.5rem;

        .hero_about_container {
            .hero_about_content {
                gap: 2.5rem;

                .hero_about_text {
                    h2 {
                        font-size: 34px;
                        width: 750px;
                    }
                }

                .hero_about_imgs {
                    .img1 {
                        width: 240px;
                        height: 230px;
                    }

                    .img2 {
                        width: 560px;
                        height: 238px;
                    }

                    .img3 {
                        width: 240px;
                        height: 280px;
                    }
                }
            }
        }
    }

    /*===================MAKE US================*/
    .make_us {
        padding: 4rem 2.5rem;

        .make_us_container {
            .make_us__content {
                gap: 8rem;

                .make_us_text {
                    gap: 0.8rem;

                    .text {
                        gap: 4px;

                        h2 {
                            font-size: 32px;
                        }

                        h3 {
                            font-size: 16px;
                        }

                        p {
                            font-size: 16px;
                        }
                    }

                    .make_us_btns {
                        margin-top: 1.5rem;

                        .btn {
                            width: 240px;
                            height: 38px;
                            font-size: calc(var(--normal-font-size) - 1px);
                            border-radius: 6.5px;
                        }
                    }
                }

                .make_us_img {
                    width: 480px;
                    height: 340px;
                }
            }
        }
    }

    /*===================READY BANNAR================*/
    .ready_banner {
        padding: 4rem 2.5rem;

        .ready_banner_container {
            width: 750px;
            height: 190px;
            padding: 1.5rem 2.5rem;
            border-top-left-radius: 40px;
            border-top-right-radius: 20px;
            border-bottom-right-radius: 40px;
            border-bottom-left-radius: 20px;

            .ready_banner_content {
                gap: 0.8rem;

                h2 {
                    font-size: 21px;
                }

                p {
                    font-size: 13px;
                    width: 550px;
                }

                i {
                    font-size: 16px;
                }

                a {
                    width: 220px;
                    height: 35px;
                    font-size: 13px;
                    border-radius: 6.5px;
                }
            }
        }
    }

    /*===================OUR STORY================*/
    .our_story {
        padding: 4rem 2.5rem;

        .our_story_container {
            .our_story_content {
                .our_story_text {
                    h2 {
                        font-size: 32px;
                        margin-bottom: 0.8rem;
                    }

                    p {
                        font-size: 16px;
                        width: 500px;
                        line-height: 22px;
                    }

                    a {
                        width: 180px;
                        height: 38px;
                        font-size: calc(var(--normal-font-size) - 1px);
                        border-radius: 6.5px;
                        margin-top: 1.5rem;
                    }
                }

                .our_story_img {
                    width: 500px;
                    height: 400px;
                }
            }
        }
    }


    /*=================== PAGE 10 ================*/
    /*=================== TERMS AND PRIVACY ================*/
    .terms {
        padding: 8rem 2.5rem 4rem 2.5rem;

        .header_terms {
            gap: 10px;
            margin-bottom: 2.5rem;

            h2 {
                font-size: 34px;
            }

            p {
                font-size: calc(var(--normal-font-size) - 1px);
            }
        }

        .terms_container {
            gap: 1.5rem;

            .sidebar {
                width: 25%;
                top: 120px;

                .teacher_terms,
                .student_terms {
                    gap: 1.2rem;
                    padding-bottom: 0.8rem;

                    h3 {
                        font-size: 21px;
                        margin-bottom: 10px;
                    }

                    a {
                        font-size: 16px;

                        &::after {
                            bottom: -3px;
                            height: 1.5px;
                        }
                    }
                }
            }

            .content_terms {
                width: 75%;

                section {
                    scroll-margin-top: 130px;
                }

                .content_t,
                .content_s {
                    gap: 1.2rem;

                    h3 {
                        font-size: 16px;
                        margin-bottom: 10px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 1px);
                        line-height: 24px;
                        width: 100%;
                    }

                    ul,
                    ol {
                        margin-left: 0.8rem;

                        li {
                            font-size: calc(var(--normal-font-size) - 1px);
                            line-height: 24px;
                            width: 100%;
                        }
                    }
                }
            }
        }

        .pra {
            margin: 2.5rem 0;

            p {
                font-size: calc(var(--normal-font-size) - 1px);
            }
        }
    }

    /*=================== PAGE 11 ================*/
    /*=================== FORM ================*/
    .form_page {
        padding: 7rem 2.5rem 4rem 2.5rem;

        .form_page_container {
            .form {
                gap: 1.5rem;
                padding: 2.5rem;
                border-radius: 16px;

                .form_header {
                    gap: 8px;

                    h2 {
                        font-size: 21px;
                    }

                    p {
                        font-size: 13px;
                        width: 380px;
                    }
                }

                .form_group {
                    width: 100%;

                    input {
                        height: 42px;
                        font-size: 13px;
                        border-radius: 7px;
                    }

                    label {
                        left: 12px;
                        font-size: 11px;
                    }
                }

                .name {
                    gap: 0.8rem;
                    width: 100%;

                    .first_name,
                    .last_name {
                        width: 100%;

                        input {
                            width: 100%;
                            height: 42px;
                            font-size: 13px;
                            border-radius: 7px;
                        }

                        label {
                            left: 12px;
                            font-size: 11px;
                        }
                    }
                }

                .agree_terms {
                    gap: 0.8rem;

                    input[type="checkbox"] {
                        width: 18px;
                        height: 18px;
                        border-radius: 3.5px;
                    }

                    label {
                        font-size: 13px;
                    }
                }

                .btn {
                    height: 44px;
                    font-size: calc(var(--normal-font-size) - 1px);
                    border-radius: 6.5px;
                }
            }

            .contactUsPopup {
                .popup-content {
                    max-width: 400px;
                    padding: 25px;
                    border-radius: 10px;
                }

                .popup-text {
                    font-size: 16px;
                    margin-bottom: 15px;
                }

                .whatsapp-btn {
                    padding: 8px 16px;
                    font-size: 14px;
                    border-radius: 5.5px;

                    i {
                        font-size: 16px;
                    }
                }

                .countdown-text {
                    margin-top: 12px;
                    font-size: 13px;
                }
            }
        }
    }


    /*=============== PAGE 12 ===============*/
    /*=============== ERROR PAGE ===============*/
    .error {
        padding: 8rem 1rem;

        .error_container {
            .error_content {
                gap: 2.5rem;

                .num {
                    font-size: 8rem;
                }

                .img {
                    width: 340px;
                    height: 290px;
                }

                .text {
                    p {
                        font-size: 16px;
                    }
                }

                .btn {
                    a {
                        font-size: 21px;
                    }
                }
            }
        }
    }

    /*===============POPUP FORM HOME===============*/
    .popup-form-home {
        .popup-form-home_container {
            padding: 2.5rem;
            border-radius: 12px;

            .popup-form-home_content {
                gap: 0.8rem;

                h3 {
                    font-size: 21px;
                }

                p {
                    font-size: 13px;
                    width: 400px;
                }

                form {
                    margin-top: 1.5rem;

                    .input {
                        width: 350px;
                        height: 40px;
                        border-radius: 6.5px;

                        input {
                            font-size: 13px;
                            padding: 8px;
                            border-radius: 6.5px 0 0 6.5px;
                        }

                        button {
                            width: 160px;
                            font-size: calc(var(--normal-font-size) - 1px);
                            border-radius: 0 6.5px 6.5px 0;
                            gap: 8px;
                        }
                    }
                }
            }

            .popup-form-home_img {
                width: 200px;
                height: 180px;
            }
        }
    }

    /*===============POPUP SUCCESS HOME===============*/
    .popup-success-home {
        .popup-success-home_container {
            padding: 1.5rem;
            gap: 1.5rem;
            border-radius: 12px;

            .popup-success-home_content {
                gap: 0.8rem;

                h3 {
                    font-size: 21px;
                }

                p {
                    font-size: 13px;
                    width: 320px;
                }

                a {
                    font-size: calc(var(--normal-font-size) - 1px);
                }
            }

            .popup-form-home_img {
                width: 100px;
                height: 100px;
            }
        }
    }

    /*===============FOOTER===============*/
    .footer_section {
        padding: 2.5rem 2rem 1rem 2rem;
    }

    .footer_data {
        gap: 15px;
    }

    .desc_img_logo .img_logo img {
        width: 200px;
        height: auto;
    }
}

@media (max-width: 991px) {

    /* Header */
    .nav {
        padding: 0 1rem;
    }

    .nav_logo img {
        height: 58.280792236328125px;
    }


    .nav_link {
        font-size: calc(var(--h6-font-size) * 0.8);
    }


    .nav .btn,
    .btn-mobile {
        width: 150px;
        height: 40px;
        font-size: calc(var(--normal-font-size) * 0.8);
        padding: 8px 20px;
    }

    .nav_menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: var(--z-fixed);
    }

    .nav_list {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* بنخفي الزرار الأصلي على الشاشات الصغيرة */
    .nav .btn {
        display: none;
    }

    /* بنظهر الزرار داخل المنيو على الشاشات الصغيرة */
    .nav_menu .btn-mobile {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 1.5rem;
        padding: 2px 0px;
    }

    .nav_toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        margin-left: 25px;
        color: var(--Dark-blue);
    }

    .nav_close {
        display: block;
        font-size: 1.5rem;
        color: var(--yallow);
        position: absolute;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
    }


    .show-menu {
        right: 0;
    }

    /*=============== PAGE 1 ===============*/
    /*=============== HOME ===============*/
    .home {
        padding: 10rem 2rem 4rem 2rem;

        .home_container .home_content {
            flex-direction: column-reverse;
            gap: 3rem;

            .home_text {
                align-items: center;
                text-align: center;

                .features {
                    flex-wrap: wrap;
                    justify-content: center;
                }

                .home_btns {
                    align-items: center;
                }
            }

            .home_img {
                .img1 {
                    width: 280px;
                }

                .img2 {
                    left: 25%;
                }

                .icon1 {
                    left: 195px;
                }

                .icon2 {
                    bottom: 155px;
                    left: 68%;
                }
            }
        }
    }

    /*=============== PATH ===============*/
    .path {
        .path_container {
            .path_content {
                grid-template-columns: repeat(2, 1fr);
                justify-items: center;


                .path_img {
                    position: static;
                    margin-top: 0;
                }
            }
        }
    }

    /*=============== COURSE ===============*/
    .course {
        .course_container {
            h2 {
                font-size: 28px;
            }

            p {
                font-size: 13px;
            }

            .course_tabs {
                .tab {
                    font-size: 15px;
                }
            }

            .course_content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;

                .course_item {
                    .course_img {
                        height: 200px;
                    }

                    .course_text {
                        padding: 15px;
                    }
                }
            }
        }
    }

    /*=============== OUR BLOGS ===============*/
    .our_blog {
        padding: 3rem 1.5rem 5rem 1.5rem;
        background-size: 300px auto;

        &::before {
            width: 200px;
            height: 180px;
            bottom: -20px;
        }

        .our_blog_container {
            h2 {
                font-size: 28px;
            }

            .our_blog_articles_items {
                grid-template-columns: 1fr 1fr;
                gap: 30px;

                .item {
                    gap: 0.75rem;

                    .item_img {
                        height: 220px;
                    }

                    .item_content {
                        h3 {
                            font-size: 16px;
                        }

                        p {
                            font-size: 13px;
                        }
                    }
                }
            }
        }
    }

    /*=================== TESTIMONIALS ================*/
    .testimonials {
        padding: 4rem 1.5rem;

        &::after {
            display: none;
        }

        .testimonials_container {

            &::after {
                display: none;
            }

            .testimonials_content {
                .title_img .title h2 {
                    width: 100%;
                    font-size: 16px;
                    text-align: center;
                }

                h3 {
                    font-size: 18px;
                }

                .swiper {
                    padding: 3rem 1rem;

                }

                .testimonial {
                    padding: 1rem;
                    transform: rotate(0);

                    &::after {
                        display: none;
                    }

                    .testimonial_img {
                        margin-top: 1rem;
                    }
                }
            }
        }
    }

    /*=================== LEARNING FROM HOME ================*/
    .learning_from_home {
        padding: 3rem 1.5rem;

        .from_home_container {
            .from_home_content {
                flex-direction: column;
                gap: 3rem;

                .from_home_img {
                    width: 350px;
                }

                .from_home_text {
                    margin-left: 0;

                    h2 {
                        font-size: 28px;
                    }

                    .featuers {
                        gap: 2rem;
                    }
                }
            }

            .achivements {
                position: relative;
                right: -60px;
                bottom: -25px;
                width: 85%;

                .achivements_content {
                    flex-direction: column;

                    .achivements_text {
                        gap: 1rem;

                        h2 {
                            margin-bottom: 0;
                        }

                        p {
                            width: 500px;
                        }
                    }
                }
            }
        }
    }

    /*=============== READY ===============*/
    .ready {
        padding: 8rem 2rem 3rem 2rem;

        .ready_container {
            h2 {
                font-size: 28px;

                &::after,
                &::before {
                    right: 30%;
                    width: 100px;
                }
            }

            p {
                font-size: 12px;
            }

            .ready__content {
                flex-direction: column-reverse;
                gap: 3rem;
                margin-top: 3rem;

                .ready_img {
                    width: 400px;

                    &::after {
                        width: 150px;
                        height: 150px;
                        right: -20px;
                        top: -30px;
                    }
                }
            }
        }
    }

    /*=================== PAGE 2 ================*/
    /*=================== PRICING ================*/
    .pricing {
        padding: 10rem 2rem 3rem 2rem;
        height: 75vh;

        .pricing_container {
            .pricing_content {
                gap: 3.5rem;

                .pricing_text {
                    h2 {
                        font-size: 30px;
                    }

                    p {
                        width: 550px;
                        font-size: 13px;
                        line-height: 16px;
                    }
                }

                .pricing_img {
                    width: 650px;
                    height: 258px;
                    bottom: -10%;
                }
            }
        }
    }

    /*=================== PRICING PLANS  ================*/
    .pricing_plans {
        padding: 3rem 2rem;
        margin-top: 6rem;

        .pricing_plans_container {
            h2 {
                font-size: 22px;
            }

            .pricing_plans_content {
                background-image: none;
                gap: 1.5rem;
                padding: 2.5rem 0;

                .pricing_plan {
                    padding: 1.2rem 1.2rem 2.5rem 0.7rem;
                    align-items: center;

                    h3 {
                        font-size: 18px;
                    }

                    .price {
                        font-size: 22px;

                        span {
                            font-size: 11px;
                        }
                    }

                    a {
                        width: 200px;
                        height: 34px;
                        font-size: 12.5px;
                    }

                    .features {
                        li {
                            font-size: 11px;

                            i {
                                font-size: 12px;
                            }
                        }
                    }

                    .discount {
                        width: 50px;
                        height: 30px;

                        h5 {
                            font-size: 16px;
                        }
                    }
                }
            }

            .pra {
                margin-top: 3rem;

                p {
                    width: 100%;
                    height: 35px;
                    font-size: 9.5px;

                    i {
                        width: 22px;
                        height: 22px;
                        font-size: 12px;
                    }
                }
            }
        }
    }

    /*=================== EVERYONE ================*/
    .everyone {
        padding: 6rem 2rem 3rem 2rem;
        margin-top: 2rem;

        .everyone_container {
            h2 {
                font-size: 22px;
            }

            p {
                font-size: 11.5px;
            }

            .everyone_content {
                gap: 5rem;

                .everyone_item {
                    width: 350px;
                    padding: 5rem 6px 1.2rem 6px;

                    img {
                        width: 120px;
                        height: 120px;
                        top: -50px;
                    }

                    h3 {
                        font-size: 15px;
                    }

                    p {
                        font-size: 10px;
                        width: 300px;
                    }

                    span {
                        font-size: 10px;
                    }

                    &:nth-child(3),
                    &:nth-child(4) {
                        margin-top: 0;
                    }
                }
            }
        }
    }

    /*=============== PAGE 3 ===============*/
    /*=============== COURSES HERO ================*/
    .courses_hero {
        padding: 5rem 0 3rem 0;

        .courses_hero_container {
            padding: 3rem 4rem 5rem 2rem;
            border: 4px solid #EDEDED;
            border-radius: 16px;

            .courses_hero_content {
                gap: 2.5rem;

                .courses_hero_text {
                    gap: 1.2rem;

                    h2 {
                        font-size: 30px;
                        width: 400px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 2px);
                    }

                    .courses_hero_btns {
                        gap: 0.6rem;

                        .btn {
                            width: 120px;
                            height: 36px;
                            border-radius: 6px;
                            font-size: calc(var(--normal-font-size) - 2px);
                        }

                        .second_btn {
                            width: 180px;
                            height: 36px;
                            border-radius: 6px;
                            font-size: calc(var(--normal-font-size) - 2px);
                        }
                    }

                    .features {
                        gap: 0.6rem;

                        .item {
                            img {
                                width: 26px;
                                height: 26px;
                            }

                            p {
                                font-size: 12px;
                            }
                        }
                    }
                }

                .courses_hero_img {
                    width: 280px;
                    height: 280px;

                    .item1_course {
                        left: -15%;
                        top: 50px;
                        gap: 10px;
                        padding: 7px;
                        padding-right: 0.7rem;

                        .img {
                            width: 24px;
                            height: 22px;
                        }

                        .data {
                            span {
                                font-size: 10px;
                            }

                            p {
                                font-size: 7px;
                            }
                        }
                    }

                    .item2_course {
                        right: -10%;
                        bottom: 50px;
                        gap: 10px;
                        padding: 7px;
                        padding-right: 0.7rem;

                        .img {
                            width: 24px;
                            height: 22px;
                        }

                        .data {
                            span {
                                font-size: 10px;
                            }

                            p {
                                font-size: 7px;
                            }
                        }
                    }

                    .item3_course {
                        left: -8%;
                        bottom: 8px;
                        width: 160px;
                        padding: 7px;
                        padding-right: 0.7rem;

                        .img {
                            width: 65px;
                            height: 22px;
                        }

                        p {
                            font-size: 10px;
                        }
                    }
                }
            }

            .end {
                right: 0.6rem;
                bottom: 0.6rem;
                gap: 0.6rem;

                .stars {
                    i {
                        font-size: calc(var(--normal-font-size) - 2px);
                    }
                }

                .data {
                    span {
                        font-size: 22px;
                    }

                    p {
                        font-size: 7px;
                        width: 60px;
                    }
                }
            }
        }
    }

    /*=============== COURSES ===============*/
    .courses {
        padding: 3rem 0.6rem;

        .courses_container {
            h2 {
                font-size: 22px;
                margin-bottom: 2rem;
            }

            .courses_content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem 1.5rem;
                margin-bottom: 3rem;

                .courses_item {
                    padding: 10px;

                    .courses_img {
                        height: 180px;
                    }

                    .courses_text {
                        padding: 12px;

                        h3 {
                            font-size: 14px;
                            margin-top: 10px;
                        }

                        p {
                            font-size: 10px;
                            width: 250px;
                        }

                        .btn_logo {
                            img {
                                width: 32px;
                                height: 36px;
                            }

                            a {
                                width: 90px;
                                height: 30px;
                                font-size: 9px;
                            }
                        }
                    }
                }
            }

            .courses_content2 {
                gap: 1.5rem;
                margin-bottom: 3rem;

                .courses_item {
                    padding: 3px;

                    .courses_img {
                        width: 280px;
                        height: 200px;
                    }

                    .courses_text {
                        padding: 12px;

                        h3 {
                            font-size: 14px;
                            margin-top: 10px;
                        }

                        p {
                            font-size: 10px;
                            width: 400px;
                        }

                        .btn_logo {
                            img {
                                width: 32px;
                                height: 36px;
                            }

                            a {
                                width: 140px;
                                height: 30px;
                                font-size: 9px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== AT HOME ================*/
    .at_home {
        padding: 3rem 2rem;

        .at_home_container {
            h2 {
                font-size: 22px;
                margin-bottom: 2.5rem;
            }

            .featuers {
                gap: 3rem;

                .item {
                    width: 220px;
                    height: 140px;
                    padding: 1.2rem;
                    padding-left: 2rem;
                    border-radius: 10px;

                    &::before {
                        top: 12px;
                        left: -15px;
                        width: 45px;
                        height: 45px;
                    }

                    span {
                        font-size: 11.5px;
                    }

                    h3 {
                        font-size: 14px;
                    }

                    p {
                        width: 160px;
                        font-size: 10px;
                        line-height: 13px;
                    }
                }
            }
        }
    }

    /*=============== BANNAR ===============*/
    .bannar_section {
        .bannar {
            width: 700px;
            border-radius: 25px;

            .text {
                padding: 25px 30px;
                gap: 1rem;

                img {
                    width: 55px;
                    height: 55px;
                }

                h4 {
                    font-size: 19px;
                }

                p {
                    font-size: 12px;
                    line-height: 17px;
                    width: 400px;
                }

                a {
                    width: 180px;
                    height: 35px;
                    border-radius: 6px;
                    font-size: 13px;
                }
            }

            .bannar_img {
                width: 230px;

                img {
                    height: 230px;
                }
            }
        }
    }

    /*=================== CHAIN ================*/
    .chain {
        padding: 3rem 2rem 0 2rem;

        .chain_container {
            padding: 1rem 3rem;

            h2 {
                font-size: 21px;
                margin-bottom: 10px;
            }

            p {
                font-size: 12px;
                margin-bottom: 2.5rem;
            }

            .chain__content {
                gap: 2rem;

                .chain_text {
                    gap: 1.2rem;

                    .icon_text {
                        gap: 0.6rem;

                        .icon {
                            i {
                                font-size: 15px;
                            }
                        }

                        .text {
                            h3 {
                                font-size: calc(var(--normal-font-size) - 2px);
                            }
                        }
                    }

                    .chain_btns {
                        .btn {
                            width: 200px;
                            height: 38px;
                            border-radius: 6px;
                            font-size: 13px;
                        }
                    }
                }

                .chain_img {
                    width: 340px;
                    height: 295px;
                }
            }

            .pra {
                padding: 3rem 0 0 0;

                p {
                    font-size: 12px;
                }

                /* &::after {
                        width: 140px;
                        height: 8px;
                        bottom: 15%;
                    } */
            }
        }
    }


    /*=============== PAGE 4 ===============*/
    /*=================== TESTIMONIAL HERO ================*/
    .testimonial_hero {
        padding: 7rem 2rem 3rem 2rem;

        .testimonial_hero_container {
            border: 4px solid var(--yallow);
            border-radius: 16px;
            padding: 2rem 0;

            .testimonial_hero_content {
                gap: 1.2rem;

                .hero_text {
                    gap: 0.6rem;

                    span {
                        font-size: 10px;
                    }

                    h2 {
                        font-size: 24px;
                    }

                    p {
                        font-size: 13px;
                        width: 450px;
                    }
                }

                .hero_img {
                    height: 200px;
                }

                .testimonial_hero_btn {
                    a {
                        width: 220px;
                        height: 35px;
                        font-size: 13px;
                        border-radius: 6px;
                    }
                }
            }
        }
    }

    /*=============== TESTIMONIAL SECTION ===============*/
    .testimonial_section {
        padding: 3rem 2rem;

        .testimonial_section_container {
            h2 {
                font-size: 22px;
                margin-bottom: 3rem;
            }

            .testimonial_section_content {
                row-gap: 3rem;

                .testimonial {
                    width: 80%;
                    height: 160px;
                    padding: 0.6rem 1rem;
                    border-radius: 4.5px;
                    transform: rotate(1.2deg);

                    &::after {
                        left: -10px;
                        border-radius: 5.5px;
                        transform: rotate(0.6deg);
                    }

                    .data {
                        gap: 0.6rem;

                        .name_img {
                            gap: 1rem;

                            img {
                                width: 32px;
                                height: 25px;
                            }

                            h4 {
                                font-size: 12px;
                            }
                        }

                        p {
                            font-size: 10px;
                            line-height: 16px;
                            width: 180px;
                        }
                    }

                    .testimonial_img {
                        width: 60px;
                        height: 90px;

                        &::after {
                            width: 10px;
                            height: 25px;
                            left: -6px;
                            top: -12px;
                        }
                    }

                    .name_teacher {
                        right: 6px;
                        bottom: 6px;

                        span {
                            font-size: 10px;
                            gap: 6px;
                        }
                    }
                }
            }

            .testimonial_section_btn {
                margin-top: 3rem;

                a {
                    font-size: 19px;
                }
            }

            .pagination {
                margin-top: 3rem;
                gap: 6px;

                button {
                    width: 26px;
                    height: 26px;
                    font-size: calc(var(--normal-font-size) - 2px);
                }

                .pagination-numbers {
                    gap: 6px;

                    span {
                        width: 26px;
                        height: 26px;
                        font-size: calc(var(--normal-font-size) - 2px);
                    }
                }
            }
        }
    }

    .testimonial_page {
        padding: 9rem 2rem 3rem 2rem;
    }

    /*=================== PAGE 5 ================*/
    /*=================== HERO TEACHER ================*/
    .hero_teacher {
        padding: 8rem 2rem 3rem 2rem;

        .hero_teacher_container {
            gap: 2rem;

            .hero_teacher_content {
                gap: 2.5rem;

                .hero_teacher_text {
                    gap: 6px;

                    h2 {
                        font-size: 24px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 2px);
                        width: 350px;
                        line-height: 16px;
                    }
                }

                .hero_teacher_img {
                    width: 350px;
                    height: 270px;
                }
            }

            .content2 {
                .hero_teacher_text {
                    h2 {
                        font-size: 24px;
                    }
                }
            }
        }
    }

    /*=============== TEACHER ===============*/
    .teacher {
        padding: 3rem 2rem;

        .teacher_container {
            .teacher_content {
                gap: 1.5rem;

                .teacer_cards {
                    gap: 2rem;

                    h2 {
                        font-size: 19px;
                    }

                    .card {
                        padding: 10px;
                        border-radius: 6px;

                        .card_img {
                            width: 180px;
                            height: 140px;
                        }

                        .card_text {
                            padding: 0.6rem;

                            h3 {
                                font-size: 16px;
                            }

                            p {
                                font-size: 12px;
                                line-height: 16px;
                            }

                            a {
                                height: 26px;
                                font-size: 12px;
                            }
                        }
                    }
                }

                .fetures_teach {
                    right: 15px;
                    top: 10px;
                    gap: 0.6rem;

                    span {
                        font-size: 11px;

                        &::after {
                            width: 3px;
                            height: 3px;
                            right: -5px;
                            bottom: 1px;
                        }
                    }
                }

                .teacher_data {
                    gap: 2rem;

                    h2 {
                        font-size: 19px;
                    }

                    .icon_text {
                        gap: 1rem;

                        .icon {
                            i {
                                font-size: 24px;
                            }
                        }

                        .text {
                            gap: 8px;

                            h3 {
                                font-size: 15px;
                            }

                            p {
                                font-size: 14px;
                                width: 100%;
                            }
                        }
                    }
                }
            }
        }
    }


    /*=================== PAGE 6 ================*/
    /*=================== SINGLE COURSE ================*/
    .single_course {
        padding: 3.5rem 0rem 3rem 0rem;

        .single_course_container {

            .single_course_content {
                .course_img {
                    height: 400px;

                    .cours_text {
                        width: 350px;
                        top: 20%;
                        left: 5%;
                        gap: 1.2rem;

                        h1 {
                            font-size: 26px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 2px);
                            line-height: 16px;
                        }

                        a {
                            width: 140px;
                            height: 35px;
                            font-size: 13px;
                            border-radius: 6px;
                        }
                    }
                }

                .ditalis_course {
                    padding: 6px 6rem;

                    .ditalis {
                        gap: 1rem;

                        .item {
                            gap: 10px;

                            p {
                                font-size: calc(var(--normal-font-size) - 2px);
                                gap: 6px;

                                i {
                                    font-size: 13px;
                                }
                            }

                            .stars {
                                gap: 2px;

                                i {
                                    font-size: 13px;
                                }
                            }

                            img {
                                width: 26px;
                                height: 26px;
                            }
                        }
                    }
                }
            }

            .summary {
                padding: 3rem 2rem;

                .summary_text {
                    gap: 1.2rem;
                    padding: 1.2rem;

                    h2 {
                        font-size: 24px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 2px);
                        line-height: 18px;
                    }
                }
            }
        }
    }


    /*=============== SINGLE COURSE DATA ===============*/
    .single_course_data {

        .single_course_data_container {
            gap: 1rem;

            .single_course_content {
                .data {
                    gap: 3rem;

                    .course_desc {
                        gap: 0.6rem;

                        h2 {
                            font-size: 19px;
                            margin-top: 30px;
                            margin-bottom: 10px;
                        }

                        h3 {
                            font-size: 16px;
                            margin-top: 30px;
                            margin-bottom: 10px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 2px);
                            width: 100%;
                            line-height: 1.6;
                            margin-bottom: 10px;
                        }

                        ul,
                        ol {
                            margin-left: 15px;
                            margin-bottom: 12px;
                            margin-top: 10px;

                            li {
                                font-size: calc(var(--normal-font-size) - 2px);
                                margin-bottom: 10px;
                            }
                        }
                    }

                    .course_desc2 {
                        padding: 12px;
                        border-radius: 6px;
                    }

                    .second_data {
                        gap: 2rem;

                        .build_path {
                            gap: 0.6rem;

                            p {
                                font-size: calc(var(--normal-font-size) - 2px);
                            }

                            a {
                                width: 200px;
                                height: 35px;
                                font-size: 13px;
                                border-radius: 6px;
                            }
                        }

                        &::after {
                            top: -80px;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 90px;
                            height: 90px;
                        }
                    }
                }

                a {
                    font-size: 14px;
                    margin-top: 12px;
                }
            }
        }
    }

    /*=============== PAGE 7 ===============*/
    /*=============== BLOGS ===============*/
    .blogs {
        padding: 7rem 2rem 3rem 2rem;

        .blogs_container {
            .blogs_header {
                padding: 3rem 0;
                gap: 0.6rem;

                span {
                    font-size: 10px;
                    margin-bottom: 8px;
                    padding: 2px;
                }

                h2 {
                    font-size: 24px;
                }

                p {
                    font-size: 13px;
                }
            }

            .our_blog_items {
                grid-template-columns: 1fr;
                gap: 12px;
                row-gap: 30px;

                .item {
                    align-items: center;

                    .item_img {
                        width: 100%;
                        max-width: 400px;
                        height: 280px;
                    }

                    .item_content {
                        width: 100%;
                        max-width: 400px;
                        margin-top: 6px;

                        .date {
                            span {
                                font-size: 12px;
                            }
                        }

                        h3 {
                            font-size: 15px;
                            width: 100%;
                            max-width: 390px;
                        }

                        p {
                            font-size: 12px;
                            width: 100%;
                            max-width: 360px;
                        }

                        .btn_read {
                            margin-top: 8px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 2px);
                                    gap: 6px;
                                }
                            }

                            .read {
                                gap: 8px;

                                h4 {
                                    font-size: 12px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 2px);
                                }
                            }
                        }
                    }
                }
            }

            #pagination {
                margin-top: 2rem;
                padding: 2rem 0;
                gap: 0.3rem;

                button {
                    width: 28px;
                    height: 28px;
                    font-size: 12px;
                }
            }
        }
    }

    /*=================== BLOGS CATEGORIES ================*/
    .blogs_categories {
        padding: 3rem 2rem;

        .blogs_categories_container {
            flex-direction: column;
            gap: 3rem;

            .categories_list {
                gap: 2rem;

                h2 {
                    font-size: 24px;
                }

                .item {
                    flex-direction: column;
                    gap: 0.6rem;

                    .item_img {
                        width: 100%;
                        max-width: 300px;
                        height: 200px;
                    }

                    .item_content {
                        width: 100%;
                        max-width: 300px;
                        gap: 0.6rem;

                        .date {
                            span {
                                font-size: 12px;
                            }
                        }

                        h3 {
                            font-size: calc(var(--normal-font-size) - 2px);
                        }

                        p {
                            font-size: 8px;
                            margin-bottom: 12px;
                        }

                        .btn_read {
                            a {
                                font-size: 12px;
                                gap: 6px;
                            }
                        }
                    }
                }
            }
        }
    }


    /*=================== PAGE 8 ================*/
    /*=================== SINGLE BLOG ================*/
    .single_blog {
        padding: 8rem 2rem 1rem 2rem;

        .single_blog_container {
            .merg {
                flex-direction: column;
                gap: 1.5rem;

                .single_blog_content {
                    width: 100%;

                    .single_blog_header {
                        h1 {
                            font-size: 30px;
                            width: 100%;
                        }

                        .ditails {
                            gap: 1.5rem;
                            flex-wrap: wrap;

                            span {
                                font-size: 12px;
                                padding-right: 10px;

                                &:nth-child(1),
                                &:nth-child(2) {
                                    border-right: 1px solid var(--Silver);
                                }

                                i {
                                    font-size: 12px;
                                }
                            }
                        }
                    }

                    .single_blog_img {
                        width: 100%;
                        height: 360px;
                        border-radius: 6px;
                    }

                    .blog_desc {
                        gap: 0.6rem;

                        h2 {
                            font-size: 19px;
                            margin-top: 30px;
                            margin-bottom: 10px;
                        }

                        h3 {
                            font-size: 16px;
                            margin-top: 30px;
                            margin-bottom: 10px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 2px);
                            width: 100%;
                            max-width: 500px;
                            line-height: 1.6;
                            margin-bottom: 10px;
                        }

                        ul,
                        ol {
                            margin-left: 15px;
                            margin-bottom: 12px;
                            margin-top: 10px;

                            li {
                                font-size: calc(var(--normal-font-size) - 2px);
                                margin-bottom: 10px;
                            }
                        }

                        a {
                            font-size: 14px;
                            margin-top: 20px;
                        }
                    }

                    .comment {
                        margin-top: 1rem;

                        form {
                            gap: 0.6rem;

                            label {
                                font-size: 14px;
                            }

                            textarea {
                                height: 40px;
                                padding: 8px 12px;
                                font-size: calc(var(--normal-font-size) - 2px);
                            }

                            button {
                                padding: 8px 12px;
                                font-size: 12px;
                                border-radius: 6px;
                            }
                        }
                    }
                }

                .quran_reads {
                    position: static;
                    align-items: center;
                    width: 100%;
                    gap: 1rem;

                    .unlock {
                        padding: 12px 15px;
                        border-radius: 14px;

                        h3 {
                            font-size: 19px;
                        }

                        p {
                            font-size: 12px;
                            width: 100%;
                            max-width: 500px;
                        }

                        a {
                            height: 35px;
                            font-size: calc(var(--normal-font-size) - 2px);
                            border-radius: 6px;
                        }
                    }

                    .last_article {
                        padding: 12px 15px;
                        border-radius: 14px;

                        h2 {
                            font-size: 19px;
                        }

                        .article {
                            gap: 3px;

                            a {
                                font-size: 14px;
                            }

                            span {
                                font-size: 12px;
                            }
                        }
                    }

                    .popular {
                        padding: 12px 15px;
                        border-radius: 14px;

                        h2 {
                            font-size: 19px;
                        }

                        .popular_blog {
                            gap: 3px;

                            a {
                                font-size: 14px;
                                width: 100%;
                                max-width: 500px;
                            }

                            span {
                                font-size: 12px;
                            }
                        }
                    }

                    .share {
                        gap: 0.6rem;

                        h2 {
                            font-size: 19px;
                        }

                        .social {
                            gap: 6px;

                            a {
                                font-size: 19px;
                            }
                        }
                    }
                }
            }

            .link {
                font-size: 14px;
                margin-top: 20px;
            }
        }
    }


    /*===================MORE ARTICLES================*/
    .more_articles {
        padding: 3rem 2rem;

        .more_articles_container {
            h2 {
                font-size: 26px;
                margin-bottom: 1.2rem;
            }

            .our_blog_articles_items {
                grid-template-columns: 1fr;
                gap: 12px;
                row-gap: 30px;

                .item {
                    align-items: center;

                    .item_img {
                        width: 100%;
                        max-width: 400px;
                        height: 280px;
                    }

                    .item_content {
                        width: 100%;
                        max-width: 400px;
                        margin-top: 6px;
                        gap: 6px;

                        .date {
                            span {
                                font-size: 12px;
                            }
                        }

                        h3 {
                            font-size: 15px;
                            width: 100%;
                            max-width: 390px;
                        }

                        p {
                            font-size: 12px;
                            width: 100%;
                            max-width: 360px;
                        }

                        .btn_read {
                            margin-top: 8px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 2px);
                                    gap: 6px;
                                }
                            }

                            .read {
                                gap: 8px;

                                h4 {
                                    font-size: 12px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 2px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== PAGE 9 ================*/
    /*=================== HERO ABOUT ================*/
    .hero_about {
        padding: 8rem 2rem 3rem 2rem;

        .hero_about_container {
            .hero_about_content {
                gap: 2rem;

                .hero_about_text {
                    h2 {
                        font-size: 30px;
                        width: 100%;
                        max-width: 600px;
                    }
                }

                .hero_about_imgs {
                    flex-direction: column;
                    gap: 1.5rem;

                    .img1 {
                        width: 100%;
                        max-width: 300px;
                        height: 200px;
                    }

                    .img2 {
                        width: 100%;
                        max-width: 500px;
                        height: 210px;
                    }

                    .img3 {
                        width: 100%;
                        max-width: 300px;
                        height: 220px;
                    }
                }
            }
        }
    }

    /*===================MAKE US================*/
    .make_us {
        padding: 3rem 2rem;

        .make_us_container {
            .make_us__content {
                flex-direction: column;
                gap: 2rem;
                align-items: center;

                .make_us_text {
                    gap: 0.6rem;

                    .text {
                        gap: 3px;

                        h2 {
                            font-size: 28px;
                        }

                        h3 {
                            font-size: 15px;
                        }

                        p {
                            font-size: 14px;
                        }
                    }

                    .make_us_btns {
                        margin-top: 1.2rem;

                        .btn {
                            width: 200px;
                            height: 35px;
                            font-size: calc(var(--normal-font-size) - 2px);
                            border-radius: 6px;
                        }
                    }
                }

                .make_us_img {
                    width: 100%;
                    max-width: 400px;
                    height: 280px;
                }
            }
        }
    }

    /*===================READY BANNAR================*/
    .ready_banner {
        padding: 3rem 2rem;

        .ready_banner_container {
            width: 100%;
            max-width: 600px;
            height: 170px;
            padding: 1.2rem 2rem;
            border-top-left-radius: 30px;
            border-top-right-radius: 15px;
            border-bottom-right-radius: 30px;
            border-bottom-left-radius: 15px;

            .ready_banner_content {
                gap: 0.6rem;

                h2 {
                    font-size: 19px;
                }

                p {
                    font-size: 12px;
                    width: 100%;
                    max-width: 500px;
                }

                i {
                    font-size: 14px;
                }

                a {
                    width: 180px;
                    height: 32px;
                    font-size: 12px;
                    border-radius: 6px;
                }
            }
        }
    }

    /*===================OUR STORY================*/
    .our_story {
        padding: 3rem 2rem;

        .our_story_container {
            .our_story_content {
                flex-direction: column-reverse;
                gap: 2rem;
                align-items: center;

                .our_story_text {

                    h2 {
                        font-size: 28px;
                        margin-bottom: 0.6rem;
                    }

                    p {
                        font-size: 14px;
                        width: 100%;
                        max-width: 500px;
                        line-height: 20px;
                    }

                    a {
                        width: 160px;
                        height: 35px;
                        font-size: calc(var(--normal-font-size) - 2px);
                        border-radius: 6px;
                        margin-top: 1.2rem;
                    }
                }

                .our_story_img {
                    width: 100%;
                    max-width: 450px;
                    height: 360px;
                }
            }
        }
    }

    /*=================== PAGE 10 ================*/
    /*=================== TERMS AND PRIVACY ================*/
    .terms {
        padding: 8rem 2rem 3rem 2rem;

        .header_terms {
            gap: 8px;
            margin-bottom: 2rem;

            h2 {
                font-size: 30px;
            }

            p {
                font-size: calc(var(--normal-font-size) - 2px);
            }
        }

        .terms_container {
            gap: 2rem;

            .sidebar {
                border-right: none;
                border-bottom: 2px solid rgba(109, 110, 113, 0.1);
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 2rem;

                .teacher_terms,
                .student_terms {
                    gap: 1rem;
                    padding-bottom: 0.6rem;
                    border-bottom: none;
                    width: 100%;

                    h3 {
                        font-size: 19px;
                        margin-bottom: 8px;
                    }

                    a {
                        font-size: 14px;

                        &::after {
                            bottom: -2px;
                            height: 1px;
                        }
                    }
                }
            }

            .content_terms {
                width: 100%;

                section {
                    scroll-margin-top: 100px;
                }

                .content_t,
                .content_s {
                    gap: 1rem;

                    h3 {
                        font-size: 15px;
                        margin-bottom: 8px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 2px);
                        line-height: 22px;
                        width: 100%;
                        max-width: 700px;
                    }

                    ul,
                    ol {
                        margin-left: 0.6rem;

                        li {
                            font-size: calc(var(--normal-font-size) - 2px);
                            line-height: 22px;
                            width: 100%;
                            max-width: 700px;
                        }
                    }
                }
            }
        }

        .pra {
            margin: 2rem 0;

            p {
                font-size: calc(var(--normal-font-size) - 2px);
            }
        }
    }

    /*=================== PAGE 11 ================*/
    /*=================== FORM ================*/
    .form_page {
        padding: 5rem 2rem 3rem 2rem;

        .form_page_container {
            .form {
                gap: 1.2rem;
                padding: 2rem;
                border-radius: 14px;

                .form_header {
                    gap: 6px;

                    h2 {
                        font-size: 19px;
                    }

                    p {
                        font-size: 12px;
                        width: 100%;
                        max-width: 350px;
                    }
                }

                .form_group {
                    input {
                        width: 100%;
                        height: 40px;
                        font-size: 12px;
                        border-radius: 6px;
                    }

                    label {
                        left: 10px;
                        font-size: 10px;
                    }
                }

                .name {
                    flex-direction: column;
                    gap: 1.2rem;

                    .first_name,
                    .last_name {
                        input {
                            width: 100%;
                            height: 40px;
                            font-size: 12px;
                            border-radius: 6px;
                        }

                        label {
                            left: 10px;
                            font-size: 10px;
                        }
                    }
                }

                .agree_terms {
                    gap: 0.6rem;

                    input[type="checkbox"] {
                        width: 16px;
                        height: 16px;
                        border-radius: 3px;
                    }

                    label {
                        font-size: 12px;
                    }
                }

                .btn {
                    height: 40px;
                    font-size: calc(var(--normal-font-size) - 2px);
                    border-radius: 6px;
                }
            }

            .contactUsPopup {
                .popup-content {
                    max-width: 350px;
                    padding: 20px;
                    border-radius: 8px;
                }

                .popup-text {
                    font-size: 14px;
                    margin-bottom: 12px;
                }

                .whatsapp-btn {
                    padding: 6px 14px;
                    font-size: 13px;
                    border-radius: 5px;

                    i {
                        font-size: 14px;
                    }
                }

                .countdown-text {
                    margin-top: 10px;
                    font-size: 12px;
                }
            }
        }
    }


    /*=============== PAGE 12 ===============*/
    /*=============== ERROR PAGE ===============*/
    .error {
        padding: 8rem 1rem;

        .error_container {
            .error_content {
                gap: 2rem;

                .num {
                    font-size: 6rem;
                }

                .img {
                    width: 300px;
                    height: 255px;
                }

                .text {
                    p {
                        font-size: 14px;
                    }
                }

                .btn {
                    a {
                        font-size: 19px;
                    }
                }
            }
        }
    }

    /*===============POPUP FORM HOME===============*/
    .popup-form-home {
        .popup-form-home_container {
            flex-direction: column-reverse;
            padding: 2rem;
            border-radius: 10px;
            gap: 1.5rem;

            .popup-form-home_content {
                gap: 0.6rem;
                align-items: center;
                text-align: center;

                h3 {
                    font-size: 19px;
                }

                p {
                    font-size: 12px;
                    width: 100%;
                    max-width: 350px;
                }

                form {
                    margin-top: 1.2rem;

                    .input {
                        width: 100%;
                        max-width: 320px;
                        height: 38px;
                        border-radius: 6px;

                        input {
                            font-size: 12px;
                            padding: 6px;
                            border-radius: 6px 0 0 6px;
                        }

                        button {
                            width: 140px;
                            font-size: calc(var(--normal-font-size) - 2px);
                            border-radius: 0 6px 6px 0;
                            gap: 6px;
                        }
                    }
                }
            }

            .popup-form-home_img {
                width: 180px;
                height: 160px;
            }
        }
    }

    /*===============POPUP SUCCESS HOME===============*/
    .popup-success-home {
        .popup-success-home_container {
            padding: 1.2rem;
            gap: 1.2rem;
            border-radius: 10px;

            .popup-success-home_content {
                gap: 0.6rem;

                h3 {
                    font-size: 19px;
                }

                p {
                    font-size: 12px;
                    width: 100%;
                    max-width: 280px;
                }

                a {
                    font-size: calc(var(--normal-font-size) - 2px);
                }
            }

            .popup-form-home_img {
                width: 90px;
                height: 90px;
            }
        }
    }

    /*===============FOOTER===============*/
    .footer_section {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .desc_img_logo {
        gap: 1rem;
        margin-bottom: 3rem;
    }


    .footer_copy {
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .nav_logo img {
        height: auto;
    }

    .nav .btn,
    .btn-mobile {
        width: 100%;
    }

    /*=============== PAGE 1 ===============*/
    /*=============== HOME ===============*/
    .home {
        padding: 10rem 1.5rem 3rem 1.5rem;

        &::before {
            display: none;
        }

        .home_container .home_content {
            .home_text {
                h2 {
                    font-size: 24px;
                }

                p {
                    font-size: 13px;
                }

                .features {
                    width: 80%;
                    gap: 0.5rem;

                    .first,
                    .second,
                    .third {
                        width: 100%;
                        height: 50px;

                        h6 {
                            font-size: 11px;
                        }

                        p {
                            font-size: 9px;
                        }
                    }
                }

                .home_btns {
                    .btn {
                        height: 42px;
                        font-size: 14px;
                    }

                    p {
                        font-size: 12.5px;
                    }
                }
            }

            .home_img {
                .img1 {
                    width: 250px;
                }

                .img2 {
                    top: -35px;
                    left: 115px;
                }

                .icon1 {
                    top: 80px;
                    left: 100px;
                }

                .icon2 {
                    bottom: 150px;
                    left: 70%;
                }
            }
        }
    }

    /*=============== PATH ===============*/
    .path {
        padding: 3rem 1.5rem;

        .path_container {
            h2 {
                font-size: 26px;
            }

            p {
                font-size: 12.5px;
            }

            .path_content {
                grid-template-columns: 1fr;
                gap: 2rem;

                .item {
                    width: 100%;
                    padding: 15px;
                }

                .item_header h3 {
                    width: 100%;
                    font-size: 14px;
                }

                .item_body p {
                    width: 100%;
                    font-size: 10px;
                }

                .path_img {
                    display: none;
                }
            }
        }
    }

    /*=============== COURSE ===============*/
    .course {
        padding: 3rem 1.5rem;

        .course_container {
            h2 {
                font-size: 24px;
                text-align: center;
            }

            p {
                font-size: 12.5px;
                text-align: center;
            }

            .course_tabs {
                flex-wrap: nowrap;
                gap: 0.5rem;

                .tab {
                    width: 100%;
                    border-radius: 10px !important;

                    span {
                        display: none;
                    }

                    &:nth-child(1) {
                        border: 2px solid var(--yallow);
                    }

                    &:nth-child(3) {
                        border: 2px solid var(--yallow);
                    }
                }

                .tab.active::after {
                    display: none;
                }
            }

            .course_content {
                grid-template-columns: 1fr;
                gap: 1.5rem;

                .course_item {
                    width: 100%;

                    .course_img {
                        height: auto;
                    }

                    .course_text {
                        gap: 8px;

                        h3 {
                            font-size: 15px;
                        }

                        p {
                            width: 80%;
                            font-size: 11.5px;
                            text-align: start;
                        }

                        .btn_logo {

                            a {
                                width: 100%;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=============== OUR BLOGS ===============*/
    .our_blog {
        padding: 2.5rem 1rem 4rem 1rem;
        background-image: none;
        /* إزالة الخلفية المعقدة */

        &::before,
        &::after {
            display: none;
        }

        .our_blog_container {
            h2 {
                font-size: 24px;
            }

            .our_blog_articles_items {
                grid-template-columns: 1fr;
                gap: 3.25rem;

                .item {
                    .item_img {
                        height: auto;
                    }

                    .item_content {
                        h3 {
                            font-size: 15px;
                        }

                        p {
                            font-size: 12.5px;
                        }
                    }
                }
            }

            .btn_blog a {
                width: 100%;
            }
        }
    }

    /*=================== TESTIMONIALS ================*/
    .testimonials {
        padding: 4rem 1.5rem;

        &::after {
            display: none;
        }

        .testimonials_container {

            &::after {
                display: none;
            }

            .testimonials_content {
                .title_img .title h2 {
                    width: 100%;
                    font-size: 16px;
                    text-align: center;
                }

                h3 {
                    font-size: 18px;
                }

                .swiper {
                    padding: 3rem 1rem;

                    .swiper-wrapper {
                        gap: 1rem;
                    }

                }

                .testimonial {
                    padding: 1rem;
                    transform: rotate(0);

                    &::after {
                        display: none;
                    }

                    .testimonial_img {
                        margin-top: 1rem;
                    }
                }
            }
        }
    }

    /*=================== LEARNING FROM HOME ================*/
    .learning_from_home {
        padding: 2rem 1rem;

        .from_home_container {
            .from_home_content {
                .from_home_img {
                    width: 300px;
                }

                .from_home_text {
                    h2 {
                        font-size: 24px;
                        width: 100%;
                    }

                    p {
                        width: auto;
                        font-size: 9px;
                    }


                    .featuers {
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                    }

                }
            }

            .achivements {
                .achivements_content {
                    padding: 2rem 1rem;

                    .achivements_text {
                        p {
                            width: 420px;
                        }
                    }

                    .achivements_fetures {
                        grid-template-columns: 1fr 1fr;

                        .item {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }

    /*=============== READY ===============*/
    .ready {
        padding: 6rem 1.5rem 2.5rem 1.5rem;

        .ready_container {
            h2 {
                font-size: 24px;

                &::after,
                &::before {
                    right: 28%;
                    width: 90px;
                }
            }

            p {
                font-size: 11px;
            }

            .ready__content {
                .ready_text {
                    gap: 1.5rem;
                }

                .ready_img {
                    width: 300px;
                }
            }
        }
    }

    /*=================== PAGE 2 ================*/
    /*=================== PRICING ================*/
    .pricing {
        padding: 8rem 1.5rem 2rem 1.5rem;
        height: 70vh;

        .pricing_container {
            .pricing_content {
                gap: 3rem;

                .pricing_text {
                    h2 {
                        font-size: 26px;
                    }

                    p {
                        width: 90%;
                        font-size: 12px;
                        line-height: 14px;
                    }
                }

                .pricing_img {
                    width: 90%;
                    height: auto;
                    bottom: -20%;
                }
            }
        }
    }

    /*=================== PRICING PLANS  ================*/
    .pricing_plans {
        padding: 2rem 1.5rem;
        margin-top: 6rem;

        .pricing_plans_container {
            h2 {
                font-size: 20px;
            }

            .pricing_plans_content {
                padding: 2rem 0;
                gap: 1rem;

                .pricing_plan {
                    padding: 1rem 1rem 2rem 0.6rem;

                    h3 {
                        font-size: 16px;
                    }

                    .price {
                        font-size: 20px;

                        span {
                            font-size: 10px;
                        }
                    }

                    a {
                        width: 160px;
                        height: 32px;
                        font-size: 11.5px;
                        border-radius: 6px;
                    }

                    .features {
                        li {
                            font-size: 10px;

                            i {
                                font-size: 11px;
                            }
                        }
                    }

                    .discount {
                        width: 45px;
                        height: 28px;

                        h5 {
                            font-size: 14px;
                        }
                    }
                }
            }

            .pra {
                margin-top: 2rem;

                p {
                    padding: 1rem;
                    height: 32px;
                    font-size: 9px;

                    i {
                        font-size: 11px;
                    }
                }
            }
        }
    }

    /*=================== EVERYONE ================*/
    .everyone {
        padding: 4rem 1.5rem 2rem 1.5rem;
        margin-top: 1.5rem;

        .everyone_container {
            h2 {
                font-size: 20px;
            }

            p {
                font-size: 10.5px;
            }

            .everyone_content {
                gap: 2rem;
                margin-top: 4rem;

                .everyone_item {
                    width: 90%;
                    padding: 4rem 5px 1rem 5px;

                    img {
                        width: 100px;
                        height: 100px;
                        top: -40px;
                    }

                    h3 {
                        font-size: 14px;
                    }

                    p {
                        font-size: 9px;
                        width: 90%;
                    }

                    span {
                        font-size: 9px;
                    }

                    &:nth-child(3),
                    &:nth-child(4) {
                        margin-top: 1rem;
                    }
                }
            }
        }
    }

    /*=============== PAGE 3 ===============*/
    /*=============== COURSES HERO ================*/
    .courses_hero {
        padding: 5rem 0 2rem 0;

        .courses_hero_container {
            padding: 2rem 3rem 4rem 1.5rem;
            border: 3px solid #EDEDED;
            border-radius: 14px;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);

            .courses_hero_content {
                flex-direction: column-reverse;
                align-items: center;
                text-align: center;
                gap: 2rem;

                .courses_hero_text {
                    gap: 1rem;

                    h2 {
                        font-size: 26px;
                        width: 90%;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 3px);
                    }

                    .courses_hero_btns {
                        gap: 0.5rem;
                        justify-content: center;
                        align-items: center;

                        .btn {
                            width: 110px;
                            height: 34px;
                            border-radius: 5.5px;
                            font-size: calc(var(--normal-font-size) - 3px);
                        }

                        .second_btn {
                            width: 160px;
                            height: 34px;
                            border-radius: 5.5px;
                            font-size: calc(var(--normal-font-size) - 3px);
                        }
                    }

                    .features {
                        gap: 0.5rem;
                        flex-wrap: wrap;

                        .item {
                            img {
                                width: 24px;
                                height: 24px;
                            }

                            p {
                                font-size: 11px;
                            }
                        }
                    }
                }

                .courses_hero_img {
                    width: 240px;
                    height: 240px;

                    .item1_course {
                        left: -10%;
                        top: 40px;
                        gap: 8px;
                        padding: 6px;
                        padding-right: 0.6rem;

                        .img {
                            width: 22px;
                            height: 20px;
                        }

                        .data {
                            span {
                                font-size: 9px;
                            }

                            p {
                                font-size: 6px;
                            }
                        }
                    }

                    .item2_course {
                        right: -20%;
                        bottom: 40px;
                        gap: 8px;
                        padding: 6px;
                        padding-right: 0.6rem;

                        .img {
                            width: 22px;
                            height: 20px;
                        }

                        .data {
                            span {
                                font-size: 9px;
                            }

                            p {
                                font-size: 6px;
                            }
                        }
                    }

                    .item3_course {
                        left: -25%;
                        bottom: 5px;
                        width: 140px;
                        padding: 6px;
                        padding-right: 0.6rem;

                        .img {
                            width: 55px;
                            height: 20px;
                        }

                        p {
                            font-size: 9px;
                        }
                    }
                }
            }

            .end {
                right: 0.5rem;
                bottom: 0.5rem;
                gap: 0.5rem;

                .stars {
                    i {
                        font-size: calc(var(--normal-font-size) - 3px);
                    }
                }

                .data {
                    span {
                        font-size: 20px;
                    }

                    p {
                        font-size: 6px;
                        width: 50px;
                    }
                }
            }
        }
    }

    /*=============== COURSES ===============*/
    .courses {
        padding: 2rem 0.5rem;

        .courses_container {
            h2 {
                font-size: 20px;
                margin-bottom: 1.5rem;
            }

            .courses_content {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 2rem;

                .courses_item {
                    padding: 8px;

                    .courses_img {
                        height: 160px;
                    }

                    .courses_text {
                        padding: 10px;

                        h3 {
                            font-size: 13px;
                            margin-top: 8px;
                        }

                        p {
                            font-size: 9px;
                            width: 90%;
                        }

                        .btn_logo {
                            img {
                                width: 30px;
                                height: 34px;
                            }

                            a {
                                width: 100%;
                                height: 28px;
                                font-size: 8.5px;
                            }
                        }
                    }
                }
            }

            .courses_content2 {
                gap: 1rem;
                margin-bottom: 2rem;
                padding: 0 3.5rem;

                .courses_item {
                    flex-direction: column;
                    padding: 2px;
                    border-radius: 12px;

                    .courses_img {
                        width: 100%;
                        height: 180px;

                        img {
                            border-radius: 12px;
                        }
                    }

                    .courses_text {
                        padding: 10px;

                        h3 {
                            font-size: 13px;
                            margin-top: 8px;
                        }

                        p {
                            font-size: 9px;
                            width: 100%;
                        }

                        .btn_logo {
                            img {
                                width: 30px;
                                height: 34px;
                            }

                            a {
                                width: 100%;
                                height: 28px;
                                font-size: 8.5px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== AT HOME ================*/
    .at_home {
        padding: 2rem 1.5rem;

        .at_home_container {
            h2 {
                font-size: 20px;
                margin-bottom: 2rem;
            }

            .featuers {
                flex-direction: column;
                gap: 2rem;

                .item {
                    width: 90%;
                    height: auto;
                    padding: 1rem;
                    padding-left: 2.5rem;
                    border-radius: 8px;

                    &::before {
                        top: 10px;
                        left: -12px;
                        width: 40px;
                        height: 40px;
                    }

                    span {
                        font-size: 10.5px;
                    }

                    h3 {
                        font-size: 13px;
                    }

                    p {
                        width: 100%;
                        font-size: 9px;
                        line-height: 12px;
                    }
                }
            }
        }
    }

    /*=============== BANNAR ===============*/
    .bannar_section {
        .bannar {
            flex-direction: column;
            height: auto;
            border-radius: 20px;

            .text {
                padding: 20px;
                gap: 0.8rem;
                align-items: center;
                text-align: center;

                img {
                    width: 50px;
                    height: 50px;
                }

                h4 {
                    font-size: 17px;
                }

                p {
                    font-size: 11px;
                    line-height: 15px;
                    width: 100%;
                }

                a {
                    width: 260px;
                    height: 32px;
                    border-radius: 5.5px;
                    font-size: 12px;
                }
            }

            .bannar_img {
                width: 100%;
                align-items: center;

                img {
                    width: 60%;
                }
            }
        }
    }

    /*=================== CHAIN ================*/
    .chain {
        padding: 2rem 1.5rem 0 1.5rem;

        .chain_container {
            padding: 0.8rem 2rem;

            h2 {
                font-size: 19px;
                margin-bottom: 8px;
            }

            p {
                font-size: 11px;
                margin-bottom: 2rem;
            }

            .chain__content {
                flex-direction: column-reverse;
                gap: 1.5rem;

                .chain_text {
                    gap: 1rem;

                    .icon_text {
                        gap: 0.5rem;

                        .icon {
                            i {
                                font-size: 14px;
                            }
                        }

                        .text {
                            h3 {
                                font-size: calc(var(--normal-font-size) - 3px);
                            }
                        }
                    }

                    .chain_btns {
                        width: 100%;

                        .btn {
                            width: 100%;
                            height: 34px;
                            border-radius: 5.5px;
                            font-size: 12px;
                        }
                    }
                }

                .chain_img {
                    width: 300px;
                    height: 260px;
                }
            }

            .pra {
                padding: 2rem 0 0 0;

                p {
                    font-size: 11px;
                }

                /* &::after {
                        width: 120px;
                        height: 7px;
                        bottom: 10%;
                    } */
            }
        }
    }


    /*=============== PAGE 4 ===============*/
    /*=================== TESTIMONIAL HERO ================*/
    .testimonial_hero {
        padding: 6rem 1.5rem 2rem 1.5rem;

        .testimonial_hero_container {
            border: 3px solid var(--yallow);
            border-radius: 14px;
            padding: 1.5rem 0;

            .testimonial_hero_content {
                gap: 1rem;

                .hero_text {
                    gap: 0.5rem;

                    span {
                        font-size: 9px;
                    }

                    h2 {
                        font-size: 22px;
                    }

                    p {
                        font-size: 12px;
                        width: 90%;
                    }
                }

                .hero_img {
                    height: 180px;
                }

                .testimonial_hero_btn {
                    a {
                        height: 32px;
                        font-size: 12px;
                        border-radius: 5.5px;
                    }
                }
            }
        }
    }

    /*=============== TESTIMONIAL SECTION ===============*/
    .testimonial_section {
        padding: 2rem 1.5rem;

        .testimonial_section_container {
            h2 {
                font-size: 20px;
                margin-bottom: 2rem;
            }

            .testimonial_section_content {
                row-gap: 2rem;

                .testimonial {
                    width: 90%;
                    height: 140px;
                    padding: 0.5rem 0.8rem;
                    border-radius: 4px;
                    transform: rotate(1deg);

                    &::after {
                        left: -8px;
                        border-radius: 5px;
                        transform: rotate(0.5deg);
                    }

                    .data {
                        gap: 0.5rem;

                        .name_img {
                            gap: 0.8rem;

                            img {
                                width: 28px;
                                height: 22px;
                            }

                            h4 {
                                font-size: 11px;
                            }
                        }

                        p {
                            font-size: 9px;
                            line-height: 14px;
                            width: 160px;
                        }
                    }

                    .testimonial_img {
                        width: 50px;
                        height: 80px;

                        &::after {
                            width: 9px;
                            height: 22px;
                            left: -5px;
                            top: -10px;
                        }
                    }

                    .name_teacher {
                        right: 5px;
                        bottom: 5px;

                        span {
                            font-size: 9px;
                            gap: 5px;
                        }
                    }
                }
            }

            .testimonial_section_btn {
                margin-top: 2rem;

                a {
                    font-size: 17px;
                }
            }

            .pagination {
                margin-top: 2rem;
                gap: 5px;

                button {
                    width: 24px;
                    height: 24px;
                    font-size: calc(var(--normal-font-size) - 3px);
                }

                .pagination-numbers {
                    gap: 5px;

                    span {
                        width: 24px;
                        height: 24px;
                        font-size: calc(var(--normal-font-size) - 3px);
                    }
                }
            }
        }
    }

    .testimonial_page {
        padding: 8rem 1.5rem 2rem 1.5rem;
    }

    /*=================== PAGE 5 ================*/
    /*=================== HERO TEACHER ================*/
    .hero_teacher {
        padding: 7rem 1.5rem 2rem 1.5rem;

        .hero_teacher_container {
            gap: 1.5rem;
            flex-direction: column;
            align-items: center;

            .hero_teacher_content {
                gap: 2rem;
                align-items: center;
                justify-content: center;
                text-align: center;
                flex-direction: column-reverse;

                .hero_teacher_text {
                    gap: 5px;

                    h2 {
                        font-size: 22px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 3px);
                        width: 90%;
                        line-height: 14px;
                    }
                }

                .hero_teacher_img {
                    width: 300px;
                    height: 230px;
                }
            }

            .content2 {
                flex-direction: column-reverse;

                .hero_teacher_text {
                    h2 {
                        font-size: 22px;
                    }
                }
            }
        }
    }

    /*=============== TEACHER ===============*/
    .teacher {
        padding: 2rem 1.5rem;

        .teacher_container {
            .teacher_content {
                flex-direction: column;
                gap: 2rem;

                .teacer_cards {
                    align-items: center;
                    gap: 1.5rem;
                    width: 100%;

                    h2 {
                        font-size: 17px;
                    }

                    .card {
                        padding: 8px;
                        border-radius: 5px;

                        .card_img {
                            width: 160px;
                            height: 120px;
                        }

                        .card_text {
                            padding: 0.5rem;

                            h3 {
                                font-size: 14px;
                            }

                            p {
                                font-size: 11px;
                                line-height: 14px;
                                width: 420px;
                            }

                            a {
                                height: 24px;
                                font-size: 11px;
                            }
                        }
                    }
                }

                .fetures_teach {
                    right: 10px;
                    top: 8px;
                    gap: 0.5rem;

                    span {
                        font-size: 10px;

                        &::after {
                            width: 2.5px;
                            height: 2.5px;
                            right: -4px;
                            bottom: 0.5px;
                        }
                    }
                }

                .teacher_data {
                    gap: 1.5rem;
                    align-items: center;

                    h2 {
                        font-size: 17px;
                    }

                    .icon_text {
                        gap: 0.8rem;

                        .icon {
                            i {
                                font-size: 22px;
                            }
                        }

                        .text {
                            gap: 6px;

                            h3 {
                                font-size: 14px;
                            }

                            p {
                                font-size: 13px;
                            }
                        }
                    }
                }
            }
        }
    }


    /*=================== PAGE 6 ================*/
    /*=================== SINGLE COURSE ================*/
    .single_course {
        padding: 5.5rem 0rem 2rem 0rem;

        .single_course_container {

            .single_course_content {
                .course_img {
                    height: 320px;

                    .play-movie {
                        left: 80%;
                    }

                    .cours_text {
                        width: 50%;
                        top: 30%;
                        left: 4%;
                        gap: 1rem;

                        h1 {
                            font-size: 22px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 3px);
                            line-height: 14px;
                        }

                        a {
                            width: 120px;
                            height: 32px;
                            font-size: 12px;
                            border-radius: 5.5px;
                        }
                    }
                }

                .ditalis_course {
                    padding: 5px 4rem;

                    .ditalis {
                        gap: 0.8rem;

                        .item {
                            gap: 8px;

                            p {
                                font-size: calc(var(--normal-font-size) - 3px);
                                gap: 5px;

                                i {
                                    font-size: 12px;
                                }
                            }

                            .stars {
                                gap: 1.5px;

                                i {
                                    font-size: 12px;
                                }
                            }

                            img {
                                width: 24px;
                                height: 24px;
                            }
                        }
                    }
                }
            }

            .summary {
                padding: 2rem 1.5rem;

                .summary_text {
                    gap: 1rem;
                    padding: 1rem;

                    h2 {
                        font-size: 22px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 3px);
                        line-height: 16px;
                    }
                }
            }
        }
    }


    /*=============== SINGLE COURSE DATA ===============*/
    .single_course_data {

        .single_course_data_container {
            gap: 1.5rem;

            .single_course_content {
                .data {
                    flex-direction: column;
                    gap: 4rem;

                    .course_desc {
                        gap: 0.5rem;

                        h2 {
                            font-size: 17px;
                            margin-top: 25px;
                            margin-bottom: 8px;
                        }

                        h3 {
                            font-size: 14px;
                            margin-top: 25px;
                            margin-bottom: 8px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 3px);
                            line-height: 1.5;
                            margin-bottom: 8px;
                        }

                        ul,
                        ol {
                            margin-left: 12px;
                            margin-bottom: 10px;
                            margin-top: 8px;

                            li {
                                font-size: calc(var(--normal-font-size) - 3px);
                                margin-bottom: 8px;
                            }
                        }
                    }

                    .course_desc2 {
                        padding: 10px;
                        border-radius: 5px;
                    }

                    .second_data {
                        gap: 1.5rem;

                        .build_path {
                            gap: 0.5rem;

                            p {
                                font-size: calc(var(--normal-font-size) - 3px);
                            }

                            a {
                                width: 180px;
                                height: 32px;
                                font-size: 12px;
                                border-radius: 5.5px;
                            }
                        }

                        &::after {
                            top: -70px;
                            width: 80px;
                            height: 80px;
                        }
                    }
                }

                a {
                    font-size: 12px;
                    margin-top: 10px;
                }
            }
        }
    }

    /*=============== PAGE 7 ===============*/
    /*=============== BLOGS ===============*/
    .blogs {
        padding: 6rem 1.5rem 2rem 1.5rem;

        .blogs_container {
            .blogs_header {
                padding: 2rem 0;
                gap: 0.5rem;

                span {
                    font-size: 9px;
                    margin-bottom: 6px;
                    padding: 1.5px;
                }

                h2 {
                    font-size: 22px;
                }

                p {
                    font-size: 12px;
                }
            }

            .our_blog_items {
                gap: 10px;
                row-gap: 20px;

                .item {
                    .item_img {
                        max-width: 350px;
                        height: 240px;
                    }

                    .item_content {
                        max-width: 350px;

                        .date {
                            span {
                                font-size: 11px;
                            }
                        }

                        h3 {
                            font-size: 14px;
                            max-width: 340px;
                        }

                        p {
                            font-size: 11px;
                            max-width: 320px;
                        }

                        .btn_read {
                            margin-top: 6px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 3px);
                                    gap: 5px;
                                }
                            }

                            .read {
                                gap: 6px;

                                h4 {
                                    font-size: 11px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 3px);
                                }
                            }
                        }
                    }
                }
            }

            #pagination {
                margin-top: 1.5rem;
                padding: 1.5rem 0;
                gap: 0.2rem;

                button {
                    width: 26px;
                    height: 26px;
                    font-size: 11px;
                }
            }
        }
    }


    /*=================== BLOGS CATEGORIES ================*/
    .blogs_categories {
        padding: 2rem 1.5rem;

        .blogs_categories_container {
            gap: 1rem;

            .categories_list {
                gap: 1.5rem;

                h2 {
                    font-size: 22px;
                }

                .item {
                    gap: 0.5rem;

                    .item_img {
                        max-width: 250px;
                        height: 170px;
                    }

                    .item_content {
                        max-width: 250px;
                        gap: 0.5rem;

                        .date {
                            span {
                                font-size: 11px;
                            }
                        }

                        h3 {
                            font-size: calc(var(--normal-font-size) - 3px);
                        }

                        p {
                            font-size: 7px;
                            margin-bottom: 10px;
                        }

                        .btn_read {
                            a {
                                font-size: 11px;
                                gap: 5px;
                            }
                        }
                    }
                }
            }
        }
    }


    /*=================== PAGE 8 ================*/
    /*=================== SINGLE BLOG ================*/
    .single_blog {
        padding: 7rem 1.5rem 1rem 1.5rem;

        .single_blog_container {
            .merg {
                gap: 1rem;

                .single_blog_content {
                    .single_blog_header {
                        h1 {
                            font-size: 26px;
                        }

                        .ditails {
                            gap: 1rem;

                            span {
                                font-size: 11px;
                                padding-right: 8px;

                                &:nth-child(1),
                                &:nth-child(2) {
                                    border-right: 0.8px solid var(--Silver);
                                }

                                i {
                                    font-size: 11px;
                                }
                            }
                        }
                    }

                    .single_blog_img {
                        height: 300px;
                        border-radius: 5px;
                    }

                    .blog_desc {
                        gap: 0.5rem;

                        h2 {
                            font-size: 17px;
                            margin-top: 25px;
                            margin-bottom: 8px;
                        }

                        h3 {
                            font-size: 14px;
                            margin-top: 25px;
                            margin-bottom: 8px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 3px);
                            line-height: 1.5;
                            margin-bottom: 8px;
                            max-width: 400px;
                        }

                        ul,
                        ol {
                            margin-left: 12px;
                            margin-bottom: 10px;
                            margin-top: 8px;

                            li {
                                font-size: calc(var(--normal-font-size) - 3px);
                                margin-bottom: 8px;
                            }
                        }

                        a {
                            font-size: 12px;
                            margin-top: 15px;
                        }
                    }

                    .comment {
                        margin-top: 0.8rem;

                        form {
                            gap: 0.5rem;

                            label {
                                font-size: 12px;
                            }

                            textarea {
                                height: 35px;
                                padding: 6px 10px;
                                font-size: calc(var(--normal-font-size) - 3px);
                            }

                            button {
                                padding: 6px 10px;
                                font-size: 11px;
                                border-radius: 5.5px;
                            }
                        }
                    }
                }

                .quran_reads {
                    gap: 0.8rem;

                    .unlock {
                        padding: 10px 12px;
                        border-radius: 12px;

                        h3 {
                            font-size: 17px;
                        }

                        p {
                            font-size: 11px;
                            max-width: 400px;
                        }

                        a {
                            height: 32px;
                            font-size: calc(var(--normal-font-size) - 3px);
                            border-radius: 5.5px;
                        }
                    }

                    .last_article {
                        padding: 10px 12px;
                        border-radius: 12px;

                        h2 {
                            font-size: 17px;
                        }

                        .article {
                            gap: 2px;

                            a {
                                font-size: 12px;
                            }

                            span {
                                font-size: 11px;
                            }
                        }
                    }

                    .popular {
                        padding: 10px 12px;
                        border-radius: 12px;

                        h2 {
                            font-size: 17px;
                        }

                        .popular_blog {
                            gap: 2px;

                            a {
                                font-size: 12px;
                                max-width: 400px;
                            }

                            span {
                                font-size: 11px;
                            }
                        }
                    }

                    .share {
                        gap: 0.5rem;

                        h2 {
                            font-size: 17px;
                        }

                        .social {
                            gap: 5px;

                            a {
                                font-size: 17px;
                            }
                        }
                    }
                }
            }

            .link {
                font-size: 12px;
                margin-top: 15px;
            }
        }
    }

    /*===================MORE ARTICLES================*/
    .more_articles {
        padding: 2rem 1.5rem;

        .more_articles_container {
            h2 {
                font-size: 22px;
                margin-bottom: 1rem;
            }

            .our_blog_articles_items {
                gap: 10px;
                row-gap: 20px;

                .item {
                    gap: 0.6rem;

                    .item_img {
                        max-width: 350px;
                        height: 240px;
                    }

                    .item_content {
                        max-width: 350px;
                        margin-top: 5px;
                        gap: 5px;

                        .date {
                            span {
                                font-size: 11px;
                            }
                        }

                        h3 {
                            font-size: 14px;
                            max-width: 340px;
                        }

                        p {
                            font-size: 11px;
                            max-width: 320px;
                        }

                        .btn_read {
                            margin-top: 6px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 3px);
                                    gap: 5px;
                                }
                            }

                            .read {
                                gap: 6px;

                                h4 {
                                    font-size: 11px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 3px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== PAGE 9 ================*/
    /*=================== HERO ABOUT ================*/
    .hero_about {
        padding: 8rem 1.5rem 2rem 1.5rem;

        .hero_about_container {
            .hero_about_content {
                gap: 1.5rem;

                .hero_about_text {
                    h2 {
                        font-size: 26px;
                        max-width: 500px;
                    }
                }

                .hero_about_imgs {
                    gap: 1rem;

                    .img1 {
                        max-width: 250px;
                        height: 180px;
                    }

                    .img2 {
                        max-width: 400px;
                        height: 170px;
                    }

                    .img3 {
                        max-width: 250px;
                        height: 190px;
                    }
                }
            }
        }
    }

    /*===================MAKE US================*/
    .make_us {
        padding: 2rem 1.5rem;

        .make_us_container {
            .make_us__content {
                gap: 1.5rem;

                .make_us_text {
                    gap: 0.5rem;

                    .text {
                        gap: 2px;

                        h2 {
                            font-size: 24px;
                        }

                        h3 {
                            font-size: 14px;
                        }

                        p {
                            font-size: 13px;
                        }
                    }

                    .make_us_btns {
                        margin-top: 1rem;

                        .btn {
                            width: 180px;
                            height: 32px;
                            font-size: calc(var(--normal-font-size) - 3px);
                            border-radius: 5.5px;
                        }
                    }
                }

                .make_us_img {
                    max-width: 350px;
                    height: 245px;
                }
            }
        }
    }

    /*===================READY BANNAR================*/
    .ready_banner {
        padding: 2rem 1.5rem;

        .ready_banner_container {
            max-width: 500px;
            height: 150px;
            padding: 1rem 1.5rem;
            border-top-left-radius: 25px;
            border-top-right-radius: 12px;
            border-bottom-right-radius: 25px;
            border-bottom-left-radius: 12px;

            .ready_banner_content {
                gap: 0.5rem;

                h2 {
                    font-size: 17px;
                }

                p {
                    font-size: 11px;
                    max-width: 400px;
                }

                i {
                    font-size: 12px;
                }

                a {
                    width: 160px;
                    height: 30px;
                    font-size: 11px;
                    border-radius: 5.5px;
                }
            }
        }
    }

    /*===================OUR STORY================*/
    .our_story {
        padding: 2rem 1.5rem;

        .our_story_container {
            .our_story_content {
                gap: 1.5rem;

                .our_story_text {
                    h2 {
                        font-size: 24px;
                        margin-bottom: 0.5rem;
                    }

                    p {
                        font-size: 13px;
                        max-width: 400px;
                        line-height: 18px;
                    }

                    a {
                        width: 140px;
                        height: 32px;
                        font-size: calc(var(--normal-font-size) - 3px);
                        border-radius: 5.5px;
                        margin-top: 1rem;
                    }
                }

                .our_story_img {
                    max-width: 350px;
                    height: 280px;
                }
            }
        }
    }

    /*=================== PAGE 10 ================*/
    /*=================== TERMS AND PRIVACY ================*/
    .terms {
        padding: 4rem 1.5rem 2rem 1.5rem;

        .header_terms {
            gap: 6px;
            margin-bottom: 1.5rem;

            h2 {
                font-size: 26px;
            }

            p {
                font-size: calc(var(--normal-font-size) - 3px);
            }
        }

        .terms_container {
            gap: 1.5rem;

            .sidebar {
                gap: 1.5rem;

                .teacher_terms,
                .student_terms {
                    width: 100%;
                    gap: 0.8rem;

                    h3 {
                        font-size: 17px;
                        margin-bottom: 6px;
                    }

                    a {
                        font-size: 13px;

                        &::after {
                            bottom: -1.5px;
                        }
                    }
                }
            }

            .content_terms {
                section {
                    scroll-margin-top: 80px;
                }

                .content_t,
                .content_s {
                    gap: 0.8rem;

                    h3 {
                        font-size: 14px;
                        margin-bottom: 6px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 3px);
                        line-height: 20px;
                        max-width: 500px;
                    }

                    ul,
                    ol {
                        margin-left: 0.5rem;

                        li {
                            font-size: calc(var(--normal-font-size) - 3px);
                            line-height: 20px;
                            max-width: 500px;
                        }
                    }
                }
            }
        }

        .pra {
            margin: 1.5rem 0;

            p {
                font-size: calc(var(--normal-font-size) - 3px);
            }
        }
    }

    /*=================== PAGE 11 ================*/
    /*=================== FORM ================*/
    .form_page {
        padding: 6rem 1.5rem 2rem 1.5rem;

        .form_page_container {
            .form {
                gap: 1rem;
                padding: 1.5rem;
                border-radius: 12px;

                .form_header {
                    gap: 5px;

                    h2 {
                        font-size: 17px;
                    }

                    p {
                        font-size: 11px;
                        max-width: 300px;
                    }
                }

                .form_group {
                    input {
                        height: 38px;
                        font-size: 11px;
                        border-radius: 5.5px;
                    }

                    label {
                        left: 8px;
                        font-size: 9px;
                    }
                }

                .name {
                    gap: 1rem;

                    .first_name,
                    .last_name {
                        input {
                            height: 38px;
                            font-size: 11px;
                            border-radius: 5.5px;
                        }

                        label {
                            left: 8px;
                            font-size: 9px;
                        }
                    }
                }

                .agree_terms {
                    gap: 0.5rem;

                    input[type="checkbox"] {
                        width: 14px;
                        height: 14px;
                        border-radius: 2.5px;
                    }

                    label {
                        font-size: 11px;
                    }
                }

                .btn {
                    height: 36px;
                    font-size: calc(var(--normal-font-size) - 3px);
                    border-radius: 5.5px;
                }
            }

            .contactUsPopup {
                .popup-content {
                    max-width: 300px;
                    padding: 15px;
                    border-radius: 6px;
                }

                .popup-text {
                    font-size: 12px;
                    margin-bottom: 10px;
                }

                .whatsapp-btn {
                    padding: 5px 12px;
                    font-size: 12px;
                    border-radius: 4.5px;

                    i {
                        font-size: 12px;
                    }
                }

                .countdown-text {
                    margin-top: 8px;
                    font-size: 11px;
                }
            }
        }
    }

    /*=============== PAGE 12 ===============*/
    /*=============== ERROR PAGE ===============*/
    .error {
        padding: 7.5rem 0.8rem;

        .error_container {
            .error_content {
                gap: 1.5rem;

                .num {
                    font-size: 5rem;
                }

                .img {
                    width: 250px;
                    height: 210px;
                    margin-left: 60px;
                }

                .text {
                    p {
                        font-size: 13px;
                    }
                }

                .btn {
                    a {
                        font-size: 17px;
                    }
                }
            }
        }
    }

    /*===============POPUP FORM HOME===============*/
    .popup-form-home {
        .popup-form-home_container {
            padding: 1.5rem;
            border-radius: 8px;
            gap: 1rem;

            .popup-form-home_content {
                gap: 0.5rem;

                h3 {
                    font-size: 17px;
                }

                p {
                    font-size: 11px;
                    max-width: 300px;
                }

                form {
                    margin-top: 1rem;

                    .input {
                        max-width: 280px;
                        height: 35px;
                        border-radius: 5.5px;

                        input {
                            font-size: 11px;
                            padding: 5px;
                            border-radius: 5.5px 0 0 5.5px;
                        }

                        button {
                            width: 120px;
                            font-size: calc(var(--normal-font-size) - 3px);
                            border-radius: 0 5.5px 5.5px 0;
                            gap: 5px;
                        }
                    }
                }
            }

            .popup-form-home_img {
                width: 150px;
                height: 130px;
            }
        }
    }

    /*===============POPUP SUCCESS HOME===============*/
    .popup-success-home {
        .popup-success-home_container {
            padding: 1rem;
            gap: 1rem;
            border-radius: 8px;

            .popup-success-home_content {
                gap: 0.5rem;

                h3 {
                    font-size: 17px;
                }

                p {
                    font-size: 11px;
                    max-width: 240px;
                }

                a {
                    font-size: calc(var(--normal-font-size) - 3px);
                }
            }

            .popup-form-home_img {
                width: 80px;
                height: 80px;
            }
        }
    }

    /*===============FOOTER===============*/
    .footer_section {
        padding: 3rem 1rem 2rem 1rem;
    }

    .desc_img_logo {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer_data {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer_info {
        text-align: center;
        align-items: center;
    }

    .footer_info ul {
        text-align: center;
        align-items: center;
    }

    .footer_info h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer_info a,
    .footer_info .more a {
        font-size: 11px;
    }

    .footer_data .form {
        p {
            font-size: 11px;
            width: 100%;
        }
    }

    .footer_copy {
        flex-direction: column;
    }

    .footer_copy .pages {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .nav {
        height: 70px;

    }

    .nav_menu {
        width: 100%;
    }

    .nav_close {
        font-size: 1.5rem;
    }

    /*=============== PAGE 1 ===============*/
    /*=============== HOME ===============*/
    .home {
        padding: 9rem 1rem 2rem 1rem;

        .home_container .home_content {
            .home_text {
                width: 100%;

                h2 {
                    font-size: 20px;
                    width: 100%;
                }

                p {
                    font-size: 12px;
                }

                .home_btns {
                    width: 100%;

                    .btn {
                        font-size: 13px;
                        width: 100%;
                    }

                    p {
                        font-size: 11.5px;
                        width: 100%;
                    }
                }
            }

            .home_img {
                .img1 {
                    width: 200px;
                }

                .img2 {
                    top: -25px;
                    left: 20px;
                    width: 85px;
                    height: 85px;
                }

                .icon1 {
                    top: 90px;
                    left: 0px;
                    width: 40.408501px;
                    height: 40.640453px;
                }

                .icon2 {
                    bottom: 120px;
                    left: 80%;
                    width: 40.408501px;
                    height: 40.640453px;
                }
            }
        }
    }

    /*=============== PATH ===============*/
    .path {
        padding: 2rem 1rem;

        .path_container {
            h2 {
                font-size: 22px;
            }

            p {
                font-size: 12px;
            }


            .path_content {
                gap: 1.5rem;

                .item {
                    gap: 0.8rem;
                }

                .item_header h3 {
                    font-size: 13px;
                }

                .item_body p {
                    font-size: 9.5px;
                }
            }
        }
    }

    /*=============== COURSE ===============*/
    .course {
        padding: 2rem 1rem;

        .course_container {



            h2 {
                font-size: 20px;
            }

            p {
                font-size: 12px;
            }

            .course_content {
                gap: 1rem;

                .course_item .course_text h3 {
                    font-size: 14px;
                }

                .course_item .course_text p {
                    font-size: 10.5px;
                    width: 100%;
                }
            }
        }
    }

    /*=============== OUR BLOGS ===============*/
    .our_blog {
        padding: 2rem 0.75rem 3rem 0.75rem;

        .our_blog_container {
            h2 {
                font-size: 20px;
            }

            .our_blog_articles_items {
                gap: 1.8rem;

                .item_content {
                    h3 {
                        font-size: 14px;
                    }

                    p {
                        font-size: 12px;
                    }

                    .btn_read {
                        .btn {
                            a {
                                font-size: 12px !important;
                            }
                        }

                        .read {
                            h4 {
                                font-size: 12px !important;
                            }

                            i {
                                font-size: 12px !important;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== TESTIMONIALS ================*/
    .testimonials {
        padding: 3rem 1rem;

        .testimonials_container {
            &::before {
                display: none;
            }

            .testimonials_content {
                .title_img .img {
                    margin-top: 0;
                    width: 50px;
                    height: 50px;
                }

                h3 {
                    font-size: 16px;
                }

                .swiper {
                    padding: 4rem 1rem 1rem 1rem;

                    .swiper-slide {
                        width: 100% !important;
                    }

                    .swiper-wrapper {
                        gap: 1rem;
                    }

                    .btns_swiper {
                        top: 8%;
                        left: 165px;
                        width: 45%;
                    }
                }

                .testimonial {
                    padding: 0.75rem;
                    flex-direction: column;
                    width: fit-content;

                    .data {
                        gap: 0.75rem;

                        h4 {
                            font-size: 13px;
                        }

                        p {
                            font-size: 11.5px;
                            line-height: 1.4;
                        }
                    }

                    .testimonial_img {
                        display: none;
                        width: 65px;
                        height: 90px;
                    }
                }

                .testimonials_btn a {
                    width: 80%;
                    margin-top: 0;
                }
            }
        }
    }


    /*=================== LEARNING FROM HOME ================*/
    .learning_from_home {
        padding: 1.5rem 0.5rem;

        .from_home_container {
            .from_home_content {
                .from_home_img {
                    width: 100%;
                    height: auto;
                }

                .from_home_text {
                    h2 {
                        font-size: 20px;
                    }

                    .featuers {
                        gap: 10px;

                        .item {
                            width: 250.5px;
                            height: 150.75px;
                            gap: 1rem;
                            padding: 2rem 1rem;
                            padding-left: 3rem;

                            p {
                                width: 100%;
                            }
                        }
                    }
                }
            }

            .achivements {
                width: 100%;
                right: 0;

                .achivements_content {
                    .achivements_fetures {
                        width: 90%;
                        grid-template-columns: 1fr;
                    }

                    .achivements_text {
                        h2 {
                            font-size: 22px;
                            width: 100%;
                            line-height: 30px;
                        }

                        p {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }

    /*=============== READY ===============*/
    .ready {
        padding: 4rem 1rem 2rem 1rem;

        .ready_container {
            h2 {
                font-size: 20px;

                &::after,
                &::before {
                    right: 35%;
                    width: 70px;
                }
            }

            p {
                font-size: 10px;
            }

            .ready__content {
                gap: 1.5rem;

                .ready_text {
                    gap: 1rem;

                    p {
                        text-align: start;
                    }

                    .ready_btns {
                        flex-direction: column;
                        width: 100%;

                        .btn {
                            width: 100%;
                        }
                    }
                }

                .ready_img {
                    width: 100%;
                    height: auto;

                    &::after {
                        display: none;
                    }
                }
            }
        }
    }

    /*=================== PAGE 2 ================*/
    /*=================== PRICING ================*/
    .pricing {
        padding: 6rem 1rem 1rem 1rem;
        height: 50vh;

        .pricing_container {
            .pricing_content {
                gap: 2rem;

                .pricing_text {
                    h2 {
                        font-size: 22px;
                        text-align: center;
                    }

                    p {
                        width: 100%;
                        text-align: center;
                        font-size: 11px;
                        line-height: 12px;
                    }
                }

                .pricing_img {
                    position: relative;
                    width: 100%;
                    height: auto;
                    bottom: -5px;
                }
            }
        }
    }

    /*=================== PRICING PLANS  ================*/
    .pricing_plans {
        padding: 1.5rem 1rem;
        margin-top: 5rem;
        height: auto;

        .pricing_plans_container {
            h2 {
                font-size: 18px;
            }

            .content_header {

                h3{
                    font-size: 20px;
                }

                p{
                    font-size: 12px;
                }
            }

            .pricing_plans_content {
                padding: 1.5rem 0;
                gap: 0.8rem;

                .pricing_plan {
                    width: 80%;
                    padding: 0.8rem 0.8rem 1.5rem 0.5rem;
                    border-radius: 10px;
                    align-items: start;
                    gap: 1rem;

                    &:nth-child(1),
                    &:nth-child(4) {
                        border-radius: 10px;
                    }

                    h3 {
                        font-size: 14px;
                    }

                    .price {
                        font-size: 18px;

                        span {
                            font-size: 9px;
                        }
                    }

                    a {
                        width: 100%;
                        height: 30px;
                        font-size: 10.5px;
                        border-radius: 5px;
                    }

                    .features {
                        li {
                            font-size: 9px;
                            gap: 8px;

                            i {
                                font-size: 10px;
                            }
                        }
                    }

                    .discount {
                        width: 40px;
                        height: 25px;
                        border-radius: 0 0 0 10px;

                        h5 {
                            font-size: 12px;
                        }
                    }
                }
            }

            .pra {
                margin-top: 1.5rem;

                p {
                    width: 100%;
                    height: fit-content;
                    font-size: 8.5px;
                    border-radius: 5px;
                    flex-direction: column;
                    text-align: center;

                    i {
                        width: 18px;
                        height: 18px;
                        font-size: 10px;
                    }
                }
            }
        }
    }

    /*=================== EVERYONE ================*/
    .everyone {
        padding: 3rem 1rem 1.5rem 1rem;
        margin-top: 1rem;

        .everyone_container {
            h2 {
                font-size: 18px;
            }

            p {
                font-size: 9.5px;
            }

            .everyone_content {
                gap: 3.5rem;
                margin-top: 4rem;

                .everyone_item {
                    width: 100%;
                    padding: 3rem 4px 0.8rem 4px;
                    border-radius: 6px;
                    gap: 1rem;

                    img {
                        width: 80px;
                        height: 80px;
                        top: -40px;
                    }

                    h3 {
                        font-size: 12px;
                    }

                    p {
                        font-size: 8px;
                        width: 100%;
                    }

                    span {
                        font-size: 8px;
                    }

                    &:nth-child(3),
                    &:nth-child(4) {
                        margin-top: 0;
                    }
                }
            }
        }
    }


    /*=============== PAGE 3 ===============*/
    /*=============== COURSES HERO ================*/
    .courses_hero {
        padding: 5rem 0 1.5rem 0;

        .courses_hero_container {
            padding: 1.5rem 2rem 3rem 1rem;
            border: 2px solid #EDEDED;
            border-radius: 12px;
            clip-path: none;

            .courses_hero_content {
                gap: 1.5rem;

                .courses_hero_text {
                    gap: 1rem;

                    h2 {
                        font-size: 22px;
                        width: 100%;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 4px);
                    }

                    .courses_hero_btns {
                        gap: 0.8rem;
                        flex-direction: column;

                        width: 100%;

                        .btn {
                            width: 100%;
                            height: 32px;
                            border-radius: 5px;
                            font-size: calc(var(--normal-font-size) - 4px);
                        }

                        .second_btn {
                            width: 100%;
                            height: 32px;
                            border-radius: 5px;
                            font-size: calc(var(--normal-font-size) - 4px);
                        }
                    }

                    .features {
                        gap: 0.4rem;
                        justify-content: center;
                        align-items: center;
                        margin-bottom: 2rem;

                        .item {
                            width: 165px;
                            justify-content: start;

                            img {
                                width: 22px;
                                height: 22px;
                            }

                            p {
                                font-size: 10px;
                            }
                        }
                    }
                }

                .courses_hero_img {
                    width: 200px;
                    height: 200px;

                    .item1_course {
                        left: -40px;
                        top: 30px;
                        gap: 6px;
                        padding: 5px;
                        padding-right: 0.5rem;

                        .img {
                            width: 20px;
                            height: 18px;
                        }

                        .data {
                            span {
                                font-size: 8px;
                            }

                            p {
                                font-size: 5px;
                            }
                        }
                    }

                    .item2_course {
                        right: -45px;
                        bottom: 30px;
                        gap: 6px;
                        padding: 5px;
                        padding-right: 0.5rem;

                        .img {
                            width: 20px;
                            height: 18px;
                        }

                        .data {
                            span {
                                font-size: 8px;
                            }

                            p {
                                font-size: 5px;
                            }
                        }
                    }

                    .item3_course {
                        left: -30px;
                        bottom: 0;
                        width: 120px;
                        padding: 5px;
                        padding-right: 0.5rem;

                        .img {
                            width: 45px;
                            height: 18px;
                        }

                        p {
                            font-size: 8px;
                        }
                    }
                }
            }

            .end {
                right: 0.4rem;
                bottom: 0.4rem;
                gap: 0.4rem;

                .stars {
                    i {
                        font-size: calc(var(--normal-font-size) - 4px);
                    }
                }

                .data {
                    span {
                        font-size: 18px;


                        p {
                            font-size: 5px;
                            width: 40px;
                        }
                    }
                }
            }
        }
    }

    /*=============== COURSES ===============*/
    .courses {
        padding: 1.5rem 0.4rem;

        .courses_container {
            h2 {
                font-size: 18px;
                margin-bottom: 1rem;
            }

            .courses_content {
                gap: 1.5rem;
                margin-bottom: 1.5rem;

                .courses_item {
                    padding: 6px;

                    .courses_img {
                        height: 140px;
                        border-radius: 10px 10px 0 0;
                    }

                    .courses_text {
                        padding: 8px;
                        border-radius: 0 0 10px 10px;

                        h3 {
                            font-size: 12px;
                            margin-top: 6px;
                        }

                        p {
                            font-size: 8px;
                            width: 100%;
                        }

                        .btn_logo {
                            img {
                                width: 28px;
                                height: 32px;
                            }

                            a {
                                height: 26px;
                                font-size: 8px;
                                border-radius: 40px;
                            }
                        }
                    }
                }
            }

            .courses_content2 {
                gap: 1rem;
                margin-bottom: 1.5rem;
                padding: 0;

                .courses_item {
                    padding: 2px;

                    .courses_img {
                        width: 100%;
                        height: 160px;
                    }

                    .courses_text {
                        padding: 8px;

                        h3 {
                            font-size: 12px;
                            margin-top: 6px;
                        }

                        p {
                            font-size: 8px;
                            width: 100%;
                        }

                        .btn_logo {
                            img {
                                width: 28px;
                                height: 32px;
                            }

                            a {
                                height: 26px;
                                font-size: 8px;
                                border-radius: 40px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== AT HOME ================*/
    .at_home {
        padding: 1.5rem 1rem;

        .at_home_container {
            h2 {
                font-size: 18px;
                margin-bottom: 1.5rem;
            }

            .featuers {
                gap: 1.5rem;

                .item {
                    width: 100%;
                    padding: 0.8rem;
                    padding-left: 2rem;
                    border-radius: 6px;

                    &::before {
                        top: 8px;
                        left: -10px;
                        width: 35px;
                        height: 35px;
                    }

                    span {
                        font-size: 9.5px;
                    }

                    h3 {
                        font-size: 12px;
                    }

                    p {
                        width: 100%;
                        font-size: 8px;
                        line-height: 11px;
                    }
                }
            }
        }
    }

    /*=============== BANNAR ===============*/
    .bannar_section {
        .bannar {
            width: 100%;
            border-radius: 0;

            .text {
                padding: 15px;
                gap: 0.6rem;

                img {
                    width: 45px;
                    height: 45px;
                }

                h4 {
                    font-size: 15px;
                }

                p {
                    font-size: 10px;
                    line-height: 13px;
                    width: 100%;
                }

                a {
                    height: 30px;
                    border-radius: 5px;
                    font-size: 11px;
                    margin-top: 10px;
                }
            }

            .bannar_img {
                img {
                    height: 180px;
                }
            }
        }
    }

    /*=================== CHAIN ================*/
    .chain {
        padding: 1.5rem 1rem 0 1rem;

        .chain_container {
            padding: 0.6rem 1rem;

            h2 {
                font-size: 17px;
                margin-bottom: 6px;
            }

            p {
                font-size: 10px;
                margin-bottom: 1.5rem;
            }

            .chain__content {
                /* gap: 1rem; */

                .chain_text {
                    gap: 1rem;

                    .icon_text {
                        gap: 0.4rem;

                        .icon {
                            i {
                                font-size: 13px;
                            }
                        }

                        .text {
                            h3 {
                                font-size: calc(var(--normal-font-size) - 4px);
                            }
                        }
                    }

                    .chain_btns {
                        .btn {
                            height: 30px;
                            border-radius: 5px;
                            font-size: 11px;
                        }
                    }
                }

                .chain_img {
                    width: 100%;
                }
            }

            .pra {
                padding: 1.5rem 0 0 0;

                p {
                    font-size: 10px;
                }

                /* &::after {
                        width: 100px;
                        height: 6px;
                        bottom: 5%;
                    } */
            }
        }
    }


    /*=============== PAGE 4 ===============*/
    /*=================== TESTIMONIAL HERO ================*/
    .testimonial_hero {
        padding: 5rem 1rem 1.5rem 1rem;

        .testimonial_hero_container {
            border: 2px solid var(--yallow);
            border-radius: 12px;
            padding: 1rem 0;

            .testimonial_hero_content {
                gap: 0.8rem;

                .hero_text {
                    padding: 2rem;
                    gap: 0.4rem;

                    span {
                        font-size: 8px;
                    }

                    h2 {
                        font-size: 20px;
                    }

                    p {
                        font-size: 11px;
                        width: 100%;
                    }
                }

                .hero_img {
                    height: 100px;
                }

                .testimonial_hero_btn {
                    width: 80%;

                    a {
                        width: 100%;
                        height: 30px;
                        font-size: 11px;
                        border-radius: 5px;
                    }
                }
            }
        }
    }

    /*=============== TESTIMONIAL SECTION ===============*/
    .testimonial_section {
        padding: 1.5rem 1rem;

        .testimonial_section_container {
            h2 {
                font-size: 18px;
                margin-bottom: 1.5rem;
            }

            .testimonial_section_content {
                row-gap: 1.5rem;
                grid-template-columns: 1fr;

                .testimonial {
                    width: 100%;
                    height: 120px;
                    padding: 0.4rem 0.6rem;
                    border-radius: 3.5px;
                    transform: rotate(0.8deg);

                    &::after {
                        left: -6px;
                        border-radius: 4.5px;
                        transform: rotate(0.4deg);
                    }

                    .data {
                        gap: 0.4rem;

                        .name_img {
                            gap: 0.6rem;

                            img {
                                width: 24px;
                                height: 18px;
                            }

                            h4 {
                                font-size: 10px;
                            }
                        }

                        p {
                            font-size: 8px;
                            line-height: 12px;
                            width: 140px;
                        }
                    }

                    .testimonial_img {
                        width: 40px;
                        height: 60px;

                        &::after {
                            width: 8px;
                            height: 20px;
                            left: -4px;
                            top: -8px;
                        }
                    }

                    .name_teacher {
                        right: 4px;
                        bottom: 4px;

                        span {
                            font-size: 8px;
                            gap: 4px;
                        }
                    }
                }
            }

            .testimonial_section_btn {
                margin-top: 1.5rem;

                a {
                    font-size: 15px;
                }
            }

            .pagination {
                margin-top: 1.5rem;
                gap: 4px;

                button {
                    width: 22px;
                    height: 22px;
                    font-size: calc(var(--normal-font-size) - 4px);
                }

                .pagination-numbers {
                    gap: 4px;

                    span {
                        width: 22px;
                        height: 22px;
                        font-size: calc(var(--normal-font-size) - 4px);
                    }
                }
            }
        }
    }

    .testimonial_page {
        padding: 6.5rem 1rem 1.5rem 1rem;
    }

    /*=================== PAGE 5 ================*/
    /*=================== HERO TEACHER ================*/
    .hero_teacher {
        padding: 6.5rem 1rem 1.5rem 1rem;

        .hero_teacher_container {
            gap: 2rem;

            .hero_teacher_content {
                gap: 1.5rem;

                .hero_teacher_text {
                    gap: 4px;

                    h2 {
                        font-size: 20px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 4px);
                        width: 100%;
                        line-height: 12px;
                    }
                }

                .hero_teacher_img {
                    width: 100%;
                    height: auto;
                    max-width: 260px;
                    max-height: 200px;
                }
            }

            .content2 {
                .hero_teacher_text {
                    h2 {
                        font-size: 20px;
                    }
                }
            }
        }
    }

    /*=============== TEACHER ===============*/
    .teacher {
        padding: 1.5rem 1rem;

        .teacher_container {
            .teacher_content {
                gap: 1.5rem;

                .teacer_cards {
                    gap: 1rem;

                    h2 {
                        font-size: 15px;
                    }

                    .card {
                        flex-direction: column;
                        padding: 6px;
                        border-radius: 4px;

                        .card_img {
                            width: 140px;
                            height: 100px;
                        }

                        .card_text {
                            padding: 0.4rem;

                            h3 {
                                font-size: 12px;
                            }

                            p {
                                font-size: 10px;
                                line-height: 12px;
                                width: 100%;
                            }

                            a {
                                height: 22px;
                                font-size: 10px;
                            }
                        }
                    }
                }

                .fetures_teach {
                    right: 10px;
                    top: 10px;
                    gap: 0.4rem;

                    span {
                        font-size: 9px;

                        &::after {
                            width: 2px;
                            height: 2px;
                            right: -3px;
                            bottom: 0px;
                        }
                    }
                }

                .teacher_data {
                    gap: 1rem;

                    h2 {
                        font-size: 15px;
                    }

                    .icon_text {
                        gap: 0.6rem;

                        .icon {
                            i {
                                font-size: 20px;
                            }
                        }

                        .text {
                            gap: 5px;

                            h3 {
                                font-size: 13px;
                            }

                            p {
                                font-size: 12px;
                            }
                        }
                    }
                }
            }
        }
    }


    /*=================== PAGE 6 ================*/
    /*=================== SINGLE COURSE ================*/
    .single_course {
        padding: 4rem 0rem 1.5rem 0rem;

        .single_course_container {

            .single_course_content {
                .course_img {
                    height: 185px;

                    .play-movie {
                        left: 50%;
                        width: 40px;
                        height: 40px;
                        font-size: 18px;
                        top: 90px;
                        z-index: 10;
                    }

                    .cours_text {
                        width: 90%;
                        top: 10%;
                        left: 3%;
                        gap: 4.8rem;
                        text-align: center;

                        h1 {
                            font-size: 16px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 4px);
                            line-height: 12px;
                        }

                        a {
                            position: fixed;
                            bottom: 15px;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 150px;
                            height: 30px;
                            font-size: 11px;
                            border-radius: 5px;
                            z-index: 99;
                        }
                    }
                }

                .ditalis_course {
                    padding: 4px 2rem;

                    .ditalis {
                        flex-direction: column;
                        gap: 0.6rem;

                        .item {
                            gap: 6px;

                            p {
                                font-size: calc(var(--normal-font-size) - 4px);
                                gap: 4px;

                                i {
                                    font-size: 11px;
                                }
                            }

                            .stars {
                                gap: 1px;

                                i {
                                    font-size: 11px;
                                }
                            }

                            img {
                                width: 22px;
                                height: 22px;
                            }
                        }
                    }
                }
            }

            .summary {
                padding: 1.5rem 1rem;

                .summary_text {
                    gap: 0.8rem;
                    padding: 0.8rem;

                    h2 {
                        font-size: 20px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 4px);
                        line-height: 14px;
                    }
                }
            }
        }
    }


    /*=============== SINGLE COURSE DATA ===============*/
    .single_course_data {

        .single_course_data_container {
            gap: 1rem;

            .single_course_content {
                .data {
                    gap: 1.5rem;

                    .course_desc {
                        gap: 0.4rem;

                        h2 {
                            font-size: 15px;
                            margin-top: 20px;
                            margin-bottom: 6px;
                        }

                        h3 {
                            font-size: 12px;
                            margin-top: 20px;
                            margin-bottom: 6px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 4px);
                            line-height: 1.4;
                            margin-bottom: 6px;
                        }

                        ul,
                        ol {
                            margin-left: 10px;
                            margin-bottom: 8px;
                            margin-top: 6px;

                            li {
                                font-size: calc(var(--normal-font-size) - 4px);
                                margin-bottom: 6px;
                            }
                        }
                    }

                    .course_desc2 {
                        padding: 8px;
                        border-radius: 4px;
                    }

                    .second_data {
                        gap: 1rem;

                        .build_path {
                            gap: 0.4rem;

                            p {
                                font-size: calc(var(--normal-font-size) - 4px);
                            }

                            a {
                                width: 160px;
                                height: 30px;
                                font-size: 11px;
                                border-radius: 5px;
                            }
                        }

                        &::after {
                            top: -60px;
                            width: 70px;
                            height: 70px;
                        }
                    }
                }

                a {
                    font-size: 11px;
                    margin-top: 8px;
                }
            }
        }
    }


    /*=============== PAGE 7 ===============*/
    /*=============== BLOGS ===============*/
    .blogs {
        padding: 5rem 1rem 1.5rem 1rem;

        .blogs_container {
            .blogs_header {
                padding: 1.5rem 0;
                gap: 0.4rem;

                span {
                    font-size: 8px;
                    margin-bottom: 5px;
                    padding: 1px;
                }

                h2 {
                    font-size: 20px;
                }

                p {
                    font-size: 11px;
                }
            }

            .our_blog_items {
                gap: 8px;
                row-gap: 15px;

                .item {
                    .item_img {
                        max-width: 300px;
                        height: 200px;
                    }

                    .item_content {
                        max-width: 300px;

                        .date {
                            span {
                                font-size: 10px;
                            }
                        }

                        h3 {
                            font-size: 13px;
                            max-width: 290px;
                        }

                        p {
                            font-size: 10px;
                            max-width: 280px;
                        }

                        .btn_read {
                            margin-top: 5px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 4px);
                                    gap: 4px;
                                }
                            }

                            .read {
                                gap: 5px;

                                h4 {
                                    font-size: 10px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 4px);
                                }
                            }
                        }
                    }
                }
            }

            #pagination {
                margin-top: 1rem;
                padding: 1rem 0;
                gap: 0.1rem;

                button {
                    width: 24px;
                    height: 24px;
                    font-size: 10px;
                }
            }
        }
    }

    /*=================== BLOGS CATEGORIES ================*/
    .blogs_categories {
        padding: 1.5rem 1rem;

        .blogs_categories_container {
            gap: 0.8rem;

            .categories_list {
                gap: 1rem;

                h2 {
                    font-size: 20px;
                }

                .item {
                    gap: 0.4rem;

                    .item_img {
                        max-width: 200px;
                        height: 140px;
                    }

                    .item_content {
                        max-width: 200px;
                        gap: 0.4rem;

                        .date {
                            span {
                                font-size: 10px;
                            }
                        }

                        h3 {
                            font-size: calc(var(--normal-font-size) - 4px);
                        }

                        p {
                            font-size: 6px;
                            margin-bottom: 8px;
                        }

                        .btn_read {
                            a {
                                font-size: 10px;
                                gap: 4px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*=================== PAGE 8 ================*/
    /*=================== SINGLE BLOG ================*/
    .single_blog {
        padding: 5rem 1rem 1rem 1rem;

        .single_blog_container {
            .merg {
                gap: 0.8rem;

                .single_blog_content {
                    .single_blog_header {
                        h1 {
                            font-size: 22px;
                        }

                        .ditails {
                            gap: 0.8rem;

                            span {
                                font-size: 10px;
                                padding-right: 6px;

                                &:nth-child(1),
                                &:nth-child(2) {
                                    border-right: 0.5px solid var(--Silver);
                                }

                                i {
                                    font-size: 10px;
                                }
                            }
                        }
                    }

                    .single_blog_img {
                        height: 240px;
                        border-radius: 4px;
                    }

                    .blog_desc {
                        gap: 0.4rem;

                        h2 {
                            font-size: 15px;
                            margin-top: 20px;
                            margin-bottom: 6px;
                        }

                        h3 {
                            font-size: 12px;
                            margin-top: 20px;
                            margin-bottom: 6px;
                        }

                        p {
                            font-size: calc(var(--normal-font-size) - 4px);
                            line-height: 1.4;
                            margin-bottom: 6px;
                            max-width: 350px;
                        }

                        ul,
                        ol {
                            margin-left: 10px;
                            margin-bottom: 8px;
                            margin-top: 6px;

                            li {
                                font-size: calc(var(--normal-font-size) - 4px);
                                margin-bottom: 6px;
                            }
                        }

                        a {
                            font-size: 11px;
                            margin-top: 12px;
                        }
                    }

                    .comment {
                        margin-top: 0.6rem;

                        form {
                            gap: 0.4rem;

                            label {
                                font-size: 11px;
                            }

                            textarea {
                                height: 30px;
                                padding: 5px 8px;
                                font-size: calc(var(--normal-font-size) - 4px);
                            }

                            button {
                                padding: 5px 8px;
                                font-size: 10px;
                                border-radius: 5px;
                            }
                        }
                    }
                }

                .quran_reads {
                    gap: 1.6rem;

                    .unlock {
                        padding: 8px 10px;
                        border-radius: 10px;

                        h3 {
                            font-size: 15px;
                        }

                        p {
                            font-size: 10px;
                            max-width: 350px;
                        }

                        a {
                            height: 30px;
                            font-size: calc(var(--normal-font-size) - 4px);
                            border-radius: 5px;
                        }
                    }

                    .last_article {
                        padding: 8px 10px;
                        border-radius: 10px;

                        h2 {
                            font-size: 15px;
                        }

                        .article {
                            gap: 1px;

                            a {
                                font-size: 11px;
                            }

                            span {
                                font-size: 10px;
                            }
                        }
                    }

                    .popular {
                        padding: 8px 10px;
                        border-radius: 10px;

                        h2 {
                            font-size: 15px;
                        }

                        .popular_blog {
                            gap: 1px;

                            a {
                                font-size: 11px;
                                max-width: 350px;
                            }

                            span {
                                font-size: 10px;
                            }
                        }
                    }

                    .share {
                        gap: 0.4rem;

                        h2 {
                            font-size: 15px;
                        }

                        .social {
                            gap: 4px;

                            a {
                                font-size: 15px;
                            }
                        }
                    }
                }
            }

            .link {
                font-size: 11px;
                margin-top: 12px;
            }
        }
    }

    /*===================MORE ARTICLES================*/
    .more_articles {
        padding: 1.5rem 1rem;

        .more_articles_container {
            h2 {
                font-size: 20px;
                margin-bottom: 0.8rem;
            }

            .our_blog_articles_items {
                gap: 8px;
                row-gap: 15px;

                .item {
                    gap: 0.5rem;

                    .item_img {
                        max-width: 300px;
                        height: 200px;
                    }

                    .item_content {
                        max-width: 300px;
                        margin-top: 4px;
                        gap: 4px;

                        .date {
                            span {
                                font-size: 10px;
                            }
                        }

                        h3 {
                            font-size: 13px;
                            max-width: 290px;
                        }

                        p {
                            font-size: 10px;
                            max-width: 280px;
                        }

                        .btn_read {
                            margin-top: 5px;

                            .btn {
                                a {
                                    font-size: calc(var(--normal-font-size) - 4px);
                                    gap: 4px;
                                }
                            }

                            .read {
                                gap: 5px;

                                h4 {
                                    font-size: 10px;
                                }

                                i {
                                    font-size: calc(var(--normal-font-size) - 4px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }


    /*=================== PAGE 9 ================*/
    /*=================== HERO ABOUT ================*/
    .hero_about {
        padding: 7rem 1rem 1.5rem 1rem;

        .hero_about_container {
            .hero_about_content {
                gap: 1rem;

                .hero_about_text {
                    h2 {
                        font-size: 22px;
                        max-width: 400px;
                    }
                }

                .hero_about_imgs {
                    gap: 0.8rem;

                    .img1 {
                        display: none;
                        max-width: 200px;
                        height: 150px;
                    }

                    .img2 {
                        max-width: 300px;
                        height: 130px;
                    }

                    .img3 {
                        display: none;
                        max-width: 200px;
                        height: 160px;
                    }
                }
            }
        }
    }

    /*===================MAKE US================*/
    .make_us {
        padding: 2.5rem 1rem;

        .make_us_container {
            .make_us__content {
                gap: 1rem;

                .make_us_text {
                    gap: 0.4rem;

                    .text {
                        gap: 1px;

                        h2 {
                            font-size: 20px;
                        }

                        h3 {
                            font-size: 12px;
                        }

                        p {
                            font-size: 12px;
                        }
                    }

                    .make_us_btns {
                        margin-top: 0.8rem;
                        width: 100%;

                        .btn {
                            width: 100%;
                            height: 30px;
                            font-size: calc(var(--normal-font-size) - 4px);
                            border-radius: 5px;
                        }
                    }
                }

                .make_us_img {
                    max-width: 300px;
                    height: 210px;
                }
            }
        }
    }


    /*===================READY BANNAR================*/
    .ready_banner {
        padding: 1.5rem 1rem;

        .ready_banner_container {
            max-width: 400px;
            height: 130px;
            padding: 0.8rem 1rem;
            border-top-left-radius: 20px;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 10px;

            .ready_banner_content {
                gap: 0.4rem;

                h2 {
                    font-size: 15px;
                }

                p {
                    font-size: 10px;
                    max-width: 300px;
                }

                i {
                    font-size: 10px;
                }

                a {
                    width: 140px;
                    height: 28px;
                    font-size: 10px;
                    border-radius: 5px;
                }
            }
        }
    }

    /*===================OUR STORY================*/
    .our_story {
        padding: 1.5rem 1rem;

        .our_story_container {
            .our_story_content {
                gap: 1rem;

                .our_story_text {
                    h2 {
                        font-size: 20px;
                        margin-bottom: 0.4rem;
                    }

                    p {
                        font-size: 12px;
                        max-width: 300px;
                        line-height: 16px;
                    }

                    a {
                        width: 100%;
                        height: 30px;
                        font-size: calc(var(--normal-font-size) - 4px);
                        border-radius: 5px;
                        margin-top: 0.8rem;
                    }
                }

                .our_story_img {
                    max-width: 300px;
                    height: 240px;
                }
            }
        }
    }

    /*=================== PAGE 10 ================*/
    /*=================== TERMS AND PRIVACY ================*/
    .terms {
        padding: 6rem 1rem 1.5rem 1rem;

        .header_terms {
            gap: 5px;
            margin-bottom: 1rem;

            h2 {
                font-size: 22px;
            }

            p {
                font-size: calc(var(--normal-font-size) - 4px);
            }
        }

        .terms_container {
            flex-direction: column;
            gap: 1rem;

            .sidebar {
                position: static;
                gap: 1rem;
                width: 100%;
                flex-direction: row;

                .teacher_terms,
                .student_terms {
                    width: 45%;
                    gap: 0.6rem;

                    h3 {
                        font-size: 15px;
                        margin-bottom: 5px;
                    }

                    a {
                        font-size: 12px;

                        &::after {
                            bottom: -1px;
                        }
                    }
                }
            }

            .content_terms {
                section {
                    scroll-margin-top: 60px;
                }

                .content_t,
                .content_s {
                    gap: 0.6rem;

                    h3 {
                        font-size: 13px;
                        margin-bottom: 5px;
                    }

                    p {
                        font-size: calc(var(--normal-font-size) - 4px);
                        line-height: 18px;
                        max-width: 400px;
                    }

                    ul,
                    ol {
                        margin-left: 0.4rem;

                        li {
                            font-size: calc(var(--normal-font-size) - 4px);
                            line-height: 18px;
                            max-width: 400px;
                        }
                    }
                }
            }
        }

        .pra {
            margin: 1rem 0;

            p {
                font-size: calc(var(--normal-font-size) - 4px);
            }
        }
    }

    /*=================== PAGE 11 ================*/
    /*=================== FORM ================*/
    .form_page {
        padding: 5rem 1rem 1.5rem 1rem;

        .form_page_container {

            h3 {
                font-size: 20px;
            }

            .form {
                gap: 0.8rem;
                padding: 1rem;
                border-radius: 10px;

                .form_header {
                    gap: 4px;

                    h2 {
                        font-size: 15px;
                    }

                    p {
                        font-size: 10px;
                        max-width: 250px;
                    }
                }

                .form_group {
                    input {
                        max-width: 250px;
                        height: 34px;
                        font-size: 10px;
                        border-radius: 5px;
                    }

                    label {
                        left: 6px;
                        font-size: 8px;
                    }
                }

                .name {
                    gap: 0.8rem;

                    .first_name,
                    .last_name {
                        input {
                            max-width: 250px;
                            height: 34px;
                            font-size: 10px;
                            border-radius: 5px;
                        }

                        label {
                            left: 6px;
                            font-size: 8px;
                        }
                    }
                }

                .agree_terms {
                    gap: 0.4rem;

                    input[type="checkbox"] {
                        width: 12px;
                        height: 12px;
                        border-radius: 2px;
                    }

                    label {
                        font-size: 10px;
                    }
                }

                .btn {
                    height: 32px;
                    font-size: calc(var(--normal-font-size) - 4px);
                    border-radius: 5px;
                }
            }

            .contactUsPopup {
                .popup-content {
                    max-width: 250px;
                    padding: 12px;
                    border-radius: 5px;
                }

                .popup-text {
                    font-size: 11px;
                    margin-bottom: 8px;
                }

                .whatsapp-btn {
                    padding: 4px 10px;
                    font-size: 11px;
                    border-radius: 4px;

                    i {
                        font-size: 11px;
                    }
                }

                .countdown-text {
                    margin-top: 6px;
                    font-size: 10px;
                }
            }
        }
    }

    /*=============== PAGE 12 ===============*/
    /*=============== ERROR PAGE ===============*/
    .error {
        padding: 7rem 0.5rem;

        .error_container {
            .error_content {
                gap: 1rem;

                .num {
                    font-size: 4rem;
                }

                .img {
                    width: 200px;
                    height: 170px;
                    margin-left: 50px;
                }

                .text {
                    p {
                        font-size: 12px;
                    }
                }

                .btn {
                    a {
                        font-size: 15px;
                    }
                }
            }
        }
    }

    /*===============POPUP FORM HOME===============*/
    .popup-form-home {
        .popup-form-home_container {
            padding: 1rem;
            border-radius: 6px;
            gap: 0.8rem;

            .popup-form-home_content {
                gap: 0.4rem;

                h3 {
                    font-size: 15px;
                }

                p {
                    font-size: 10px;
                    max-width: 250px;
                }

                form {
                    margin-top: 0.8rem;

                    .input {
                        max-width: 240px;
                        height: 32px;
                        border-radius: 5px;

                        input {
                            font-size: 10px;
                            padding: 4px;
                            border-radius: 5px 0 0 5px;
                        }

                        button {
                            width: 130px;
                            font-size: calc(var(--normal-font-size) - 4px);
                            border-radius: 0 5px 5px 0;
                            gap: 4px;
                        }
                    }
                }
            }

            .popup-form-home_img {
                width: 120px;
                height: 100px;
            }
        }
    }

    /*===============POPUP SUCCESS HOME===============*/
    .popup-success-home {
        .popup-success-home_container {
            padding: 0.8rem;
            gap: 0.8rem;
            border-radius: 6px;

            .popup-success-home_content {
                gap: 0.4rem;

                h3 {
                    font-size: 15px;
                }

                p {
                    font-size: 10px;
                    max-width: 200px;
                }

                a {
                    font-size: calc(var(--normal-font-size) - 4px);
                }
            }

            .popup-form-home_img {
                width: 70px;
                height: 70px;
            }
        }
    }

    /*===============FOOTER===============*/
    .footer_section {
        padding: 2.5rem 1rem 1.5rem 1rem;
    }

    .desc_img_logo {
        margin-bottom: 2rem;
    }

    .desc_img_logo .img_logo img {
        width: 180px;
    }

    .footer_data {
        gap: 1rem;
    }

    .footer_copy {
        text-align: center;
    }

    .footer_copy .pages {
        flex-direction: column;
        gap: 0.5rem;
    }
}