/* fonts */
@font-face {
    font-family: "Zain";
    src: url("../fonts/Zain-Bold.woff2") format("woff2"),
        url("../fonts/Zain-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zain";
    src: url("../fonts/Zain-Regular.woff2") format("woff2"),
        url("../fonts/Zain-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url("../fonts/IBMPlexSansArabic-Bold.woff2") format("woff2"),
        url("../fonts/IBMPlexSansArabic-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-clr: #fe7327;
    --secondry-clr: #333333;
    --light-clr: #888888;
    --white-clr: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::selection {
    background-color: #3e3e3e;
    color: #fff;
}

a {
    text-decoration: none;
    display: inline-block;
}

button:focus {
    outline: none;
}

img {
    max-width: 100%;
    user-select: none;
}

input:focus,
textarea:focus {
    outline: none;
}

body {
    font-family: "Zain";
    direction: rtl;
    scroll-behavior: smooth;
    background: #f5f5f5;
}
body.darkmode {
    background-color: #141414;
    color: #fff;
}

/* ----------------------utilities------------------ */

/* colors */
.primary-clr {
    color: var(--primary-clr);
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.primary-clr-hover:hover {
    color: var(--primary-clr) !important;
}

.secondry-clr {
    color: var(--secondry-clr);
    transition: 0.2s;
}

.secondry-clr-hover:hover {
    color: var(--secondry-clr);
}

.primary-back {
    background-color: var(--primary-clr);
    transition: 0.2s;
}

.primary-back-hover:hover {
    background-color: var(--primary-clr);
}

.secondry-back {
    background-color: var(--secondry-clr);
    transition: 0.2s;
}

.secondry-back-hover:hover {
    background-color: var(--secondry-clr);
}

.light-text {
    color: #4a4949;
    font-weight: 300;
}

/* font sizes */
.font-18 {
    font-size: 18px;
}
.font-19 {
    font-size: 19px;
}
.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

/* shadow */
.shadow-box {
    box-shadow: 0px 20px 30px 1px rgb(0, 0, 0, 3%);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fit-content {
    width: fit-content;
}

/* navbar */
.color-mode {
    background-color: var(--primary-clr);
    color: #fff;
    width: 50px;
    height: 35px;
    transition: 0.4s;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border: 1px solid var(--primary-clr);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    cursor: pointer;
}

.color-mode:hover {
    color: var(--primary-clr);
    background-color: #fff;
}

.contact-us {
    height: 35px;
    background-color: var(--secondry-clr);
    color: #fff;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border: 1px solid var(--secondry-clr);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.contact-us:hover {
    color: var(--secondry-clr);
    background-color: #fff;
}

.darkmode .navbar {
    background-color: #1e1e1e;
}

.navbar-brand img{
    width: 116px;
    height: 41px;
}


.darkmode .navbar-brand i{
    color:#fff;
}


.navbar-search .category .dropdown button {
    background-color: var(--secondry-clr);
    border-radius: 0 6px 6px 0;
    -webkit-border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    -ms-border-radius: 0 6px 6px 0;
    -o-border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
}

.navbar-search .input-search {
    background: #1e1e1e17;
    border-radius: 6px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.darkmode .navbar-search .input-search {
    background-color: #141414;
    color: #fff;
}

.darkmode .navbar-search .input-search input {
    color: #fff;
}

.navbar-search form {
    display: block;
    width: 100%;
}

.navbar-search .input-search {
    flex-grow: 3;
}

@media (min-width: 991px) {
    .navbar-search .input-search {
        width: 400px;
    }
}

.navbar-search .input-search input {
    border: 0;
    height: 100%;
    background: transparent;
    padding-right: 10px;
    flex-grow: 3;
    height: 35px;
    display: block;
    width: 100%;
}

.navbar-search .input-search i {
    color: var(--primary-clr);
}

.navbar-search .input-search i {
    cursor: pointer;
}

.programs-cates {
    border-top: 1.5px solid #1e1e1e31;
}

@media (min-width: 991px) {
    .programs-cates .navbar-nav {
        gap: 35px;
    }
}

.programs-cates .nav-link {
    color: var(--light-clr);
    position: relative;
}

@media (min-width: 1199px) {
    .programs-cates .nav-link:hover::before,
    .programs-cates .nav-link.active::before {
        content: "";
        width: 100%;
        background-color: var(--primary-clr);
        height: 2px;
        top: -10px;
        position: absolute;
        left: 50%;
        transform: translateX(-54%);
    }
}

.programs-cates .nav-link:hover,
.programs-cates .nav-link.active,
.programs-cates .nav-link:focus {
    color: var(--primary-clr);
}

@media (max-width: 991px) {
    .programs-cates .navbar-nav {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
    .programs-cates .nav-item {
        flex-basis: 50%;
        margin-bottom: 12px;
    }
}

.programs-cates .nav-link path {
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.programs-cates .nav-link path,
.programs-cates .nav-link path {
    fill: var(--light-clr);
}

.programs-cates .nav-link:hover path,
.programs-cates .nav-link:focus path,
.programs-cates .nav-link.active path {
    fill: var(--primary-clr);
}

/* program box */
.program-box {
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.darkmode .program-box {
    background-color: #ffffff1c !important;
}

.program-box.small-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.small-box .program-image {
    position: relative;
    min-height: 161px;
}

.film-box {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--secondry-clr);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}
 
 
 .blog-box.film-box{
     justify-content:flex-start;
 }
 
.blog-box.film-box .program-image img{
    height:200px;
}

.film-box:hover {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    background-color: var(--secondry-clr);
    color: #fff;
}

.darkmode .film-box {
    color: #fff !important;
}

.film-box .program-image {
    position: relative;
    height: 250px;
}

.film-box .program-image img {
    width: 93%;
    height: 93%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 15px;
}

.program-image img {
    z-index: 1;
    width: 93%;
    height: 93%;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.program-image .blur-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 0;
    filter: blur(16px);
    -webkit-filter: blur(16px);
}

.program-info {
    padding: 10px;
}

.program-info span {
    font-size: 18px;
    font-weight: bold;
}

.program-info svg {
    margin-left: 12px;
}

.program-info a {
    padding: 5px 15px;
    background: var(--primary-clr);
    border-radius: 10px;
    color: #fff;
}

.footer-1 {
    color: #fff;
    padding-top: 20px;
    background-color: var(--secondry-clr);
}

.footer-copyright {
    background-color:#000;
}

.footer-copyright p {
    margin: 0;
    padding: 10px;
}

.footer-1 .widget-title {
    margin-bottom: 12px;
}

.ad img {
    max-width: 100%;
}
.pager .pagination {
    display: flex;
    gap: 5px;
}
.pager li.page-item .page-link {
    width: 32px;
    height: 32px;
    border: 1px solid var(--light-clr);
    border-radius: 7px;
    background-color: var(--secondry-clr);
    color: #c9c9c9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pager li.page-item.active .page-link {
    color: #fff;
    border-color: var(--primary-clr);
    background-color: var(--primary-clr);
}

.pager .page-item.disabled .page-link {
    background-color: #626262;
    cursor: not-allowed;
}

/* download page */
.download-box {
    margin: auto;
    border-radius: 13px;
    border: 1px solid #e4e4e4;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 20px;
}

.download-image-box {
    width: 330px;
    border-radius: 52px;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
}
@media (min-width: 991px) {
    .download-box {
        width: 900px;
    }
}

@media (min-width: 1199px) {
    .download-box {
        width: 1150px;
    }
}

@media (min-width: 1300px) {
    .download-box {
        width: 1150px;
    }
}

.download-box .app-info {
    font-size: 22px;
    color: var(--secondry-clr);
}

.app-info h3 {
    color: var(--secondry-clr);
}
.top-app {
    display: flex;
    list-style: none;
    font-size: 20px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    color: var(--primary-clr);
}

.top-app a {
    color: var(--primary-clr);
    background: #ffeee5;
    padding: 5px 10px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.download-box .downloadButton {
    background-color: var(--secondry-clr);
    color: #fff;
    border-radius: 7px;
    width: fit-content;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--secondry-clr);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.download-box .downloadButton:hover {
    background-color: transparent;
    color: var(--secondry-clr);
}

.suggest-programs .suggection a {
    color: var(--secondry-clr) !important;
}

.darkmode .suggest-programs .suggection a {
    color: #fff !important;
}

/* Ad style */
.img-ad {
    width: 542px;
    display: block;
    direction: rtl;
    text-align: right;
    right: 0;
    position: absolute;
}

.suggest-progs > img {
    width: 15%;
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
}

.suggest-progs a:hover span {
    color: var(--primary-clr);
}

/* ============================ 404 page ============================ */
.page-404 {
    background-color: #1e1e1e;
    text-align: center;
    height: 100vh;
}

.page-404 .logo {
    padding: 15px;
}

.page-404 p {
    font-size: 25px;
    margin-bottom: 35px;
}

.page-404 p span {
    color: #fff;
    font-size: 19px;
}

.section-404 {
    position: absolute;
    top: 70px;
    width: 100%;
    height: 100%;
    right: 0;
    padding-top: 22px;
    background-color: #141414;
    border-radius: 50px 50px 0 0;
    -webkit-border-radius: 50px 50px 0 0;
    -moz-border-radius: 50px 50px 0 0;
    -ms-border-radius: 50px 50px 0 0;
    -o-border-radius: 50px 50px 0 0;
}

.section-404 a {
    color: #fff;
    margin-top: 30px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
