                                                                /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); */
                                                                
                                                                @import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=Poppins:wght@200;400;500;600;700;800&family=Rubik:ital,wght@0,300..900;1,300..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
                                                                * {
                                                                    font-family: "Tajawal", sans-serif;
                                                                    margin: 0;
                                                                    padding: 0;
                                                                    scroll-behavior: smooth;
                                                                    box-sizing: border-box;
                                                                    scroll-padding-top: 2rem;
                                                                }
                                                                /* Some Varibles */
                                                                
                                                                 :root {
                                                                    --main-color: rgba(255, 0, 0, 0.733);
                                                                    --hover-color: hsl(37, 94%, 57%);
                                                                    --body-color: #0d0d0e;
                                                                    --container-color: #2d2e37;
                                                                    --text-color: #fcfeff;
                                                                    --search-color: #19191a;
                                                                }
                                                                /* stom Scroll Bar */
                                                                
                                                                 ::selection {
                                                                    background-color: var(--main-color);
                                                                    color: var(--text-color);
                                                                }
                                                                
                                                                html::-webkit-scrollbar {
                                                                    width: 0.5rem;
                                                                    background: transparent;
                                                                }
                                                                
                                                                html::-webkit-scrollbar-thumb {
                                                                    background-color: var(--main-color);
                                                                }
                                                                
                                                                a {
                                                                    text-decoration: none;
                                                                }
                                                                
                                                                li {
                                                                    list-style: none;
                                                                }
                                                                
                                                                section {
                                                                    padding: 3rem 0 2rem;
                                                                }
                                                                
                                                                img {
                                                                    width: 100%;
                                                                }
                                                                
                                                                .bx {
                                                                    cursor: pointer;
                                                                }
                                                                
                                                                body {
                                                                    background-color: var(--body-color);
                                                                    color: var(--text-color);
                                                                    overflow-x: hidden !important;
                                                                }
                                                                
                                                                .container {
                                                                    max-width: 1068px;
                                                                    margin: auto;
                                                                    width: 100%;
                                                                }
                                                                
                                                                header {
                                                                    position: fixed;
                                                                    top: 0;
                                                                    left: 0;
                                                                    width: 100%;
                                                                    background-color: var(--body-color);
                                                                    z-index: 100;
                                                                }
                                                                /* Nav */
                                                                
                                                                .nav {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    /* justify-content: center; */
                                                                    padding: 20px 0;
                                                                }
                                                                /* Logo */
                                                                
                                                                .logo {
                                                                    color: var(--text-color);
                                                                    font-weight: 600;
                                                                    text-transform: uppercase;
                                                                    margin-left: auto;
                                                                    font-size: 25px;
                                                                }
                                                                
                                                                .logo span {
                                                                    color: #971610;
                                                                    font-size: 15px;
                                                                }
                                                                /* Search Box */
                                                                
                                                                .search-box {
                                                                    max-width: 240px;
                                                                    width: 100%;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    column-gap: 0.7rem;
                                                                    padding: 8px 15px;
                                                                    background-color: var(--search-color);
                                                                    border-radius: 4rem;
                                                                    margin-right: 1rem;
                                                                }
                                                                
                                                                .search-box .bx {
                                                                    font-size: 1.1rem;
                                                                }
                                                                
                                                                .search-box .bx:hover {
                                                                    color: var(--main-color);
                                                                }
                                                                
                                                                #search-input {
                                                                    width: 100%;
                                                                    border: none;
                                                                    outline: none;
                                                                    color: var(--text-color);
                                                                    background: transparent;
                                                                    font-size: 0.938rem;
                                                                    text-align: end;
                                                                }
                                                                /* Language */
                                                                /* CSS */
                                                                
                                                                .language-toggle {
                                                                    width: 80px;
                                                                    /* border: 1px solid #ccc; */
                                                                    border-radius: 20px;
                                                                    padding: 5px 10px;
                                                                    cursor: pointer;
                                                                    display: flex;
                                                                    justify-content: center;
                                                                    align-items: center;
                                                                    transition: background 0.3s;
                                                                }
                                                                
                                                                .toggle-button {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    gap: 6px;
                                                                    font-size: 14px;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                
                                                                .toggle-button img {
                                                                    width: 20px;
                                                                    height: 15px;
                                                                    border-radius: 2px;
                                                                }
                                                                /* User */
                                                                
                                                                .user {
                                                                    display: flex;
                                                                    margin-right: 10px;
                                                                }
                                                                
                                                                .user-img {
                                                                    width: 45px;
                                                                    height: 45px;
                                                                    border-radius: 50%;
                                                                    object-position: center;
                                                                }
                                                                /* Navbar */
                                                                
                                                                .navbar {
                                                                    position: fixed;
                                                                    top: 50%;
                                                                    transform: translateY(-50%);
                                                                    right: 25px;
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    row-gap: 2.1rem;
                                                                }
                                                                
                                                                .nav-link {
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    align-items: center;
                                                                    color: #b7b7b7;
                                                                }
                                                                
                                                                .nav-link:hover,
                                                                .nav-active {
                                                                    color: white;
                                                                    transition: 0.3s all linear;
                                                                    transform: scale(1.1);
                                                                }
                                                                
                                                                .nav-link .bx {
                                                                    font-size: 1.6rem;
                                                                }
                                                                
                                                                .nav-link-title {
                                                                    font-size: 0.7rem;
                                                                }
                                                                /* Home */
                                                                
                                                                .home {
                                                                    position: relative;
                                                                    min-height: 470px;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    margin-top: 5rem !important;
                                                                    border-radius: 0.5rem;
                                                                }
                                                                
                                                                .home-img {
                                                                    position: absolute;
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    z-index: -2;
                                                                    object-fit: cover;
                                                                    border-radius: 0.5rem;
                                                                }
                                                                
                                                                .overlay {
                                                                    position: absolute;
                                                                    /* top: 0;
    left: 0; */
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    background: rgba(0, 0, 0, 0.541);
                                                                    /* اللون الأسود بخلفية شفافة */
                                                                    z-index: -1;
                                                                }
                                                                
                                                                .home-text {
                                                                    padding-right: 40px;
                                                                    width: 100%;
                                                                    text-align: end;
                                                                }
                                                                
                                                                .home-title {
                                                                    font-size: 2rem;
                                                                    font-weight: 600;
                                                                }
                                                                
                                                                .home-text p {
                                                                    font-size: 1.5rem;
                                                                    font-weight: 500;
                                                                    margin: 10px 0 20px;
                                                                    /* color: var(--main-color); */
                                                                }
                                                                
                                                                .watch-btn {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    column-gap: 0.8rem;
                                                                    color: var(--text-color);
                                                                    justify-content: end;
                                                                }
                                                                
                                                                .watch-btn .bx {
                                                                    font-size: 21px;
                                                                    background: var(--main-color);
                                                                    width: 40px;
                                                                    height: 40px;
                                                                    border-radius: 50%;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                }
                                                                
                                                                .watch-btn span {
                                                                    font-size: 1rem;
                                                                    font-weight: 400;
                                                                    text-decoration: underline;
                                                                }
                                                                /* Heading */
                                                                
                                                                .heading {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: space-between;
                                                                    background: var(--search-color);
                                                                    padding: 8px 14px;
                                                                    /* border: 1px solid hsl(200 100% 99% / 5%); */
                                                                    /* margin-bottom: 2rem; */
                                                                }
                                                                
                                                                .heading-title {
                                                                    font-size: 1.2rem;
                                                                    font-weight: 600;
                                                                }
                                                                /* Movie Box */
                                                                
                                                                .popular {
                                                                    padding: 0rem 0 0 0;
                                                                }
                                                                
                                                                .movie-box {
                                                                    position: relative;
                                                                    width: 100%;
                                                                    height: 200px;
                                                                    overflow: hidden;
                                                                }
                                                                
                                                                .movie-box-img {
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    object-fit: cover;
                                                                }
                                                                
                                                                .movie-box .box-text {
                                                                    position: absolute;
                                                                    bottom: 0;
                                                                    left: 0;
                                                                    width: 100%;
                                                                    height: 100%;
                                                                    display: flex;
                                                                    flex-direction: column;
                                                                    justify-content: flex-end;
                                                                    padding: 14px;
                                                                    background: linear-gradient(8deg, hsl(238.15deg 17.27% 86.68% / 74%) 14%, hsl(240 17% 14% / 14%) 14%);
                                                                    overflow: hidden;
                                                                }
                                                                
                                                                .movie-title {
                                                                    font-size: 1.1rem;
                                                                    font-weight: 500;
                                                                }
                                                                
                                                                .movie-type {
                                                                    font-size: 0.938rem;
                                                                    color: red;
                                                                }
                                                                
                                                                .movie-box {
                                                                    position: relative;
                                                                    overflow: hidden;
                                                                }
                                                                
                                                                .movie-box-img {
                                                                    transition: transform 0.3s ease;
                                                                    /* تأثير سلاسي على الصورة */
                                                                }
                                                                /* عند التمرير على الصورة، سنقوم بإزالة الخلفية السوداء وتكبير الصورة قليلاً */
                                                                
                                                                .movie-box:hover .movie-box-img {
                                                                    transform: scale(1.1);
                                                                    /* تكبير الصورة قليلاً */
                                                                }
                                                                /* إضافة خلفية داكنة عند البداية */
                                                                
                                                                .movie-box::after {
                                                                    cursor: pointer;
                                                                    content: '';
                                                                    position: absolute;
                                                                    top: 0;
                                                                    left: 0;
                                                                    right: 0;
                                                                    bottom: 0;
                                                                    background: rgba(0, 0, 0, 0.4);
                                                                    /* خلفية سوداء خفيفة */
                                                                    opacity: 1;
                                                                    /* الخلفية مرئية في البداية */
                                                                    transition: opacity 0.3s ease;
                                                                    /* تأثير سلاسي على الخلفية */
                                                                }
                                                                /* عند التمرير على الصورة، نخفي الخلفية السوداء */
                                                                
                                                                .movie-box:hover::after {
                                                                    opacity: 0;
                                                                    /* إخفاء الخلفية عند التمرير */
                                                                }
                                                                
                                                                .play-btn {
                                                                    position: absolute;
                                                                    bottom: 0.8rem;
                                                                    right: 0.8rem;
                                                                }
                                                                
                                                                .swiper-btn {
                                                                    display: flex;
                                                                }
                                                                
                                                                .swiper-button-next,
                                                                .swiper-button-prev {
                                                                    position: static !important;
                                                                    margin: 0 0 0 10px !important;
                                                                }
                                                                
                                                                .swiper-button-next::after,
                                                                .swiper-button-prev::after {
                                                                    color: var(--text-color);
                                                                    font-size: 18px !important;
                                                                    font-weight: 700;
                                                                }
                                                                /* Footer */
                                                                
                                                                .row {
                                                                    display: flex;
                                                                    flex-wrap: wrap;
                                                                    justify-content: end;
                                                                }
                                                                
                                                                .footer {
                                                                    text-align: end;
                                                                    background-color: black;
                                                                    padding: 70px 0;
                                                                    margin-top: 4rem;
                                                                }
                                                                
                                                                .footer-col {
                                                                    width: 30%;
                                                                    padding: 0 15px;
                                                                }
                                                                
                                                                .footer-col h4 {
                                                                    font-size: 18px;
                                                                    color: #ffffff;
                                                                    text-transform: capitalize;
                                                                    margin-bottom: 35px;
                                                                    font-weight: 500;
                                                                    position: relative;
                                                                }
                                                                
                                                                .footer-col h4::before {
                                                                    right: 0;
                                                                    content: '';
                                                                    position: absolute;
                                                                    bottom: -10px;
                                                                    background-color: var(--main-color);
                                                                    height: 2px;
                                                                    box-sizing: border-box;
                                                                    width: 50px;
                                                                }
                                                                
                                                                .footer-col ul li:not(:last-child) {
                                                                    margin-bottom: 10px;
                                                                }
                                                                
                                                                .footer-col ul li a {
                                                                    font-size: 16px;
                                                                    text-transform: capitalize;
                                                                    color: #ffffff;
                                                                    text-decoration: none;
                                                                    font-weight: 300;
                                                                    color: #bbbbbb;
                                                                    display: block;
                                                                    transition: all 0.3s ease;
                                                                }
                                                                
                                                                .footer-col ul li a:hover {
                                                                    color: var(--main-color);
                                                                    padding-left: 8px;
                                                                }
                                                                
                                                                .footer-col .social-links a {
                                                                    display: inline-block;
                                                                    height: 40px;
                                                                    width: 40px;
                                                                    background-color: rgba(51, 51, 51, 0.2);
                                                                    margin: 0 10px 10px 0;
                                                                    text-align: center;
                                                                    line-height: 40px;
                                                                    border-radius: 50%;
                                                                    color: #ffffff;
                                                                    transition: all 0.5s ease;
                                                                }
                                                                
                                                                .footer-col .social-links a:hover {
                                                                    color: white;
                                                                    background-color: var(--main-color);
                                                                }
                                                                
                                                                .footer-bottom a {
                                                                    color: var(--main-color);
                                                                }
                                                                
                                                                .footer-bottom {
                                                                    background-color: #000000;
                                                                }
                                                                
                                                                .app-download-links {
                                                                    display: flex;
                                                                    justify-content: center;
                                                                    /* أو space-between لو تحبهم يتباعدوا */
                                                                    align-items: center;
                                                                    gap: 10px;
                                                                    /* مسافة بين الصور */
                                                                    flex-wrap: wrap;
                                                                    /* لو الشاشة ضيقة، الصور تنزل تحت بعض */
                                                                }
                                                                
                                                                .store-icon {
                                                                    border-radius: 10px 10px;
                                                                    width: 130px;
                                                                    max-width: 100%;
                                                                    height: auto;
                                                                    transition: transform 0.3s ease;
                                                                }
                                                                
                                                                .store-icon:hover {
                                                                    transform: scale(1.05);
                                                                }
                                                                /*responsive*/
                                                                
                                                                @media(max-width: 767px) {
                                                                    .footer-col {
                                                                        width: 50%;
                                                                        margin-bottom: 30px;
                                                                    }
                                                                }
                                                                
                                                                @media(max-width: 574px) {
                                                                    .footer-col {
                                                                        width: 100%;
                                                                    }
                                                                }
                                                                
                                                                @media(max-width:1170px) {
                                                                    .navbar {
                                                                        bottom: 0;
                                                                        left: 0;
                                                                        right: 0;
                                                                        top: auto;
                                                                        transform: translateY(0);
                                                                        flex-direction: row;
                                                                        justify-content: space-evenly;
                                                                        row-gap: 1px;
                                                                        padding: 10px;
                                                                        border-top: 1px solid hsl(200 100% 99% / 5%);
                                                                        background: #19191a
                                                                    }
                                                                    .nav-link .bx {
                                                                        font-size: 1.5rem;
                                                                    }
                                                                    .footer-bottom {
                                                                        padding-bottom: 70px;
                                                                        text-align: center;
                                                                        background-color: #000000;
                                                                    }
                                                                }
                                                                
                                                                @media(max-width:1060px) {
                                                                    .container {
                                                                        margin: 0 auto;
                                                                        width: 95%;
                                                                    }
                                                                }
                                                                
                                                                @media(max-width:888px) {
                                                                    .nav {
                                                                        padding: 14px 0;
                                                                    }
                                                                    .home {
                                                                        min-height: 440px;
                                                                        margin-top: 4rem !important;
                                                                    }
                                                                    .home-text {
                                                                        padding-right: 25px;
                                                                    }
                                                                    .home-title {
                                                                        font-size: 1.6rem;
                                                                    }
                                                                    .watch-btn span {
                                                                        font-size: 0.9rem;
                                                                    }
                                                                }
                                                                /* For Medium Devices */
                                                                
                                                                @media(max-width:768px) {
                                                                    .nav {
                                                                        padding: 11px 0;
                                                                    }
                                                                    .logo {
                                                                        font-size: 1.2rem;
                                                                    }
                                                                    section {
                                                                        padding: 2rem 0;
                                                                    }
                                                                    .movie-type,
                                                                    p {
                                                                        font-size: 0.875rem;
                                                                    }
                                                                    .home-text p {
                                                                        font-size: 1.1rem;
                                                                    }
                                                                }
                                                                
                                                                @media(max-width:514px) {
                                                                    .home {
                                                                        min-height: 380px;
                                                                    }
                                                                    .heading-title {
                                                                        font-size: 1rem;
                                                                    }
                                                                    .home-text p {
                                                                        width: 90%;
                                                                    }
                                                                    .footer {
                                                                        padding: 35px 0;
                                                                    }
                                                                }
                                                                
                                                                @media(max-width:420px) {
                                                                    * {
                                                                        scroll-padding-top: 5rem;
                                                                    }
                                                                    .nav {
                                                                        display: grid;
                                                                        grid-template-columns: 1fr;
                                                                        grid-template-rows: 1fr 1fr;
                                                                        row-gap: 5px;
                                                                    }
                                                                    .search-box {
                                                                        max-width: 100%;
                                                                        width: 100%;
                                                                        border-radius: 4px;
                                                                        order: 3;
                                                                        grid-column-start: 1;
                                                                        grid-column-end: 3;
                                                                    }
                                                                    .home {
                                                                        margin-top: 7rem !important;
                                                                    }
                                                                }
                                                                /* For small device */
                                                                
                                                                @media(max-width:370px) {
                                                                    .home {
                                                                        min-height: 300px;
                                                                    }
                                                                    .user-img,
                                                                    .watch-btn .bx {
                                                                        width: 35px;
                                                                        height: 35px;
                                                                    }
                                                                    .navbar {
                                                                        justify-content: space-around;
                                                                        padding: 8px 0;
                                                                    }
                                                                    .watch-btn .bx {
                                                                        font-size: 1.4rem;
                                                                    }
                                                                }