@font-face {
    font-family: 'Bahij-Janna';
    src: url('../fonts/bahij/BahijJanna.eot');
    src: url('../fonts/bahij/BahijJanna.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahij/BahijJanna.woff2') format('woff2'),
    url('../fonts/bahij/BahijJanna.woff') format('woff'),
    url('../fonts/bahij/BahijJanna.ttf') format('truetype'),
    url('../fonts/bahij/BahijJanna.svg#BahijJanna') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bahij-Janna-bold';
    src: url('../fonts/bahij/BahijJanna-Bold.eot');
    src: url('../fonts/bahij/BahijJanna-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahij/BahijJanna-Bold.woff2') format('woff2'),
    url('../fonts/bahij/BahijJanna-Bold.woff') format('woff'),
    url('../fonts/bahij/BahijJanna-Bold.ttf') format('truetype'),
    url('../fonts/bahij/BahijJanna-Bold.svg#BahijJanna-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeoSansArabic';
    src: url('../fonts/NeoSansArabic.ttf');

}
@font-face {
    font-family: 'LamaSans';
    src: url('../fonts/LamaSans-SemiBold.otf');

}

/******************************/
/******************************/
:root {
    --main: rgba(42, 39, 93, 1);
    --sec: rgba(108, 73, 206, 1);
     --gray: #525252;
    --black: #000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}
/* تغيير شكل الـ Scrollbar */
::-webkit-scrollbar {
    width: 10px; /* عرض الشريط الجانبي */
    height: 10px; /* ارتفاع الشريط الجانبي (للتمرير الأفقي) */
}

/* تغيير شكل الشريط الذي يتحرك (الجزء الذي يتم تحريكه داخل الـ scrollbar) */
::-webkit-scrollbar-thumb {
    background-color:var(--white); /* لون الشريط */
    border-radius: 10px; /* تدوير الحواف */
    border: 2px solid #ffffff; /* إضافة حد حول الشريط */
}

/* تغيير شكل الشريط الذي يحتوي على الـ scrollbar (المسار) */
::-webkit-scrollbar-track {
    background-color: var(--main); /* لون المسار */
    border-radius: 10px; /* تدوير الحواف */
}

/* تأثير التمرير عند المرور فوق الشريط */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--white); /* تغيير اللون عند التمرير فوق الشريط */
}

html {
    scroll-behavior: smooth;
}

html[dir="rtl"] body {
    direction: rtl;
}

html[dir="ltr"] body {
    direction: ltr;
}

body {
    font-family: 'LamaSans', serif;
    font-size: 18px;
    text-align: start;
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: bold;
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    list-style: none; /* إزالة الماركر */
    padding: 0; /* إزالة المسافة البادئة */
    margin: 0; /* إزالة المسافة الخارجية */
}

li {
    list-style: none; /* تأكيد إزالة الماركر على العناصر الفردية */
}
button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

.form-control:focus {
    border-color: #78b7bc;
    box-shadow: 0 0 0 0.2rem rgba(120, 183, 188, .25);
}
.head-btn{
    padding: 15px 12px;

    color: var(--main);
    background-color: transparent;
    border: 1px solid var(--main);
    position: relative;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.head-btn a {
    color: var(--main);
    transition: all 0.5s ease-in-out;

}
.head-btn:hover{
    color: var(--white);
}
.head-btn:hover a{
    transition: all 0.5s ease-in-out;

    color: var(--white);
}
.main-btn {
    padding: 10px 0;
    padding-inline-start: 20px;
    padding-inline-end: 95px;
    color: var(--main);
    background-color: transparent;
    border: 1px solid var(--main);
    position: relative;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

html[dir="rtl"] .main-btn:after {
    content: "\f060";
}

html[dir="ltr"] .main-btn:after {
    content: "\f061";
}

.main-btn:after {
    color: var(--main);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 15px;
    font-size: 20px;
    content: "\f060";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    transition: all 0.5s ease-in-out;
}

.main-btn:before {
    content: '';
    position: absolute;
    top: 0;
    inset: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);

}

.main-btn:hover {
    color: #fff;
    background-color: transparent;
    padding-inline-start: 95px;
    padding-inline-end: 20px;
    box-shadow: 5px 5px 7px rgba(1, 1, 1, .25);
}

.main-btn:hover:after {
    color: #fff;
    inset-inline-end: calc(100% - 35px);
}

.main-btn:hover:before {
    color: #fff;
    opacity: 1;
    visibility: visible;
    inset-inline-end: calc(100% - 35px);
}

.sec-tit {
    color: #000;
    margin-bottom: 30px;
    font-size: 34px;
}
.top-header{
    justify-content: space-between;
}
.header-icon{
    display: flex;
    align-items: center;

}
@media (max-width: 768px ) {
    .top-header{
        justify-content: center;
    }
}
/******************************/
.head-home {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(to bottom, #000, rgba(255,255,255,.2));
    transition: all 0.6s ease-out;
}

.stick {
    padding: 5px 0;
    position: fixed;
    z-index: 2;
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 30%);
}

.stick .nav-list .menu-item > a:has(img) {
    height: 105px;
}

.head-btn {
    text-align: center;
    padding: 7px 20px;
    color: var(--main);
    background-color: transparent;
    border: 1px solid var(--main);
    margin-inline-end: 10px;
    transition: all 0.5s ease-in-out;
}

.head-btn:hover {
    color: #fff;
    background-color: var(--sec);
}

.mobile-nav-list .head-btn {
    margin-top: 30px;
    margin-inline-end: 0
}

.lang {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--main);
    border: 1px solid var(--main);
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.lang:hover {
    color: #fff;
    background-color: var(--sec);
}

@media (min-width: 992px) {

}

@media (max-width: 768px) {
.head-logo{
    text-align: center;

}
}

/******************************/

@media (min-width: 992px) {

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .nav-list {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-list > .menu-item > a {
        display: flex;
        color: var(--main);
        padding: 10px 8px;
        font-size: 14px;

        font-weight: bold;
        transition: all 0.5s ease-in-out;
    }
    .head-home  .nav-list > .menu-item:not(.active) > a {
        color: #fff;
        text-shadow : rgba(0, 0, 0, 0.5) 3px 3px 3px;
    }
    .stick.head-home  .nav-list > .menu-item:not(.active) > a {
        color: var(--main);
    }
    .nav-list .menu-item > a:has(img) {
        height: 155px;
        transition: all 0.6s ease-out;
    }

    .nav-list .menu-item > a img {
        max-height: 100%;
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-inline-start: 5px;
        color: var(--main);
        transition: all .5s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--sec);
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: var(--sec);
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        inset-inline-start: 0;
        z-index: 4;
        min-width: 250px;
        background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.6s ease;
    }

    .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

    .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: #fff;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        content: "\f30a";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        content: "\f30b";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #fff;
        position: absolute;
        inset-inline-end: 0;
        transition: all 0.5s ease-in-out;
    }

    .sub-menu li a:hover {
        color: var(--sec);
        border-bottom: 1px solid var(--sec);
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: var(--sec);
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }


    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu-logo {
        height: 65px;
    }

    .menu-logo img {
        max-height: 100%;
    }

    .nav-list,
    .menu-item:has(img) {
        display: none;
    }

    .dd-trigger {
        display: inline-block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-btn {
        color: #fff;
        background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);

        width: 40px;
        height: 40px;
        margin-inline-start: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn:hover,
    .nav-btn:focus {
        background-color: var(--sec);
    }

    html[dir="ltr"] .mobile-nav-list {
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        inset-inline-start: 0;
        z-index: 6;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: auto;
        transition: all .5s linear;
    }
    .mobile-list {
        padding-inline-start: 0;
    }
    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid var(--sec);
    }

    .mobile-nav-list .menu-item:not(:last-of-type) a {
    }

    .mobile-nav-list .menu-item a {
        display: block;
        color: #000;
        padding: 15px;
        font-weight: bold;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item a:hover,
    .mobile-nav-list .menu-item.active a {
        color: #000;
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: #fff;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-inline-start: 1px solid #fff;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: #0e3340;
    }

    .sub-menu {
        list-style: none;
    }

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .mobile-nav-list .sub-menu a {
        padding: 15px 25px;
        background-color: var(-main)
    }

    .sub-menu .sub-menu a {
    }

    .trans-none {
        transform: none !important;
    }

    html[dir="ltr"] .nav-overlay {
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        transform: translateX(-100%);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        inset-inline-start: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .5s ease-in-out;
    }
}

/******************************/
.intro {
    position: relative;
    background-image: url("../images/bg-slider.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh   ;
}


.intro-body {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
}

.intro-btn {
    padding: 10px 0;
    padding-inline-start: 20px;
    padding-inline-end: 95px;
    color: #fff;
    background-color: transparent;
    /*border: 1px solid var(--main);*/
    position: relative;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

html[dir="rtl"] .intro-btn:after {
    content: "\f060";
}

html[dir="ltr"] .intro-btn:after {
    content: "\f061";
}

.intro-btn:after {
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 15px;
    font-size: 20px;
    content: "\f060";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    transition: all 0.5s ease-in-out;
}

.intro-btn:before {
    content: '';
    position: absolute;
    top: 0;
    inset: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    /*opacity: 0;*/
    /*visibility: hidden;*/
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);

}

.intro-btn:hover {
    color: #fff;
    background-color: transparent;
    padding-inline-start: 95px;
    padding-inline-end: 20px;
    box-shadow: 5px 5px 7px rgba(1, 1, 1, .25);
}

.intro-btn:hover:after {
    color: #fff;
    inset-inline-end: calc(100% - 35px);
}

.intro-btn:hover:before {
    color: #fff;
    /*opacity: 1;*/
    /*visibility: visible;*/
    inset-inline-end: calc(100% - 35px);
}

.count-down-timer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;

     border-radius: 5px;
 }

.count-down-block {
    color: #fff;
    text-align: center;
    padding: 12px;
    position: relative;
    background: linear-gradient(90deg, rgba(108,73,206,1) 0%, rgba(42,39,93,1) 100%);

}
html[dir="ltr"] .intro-counter .count-num{
    font-size: 28px;
    font-weight: 500;
    color: #fff;

}
.intro-counter .count-num{
    font-size: 34px;
    font-weight: 500;
     color: #fff;

}
html[dir="ltr"] .intro-counter .count-tit{
    font-size: 38px;
    font-weight: 500;
    color: #fff;
}
.intro-counter .count-tit{
    font-size: 48px;
    font-weight: 500;
    color: #fff;
}
html[dir="ltr"] .intro-content-tit{
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}
.intro-content-tit{
    font-size: 42px;
    font-weight: 600;
    color: #fff;
}
.intro-content-desc{
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

@media (min-width: 768px) {

    .count-down-block {
        padding: 10px 35px;
        font-size: 20px;
    }
}
@media (max-width: 992px){
    .intro-counter .count-num{
        font-size: 28px;
        font-weight: 500;
        color: #fff;

    }
    .intro-counter .count-tit{
        font-size: 34px;
        font-weight: 500;
        color: #fff;
    }
}
@media (max-width: 768px) {


    .count-down-block {
        padding: 0 15px;
        font-size: 24px;
    }
    .intro-counter .count-num{
        font-size: 24px;
        font-weight: 500;
        color: #fff;

    }
    .intro-counter .count-tit{
        font-size: 32px;
        font-weight: 500;
        color: #fff;
    }
    .intro-content-tit{
        font-size: 24px;

    }
    .intro-content-desc{
        font-size: 16px;

    }
    .count-down-timer{
        margin-bottom: 20px;
    }
    .header-icon{
        margin-top: 30px;
    }
}
@media (max-width: 500px) {
    .intro{
        height: 80vh;
    }
    .intro-counter .count-num{
        font-size: 12px;
        font-weight: 500;
        color: #fff;

    }
    .count-down-block{
        padding: 10px 5px;
    }
    .intro-content-tit {
        font-size: 16px;
    }
    .intro-counter .count-tit{
        font-size: 20px;
        font-weight: 500;
        color: #fff;
    }
}
/******************************/
.about {
    padding: 75px 0;
    background-image: url("../images/about-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
}

.about-data {
    margin-bottom: 40px;
}
.about-data-des{
    font-size: 18px;
}
.about-data-wrap {
    margin-bottom: 30px;
}
.about-items .tabs{
    padding-inline-start : 0;
}
.about-items .tabs li:not(:last-of-type) {
    margin-bottom: 15px;
}

.about-items .tabs li a {
    position: relative;
    z-index: 1;
    color: var(--main);
    display: block;
    border-radius: 10px;
    padding: 10px 15px;
    border: 1px solid  var(--main);
    transition: all .3s ease-in-out;
}

.about-items .tabs_item {
    padding: 50px 25px;
}

.about-item-body {
    color: var(--gray);
}

.about-items .tabs_item:not(:first-of-type) {
    display: none;
}

.about-items .tabs .current a,
.about-items .tabs a:hover {
    color: #fff;
}

.about-items .tabs a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);
    transition: all .3s ease-in-out;
}

html[dir="rtl"] .about-items .tabs a:after {
    content: "\f060";
    transform: translateY(-50%) rotate(-45deg);
}

html[dir="ltr"] .about-items .tabs a:after {
    content: "\f061";
    transform: translateY(-50%) rotate(45deg);
}

.about-items .tabs a:after {
    color: var(--main);
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    inset-inline-end: 15px;
    top: 50%;
    transition: all .3s ease-in-out;
}

.about-items .tabs .current a:before,
.about-items .tabs a:hover:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.about-items .tabs a:hover:after{
    color: #fff;
}
.about-items .tabs .current a:after {
    color: #fff;
    transform: translateY(-50%) rotate(0deg) !important;
}

.about-item-head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--main);
    font-size: 28px;
}

.about-item-icon {
    height: 35px;
}

.about-item-icon img {
    max-height: 100%;
    object-fit: contain;
    margin-inline-end: 10px;
}

.about-item-tit {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .about-data-img {
        text-align: end;
    }
}

@media (max-width: 768px) {
    .about-data-des{
        margin-bottom : 25px;
    }
    .about-data-img {
        text-align: center;
    }
    .about-items .tabs li a{
        padding: 10px 5px;
        font-size: 14px;
    }
}

/******************************/
/*sponsors-items-and-counter*/
/******************************/
.sponsors-items-and-counter{
    padding: 75px 0 150px;
    background-image: url("../images/counter-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
}
.counters {
    padding: 50px 0;
}

.all-count #counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.all-count #counter .item .icon{
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--primary);
}

.all-count #counter .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
html[dir="ltr"] .all-count #counter .item .content .text{
    font-size: 20px;

}

.all-count #counter .item .content{
    text-align: center;
}
.all-count #counter .item .content .count {
    font-family: 'Bahij-Janna-bold';

    font-weight: bold;
    margin-bottom: 5px;
    color: var(--main);
    text-shadow:
            -1px -1px 0 var(--white), /* الحافة من الجهة العلوية اليسرى */
            1px -1px 0 var(--white), /* الحافة من الجهة العلوية اليمنى */
            -1px  1px 0 var(--white), /* الحافة من الجهة السفلية اليسرى */
            1px  1px 0 var(--white); /* الحافة من الجهة السفلية اليمنى */
    font-size: 56px; /* حجم النص */

}
.all-count #counter .item .content .text{
    color: var(--main);
    font-size: 36px;
    text-shadow:
            -1px -1px 0 var(--white), /* الحافة من الجهة العلوية اليسرى */
            1px -1px 0 var(--white), /* الحافة من الجهة العلوية اليمنى */
            -1px  1px 0 var(--white), /* الحافة من الجهة السفلية اليسرى */
            1px  1px 0 var(--white); /* الحافة من الجهة السفلية اليمنى */
}
.sponsors .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
}
.sponsors .swiper-wrapper-sponsors{
    align-items: center;
}
.sponsors .swiper-slide:hover{
    transition: all .35s ease-in-out;
    box-shadow: 0 0 13px rgba(0,0,0,.46);
}
@media (max-width: 768px) {
    .all-count #counter{
        flex-wrap: wrap;
    }
    .all-count #counter .item{
        flex: 0 0 50%;
        max-width: 50%;
        justify-content: space-around;
        border-inline-end: none;
    }
    .all-count #counter .item .content {
        margin-inline-start: 5px;
    }
    html[dir="ltr"] .all-count #counter .item .content .text{
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    .all-count #counter .item .content {
        margin-inline-start: 10px;
    }
    .counters{
        padding: 50px 0 20px;
    }
    .all-count #counter .item .icon{
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
    .all-count #counter .item .icon img{
        max-width: 35px;
    }
    .all-count #counter .item .content .count{
        font-size: 32px;
    }
    .all-count #counter .item .content .text{
        font-size: 14px;
    }
    .all-count #counter .item{
        padding-inline-end: 5px;
        margin-bottom: 20px;
    }
}
/******************************/
/*bannerSwiper*/
/******************************/
.bannerSwiper {

    margin-top: -100px;
    max-width: 750px;
    margin-bottom: 150px;
}

.bannerSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* محاذاة المحتوى للأعلى */
    align-items: center;
     border-radius: 15px;

}

.bannerSwiper .swiper-slide img {
height: 300px;
    border-radius: 15px;
    margin-bottom: 15px;
}
.bannerSponsors-arrow{
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50% , -50%);
}
.bannerSponsors-arrow .swiper-button-prev, .bannerSponsors-arrow .swiper-button-next {
    background-color: transparent; /* لون الخلفية */
    color: var(--main); /* لون الأيقونة */
    border: 1px solid var(--main);
    border-radius: 10px; /* اجعل الأزرار دائرية */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; /* حجم الأيقونة */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* تأثير الظل */
    transition: all 0.3s ease-in-out, all 0.3s ease-in-out;
}

.bannerSponsors-arrow .swiper-button-prev:hover, .bannerSponsors-arrow .swiper-button-next:hover {
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%); /* لون عند التحويم */
    transform: scale(1.1); /* تكبير الزر عند التحويم */
}
.bannerSponsors-arrow .swiper-button-prev:hover i , .bannerSponsors-arrow .swiper-button-next:hover i{
    color: var(--white);
    transition: all 0.3s ease-in-out;;
}
.bannerSponsors-arrow .swiper-button-prev::after,.bannerSponsors-arrow .swiper-button-next::after {
    content: ''; /* إزالة النص الافتراضي */
}

.bannerSponsors-arrow .swiper-button-prev i,.bannerSponsors-arrow  .swiper-button-next i {
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 24px;
}

.bannerSponsors-arrow .swiper-button-prev i::before {
    content: '\f177'; /* أيقونة السهم لليسار */
}

.bannerSponsors-arrow .swiper-button-next i::before {
    content: '\f178'; /* أيقونة السهم لليمين */
}
html[dir="ltr"] .bannerSponsors-arrow .swiper-button-prev i::before {
    content: '\f178'; /* أيقونة السهم لليسار */
}

html[dir="ltr"] .bannerSponsors-arrow .swiper-button-next i::before {
    content: '\f177'; /* أيقونة السهم لليمين */
}
@media (max-width: 768px) {
    .bannerSwiper{
        max-width: 550px;
    }
}
@media (max-width: 500px) {
    .bannerSwiper{
        max-width: 350px;
    }
    .bannerSwiper .swiper-slide img{
        height: 200px;
    }
}
/******************************/
/*video-container*/
/******************************/
.video-speakers{
    background-image: url("../images/v-bg.jpg ");
    padding: 75px 0 ;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.video-container{
    padding: 0 0 50px;
}
.video-container-image{
    position: relative;
}
 .video-container-image .Play{
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translateX(-50%);
     animation: floatUpDown 2s infinite; /* مدة الحركة 2 ثانية وتكرار مستمر */

 }
@keyframes floatUpDown {
    0%, 100% {
        transform: translate(-50%,-55%); /* الحالة الأولية */
    }
    50% {
        transform: translate(-50% , -50%); /* التحرك للأعلى بمقدار 10px */
    }
}
.video-container-image > img{
    width: 100%;
    border-radius: 10px;
}
@media (max-width: 500px) {
    .video-container-image .Play img{
width: 50px;
        height: 50px;
    }
}
/******************************/
/*programs*/
/******************************/

#programs-tabs{
    padding: 15px;
    border-radius: 10px;
    background: var(--white);
    width: 350px;
    margin: 0 auto;
}
.programs-tabs-li{
    display: flex;
    align-items: center;
    margin: 0 10px;
    padding: 10px;
    font-size: 16px;
 }
.programs-tabs-li i{
    color: var(--main);
    margin-inline-end: 5px;
    font-size: 24px;
}
.programs-tabs-li.activeGallery{
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);
    border-radius: 10px;
}
.programs-tabs-li.activeGallery i {
    color: var(--white);
}
.f-distribution-column{
    flex-direction: column;
}
.message-tit {
    color: var(--main);
}
.message-date {
    color: var(--main);
}
.programs-tabs-li.activeGallery .message-tit{
    color: var(--white);
}
.programs-tabs-li.activeGallery .message-date{
    color: var(--white);
}

.programs-imgs.programs-imgs18{
    counter-reset: item; /

}
.programs-imgs.programs-imgs19{
    counter-reset: item; /

}
.programs-imgs .programs-num {
    position: relative; /* لتحديد مكان الخط */
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    display: inline-block;
    font-weight: bold;
    font-size: 24px;
}

 .programs-contents .programs-imgs  .row .programs-items-row .programs-num::after   {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 65px; /* طول الخط بين الدوائر */
    background-color: var(--white);
    transform: translateX(-50%);
}
.programs-contents .programs-imgs  .row .programs-items-row .programs-num.last-item::after{
    display: none;
}



.programs-imgs.programs-imgs18 .programs-num::before {
    content: counter(item, decimal-leading-zero); /* إضافة الرقم بترتيب تصاعدي */
    counter-increment: item; /* زيادة العد لكل عنصر */

}
.programs-imgs.programs-imgs19 .programs-num::before {
    content: counter(item , decimal-leading-zero); /* إضافة الرقم بترتيب تصاعدي */
    counter-increment: item; /* زيادة العد لكل عنصر */

}
.programs-contents {
    position: relative;
}
.programs-content {
    background: var(--white);
    padding: 15px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}


.show-more {
    padding: 10px 0;
    padding-inline-start: 20px;
    padding-inline-end: 95px;
    color: #fff;
    background-color: transparent;
    /*border: 1px solid var(--main);*/
    position: relative;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

html[dir="rtl"] .show-more:after {
    content: "\f060";
}

html[dir="ltr"] .show-more:after {
    content: "\f061";
}

.show-more:after {
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 15px;
    font-size: 20px;
    content: "\f060";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    transition: all 0.5s ease-in-out;
}

.show-more:before {
    content: '';
    position: absolute;
    top: 0;
    inset: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    /*opacity: 0;*/
    /*visibility: hidden;*/
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);

}

.show-more:hover {
    color: #fff;
    background-color: transparent;
    padding-inline-start: 95px;
    padding-inline-end: 20px;
    box-shadow: 5px 5px 7px rgba(1, 1, 1, .25);
}

.show-more:hover:after {
    color: #fff;
    inset-inline-end: calc(100% - 35px);
}

.show-more:hover:before {
    color: #fff;
    /*opacity: 1;*/
    /*visibility: visible;*/
    inset-inline-end: calc(100% - 35px);
}
.programs-content .tit{
color: #242424;
    margin-bottom: 5px;
}
.programs-content .desc{
    color: #242424;
}
.show-more-btn{
    margin: 0 auto;
    display: table;
}
/******************************/
/*speakers*/
/******************************/

.speakers {
    padding: 95px 0;
    background-color: #2b285f;

}

.speakerNav-item-thumb {
    position: relative;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}



.speakerNav-item-thumb img {
    height: 250px;
    width: 100%;
    border-radius: 10px;
}

.speakerNav-item-body {
    text-align: center;
}
.speakerNav-item-job{
    font-size: 14px;
}
.speakerNav-item-job ,.speaker-item-job {
    color: #fff;
}
.speaker-item-job{
    font-size: 18px;
    font-weight: bold;
}
.speakerNav-item-tit{
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: bold;
}
.speakerNav-item-job {

    color: #fff;
}

.speaker-item-des {
    color: #d0d6d4;
    font-size: 16px;
}
.speakers-carousel-nav .slick-slide {
    margin-right: 10px; /* يمكنك تغيير هذا الرقم حسب المسافة المطلوبة */
}
.speakers-carousel-nav .slick-dots {
    display: flex;
    justify-content: center;
}

.speakers-carousel-nav .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 50px;
    height: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: transparent;
    position: relative;
}

.speakers-carousel-nav .slick-dots li button:before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: var(--white);
}

.speakers-carousel-nav .slick-dots li.slick-active button:before {
    background-color: var(--sec);
    border-radius: 10px;
    transition: all .35s ease-in-out;
}

@media (min-width: 768px) {
    .speakers-carousel-nav .slick-dots {
        width: 200%;
        position: absolute;
        right: 0;
        left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .speakers-carousel-nav .slick-dots {
        margin: 30px 0;
    }
    .speakers-carousel-nav .slick-dots{
        display: none !important;
    }
}
/******************************/
.location {
    padding: 95px 0 70px 0;

}

.location-sec-widget-tit {
    margin-bottom: 25px;
}

.location-item:not(:last-of-type) {
    margin-bottom: 25px;
}

.location-item {
    padding: 25px;
    color: #fff;
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);
    border-radius: 10px;
    box-shadow: 5px 5px 7px rgba(1, 1, 1, 0.25);
}

.location-item-icon {
    -ms-flex: 0 0 72px;
    flex: 0 0 72px;
    max-width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    margin-inline-end: 15px;
}

.location-item-icon img {
    max-height: 100%;
}

.location-item-data {
    width: calc(100% - 87px);
}

.map {
}

.map iframe {
    display: block;
    width: 100%;
    height: 375px;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .location-item {
        margin-inline-end: -35px;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 992px) {
    .location-items {
        margin-bottom: 30px;
    }
    .text-white{
        color: var(--main) !important;
    }
}
@media (max-width: 768px) {
    .location{
        padding: 50px 0 ;
    }
    .programs-contents .programs-imgs .row .programs-items-row .programs-num::after{
        height: 75px;
    }
}
/******************************/
footer {
    padding: 55px 0 75px 0;
    background-image: url("../images/footer.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.footer-logo {
    margin-bottom: 45px;
}

.footer-logo img {
    max-height: 100%;
}

.social-media {
    margin-bottom: 25px;
}

.social-media a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.social-media a:not(:last-of-type) {
    margin-inline-end: 10px;
}

.social-media a:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);
    transition: all .3s ease-in-out;
}

.social-media a:hover {
    border-color: transparent;
}

.social-media a:hover:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.footer-list {
    margin-bottom: 30px;
}
.footer-list ul{
    padding : 0;
}
.footer-list ul li a {
    color: var(--main);
    transition: all .3s ease-in-out;
}

.footer-list ul li a:hover {
    color: var(--sec);
}
.footer-copyright {
    color: #fff;
    margin-bottom : 30px;
}

.footer-copyright a {
    color: #392f77;
}
.footer-des ,
.footer-des a {
    color: #fff;
}
.go-top {
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    inset-inline-start: 30px;
    z-index: 2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background:linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
}

.go-top:hover {
    color: #fff;
    background-color: var(--sec);
 }

.go-top.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


.go-top:hover i {
    animation: toTopFromBottom 0.3s ease-in-out;
}

@keyframes toTopFromBottom {
    0% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes toTopFromBottom {
    0% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .footer-list ul li {
        display: inline-block;
    }
    .footer-list ul li:not(:last-of-type) {
        margin-inline-end: 55px;
    }
}

@media (max-width: 992px) {
    .footer-list ul{
        column-count: 2;
    }
    .footer-list ul li {
        display: block;
    }
    .footer-list ul li:not(:last-of-type) {
        margin-bottom: 5px;
    }
    .footer-copyright{
        font-size: 16px;
    }
}

/******************************/
.breadcrumb-area {
    padding: 15px 0;
    color: #fff;
    background: linear-gradient(90deg, rgba(42,39,93,1) 0%, rgba(108,73,206,1) 100%);
}

.breadcrumb-area a {
    color: #f2fffb;
}


/* تنسيق الـ label */
.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

/* تنسيق الـ input */
.form-input {
    width: 100%;
    direction: rtl;
    margin-bottom: 5px;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray);
    text-align: right;
    background-color: #f9f9f9;
    transition: border 0.3s ease, background-color 0.3s ease;
}
html[dir="ltr"] .form-input{
    direction: ltr;
    text-align: left;
}
/* تأثير الـ focus على الـ input */
.form-input:focus {
    outline: none;
    border-color: var(--main); /* يمكن تغيير اللون */
    background-color: #fff;
}

/* تأثير عند المرور على الـ label */
.form-label:hover {
    color: var(--main);
}

/* تنسيق عند ترك الـ input */
.form-input:disabled {
    background-color: #f1f1f1;
    border-color: #ddd;
}

/* تحسين تنسيق الـ placeholder */
.form-input::placeholder {
    color: #aaa;
    font-style: italic;
}



.file-upload-container {
    position: relative;
    display: flex;
    align-items: center;
}

.file-input {
    display: none; /* إخفاء المدخل الافتراضي */
}

.file-upload-label {
    display: inline-block;
    background-color: var(--main);
    color: white;
    margin-inline-end: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.file-upload-label:hover {
    background-color: var(--sec);
}

.file-name {
    margin-left: 20px;
    font-size: 14px;
    color: #555;
    font-weight: bold;
}

.fa-upload {
    margin-right: 8px;
}
.form-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: center;
    background-color: var(--sec);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form-subtitle ,.form-title{
    color: var(--sec);;
}
 
html[dir="ltr"] .page-form.mt-4 form{
       direction: ltr;
    text-align: left; 
}
input[type="radio"] {
    appearance: none; /* إزالة التصميم الافتراضي */
    -webkit-appearance: none; /* دعم المتصفحات القديمة */
    -moz-appearance: none; /* دعم Firefox */
    width: 25px;
    height: 25px;
    background-color: #eee; /* لون الخلفية */
    border: 2px solid #888; /* إطار المربع */
    border-radius: 4px; /* زوايا مربعة */
    outline: none; /* إزالة الإطار عند التركيز */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* التأثير عند التمرير */
input[type="radio"]:hover {
    background-color: #ccc; /* لون مختلف عند التمرير */
}

/* عند التحديد */
input[type="radio"]:checked {
    background-color: var(--main); /* اللون عند الاختيار */
    border-color: var(--main); /* لون الإطار */
    position: relative; /* لضمان عرض علامة الصح */
}

/* علامة الصح */
input[type="radio"]:checked::after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 5px;
    left: 9px;
}
.form-group .radio-container{
        display: block;
}.radio-text{
    font-size:16px;
}