@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');


@font-face {
    font-family: 'Almarai-Regular';
    src: url('../Almarai-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.no-padding{
    padding: 0 !important;
}
html , body{
    overflow-x:hidden !important;
}
/* =========================================
   Manus Pro Page Loader - Scoped Styles
========================================= */

#manus-pro-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd58c 0%, #f1f8ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden; /* لمنع ظهور أي scrollbars خاصة باللودر */
}

#manus-pro-loader-wrapper.manus-pro-loader-hidden {
    opacity: 0;
    visibility: hidden;
}

#manus-pro-loader-wrapper .manus-pro-loader-container {
    text-align: center;
    position: relative;
}

/* Circles */
#manus-pro-loader-wrapper .manus-pro-loader-circles {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

#manus-pro-loader-wrapper .manus-pro-loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: manus-pro-loader-rotate 1.5s linear infinite;
}

#manus-pro-loader-wrapper .manus-pro-loader-circle:nth-child(1) {
    border-top-color: #fff;
    animation-duration: 1.5s;
}

#manus-pro-loader-wrapper .manus-pro-loader-circle:nth-child(2) {
    border-top-color: rgba(255, 255, 255, 0.7);
    animation-duration: 2s;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

#manus-pro-loader-wrapper .manus-pro-loader-circle:nth-child(3) {
    border-top-color: rgba(255, 255, 255, 0.4);
    animation-duration: 2.5s;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

@keyframes manus-pro-loader-rotate {
    to { transform: rotate(360deg); }
}

/* Book Icon */
#manus-pro-loader-wrapper .manus-pro-loader-book-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    animation: manus-pro-loader-pulse 2s ease-in-out infinite;
}

@keyframes manus-pro-loader-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Text Styles */
#manus-pro-loader-wrapper .manus-pro-loader-text {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    animation: manus-pro-loader-fadeInOut 2s ease-in-out infinite;
}

#manus-pro-loader-wrapper .manus-pro-loader-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-top: 10px;
}

@keyframes manus-pro-loader-fadeInOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Progress Bar */
#manus-pro-loader-wrapper .manus-pro-loader-progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

#manus-pro-loader-wrapper .manus-pro-loader-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 10px;
    width: 0%;
    animation: manus-pro-loader-loadProgress 3s ease-out forwards;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes manus-pro-loader-loadProgress {
    to { width: 100%; }
}

/* Dots */
#manus-pro-loader-wrapper .manus-pro-loader-dots {
    display: inline-block;
    margin-right: 5px;
}

#manus-pro-loader-wrapper .manus-pro-loader-dots span {
    animation: manus-pro-loader-blink 1.4s infinite;
    animation-fill-mode: both;
}

#manus-pro-loader-wrapper .manus-pro-loader-dots span:nth-child(2) { animation-delay: 0.2s; }
#manus-pro-loader-wrapper .manus-pro-loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes manus-pro-loader-blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

/* Particles */
#manus-pro-loader-wrapper .manus-pro-loader-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: manus-pro-loader-float 3s infinite ease-in-out;
}

@keyframes manus-pro-loader-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

/* Glow Effect */
#manus-pro-loader-wrapper .manus-pro-loader-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: manus-pro-loader-glow 3s ease-in-out infinite;
}

@keyframes manus-pro-loader-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.menu-logo img{
     max-width:200px;
 }

.swal-overlay{
    display:none !important;
}
.sec-fly{
     position: fixed;
    bottom: 10px;
    width: 300px;
    height: 70px;
    cursor: pointer;
    z-index: 99;
    background: #900c3f;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    transition: linear .4s;
    left: 10px;
    transform: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
html[dir="ltr"] .sec-fly{
    font-size: 13px;
}
.sec-fly button{
        width: 100%;
    height: 100%;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
        font-size: 30px;
}

#endorder:hover{
 background: #6c757d;
    transition:linear .4s;
}

.unwesores div{
        display: flex;
    justify-content: space-between;
}
.unwesores div a{
        color: #fff;
    border-bottom: 1px solid;
}













* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none !important;
    outline: none !important;
    border: none;
    list-style: none;
}


.certification-quiz{
    border: 2px solid #e1dfdf;
    padding: 20px 50px;
    margin: 30px 0;
    background: #f7f7f7;
    border-radius: 5px;
}
.certification-quiz h2{
    text-align: center;
    padding: 20px;
    /* border: 2px dashed #e7e7e7; */
    display: table;
    margin: 0px auto 0;
    background: var(--hover);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
.certification-quiz h3{
            margin: 20px 0 0;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    display: table;
    cursor: pointer;
}

.certification-quiz .answers{
        display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.certification-quiz .answers span{
        cursor: context-menu;
        padding:5px;
}
.certification-quiz .after-final{
        display: flex;
    align-items: center;
    gap: 5px;
}
.certification-quiz .choised{
    display: inline-flex;
    min-width: 70px;
    border: 1px dashed var(--hover);
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 5px;
}

.certification-quiz  .submit-quiz{
        margin: 20px 0;
}
.certification-quiz  .submit-quiz button{
        background: var(--hover);
    color: #fff;
    min-width: 100px;
    min-height: 40px;
    cursor: pointer;
}

.results-quiz h6 {
        margin: 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.results-quiz h6 i {
    color: var(--hover);
    font-size: 22px;
}

.results-quiz{
        visibility: hidden;
    height: 0;
    transition: linear .4s;
}

.goopen{
    visibility: visible;
    height: auto;
    transition: linear .4s;
}
.certification{
    position:relative;
}






































html {
    scroll-behavior: smooth;
}

p, h1, h2, h3:not(.slid-body h3), h4, h5, h6, ul, ol,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0;
}

img, iframe {
    max-height: 100%;
}

img:not(.slider img) {
    object-fit: contain;
}

button, li, a {
    transition: all 0.4s ease-in-out;
}
body , html{
    overflow-x: hidden;
    background-color: #F2F8FF;
}
html[dir='rtl'] body {
    font-family: 'Almarai-Regular';
    direction: rtl;
    text-align: right !important;
}

html[dir='ltr'] body {
    font-family: 'Almarai-Regular';
    direction: ltr;
    text-align: left !important;
}

main {
    position: relative;
    overflow: hidden;
}
.dropdown-toggle::after{
    display: none;
}
/* Colors */

:root {
    --main: #119C49;
    --hover: #FFD58C;
    --black: #000;
    --white: #fff;

}


/* Main Scroll Bar */

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #FFF;
}

body::-webkit-scrollbar-thumb {
    background: var(--hover);
    border-radius: 20px;
}

.swiper-pagination {
    margin-top: 40px;
    right: 0;
    display: flex;
    justify-content: start;
}

.main-slider .swiper-pagination {
    margin-top: 0;
    bottom: 50px;
    left: inherit;
    right: unset;
    transform: none;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #C8D2FF7D;
    margin: 0 5px !important;
    display: flex;
    align-items: center;
    border: 0px solid var(--main);
    border-radius: 50%;
    transition: all .35s ease-in-out;
}
.swiper-pagination-bullet:before{
    content: "";
    transition: all .35s ease-in-out;
    background: var(--hover);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 8px;
    opacity: 0;
}
.swiper-pagination-bullet-active::before {
    opacity: 1;
    width: 16px;



}

.swiper-pagination-bullet {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    border-color:  #8dc0e0;
}



.lang-switcher-modern {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    gap: 6px;
    padding: 0;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    align-items: center;
}
.lang-btn svg{
    width: 20px;
}
.lang-btn > svg:last-of-type{
    filter: brightness(0) saturate(100%) invert(29%) sepia(92%) saturate(1609%) hue-rotate(128deg) brightness(101%) contrast(87%);
    width: 25px;
}

.lang-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.chevron {
    transition: transform 0.3s ease;
}

.lang-switcher-modern:hover .chevron {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    min-width: 160px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 999;
}

.lang-switcher-modern:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 14px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-item:hover {
    background: var(--hover);
    color: #000;
}

.lang-short {
    font-size: 16px;
    font-weight: 700;
    min-width: 24px;
}

.lang-full {
    font-size: 14px;
}

.lang-item.active {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

/* أو لو عايز تنسيق مختلف */
.lang-item.active {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}





.library{
    padding: 80px 0 200px;
    position: relative;
}
.library-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url("../images/body-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.library:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background-image: url("../images/r-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.library:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 370px;
    background-image: url("../images/lyb-bg.png");
    background-size: 100% 100%;;
    background-repeat: no-repeat;
    z-index: 0;
}
.library-mainItem {
    position: relative;
    padding: 5px 5px 40px;
    border-radius: 20px;
    background: var(--white);
    transition: all .35s ease-in-out;
}

.library-mainItem:before {
    content: '';
    position: absolute;
    bottom: -38px;
    left: -5px;
    background-image: url("../images/shpae.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 110px;
    height: 118px;
    z-index: 0;
}
html[dir="ltr"] .library-mainItem:before{
    left: unset;
    right: -15px;
    transform: rotateY(145deg);
}

.library-mainItem .icon{
    margin-inline-end: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    color: var(--black);
    background-color: var(--hover);
}
.library-mainItem .icon a{
    color: var(--black);

}
.library-mainItem .icon-title .icon img{
    max-width: 40px;
}

.library-mainItem .library-img{
    margin-bottom: 10px;
}
.library-mainItem .library-img img{
    width: 100%;
    border-radius: 20px;
}
.library-mainItem .tit{
    font-size: 16px;
    color: var(--black);
    font-weight: bold;
    margin-bottom: 5px;
}
.library-mainItem .desc{
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
}
.library-mainItem .url{
    position: absolute;
    bottom: 12px;
    left: 10px;
}
.library-mainItem .url .icon-arrow{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--black);
    background: #D0D0D0;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    display: block;
}
.library-mainItem:hover .url .icon-arrow{
    background: var(--hover);
}
html[dir="ltr"] .library-mainItem .url{
    flex-direction: row-reverse;
}
html[dir="ltr"] .library-mainItem .url .icon-arrow{
    transform: rotate(-180deg);
}

.library-slider .owl-dots {
    position: absolute;
    bottom: -18%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.library-slider .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-radius: 50%;
    text-align: center;
    background: rgba(0,0,0,.6);
    transition: all .35s ease-in-out;
}

.library-slider .owl-dots .owl-dot.active {
    width: 20px;
    border-radius: 35px;
    background: var(--black);
    transition: all .35s ease-in-out;
}





























































/* loader */
#loader-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow: hidden;
  background: #232323;
    visibility:hidden;
    border-radius: 5px;
}

.wesooo{
    visibility:visible !important;
}
.no-js #loader-wrapper {
    display: none;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #0f0f0f;
    z-index: 9999;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
/*.loaded #loader-wrapper .loader-section.section-left {*/
/*    transform: translateX(-100%);*/
/*    transition: all 0.7s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);*/
/*}*/

/*.loaded #loader-wrapper .loader-section.section-right {*/
/*    transform: translateX(100%);*/
/*    transition: all 0.7s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);*/
/*}*/

.loaded .loader {
    opacity: 0;
    transition: all 0.4s ease-out;
}

/*.loaded #loader-wrapper {*/
/*    visibility: hidden;*/
/*    transform: translateY(-100%);*/
/*    transition: all 0.4s 1s ease-out;*/
/*}*/

.loader {
    /*animation: rotate 1s infinite;*/
    z-index: 99999;
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.loading {
    display: flex;
    animation: scalee1 3s;
}

.loading .dot {
    position: relative;
    width: 1em;
    height: 1em;
    margin: 0.8em;
    border-radius: 50%;
}

.loading .dot::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: wave 2s ease-out infinite;
}

.loading .dot:nth-child(1) {
    background: var(--hover);
}

.loading .dot:nth-child(1)::before {
    animation-delay: 0.2s;
}

.loading .dot:nth-child(2) {
    background: var(--hover);
}

.loading .dot:nth-child(2)::before {
    animation-delay: 0.4s;
}

.loading .dot:nth-child(3) {
    background: var(--hover);
}

.loading .dot:nth-child(3)::before {
    animation-delay: 0.6s;
}

.loading .dot:nth-child(4) {
    background: var(--hover);
}

.loading .dot:nth-child(4)::before {
    animation-delay: 0.8s;
}

.loading .dot:nth-child(5) {
    background: var(--hover);
}

.loading .dot:nth-child(5)::before {
    animation-delay: 1s;
}

@keyframes wave {
    50%, 75% {
        transform: scale(2.5);
    }
    80%, 100% {
        opacity: 0;
    }
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.4s ease-out;
}

/*.loaded #loader-wrapper {*/
/*    visibility: hidden;*/
/*    transform: translateY(-100%);*/
/*    transition: all 0.4s 1s ease-out;*/
/*}*/

#loader-wrapper img {
    z-index: 999999;
    width: 200px;
}

#loader-wrapper img {
    animation: scalee 2s;
    margin-bottom: 20px;
}

@keyframes scalee {
    from {
        transform: scale(0) rotateX(0deg);
    }
    to {
        transform: scale(1) rotateX(359deg);
    }
}

@keyframes scalee1 {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.search_lang {
    display: flex;
    align-items: center;
    gap: 10px;
}

.join {
    display: flex;
    min-width: 160px;
    height: 50px;
    background: var(--hover) !important;
    border-radius: 35px;
    padding: 0;
    align-items: center;
    font-weight: bold;
    color: #000 !important;
    margin-inline-end: 0;
    transition: all .5s ease;
    border: none;
    justify-content: center;
    position: relative;
}
.join span {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--main);
    border-radius: 50%;
    color: white;
    transition: all .4s ease-in-out;
}
.join:hover span , .show > .btn-secondary.dropdown-toggle span{
    right: 80%;
}
  .icosdsdsn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    color: var(--black);
    background-color: var(--hover);
}
.icosdsdsn a{
    color: #000;
}
html[dir="ltr"] .join span  {
    left: -20px;
    right: unset;
    transform: translateY(-50%) rotate(180deg);
}
 html[dir="ltr"] .main-btn:after{
    left: -20px;
    right: unset;
}
html[dir="ltr"] .join:hover span ,  html[dir="ltr"] .show > .btn-secondary.dropdown-toggle span ,html[dir="ltr"] .main-btn:hover:after{
    left: 85%;
    right: unset;
}

.search_lang a:not(:last-child) {
    margin-inline-end: 0px;
}

.main_search i,
.main_search:hover i {
    color: #000;
}
.search-box-outer.main_search i {
    background-image: url("../img/search-normal.png");
    font-size: 0;
    width: 100%;
    height: 100%;
    background-size: 23px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: -3px;
    margin-inline-end: -2px;

}
.join:hover {
    background: var(--hover);
    color: #FFF;
}

.main_search {
    background-color: var(--main);
    position: relative;
    overflow: hidden;
}

.lang a,
.header-cart, .header-wishlist {
    background: var(--hover);
}

.page-main .nav-tabs .nav-item.nav-item-icon {
    background-color: var(--main) !important;
    border-color: var(--main) !important;
}

.page-main .nav-tabs .nav-item.show .nav-link, .page-main .nav-tabs .nav-link.active {
    background-color: var(--hover) !important;
    border-color: var(--hover) !important;
}

.course-item {
    position: relative;
    height: 100%;
    padding: 15px;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    display: block;
    transition: all .4s ease-in-out;
}

.course-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.pay-item-thumb img {
    width: 100%;
    object-fit: none;
}

.btn-Convert-Html2Image {
    background: var(--main);
    padding: 12px;
    color: #FFF;
    border-radius: 50px;
}

.coubon h2 {
    margin-bottom: 15px;
}

.buttonwatched {
    margin-bottom: 40px;
}

.buttonwatched button {
    cursor: pointer;
    background: #DEDEDE;
}

.course-single-item i {
    padding: 0 20px;
    display: flex;
    margin-bottom: 10px;
}

.video-intro video {
    width: 100%;
}

.course-single-item {
    padding: 0 20px;
    display: flex;
    margin-top: 15px;
}
.accrdsecbody{
    border: 1px solid #dbd5d5;
    padding-bottom: 15px;
}
.course-single-item a {
    color: var(--main);
}
.course-detail-single-tit{
    display: flex;
    align-items: center;
    gap: 5px;
}
.buttonwatched button {
    width: 100%;
}

.end-cart-btn button {
    padding: 10px 15px;
    border: 1px solid var(--main) !important;
    background: var(--main) !important;
    color: #FFF !important;
    cursor: pointer !important;
}

.end-cart-btn button:hover {
    border: 1px solid var(--hover) !important;
    background: var(--hover) !important;
}


.course-item-actions button {
    border-color: var(--main) !important;
    background: var(--main) !important;
    color: #FFF !important;
    cursor: pointer !important;
}

.course-item-tit .price {
    color: red !important;
    margin-top: 15px;
}

.course-item-actions button:hover {
    border-color: var(--hover) !important;
    background: var(--hover) !important;
}

.course-item-tit {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 25px;
    border-bottom: 1px solid var(--hover);
    padding: 0 0 10px 0;
    color: #000;
    transition: all .5s ease-in-out;
}

.nav-item a {
    color: #000;
}

.addcart,
.addfav {
    cursor: pointer;
}

.head-inside {
    position: relative;
    z-index: 1;
    background-image: url(../img/bg-insideheader.png);
    padding: 20px 0 30px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background: #f1f8ff;
}
.pagetit{
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-size: 40px;
    font-weight: bold;
    color: var(--main) ;
    display: table;
}


.vismsgsec{

    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 0px;

}

.vis22{
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.vis22 svg{
    filter: brightness(0) saturate(100%) invert(29%) sepia(92%) saturate(1609%) hue-rotate(128deg) brightness(101%) contrast(87%);
}
.lefcis{

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;

}

.lefcis h4{

    font-weight: bold;
    font-size: 40px;
    color: var(--main) ;
    margin-bottom: 16px;

}
.lefcis p {

    color: #051A3B;
    width: 60%;
    font-size: 28px;
    margin-top: 20px;

}
.page-template-page-about .lefcis h4{
    font-size: 30px;
    margin-bottom: 20px;
}
.page-template-page-about .lefcis p{
    font-size: 16px;
    margin-top: 0px;
}

.content {
    padding: 70px 0   !important;
}

.vis22.vui2 .lefcis{
    height: auto;
}
.onrep{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.onrep p {
    width: 100%;
    margin: 0 !important;
}


.vismsgsecimg{
    margin-top:  0px;
}
.vismsgsecimg img{
    max-width: 400px;
    z-index: 1;
    position: relative;
}
.page-template-page-about .vismsgsecimg img{
    max-width: 100%;
    width: 100%;
}
.aftparg .container > .row{
    align-items: center;
}
.vismsgsecimg:after{
    content: " ";
    position: absolute;
    background-image: url(../img/bgaboutin.png);
    width: 400px;
    height: 400px;
    background-size: contain;
    right: 48px;
    bottom: -1px;
    z-index: 0;
    display: none !important;
}
.page-template-page-about .vismsgsecimg:after{
    width: 300px;
    height: 300px;
}
html[dir="ltr"] .vismsgsecimg:after{
    left: 48px;
    right: 0;
}
.vismsgsecimg:before{
    content: " ";
    background-image: url(../img/bgabotudgj.png);
    position: absolute;
    right: -20px;
    top: 140px;
    width: 120px;
    height: 112px;
    background-size: contain;
    background-repeat: no-repeat;
    animation-name: fa-bounce;
    animation-delay: var(--fa-animation-delay, 0);
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    display: none !important;
}
html[dir="ltr"] .vismsgsecimg:before{
    right: unset;
    left: -20px;
    transform: rotate(180deg);
    animation-name: fa-bounceoff;
}
html[dir="ltr"] .sdwed .vismsgsecimg{
    padding-inline-start:  0px;
    text-align: center;
}
.vis22.vui2{

    padding-inline-start: 20%;
}
.vismsgsecimg.secdsfsz:before{
    left: 40px;
    top: 140px;
    right: unset;
}
.vismsgsecimg.secdsfsz:after{
    left: 128px;
    bottom: -1px;
    right: unset;
}
html[dir="ltr"] .vismsgsecimg.secdsfsz:before{
    right: 40px;
    left: unset;
}
html[dir="ltr"] .vismsgsecimg.secdsfsz:after{
    right: 108px;
    bottom: -1px;
    left: unset;
}





.vismsgsecimg.secdsfsz #circleSection2{
    bottom: 0;
    right: -80px;
    left: unset;
}
html[dir="ltr"] .vismsgsecimg.secdsfsz #circleSection2{
    bottom: 0;
    left: -80px;
    right: unset;
}















.header-cart:hover, .header-wishlist:hover {
    color: #FFF;
}

.main_search, .lang a,
.header-cart, .header-wishlist {
    color: #051A3B;
    font-weight: 100;
    position: relative;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border: 1px solid #051A3B;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline-end: 0;
    background: transparent;
    font-size: 20px;
    text-transform: uppercase;
    transition: all linear .4s;
}
.main_search:hover, .lang a:hover,
.header-cart:hover, .header-wishlist:hover{
    background-color:#051A3B ;
    color: #fff;
}
.main_search:hover i{
    filter: brightness(0) saturate(100%) invert(95%) sepia(46%) saturate(0%) hue-rotate(173deg) brightness(105%) contrast(101%);
}






.breadcrumb-area {
    position: relative;
    background: var(--hover);
    padding: 15px 0;
    margin-top: 20px;
    color: #FFF;
}

.breadcrumb-area a {
    color: #FFF;
}

.table-striped th {
    color: var(--hover) !important;
}

.table-striped th a {
    color: var(--main) !important;
}

.table td i {
    color: #bb2124 !important;
}

.sec-tit {
    font-size: 48px;
    color: #000;
    font-weight: bold;
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}


.slider-partners{
    text-align: center;
}




.sec-tit::after {
    content: '';
    height: 70px;
    background-image: url("../img/aftrhder.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* الأنيميشن الأول: رسم الخط بشكل مستمر */
@keyframes infiniteDraw {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    45% {
        clip-path: inset(0 0% 0 0);
    }
    55% {
        clip-path: inset(0 0% 0 0);
    }
    100% {
        clip-path: inset(0 0% 0 100%);
    }
}

/* الأنيميشن الثاني: ظهور واختفاء ناعم */
@keyframes infiniteFade {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* الأنيميشن الثالث: حركة طفو خفيفة */
@keyframes infiniteFloat {
    0% {
        transform: translateX(-50%) translateY(3px);
    }
    25% {
        transform: translateX(-50%) translateY(-1px);
    }
    50% {
        transform: translateX(-50%) translateY(0px);
    }
    75% {
        transform: translateX(-50%) translateY(-1px);
    }
    100% {
        transform: translateX(-50%) translateY(3px);
    }
}

/* تأثير الـ hover: بس بيكبر شوية والأنيميشن يكمل عادي */
.sec-tit:hover::after {
    /*transform: translateX(-50%) scale(1.05);*/
    /*transition: transform 0.3s ease;*/
}






/*Start Search Popup*/
/*====================================================================*/

.search-box-outer {

}

.search-box-outer {

}

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main);
    width: 70px;
    cursor: pointer;
    /*box-shadow: 0px 0px 16px rgb(0 0 0 / 16%);*/
    /*border-bottom: 3px solid #ffffff;*/
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}

.search-popup .close-search i {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    padding-inline-end: 70px;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    /*left: 30px;*/
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

html[dir='rtl'] .search-popup .form-group input[type="submit"],
html[dir='rtl'] .search-popup .form-group button {
    left: 30px;
}

html[dir='ltr'] .search-popup .form-group input[type="submit"],
html[dir='ltr'] .search-popup .form-group button {
    right: 30px;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    transition: all 500ms ease;
}

.close-search i {
    color: #FFF;
    font-size: 2rem;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}

/* //search popup*/



/* contact form*/
html[dir="ltr"] .wpcf7, html[dir="ltr"] .wpcf7 input[type="url"], html[dir="ltr"] .wpcf7 input[type="email"], html[dir="ltr"] .wpcf7 input[type="tel"] {
    direction: ltr;
}

html[dir="rtl"] .wpcf7, html[dir="rtl"] .wpcf7 input[type="url"], html[dir="rtl"] .wpcf7 input[type="email"], html[dir="rtl"] .wpcf7 input[type="tel"] {
    direction: rtl;
}

/* header section */
.head-home {
    position: relative;
    width: 100%;
    top: unset;
    left: unset;
    right: unset;
    padding: 11px 0;
    z-index: 4;
    background-color: #fff;
}
.head-home:after{
    content: " ";
    background-image: url(../img/ewe.png);
    position: absolute;
    top: 0;
    width: 70%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
html[dir="ltr"] .head-home:after{
    transform: rotate3d(0, 1, 0, 180deg);
}
.menu-icons {
    display: flex;
    align-items: center;
}



/* section slider */
.slider .swiper-slide {
    position: relative;
    z-index: 99;
}

/*.slider .main-pagin {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    margin-inline-start: 30px;*/
/*}*/

.slider .swiper-pagination-bullet {
    position: relative;
}

/*.mainArrow:after {*/
/*    display: none;*/
/*}*/
#circleSection{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: .5;
}
#circleSection2{
    position: absolute;
    bottom: 0;
    left: -80px;
    width: 200px;
    height: 200px;
    z-index: 0;
    display: none !important;
}
html[dir="ltr"] #circleSection2{
    right: -80px;
    left: unset;
}

.slider .slide-captions {
    text-align: start;
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
}

.slide-captions .current-title {
    font-size: 38px;
    color: var(--hover);
    font-weight: 600;
    margin-bottom: 0px;
    opacity: 0;

    transform: translateX(-200px);
    transition:   linear .4s;
}
html[dir="ltr"] .slide-captions .current-title{
    font-size: 40px;
}
html[dir="ltr"] .slide-captions p{
    font-size: 21px;
}

.slide-captions p{
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    transform: translateX(200px);
    opacity: 0;
    transition:   linear .4s;
}
.swiper-slide-active  .current-title {
    transform: translateX(0px);
    opacity: 1;
    transition:   linear .4s .4s;
}
.swiper-slide-active  .slide-captions p{
    transform: translateX(0px);
    opacity: 1;
    transition:   linear .4s .8s;

}

.slider-url {
    display: inline-block;
    margin: 30px 0 0;
    opacity: 0;
    transition:   linear .4s;
    transform: translateY(-70px);
}
.swiper-slide-active .slider-url {
    opacity: 1;
    transition:   linear .4s 1s;
    transform: translateY(0px);
}




.slide-captions .current-title:nth-of-type(2) {
    text-transform: uppercase;
}

.slide-captions .current-desc {
    font-size: 24px;
    color: #000;
}

.slide-captions .current-subtitle {
    font-size: 28px;
}

.slider-img img {
    display: block;
    width: 100%;
}

.slider-beckground img {
    width: 100%;
    height: 750px;
    border-radius: 0 0 0px 0px;
}
.slider-beckground{
    position: relative;
}
.slider-beckground:after{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/afbgslider.png");
    background-size: 100% 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.55);
}
.slider{
    position: relative;
}
.slider:after{
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 0 200px 180px  #fff;
    height: 0px;
    z-index: 3;
    display: none;
}
.slider-img{
    position: relative;
}


.circle-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.circle-container2 {
    position: relative;
    width: 100%;
    height: 100%;
}
.circle {
    position: absolute;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    transform-origin: center center;
}

.circle-container2 .circle {
    position: absolute;
    border: 2px solid #0b5fa338;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

  .container{
    max-width: 1300px;
}














.slider-img-cap {
    position: relative;
}

.hold-slider-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-inline-start: 120px;
}

/*.mainArrow {*/
/*    width: 45px;*/
/*    height: 45px;*/
/*    background: var(--hover);*/
/*    border-radius: 100%;*/
/*    transition: all .4s ease;*/
/*}*/

/*.mainArrow:hover {*/
/*    background: var(--hover);*/
/*}*/

/*.mainArrow i {*/
/*    color: #FFF;*/
/*}*/

/*.mainArrow_right {*/
/*    margin-inline-end: 30px;*/
/*}*/

/*.mainArrow_left {*/
/*    margin-inline-start: 30px;*/
/*}*/

.main-button {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    min-width: 170px;
    width: fit-content;
    background: #103b21;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 15px 40px -10px transparent;
    border-radius: 35px;
    height: 50px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: .8s;
    padding-inline-start: 15px;
    border: 1px solid #103b21;
}
html[dir="ltr"] .main-button {
    padding-inline-start: 10px;
}
.main-button span {
    position: relative;
    z-index: 1;
}

.main-button:before, .main-button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    transition: all 0.4s ease;
    background: var(--main);
}

.main-button:before {
    content: "\f177";
    font-family: 'Font Awesome 6 Free';
    color: #FFF;
    font-weight: bold;
    position: absolute;
    margin-top: -60px;
    left: 20px;
    transition: .8s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.main-button:before {
    left: 0;
    top: 0;
    width: 50px !important;
    height: 50px;
    background: transparent;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
html[dir="ltr"] .main-button:before{
    transform: rotate(180deg);
    right: 0;
    left: unset;
    top: 0;
}
.main-button:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    right: 0;
    background: var(--main);
    visibility: visible;
    opacity: 1;
    transition: .8s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.main-button:after {
    right: 0;
}

.main-button i {
    position: relative;
    top: 0;
    transition: .8s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    transform: rotate(45deg);
}
html[dir="ltr"]  .main-button i{
    transform: rotate(-45deg);
}
.main-button:hover i {
    transition: .8s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    margin-bottom: -70px;
}

.main-button:hover {

    color: white;
    transition: .8s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    background: transparent;
    border: unset;
    box-shadow: 0 0 13px rgb(0 0 0 / 16%);
}

.main-button:hover:before {
    margin-top: 0px;
    transition: .8s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.main-button:hover:before, .main-button:hover:after {
    width: 0;
}

.main-button:hover:after {
    transition: .8s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    width: 100%;
    visibility: visible;
    opacity: 1;
    z-index: -1;
}

































svg.wsslider {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    position: absolute;
    z-index: 2;
    opacity: .5;
}

svg.wsslider .shape-path {
    fill: none;
    stroke: white;
    stroke-width: 1.5;
    opacity: 0.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: draw 8s ease-in-out infinite alternate;
}

svg.wsslider .shape-path:nth-child(1) {
    animation-delay: 0s;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
}

svg.wsslider .shape-path:nth-child(2) {
    animation-delay: 0.5s;
    stroke-dasharray: 3200;
    stroke-dashoffset: 3200;
}

svg.wsslider .shape-path:nth-child(3) {
    animation-delay: 1s;
    stroke-dasharray: 3100;
    stroke-dashoffset: 3100;
}

svg.wsslider .shape-path:nth-child(4) {
    animation-delay: 1.5s;
    stroke-dasharray: 3300;
    stroke-dashoffset: 3300;
}

svg.wsslider .shape-path:nth-child(5) {
    animation-delay: 2s;
    stroke-dasharray: 3400;
    stroke-dashoffset: 3400;
}

svg.wsslider .shape-path:nth-child(6) {
    animation-delay: 2.5s;
    stroke-dasharray: 3250;
    stroke-dashoffset: 3250;
}

svg.wsslider .shape-path:nth-child(7) {
    animation-delay: 3s;
    stroke-dasharray: 3150;
    stroke-dashoffset: 3150;
}

svg.wsslider .shape-path:nth-child(8) {
    animation-delay: 3.5s;
    stroke-dasharray: 3350;
    stroke-dashoffset: 3350;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
}

svg.wsslider .shapes-group {
    animation: float 6s ease-in-out infinite, rotate 20s linear infinite;
    transform-origin: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

svg.wsslider .glow {
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    }
}















/* Style the slider image */
.slider-img img {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Style the parallax background image */
.parallax-img {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 9; /* Send it to the background */
}

.parallax-img img {
    width: 100%;
}
/* //section slider */


/* section about */
.about {
    position: relative;
    margin: 100px 0;
}
.about.homesec{
    position: relative;
    margin: 70px 0 50px;
}
.about:after {
    position: absolute;
    content: '';
    background-image: url("../img/about-ci.png");
    inset: 0;
    background-position: left bottom;
    background-repeat: no-repeat;
    z-index: -9;
    display: none !important;
}

.about .sec-tit {
    margin-bottom: -50px;
}

/* === Tabs Wrapper === */
.courses-tabs-wrapper {

}
.workfileds-item{
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    background-color: #fff;
    padding: 30px 20px 30px 10px ;
    transition: all linear .4s;
}
.workfileds-item:hover{
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.workfileds-icon{
    width: 70px;
    height: 70px;
    background: #FFE7AD;
    border-radius: 50%;
    display: flex;
    align-items: end;
    justify-content: end;
    transition: all linear .4s;
}
.workfileds-item:hover .workfileds-icon{
    background: #9DB4E1;
}
.workfileds-icon img{
    margin-bottom: -10px;
    margin-inline-end: -10px;
     max-width: 50px;
}
.workfileds-item h4{
font-size: 19px;
color: #000;
margin: 35px 0 10px;
}
.workfileds-item p {
font-size: 16px;
color: #585858;
text-align: justify;
}


/* === Tabs Buttons === */
.tabs-buttons {
    display: flex;
    flex-wrap: wrap;
    margin: -20px 0 50px 0;
    justify-content: center;
    gap: 30px;
}
 
.tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 40px;
    background: transparent;
    border: 1px solid var(--hover);
    border-radius: 35px;
    cursor: pointer;
    font-size: 18px;
    color: var(--hover);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-weight: 100;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.tab-btn.active {
    background: linear-gradient(90deg, #040d1d, #113983);
    border-color: var(--main) ;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.tab-name {
    transition: transform 0.3s ease;
}

.tab-btn:hover .tab-name {
    transform: translateX(3px);
}

.tab-btn.active .tab-name {
    transform: scale(1.05);
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tab-btn.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* === Tabs Content === */
.tabs-content {
    position: relative;
    min-height: 300px;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeOut 0.4s ease forwards;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
    }
}

/* === Courses Grid === */
/******************************/
/* && courses &&*/
/******************************/

.courses {
    padding: 50px 0;
    position: relative;
}

.courses:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url("../images/body-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.courses-items {
    position: relative;

}

.courses-image img {
    width: 100%;
    border-radius: 20px;
    height: 370px;
    object-fit: cover !important;
}

.courses-items .courses-content {

    width: 92%;
    margin: -100px auto 20px;
    background: var(--white);
    padding: 15px 12px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.courses-items .courses-content .tit {
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 5px;
}

.courses-items .courses-content .desc {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 20px;
}

.courses-items .courses-content .url {
    margin: 0 auto;
    display: table;
}
.main-title {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.main-title span {
    font-size: 26px;
    display: block;
    color: var(--black);
}

.main-title img {
    height: 20px;
}

.main-title .icon {
    position: relative;
    display: inline-block;

}

.main-title .icon::before,
.main-title .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: #d9d6cf;
}

.main-title .icon::before {
    right: 100%;
    margin-right: 5px;
}

.main-title .icon::after {
    left: 100%;
    margin-left: 5px;
}
.main-btn {
    position: relative;
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: var(--hover);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all .4s ease-in-out;
    display: block;
}

.main-btn::after {
    content: "←";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--main);
    border-radius: 50%;
    color: white;
    transition: all .4s ease-in-out;
}

html[dir="ltr"] .main-btn::after {
    content: "→";
}

.main-btn:hover {
    color: var(--black);
    transition: all .4s ease-in-out;

}

.main-btn:hover::after {
    right: calc(100% - 30px);
    transition: all .4s ease-in-out;
}

.courses-grid {

    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counters {
    padding: 50px 0;
    position: relative;
}

.counters:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url("../images/counter-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

#counter .item {
    text-align: center;
}

#counter .item .count {
    color: var(--white);
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 10px;
}

#counter .item .text {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}

.programs{
    padding: 50px 0 75px;
    position: relative;
}
.programs:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url("../images/body-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.programs-mainItem {
    position: relative;
    padding: 20px 10px;
    border-radius: 20px;
    background: var(--white);
    transition: all .35s ease-in-out;
}

.programs-mainItem:before {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 0;
    background-image: url("../images/shpae.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 139px;
    height: 139px;
    z-index: 0;
}
html[dir="ltr"] .programs-mainItem:before{
    left: unset;
    right: -15px;
    transform: rotateY(145deg);
}
.programs-mainItem .icon-title{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.programs-mainItem .icon-title .icon{
    margin-inline-end: 10px;
}
html[dir="ltr"] .programs-mainItem .icon-title .icon{
    margin-inline-start:  0px;
    margin-inline-end: 10px;
}
.programs-mainItem .icon-title .icon img{
    max-width: 40px;
}
.programs-mainItem .icon-title .tit{
    font-size: 16px;
    font-weight: bold;
}
.programs-mainItem .programs-img{
    margin-bottom: 10px;
}
.programs-mainItem .programs-img img{
    width: 100%;
    border-radius: 20px;
}
.programs-mainItem .desc{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.programs-mainItem .url{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.programs-mainItem .url .icon-arrow{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--black);
    background: #D0D0D0;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.programs-mainItem:hover .url .icon-arrow{
    background: var(--hover);
}
html[dir="ltr"] .programs-mainItem .url{
    flex-direction: row-reverse;
}
html[dir="ltr"] .programs-mainItem .url .icon-arrow{
    transform: rotate(-180deg);
}
.programs-mainItem .url .text{
    color: #8B8B8B;
}
.programs-slider .owl-dots {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.programs-slider .owl-dots div {
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-radius: 50%;
    text-align: center;
    background: rgba(0,0,0,.6);
    transition: all .35s ease-in-out;
}

.programs-slider .owl-dot.active {
    width: 20px;
    border-radius: 35px;
    background: var(--black);
    transition: all .35s ease-in-out;
}
/* === Course Item === */
.course-item {
    opacity: 0;
    animation: itemFadeIn 0.6s ease forwards;
}

.course-item:nth-child(1) { animation-delay: 0.1s; }
.course-item:nth-child(2) { animation-delay: 0.2s; }
.course-item:nth-child(3) { animation-delay: 0.3s; }
.course-item:nth-child(4) { animation-delay: 0.4s; }
.course-item:nth-child(5) { animation-delay: 0.5s; }
.course-item:nth-child(n+6) { animation-delay: 0.6s; }

@keyframes itemFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* هنا اكتب الـ CSS الخاص بتصميم الـ course-item */
.course-item {
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(179.92deg, #283f56, #17222c);
}

.course-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
/* === Course Image === */
.course-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.course-image img {
    width: 100%;
    transition: transform 0.5s ease;
    border-radius: 10px;
    height: 300px;
    object-fit: cover !important;
}

.course-item:hover .course-image img {
    transform: scale(1.1);
}
.onimgcoursek{
    position: absolute;
    top: 15px;
    right: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding:  10px;
    justify-content: space-between;
}
.course-badge {
    background: var(--hover);
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.onimgcoursek .meta-item{
    color: #fff;
}
.onimgcoursek .meta-item svg{
    margin-top: 1px;
}
/* === Course Info === */
.course-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* === Course Meta === */
.course-meta {
    display: flex;
    gap:20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0px;
    color: #a2a2a2;
}
.single-courses .course-meta{
    gap: 40px;
    justify-content: start;
}
.meta-item {
    display: flex;
    gap: 2px;
    color: var(--hover);
    font-size: 14px;
    font-weight: 500;
}
.single-courses .meta-item {
    filter: brightness(0) saturate(100%) invert(47%) sepia(100%) saturate(342%) hue-rotate(356deg) brightness(97%) contrast(88%);
}
.meta-item svg {
    color: #3b82f6;
    flex-shrink: 0;
}

/* === Course Title === */
.course-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.course-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-item:hover .course-title a {
    color: var(--hover);
}
.slider-images{
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.slider-images > svg{
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
}
.partners-slider{
    margin-top: 0px;
}
.slider-partners-sec{
    overflow: hidden;
    background-size: 400% 400%;
    animation: gradientMove 8s ease-in-out infinite;
    position: relative;
    padding: 50px 0 100px;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.imgss-slider{
    margin: 60px 0 10px;
}
.imgss-slider .slider-imgss img{
    object-fit: cover;
    border-radius: 10px;
    height: 250px;
    position: relative;
    transition: all linear .4s;
}
.imgss-slider .swiper-slide-active .slider-imgss img{
    height: 300px;
    z-index: 2;
    transition: all linear .4s;
}
.imgss-slider .swiper-wrapper{
    padding-bottom: 50px;
}

.imgss-slider .swiper-slide-active .slider-imgss img:hover{
    transform: scale(1.09);
}

.slider-partners img:hover{
    filter: brightness(0) saturate(100%) invert(13%) sepia(58%) saturate(4329%) hue-rotate(212deg) brightness(94%) contrast(92%);
}






.posts-section {
    padding: 60px 0;
    background: #f8f9fa;
}



.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.post-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1e3a8a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e3a8a;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #2563eb;
}

.read-more-btn svg {
    transform: rotate(180deg);
}

.view-more-wrapper {
    text-align: center;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e3a8a;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #2563eb;
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-title {
        font-size: 20px;
    }
}


/* Featured Articles Grid - CSS */
/* عيّن خطوط حسب حاجتك */
.fw-articles-grid {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin: 0 70px 0;
}
.blogdta{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(41%) sepia(18%) saturate(629%) hue-rotate(162deg) brightness(101%) contrast(89%);
}
/* أعمدة */
.fw-col { box-sizing: border-box; }
.fw-col-left { width: 44%; display:flex; flex-direction:column; gap:18px; }
.fw-col-right { width: 56%; }

/* --- البطاقة الكبيرة (اليمين) --- */
.fw-big-card {
    display: flex;
    align-items: start;
    overflow: hidden;
    padding: 0;
    flex-direction: column-reverse;
    gap: 20px;
}

/* محتوى النص على اليسار داخل البطاقة الكبيرة */
.fw-big-content {

}
.fw-big-content h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #122036;
    line-height: 1.15;
    font-weight: 700;
}
.fw-big-excerpt {
    margin: 15px 0;
    color: #686868;
    font-size: 14px;
}

/* زر اقرأ المزيد الكبير */
.fw-btn-more {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: #B8860B; /* ذهبي فاتح */
    font-weight: 700;
    transition: all .18s ease;
}
.fw-btn-more:hover {

}

/* الصورة داخل البطاقة الكبيرة */
.fw-big-thumb {
    width: 100%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}
.fw-big-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
    border-radius: 20px;
    transition: all linear .2s;
}
.fw-big-card:hover img{
    transform: scale(.98);
}
.pyryhdfg{
     color: #0A033C;
     font-size: 30px;
     font-weight: bold;
     margin: 0px 0 50px 0;
 }
.frramemap iframe{
    border-radius: 25px;
}
.lincont{
    position: absolute;
    top: 0;
    width: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(13 71 161 / 25%);
}
.page-template-page-blog .fw-big-thumb img{
    height: 250px;
}


.contact-informationsa{
    margin: 100px 0;
    background: linear-gradient(90deg, #10361f, #119c49);
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 35px 0;
}

.itm-coinf{

    display: flex;
    gap: 20px;

}
.iconitmcont{

    width: 70px;
    height: 70px;
    background: #F0F3F7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

}
.contexfdf{

    display: flex;
    flex-direction: column;
    justify-content: space-around;

}
.contexfdf h4{

    font-size: 20px;
    font-weight: bold;
    color: #fff;

}
.contexfdf .value{
    direction: ltr;
    font-size: 18px;
    color: #fff;

}
.single-courses .page-thumb img{
    border-radius: 30px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.tittso{
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: bold;
    color: var(--main) ;
}
.conteall{
    font-size: 18px;
    font-weight: 100;
    color: #051A3B;
    line-height: 35px;
    margin-top: 25px;
}
.whtaileavn{
    margin-top: 40px;
}
.whtaileavn h3{

    margin-bottom: 20px !important;
    font-size: 28px;
    color: #000;
    font-weight: bold;

}
.allwhusjds{

    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;

}
.allwhusjds svg , .allwhusinclud svg{
    filter: brightness(0) saturate(100%) invert(29%) sepia(92%) saturate(1609%) hue-rotate(128deg) brightness(101%) contrast(87%);
}
.allwhusjds span{
    font-size: 18px;
    color: #051A3B;
}

.boxesdata{

    border: 1px solid #d2cece;
    border-radius: 15px;
    padding: 20px 0;

}
.privsec{

    padding-inline-start: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;

}

.privsec span.dispon{

    color: #9C9C9C;
    font-weight: 100;
    text-decoration: line-through !important;
    opacity: .7;

}
.inordingjks{

    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;

}
.inordingjks span{

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    width: 100%;
    height: 50px;
    border:1px solid var(--main) ;
    cursor: pointer;
    transition: all linear .4s;
}
.inordingjks span.adc{
    background: var(--main) ;
    color: #fff;
}
.inordingjks span.dch{
    background: #fff;
    color: var(--main) ;
}
.inordingjks span.adc:hover{
    background: #fff;
    color: var(--main) ;
    transform: scale(0.95);
    font-size: 18px;
}
.inordingjks span.dch:hover{
    background: var(--main) ;
    color: #fff;
    transform: scale(0.95);
    font-size: 18px;

}
.sharinbo{

    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #d3d2d2;
    padding-inline-start: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 10px;

}









    /* الشارة الذهبية على الصورة الكبيرة */
.fw-badge {
    position: absolute;
    top: 14px;
    padding: 5px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    margin-inline-start: 20px;
    display: flex
;
    align-items: center;
    justify-content: center
}
.fw-badge-gold {
    background: #B8860B;
    color: #fff;
}

/* --- البطاقات الصغيرة (العمود الأيسر) --- */
.fw-small-card {
    display: flex;
    gap: 15px;
    align-items: center;
    overflow: hidden;
}

/* الصورة الصغيرة */
.fw-small-thumb {
    position: relative;
    width: 200px;
    height: 115px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}
.fw-small-thumb img { width:100%; height:100%; object-fit:cover !important; display:block; border-radius: 10px;  transition: all linear .2s;}


.fw-small-card:hover img{
    transform: scale(.98);
}
/* شارة زرقاء صغيرة على الصورة */
.fw-badge-small {
    background: linear-gradient(180deg, #1b5fa9, #0f3f78);
    color: #fff;
    padding: 5px 15px;
    top: 10px;
    margin-inline-start: 10px;
}

/* الميتا بجانب الصورة الصغيرة */
.fw-small-meta { flex:1; }
.fw-small-meta h4 { margin:0 0 8px 0; font-size:15px; color:#0b2740; line-height:1.2; font-weight:700; }
.fw-small-meta h4 a { color: inherit; text-decoration:none; }
.fw-small-meta p { margin:0 0 8px 0; font-size:13px; color:#6b7278; line-height:1.45; }

/* رابط اقرأ المزيد الصغير */
.fw-read-link {
    display:inline-block;
    font-weight:700;
    color:#1b5fa9;
    text-decoration:none;
    font-size:13px;
}

/* responsive */
@media (max-width: 900px) {
    .fw-articles-grid { flex-direction: column; gap: 18px; margin: 0;}
    .fw-col-left, .fw-col-right { width: 100%; }
    .fw-big-thumb { height: 220px; }
}





.allblogw{
    padding: 70px 0;
    position: relative;
}
.allblogw > svg.dots-container{
    position: absolute;
    top: -120px;
    left: 0;
    width: 255px;
    height: 278px;
    z-index: -1;
}


.bannerimage{
    position: relative;
}
.bannerimage .on-banerimg{

    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(269.87deg, #051A3B 0.11%, rgba(152, 172, 202, 0.29) 122.4%);
}
.bannerimage .on-banerimg h3{

    font-size: 36px;
    color: #fff;
    font-weight: 700;

}
.bannerimage .on-banerimg p {

    color: #C0C0C5;
    font-size: 16px;
    margin: 15px 0 15px;

}

.bannerimage .main-button{
    background: #B8860B;
}
html[dir="ltr"] .bannerimage .main-button{
    font-size: 14px;
}
.bannerimage  .main-button i{
    background: #8E6708;
}
.bannerimage .main-button:before{
    background: #B8860B;
}
.bannerimage .main-button:after{
    background: #8E6708;
}







.bannerimage img{
    width: 100%;
}




.contasection{
    position: relative;
    padding: 80px 0;
}
.contasection > svg{
    position: absolute;
    transform: rotate(90deg);
    left: -175px;
    top: 70px;
}
html[dir="ltr"] .contasection > svg{
    transform: rotate(-90deg);
    right: -175px;
}
.contasection .container > p{
    color: #0A033C;
    font-size: 30px;
    font-weight: bold;
    margin: 40px 0 50px 0;
}




















.imgss-slider {
    width: 100%;
    overflow: hidden;
}

.imgss-slider .swiper-slide {
     width: calc(100% / 5);
    height: 250px; /* ارتفاع ثابت */
    flex-shrink: 0;
    transition: width 0.4s ease, opacity 0.4s ease;

}

.imgss-slider .swiper-slide-active {
    width:  calc(100% / 4); /* 1.5 × 250 = 375 */
    opacity: 1;
    /* بدون scale أو z-index! */
}

.imgss-slider .swiper-slide-prev,
.imgss-slider .swiper-slide-next {

}

.slider-imgss {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
}

.slider-imgss img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}















.lessons{
    background: linear-gradient(180deg, #f1f8ff 2.88%, #0c153a 80%);
    padding: 90px 0 70px;
    position: relative;
}
.lessons > .container{
    position: relative;
    z-index: 1;
}
.lessons:after{
    content: " ";
    background-image: url("../img/couverct.png");
    position: absolute;
    right: 0;
    bottom: 3%;
    width: 100%;
    height: 635px;
    background-size: 100% 100%;
    z-index: 0;
    background-repeat: no-repeat;
}
.lessons > svg{
    position: absolute;
    transform: rotate(-90deg);
    bottom: -200px;
    right: -180px;
}
html[dir="ltr"] .lessons > svg{
    transform: rotate(90deg);
    left: -180px;
    right: unset;
}
@keyframes drawCircle1 {
    0%, 100% { stroke-dashoffset: 407; }
    16.66% { stroke-dashoffset: 0; }
    83.33% { stroke-dashoffset: 0; }
}

@keyframes drawCircle2 {
    0%, 16.66%, 100% { stroke-dashoffset: 479; }
    33.33% { stroke-dashoffset: 0; }
    66.66% { stroke-dashoffset: 0; }
    83.33% { stroke-dashoffset: 479; }
}

@keyframes drawCircle3 {
    0%, 33.33% { stroke-dashoffset: 547; }
    50% { stroke-dashoffset: 0; }
    66.66% { stroke-dashoffset: 547; }
    100% { stroke-dashoffset: 547; }
}

.circle1 {
    stroke-dasharray: 407;
    stroke-dashoffset: 407;
    animation: drawCircle1 4s ease-in-out infinite;
    transform-origin: center;
    transform: rotate(-90deg);
}

.circle2 {
    stroke-dasharray: 479;
    stroke-dashoffset: 479;
    animation: drawCircle2 4s ease-in-out infinite;
    transform-origin: center;
    transform: rotate(-90deg);
}

.circle3 {
    stroke-dasharray: 547;
    stroke-dashoffset: 547;
    animation: drawCircle3 4s ease-in-out infinite;
    transform-origin: center;
    transform: rotate(-90deg);
}







/* === Course Description === */
.course-info p  {
    margin: 0;
    color: rgba(217, 210, 210, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* === Course Footer === */
.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    flex-direction: row-reverse;
}

.course-price {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    color: #fff;
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #3b82f6;
}

.price-currency {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.course-date {
    display: flex;
    gap: 6px;
    color: #a2a2a2;
    font-size: 16px;
    font-weight: 500;
}
.course-date span{
    direction: ltr;
}
.course-meta svg{
    filter: brightness(0) saturate(100%) invert(92%) sepia(76%) saturate(2%) hue-rotate(166deg) brightness(109%) contrast(100%);
}
.course-date svg {
    color: #9ca3af;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(80%) sepia(0%) saturate(1133%) hue-rotate(136deg) brightness(80%) contrast(94%);
}

/* === No Courses Message === */
.no-courses {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
    font-size: 18px;
    animation: fadeIn 0.6s ease;
}

/* === Responsive === */
@media (max-width: 991px) {


    .tab-btn {
        padding: 10px 13px;
        font-size: 14px;
    }
    html[dir="ltr"]   .tab-btn {
        font-size: 11px;
    }
    .courses-grid {

    }
}

/* === RTL Support === */
[dir="rtl"] .tab-btn:hover .tab-name {
    transform: translateX(-3px);
}




















.about-tit {
    color: #f39501;
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: bold;
}

.about-content {
    color: #8c8c8c;
    font-size: 16px;
}
.homesec .about-content{
    margin-top: 0;
}
.about-desc span.spntit{
    font-size: 20px;
    color: #f2bc14;
    font-weight: 500;
}
.about-content h1{

    font-weight: bold;
    font-size: 35px;

}
.about-content p {
    margin-top: 10px;
    text-align: justify;
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
}
.about-url {
    margin-top: 20px;
}

.about-img {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 100%;
    gap: 15px;
    align-items: center;
}

.about [class*='col-']:last-child {
    position: relative;
}

.about-img:after {
    position: absolute;
    content: '';
    background: #93C5FD;
    z-index: -1;
    height: 75%;
    bottom: 0;
    width: 80%;
    border-radius: 60px;
}

.about-img img {
    border-radius: 0px;
    max-width: 50%;
    max-height: 200px;
}

.semi-gauge {
    position: relative;
    width: 200px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.semi-gauge svg {
    width: 100%;
    height: auto;
}

.percent {
    position: absolute;
    bottom: 0;
    font-size: 28px;
    font-weight: bold;
    color: #000;
}
.percent:after{
    content: "";
    background: var(--main) ;
    width: 15px;
    height: 15px;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}
.dots-container {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 99px;
    height: 217px;
    z-index: -1;
}
html[dir="ltr"] .dots-container{
    right: -50px;
    left: unset;
}
.dots-container circle {
    opacity: 0;
    transform: scale(0);
    animation: rowAppear 5s ease-out forwards;
    animation-iteration-count: infinite;
}

/* الصف الأول (y=3) - 6 نقاط */
.dots-container circle:nth-child(1),
.dots-container circle:nth-child(2),
.dots-container circle:nth-child(3),
.dots-container circle:nth-child(4),
.dots-container circle:nth-child(5),
.dots-container circle:nth-child(6) {
    animation-delay: 0s;
}

/* الصف الثاني (y=21) - 6 نقاط */
.dots-container circle:nth-child(7),
.dots-container circle:nth-child(8),
.dots-container circle:nth-child(9),
.dots-container circle:nth-child(10),
.dots-container circle:nth-child(11),
.dots-container circle:nth-child(12) {
    animation-delay: 0.15s;
}

/* الصف الثالث (y=39) - 6 نقاط */
.dots-container circle:nth-child(13),
.dots-container circle:nth-child(14),
.dots-container circle:nth-child(15),
.dots-container circle:nth-child(16),
.dots-container circle:nth-child(17),
.dots-container circle:nth-child(18) {
    animation-delay: 0.3s;
}

/* الصف الرابع (y=57) - 6 نقاط */
.dots-container circle:nth-child(19),
.dots-container circle:nth-child(20),
.dots-container circle:nth-child(21),
.dots-container circle:nth-child(22),
.dots-container circle:nth-child(23),
.dots-container circle:nth-child(24) {
    animation-delay: 0.45s;
}

/* الصف الخامس (y=75) - 6 نقاط */
.dots-container circle:nth-child(25),
.dots-container circle:nth-child(26),
.dots-container circle:nth-child(27),
.dots-container circle:nth-child(28),
.dots-container circle:nth-child(29),
.dots-container circle:nth-child(30) {
    animation-delay: 0.6s;
}

/* الصف السادس (y=93) - 6 نقاط */
.dots-container circle:nth-child(31),
.dots-container circle:nth-child(32),
.dots-container circle:nth-child(33),
.dots-container circle:nth-child(34),
.dots-container circle:nth-child(35),
.dots-container circle:nth-child(36) {
    animation-delay: 0.75s;
}

/* الصف السابع (y=111) - 6 نقاط */
.dots-container circle:nth-child(37),
.dots-container circle:nth-child(38),
.dots-container circle:nth-child(39),
.dots-container circle:nth-child(40),
.dots-container circle:nth-child(41),
.dots-container circle:nth-child(42) {
    animation-delay: 0.9s;
}

/* الصف الثامن (y=129) - 6 نقاط */
.dots-container circle:nth-child(43),
.dots-container circle:nth-child(44),
.dots-container circle:nth-child(45),
.dots-container circle:nth-child(46),
.dots-container circle:nth-child(47),
.dots-container circle:nth-child(48) {
    animation-delay: 1.05s;
}

/* الصف التاسع (y=147) - 6 نقاط */
.dots-container circle:nth-child(49),
.dots-container circle:nth-child(50),
.dots-container circle:nth-child(51),
.dots-container circle:nth-child(52),
.dots-container circle:nth-child(53),
.dots-container circle:nth-child(54) {
    animation-delay: 1.2s;
}

/* الصف العاشر (y=165) - 6 نقاط */
.dots-container circle:nth-child(55),
.dots-container circle:nth-child(56),
.dots-container circle:nth-child(57),
.dots-container circle:nth-child(58),
.dots-container circle:nth-child(59),
.dots-container circle:nth-child(60) {
    animation-delay: 1.35s;
}

/* الصف الحادي عشر (y=183) - 6 نقاط */
.dots-container circle:nth-child(61),
.dots-container circle:nth-child(62),
.dots-container circle:nth-child(63),
.dots-container circle:nth-child(64),
.dots-container circle:nth-child(65),
.dots-container circle:nth-child(66) {
    animation-delay: 1.5s;
}

/* الصف الثاني عشر (y=201) - 6 نقاط */
.dots-container circle:nth-child(67),
.dots-container circle:nth-child(68),
.dots-container circle:nth-child(69),
.dots-container circle:nth-child(70),
.dots-container circle:nth-child(71),
.dots-container circle:nth-child(72) {
    animation-delay: 1.65s;
}

@keyframes rowAppear {
    0% {
        opacity: 0;
        transform: scale(0) translateY(10px);
    }
    50% {
        transform: scale(1.2) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* الـ Container animation للـ loop */
.dots-container {
    animation: restartLoop 3.5s linear infinite;
}

@keyframes restartLoop {
    0%, 100% {
        /* مش بنعمل حاجة، بس عشان الأنيميشن يعيد نفسه */
    }
}


.onabout-img .onabout-imgitms{
    background-color: #fff;
    box-shadow: 0 0 6px 0px #0000002e;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    max-width: 220px;
}
.onabout-img .onabout-imgitms img{
    max-width: 100px;
}
.onabout-img .onabout-imgitms p{
    font-size: 14px;
}


.topigonabout-imgitms{
    display: flex;
    align-items: center;
    gap: 10px;


}

.topigonabout-imgitms > div{
    background: #E0F2FE;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;


}
.topigonabout-imgitms > div img{
    max-width: 20px !important;
}
.topigonabout-imgitms span{
    font-size: 14px;
    color: #64748B;


}
.onabout-imgitms h4{

    font-size: 20px;
    font-weight: bold;

}


.onabout-img{
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
    margin-inline-start: -100px;
}
.onabout-img .onabout-imgitms:nth-of-type(1){
    position: absolute;
    top: 100px;
}
.onabout-img .onabout-imgitms:nth-of-type(2){
    position: absolute;
    left: -100px;
}
.onabout-img .onabout-imgitms:nth-of-type(3){
    position: absolute;
    bottom: 50px;
}
html[dir="ltr"] .onabout-img .onabout-imgitms:nth-of-type(2){
    right: -100px;
    left: unset;
}

.onabout-img .onabout-imgitms{
    opacity: 0;             /* مخفي */
    transform: translateY(50px); /* أسفل بمقدار 50px */
    pointer-events: none;   /* مش ضروري بس أمان */
    transition: all 0.6s ease-out;
}

.onabout-imgitms.show {
    opacity: 1;
    transform: translateY(0); /* يرجع لمكانه الطبيعي */
    pointer-events: auto;
}

.form-control{
        direction: rtl;
}
html:not([dir="rtl"]) .form-control {
    direction: ltr;
    text-align: left;
}


body .select2-container--default .select2-selection--single{
        background-color: #f0f3f7;
    border: 0px solid #aaa;
    border-radius: 35px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

body .select2-container--default .select2-selection--single button.select2-selection__clear{
    display:none;
}
body .select2-container--default .select2-selection--single span.select2-selection__arrow{
        position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
}


.visionPlan {
    margin-top: 45px;
}

.visionPlan-item:not(:last-child) {
    margin-bottom: 50px;
}

.visionPlan-head {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.visionPlan-tit {
    font-size: 38px;
    font-weight: bold;
    color: #000;
    margin-inline-start: 20px;
}

.visionPlan-icon img {
    max-width: 60px;
    height: 60px;
}

.visionPlan-content {
    font-size: 18px;
    color: #8c8c8c;
}

.info01 {
    margin-top: 80px;
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
}
.fixed-icons .fa-x-twitter{
     background-image: url(../img/xtw.png);
    background-position: center center;
    background-size: 25px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-repeat: no-repeat;
}
.fixed-icons{
        position: fixed;
    top: 80%;
    z-index: 999;
    margin-inline-start: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.leftysjd{
    display: flex;
    align-items: center;
    gap: 80px;
}
.fixed-icons i.fa-whatsapp{
        background: #18852c;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.statics {
    position: relative;
}

.in-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.statics:after {
    position: absolute;
    content: '';
    background-image: url("../img/rrrr.png");
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: 100px;
    display: none !important;
}

.stat-item {
    display: flex;
    align-items: center;
}


.sharinbo.socialfixedicon .social{

    position: relative;
    top: unset;
    left: unset !important;
    right: unset !important;
    bottom: unset;
    flex-direction: row;
    gap: 10px;

}

.sharinbo.socialfixedicon .social a{
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.sharinbo.socialfixedicon .social .fa-x-twitter{
    background-size: 18px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(157deg) brightness(103%) contrast(104%);
    background-image: url(../img/xtw.png);
    background-position: center center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-repeat: no-repeat;
}
.sharinbo.socialfixedicon h5{

    font-weight: bold;
    color: var(--main) ;
    font-size: 18px;

}
.boxesdata.autttys{
    padding: 20px;
    margin-top: 35px;
}
.boxesdata.autttys .datalang{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}
.autosec a{

    color: var(--main) ;
    font-weight: bold;

}
.autosec{
    display: flex;
    align-items: center;
    gap: 20px;
}

.boxesdata.inclidecout{

    padding: 20px;
    margin-top: 35px;

}
.inordingjks > a {
    display: flex;
    width: 100%;
}
.whtainclud h3{

    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px !important;

}
.allwhusinclud{
    font-size: 18px;
    color: #0A033C;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}







.numTit {
    display: flex
;
    flex-direction: column;
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: #DCE3ED;
    border-radius: 15px;
    text-align: center;
    margin-inline-end: 15px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.stat-icon img{
    max-width: 40px;
}
.stat-num {
    font-weight: bold;
    font-size: 32px;
    color: #000;
}

.stat-tit {
    font-size: 16px;
    color: #9C9C9C;
}


/*lessons section */

.lessons .sec-tit {
}

.starPrice01 {
    display: flex;
    align-items: center;
}

.star {
    display: flex;
    align-items: center;
    margin-inline-start: 15px;
    background: var(--hover);
    padding: 7px 22px;
    border-radius: 23px;
}

.star .num {
    color: #FFF;
    font-size: 22px;
    margin-inline-start: 7px;
}

.lessons-img img {
    border-radius: 10px;
}

.card-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.lessons-card [class*='col-']:last-child {
    display: flex;
    justify-content: end;
}

.lessons-card {
    margin-bottom: 30px;
}

.holdStars {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.starPrice {
    flex-grow: .9;
}

.trainer-img img {
    border-radius: 5px;
    width: 60px;
    height: 60px;
}

.trainer-name {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.hold-trainer-work {
    margin-top: 22px;
}

.trainer-work:first-child {
    /*margin-bottom: 22px;*/
}

.trainer-work-tit {
    color: #900c3f;
}

.trainer-work-tit, .trainer-work-num {
    font-weight: bold;
    font-size: 24px;
}

.lessons-url {

}

.arrow-btn {
    display: inline-block;
    background: var(--hover);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    border-radius: 100%;
}

.arrow-btn:hover {
    color: #FFF;
}

.lessons-card {
    padding: 25px 40px;
    box-shadow: 0 0 18px rgba(0 0 0 / 32%);
    border-radius: 10px;
}


.trainer-img {
    margin-bottom: 23px;
}

.starPrice01 .price {
    color: #7c9d96;
    font-size: 24px;
    font-weight: bold;
}

.star i {
    color: #f7c600;
    font-size: 24px;
}


/* accordion*/
.accordion {
    margin-top: 66px;
}

.accordion .sec-tit {
    margin-bottom: 50px;
}






















.set{
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}
.set > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    background: var(--main) ;
    border-radius: 15px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    -webkit-transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    transition:all 0.2s linear;
}

.set > a:hover {
    background: var(--hover);
    color: #FFF;
}

.set > a i{
    float: right;
    font-size: 24px;
    color: var(--hover);
}
.set > a:hover i {
    color: #FFF;
}

.set > a.active {
    background : var(--hover);
    color: #000;
    border-radius: 15px;
}

.set > a.active i {
    color: #FFF;
}
.accordion-content{
    background-color: #fff;
    display:none;
}
.accordion-content p{
    padding: 10px 15px;
    margin: 0;
    color: #333;
    text-align: justify;
}


.social {
    position: relative;
    display: flex; 
}






.cousesaocardion{

    margin-top: 50px;

}

.cousesaocardion > h3{
    margin-bottom: 20px !important;
    font-size: 28px;
    color: #000;
    font-weight: bold;


}
.accrdsec .accrdsechead{

    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    padding: 22px;
    cursor: pointer;
    border: 1px solid #dbd5d5;

}
.accrdsec.active .accrdsechead{

    display: flex;
    align-items: center;
    gap: 10px;
    background: #DCE3EE;
    border-radius:  0;
    padding: 22px;
    cursor: pointer;
    transition:  all linear .4s ;
}
.accrdsec.active:first-of-type .accrdsechead{
    border-radius: 15px 15px 0 0;
}




.accrdsechead h4{

    font-size: 22px;
    color: #000;

}
.accrdsechead svg{
    transform: rotate(180deg);
    transition: all linear.4s;
}
.accrdsec.active .accrdsechead svg{
    transform: rotate(0deg);
}








.social a {
    width: 35px;
    height: 35px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main);
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.social a:hover {
    background: var(--hover);
    transform: translateX(5px) translateY(-3px) scale(1.12);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.social a:not(a:last-child) {
    margin-inline-end: 10px;
}



.socialfixedicon .social{
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 4;
    top: 30%;
    gap: 15px;
    left: 40px;
}
html[dir="ltr"] .socialfixedicon .social{
    left: unset;
    right: 40px;
}
.fixed-icons a{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    box-shadow: unset !important;
    color: #0A3B87;
    font-size: 25px;
    transition: all 0.4s ease-in-out;
    margin: 0 !important;
}
.fixed-icons a:hover{
    background: linear-gradient(180deg, var(--main)  0%, #051A3B 100%);
    color: var(--hover);
}
.fixed-icons a:hover i {
    filter: brightness(0) saturate(100%) invert(78%) sepia(76%) saturate(1944%) hue-rotate(334deg) brightness(80%) contrast(90%);
}

/*footer*/
.fa-x-twitter:before {
    content: "";
    background-image: url(../img/xtw.png);
    width: 18px;
    height: 19px;
    display: flex;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(3px);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.main-footer{
    background-image: url("../images/footer-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;

}
.row-f-h ,.row-f-m{
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-title{
    font-size: 24px;
    font-weight: bold;
    color: var(--main);
    margin-bottom: 20px;
    display: block;
}
.info-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.info-footer .info{
    display: flex;
    align-items: center;
}
.info-footer .info .icon{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--hover);
    color: var(--black);
    margin-inline-end: 10px;
}
.info-footer .info  .value ,.info-footer .info   .kay{
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}
.send-btn{
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: auto;
    background: transparent;
    cursor: pointer;
    float: inline-end;
}
footer h3.footer-head-title{
    font-size: 20px;
    font-weight: bold;
    color: var(--hover);
    margin-bottom: 30px;
}
.footer-list ul{
    column-count: 2;
    margin-bottom: 30px;
}
.footer-list ul li {

    margin-bottom: 20px;
    color: var(--white);
    display: flex;
}
html[dir="ltr"].footer-list ul li {
    float: left;
}
.footer-list ul li::before {
    content: "-";
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    margin-inline-end: 8px;
    color: var(--white);
}
.footer-list ul li a{
    color: var(--white);
}
.map iframe{
    border-radius: 20px;
    max-width: 100%;
    height: 280px;
}
.send-btn i{
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    background: var(--main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-media a{
    font-size: 18px;
    color: var(--white);
    margin-inline-end: 15px;
}
.powerd-content ,.powerd-content a{
    text-align: center;
    color: var(--white);
}
.row-f-m .col-12:nth-child(2){
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-inline-end: 10px;
    padding-inline-start: 10px;
}
/*//footer*/

/*pages */

.content .sec-tit {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-size: 40px;
    font-weight: bold;
    color: var(--main) ;
    display: table;
}
.content .sec-tit:after{
    display: none;
}


.head-inside .search-box-outer {

}
.head-inside .main_search i, .head-inside .main_search:hover i {
    color: #FFF;
}

/* News Card */
.news-item {
    position: relative;
    height: 100%;
    padding: 15px;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    display: block;
    transition: all .4s ease-in-out;
}

.page-posts [class*='col-'] {
    margin-bottom: 35px;
}

.news-item:hover {
    opacity: 1;
    transform: scale(1.1);
}


.news-item-body {
    margin-top: 20px;
}

.news-item-date {
    position: relative;
    transition: all .5s ease-in-out;
}

.news-item-tit {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 25px;
    border-bottom: 1px solid var(--hover);
    padding: 0 0 10px 0;
    color: #000;
    transition: all .5s ease-in-out;
}
.news-item:hover .news-item-tit {
    color: var(--hover);
}

/*.wpcf7-form-control {*/
/*    margin-top: 10px;*/
/*    display: block;*/
/*    width: 100%;*/
/*    padding: 0.375rem 0.75rem;*/
/*    font-size: 1rem;*/
/*    line-height: 1.5;*/
/*    color: #495057;*/
/*    background-color: #fff;*/
/*    background-clip: padding-box;*/
/*    border: 1px solid #ced4da;*/
/*    border-radius: 0.25rem;*/
/*    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;*/
/*}*/
/*.form-control:focus:focus{*/
/*    color: #495057;*/
/*    background-color: #fff;*/
/*    border-color: var(--main);*/
/*    outline: 0;*/
/*    box-shadow: 0 0 0 0.2rem var(--main);*/
/*}*/

.form-focused {
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}
.imgcotsec{
    display: flex;
    height: 100%;
    align-items: end;
    justify-content: center;
    position: relative;
}
.imgcotsec img{
    max-width: 300px;
}

.imgcotsec:after{
    content: " ";
    position: absolute;
    background: #93C5FD;
    z-index: -1;
    height: 70%;
    bottom: 0;
    width: 50%;
    border-radius: 60px;
}
.iconsal:after{
    content: " ";
    background-image: url("../img/msgicon.png");
    width: 62px;
    height: 58px;
    position: absolute;
    right: 70px;
    bottom: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    animation:   spinRotate 3s ease infinite;

}
html[dir="ltr"] .iconsal:after{
    right: unset;
    left: 70px;
}
.iconsal:before{
    content: " ";
    background-image: url("../img/phoneiocn.png");
    width: 62px;
    height: 58px;
    position: absolute;
    left: 110px;
    top: 90px;
    background-repeat: no-repeat;
    background-size: contain;
    animation:  floatUpDown 3s ease infinite;
}

html[dir="ltr"] .iconsal:before{
    left: unset;
    right: 110px;
}
@keyframes floatUpDown {
    0% {
        transform:rotate3d(1, 1, 0, 0deg);

    }
    25% {
        transform:rotate3d(1, 1, 0, 90deg);
    }
    37.5% {
        transform:rotate3d(1, 1, 0, 180deg);
    }
    50% {
        transform:rotate3d(1, 1, 0, 360deg);
    }
    75% {
        transform:rotate3d(1, 1, 0, 90deg);
    }
    87.5% {
        transform:rotate3d(1, 1, 0, 180deg);
    }
    100% {
        transform:rotate3d(1, 1, 0, 90deg);
    }
}

@keyframes spinRotate {
    0% {
        transform:  scale(1);
    }
    25% {
        transform:   scale(1);
    }
    37.5% {
        transform:   scale(1.1);
    }
    50% {
        transform:   scale(1);
    }
    75% {
        transform:   scale(1);
    }
    87.5% {
        transform:   scale(1.1);
    }
    100% {
        transform:  scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}







.form-focused label {
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 15px;
    right: 15px;
    color: #222;
    transition: all .5s ease-in-out;
}
html[dir="ltr"] .form-focused label{
    right: 0;
    left: 15px;
}
.form-control {
    border-radius: 35px;
    height: 60px;
    background-color: #fff;
    border: 1px solid #F0F3F7;
    transition: all linear .4s;
}
.form-group.focused input{
    border-color: var(--main) !important;
    color: var(--main) !important;
}
.wpcf7-form-control-wrap {
    position: relative;
}

.form-control:focus {
    border-color: var(--main);
    box-shadow: 0 0 0 0.1rem var(--main) ;
}

.form-focused label {
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 15px;
    color: #222;
    transition: all .5s ease-in-out;
}

.form-focused {
    position: relative;
}

.focused label {
    top: -30px;
    right: 0;
    color: #3288c7;
    opacity: 0;
}

.uploadBox label {
    justify-content: center !important;
    border-radius: 35px;
}
textarea.form-control{
    height: 180px;
    resize: none;
    border-radius: 20px;
}
.uploadBox label:hover {
    background: var(--hover) !important;
    color: #fff;
}
.logo-footer   img{
    max-width: 250px;
}
footer .form-control{
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    direction: rtl;
    text-align: right;
    height: 50px;
    border-radius: 10px;
}

footer textarea.form-control{
    height: 120px;
}











.instructor-data .row {
    align-items: center;
}

.instructor-page-avatar, .user-avatar {
    width: 96px !important;
    height: 96px !important;
    border-radius: 100% !important;
}

.form-group label {
    color: #686868b3 !important;
}

.empty h1 {
    color: red;
    text-align: center;
    margin: 0;
}

.acf-field input[type="text"] {
    border-radius: 30px;
}

.acf-button {
    border-radius: 50px;
    background-color: var(--main) !important;
}

.acf-button:hover {
    background-color: var(--hover) !important;
}

.acf-form-submit {
    margin: 50px 0;
}

.acf-button-group label.selected {
    background: var(--hover) !important;
    border-color: var(--hover) !important;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--hover);
}

.user-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 100%;
}

.news-item-date {
    display: flex;
    width: 130px;
    height: 35px;
    background: var(--main);
    border-radius: 20px;
    align-items: center;
    color: #FFF;
    margin-inline-end: 0;
    border: none;
    justify-content: space-evenly;
    position: absolute;
    top: 27px;
    left: 25px;
    background-image: linear-gradient(-27deg, rgb(144, 12, 63) 14%, rgb(124, 157, 150) 48%, rgb(108, 117, 125) 50%);
    background-size: 333%;
    transition: linear .4s;
}

.news-item:hover .news-item-date {
    background-position: right;
    transition: linear .4s .2s;
}

.uploadFileLabel {
    margin-inline-end: 5px !important;
}

.news-item-des {
    color: #000;
}

.news-item-url {
    margin-top: 28px
}

.news-url .main-button {
    background: var(--main);
    color: #FFF;
}

.news-url:hover .main-button {
    color: #FFF;
}

.wp-pagenavi {
    position: relative;
    z-index: 999;
}

.search_lang .dropdown-menu {
    background-color: var(--hover);
    padding: 10px;
    list-style: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    position: absolute;
    border-radius: 10px;
    z-index: 6;
    margin-top: 5px;
}

.search_lang .dropdown-menu a {
    color: #000;
    border-radius: 0;
    text-align: center;
    transition: all linear .4s;
    padding: 5px;
    margin: 2px 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #000 !important;
}

.wp-pagenavi span.current {
    font-weight: bold;
    background: var(--main);
    color: #FFF;
    border-color: transparent;
    transform: scale(1.2);
    margin-inline: 5px;
}

.wp-pagenavi span {
    display: inline-flex;
    cursor: pointer;

}

.wp-pagenavi a {
    color: #FFF;
    background: #c2c2c2;
}

.property-cat {
    display: inline-block;
    margin: 10px 0;
}

.property-cat a {
    margin-inline-start: 10px;
    border-radius: 5px;
    color: #000;
}

.news-item-thumb img {
    width: 100%;
}

.property-cat a {
    margin-inline-end: 5px;
}


.wp-pagenavi {
    position: relative;
    z-index: 999;
}

.wp-pagenavi span.current {
    font-weight: bold;
    background: var(--main);
    color: #FFF;
    border-color: transparent;
    transform: scale(1.2);
    margin-inline: 5px;
}

.wp-pagenavi span {
    display: inline-flex;
    cursor: pointer;

}

.wp-pagenavi a {
    color: #FFF;
    background: #c2c2c2;
}



/* Media Query */

@media (min-width: 1200px) and (max-width: 1919px) {



}

@media (min-width: 992px) and (max-width: 1199px) {

}

@media (min-width: 992px) {
    nav > .nav-list > .linkMenu:after, nav > .nav-list > .linkMenu.active:after {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 100%;
        height: 1px;
        content: '.';
        color: transparent;
        background: var(--hover);
        border-radius: 30px;
        visibility: hidden;
        opacity: 0;
        z-index: -1;
        transition: all .5s linear;
    }

    nav > .nav-list > .linkMenu:hover:after, nav > .nav-list > .linkMenu.active:after {
        opacity: 0;
        visibility: hidden;
        height: 0;
        transition: all .5s
        linear;
    }

    nav > .nav-list > .linkMenu:after {
        bottom: 0;
    }

    ul.nav-list {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    /*sub menu  */
    .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    .sub-menu a:before {
        display: none !important;
        font-family: "FontAwesome";
        font-weight: 900;
        margin-inline-end: 10px;
        color: #000;
        transition: all .4s ease-in-out;
    }
.sub-menu a:after{
      display: none !important;
}
    .sub-menu a:before {
        content: "\f100";
    }

    /*// sub menu*/
    .hold-nav-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dd-trigger {
        display: none !important;
    }

    .menu-icons {
        display: none;
    }

    .nav-list > .linkMenu {
        position: relative;
        display: flex;
        align-items: center;
    }
.nav-list > .linkMenu.menu-item-has-children > i {
    
    color: #9E9E9E;
    font-size: 12px;
    margin-top: 5px;
    margin-inline-start: 3px;

}
    header .nav-list:not(.footer-links .linkMenu) > .linkMenu:not(:last-of-type) {
        margin-inline-end: 0px;
    }

    .footer-links .nav-list > .linkMenu:not(:last-of-type) {
        margin-inline-end: 35px !important;
    }



    /* الأساس: link container */
    nav .nav-list .menu-item > a {
        position: relative;
        display: inline-flex;
        overflow: hidden;
        padding: 0;
        font-weight: 600;
        font-size: 15px;
        color: transparent;        /* نخلي النص الحقيقي شفاف لأننا نستخدم pseudo elements */
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
    }

    /* النص الظاهر في الحالة العادية (الأساسي) */
    nav .nav-list .menu-item > a::before {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        transform: translateY(0);
        color: #000; /* لون النص الأساسي */
        transition: transform 0.35s cubic-bezier(.2,.9,.3,1), opacity 0.25s ease;
        white-space: nowrap;
        pointer-events: none;
        opacity: 1;      /* ظاهر افتراضياً */
        z-index: 2;      /* فوق ::after */
    }

    /* النص اللي هييجي من تحت (الهوفر/النص الثاني) */
    nav .nav-list .menu-item > a::after {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 0;                      /* نخلي top=0 ونستخدم translateY */
        width: 100%;
        transform: translateY(100%); /* مخفي تحت افتراضياً */
        color: var(--main);              /* لون الهوفر */
        transition: transform 0.35s cubic-bezier(.2,.9,.3,1), opacity 0.25s ease;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;                  /* مخفي افتراضياً */
        z-index: 1;                  /* تحت ::before */
    }

    /* حالة hover أو current — نحرك ::before لفوق ونرفع ::after من تحت لمكانه */
    nav .nav-list .menu-item:hover > a::before,
    nav .nav-list .menu-item.current-menu-item > a::before,
    nav .nav-list .menu-item.current-menu-ancestor > a::before {
        transform: translateY(-100%); /* الأساسي يطلع لفوق */
        opacity: 0;
    }

    nav .nav-list .menu-item:hover > a::after,
    nav .nav-list .menu-item.current-menu-item > a::after,
    nav .nav-list .menu-item.current-menu-ancestor > a::after {
        transform: translateY(0);   /* التاني ييجي من تحت لمكانه */
        opacity: 1;
    }

    /* تحسّن للـfocus لسهولة الوصول */
    nav .nav-list .menu-item > a:focus {
        outline: none;
    }






















    /*nav > .nav-list > .linkMenu:before,*/
    /*nav > .nav-list > .linkMenu.active:before {*/
    /*    position: absolute;*/
    /*    content: attr(data-link-alt);*/
    /*    top: 100%;*/
    /*    opacity: 0;*/
    /*    overflow: hidden;*/
    /*    font-weight: bold;*/
    /*    font-size: 18px;*/
    /*    z-index: 1;*/
    /*    padding-bottom: 16px;*/
    /*    transition: .4s ease-in-out;*/
    /*}*/

    /*nav > .nav-list > .linkMenu span {*/
    /*    display: block;*/
    /*    transition: .4s ease-in-out;*/
    /*}*/

    /*nav > .nav-list > .linkMenu:hover span {*/
    /*    transform: translateY(-100%);*/
    /*}*/

    nav > .nav-list > .linkMenu:hover:before {
        color: var(--hover);
        top: 50%;
        opacity: 1;
        transform: translateY(-50%);
    }



    nav > .nav-list > .menu-item-has-children:hover a:not(.sub-menu a):after {
        color: var(--hover);
    }

    nav > .nav-list > .linkMenu span {
        display: block;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 9;
        min-width: 200px;
        background: var(--hover);
        border-radius: 0 0 10px 10px;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
        transition: all 0.6s ease;
    }

    .sub-menu a {
        display: flex;
        align-items: center;
        color: #000 !important;
        font-size: 13px !important;
        transition: all .4s ease-in-out;
    }

    .sub-menu a:hover,
    .sub-menu a:hover:before {
        color: var(--hover);
    }

    .sub-menu li:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }


}

@media (max-width: 992px) {

    .lessons-img img {
        width: 100%;
    }

    .starPrice01 .price {
        font-size: 21px;
    }

    .join {
        width: 120px !important;
        height: 40px;
        font-size: 14px;
        min-width: auto;
    }

    nav > .nav-list > .linkMenu > a {
        padding: 9px 10px;
    }

    .slider .slide-captions {

    }

    .current-title {
        font-size: 86px;
        color: var(--hover);
    }

    nav > .nav-list > .linkMenu > a,
    nav > .nav-list > .linkMenu::before,
    nav > .nav-list > .linkMenu.active::before,
    header .sub-menu a {
        font-size: 14px;
    }

    /*.mainArrow {*/
    /*    width: 40px;*/
    /*    height: 40px;*/
    /*}*/
    /*.mainArrow i {*/
    /*    color: #FFF;*/
    /*    font-size: 15px;*/
    /*}*/


    .hold-slider-caption {
        padding-top: 20px;
        padding-inline-start: 20px;
    }

    .logo {
        max-height: 113px;
    }

    .slide-captions .current-title {
        font-size: 22px !important;
        margin-bottom: 10px;
    }
    .slide-captions p {
        font-size: 12px !important;
    }
    .slide-captions p * {
        font-size: 18px !important;
    }
    .slider-url {
        margin: 20px 0;
    }

    header .header-cart,
    header .header-wishlist {
        display: none !important;
    }


}


@media (max-width: 991.45px) {

    .header-links {
        display: none;
    }

    .about .row {
        flex-direction: column-reverse;
    }

    .statics {
        padding: 0;
        margin-bottom: 50px;
    }

    .in-stat {
        display: flex;
        align-items: start;
        flex-direction: column;
    }

    .stat-item  {
        margin-bottom: 20px;
    }

    .card-content {
        margin-top: 30px;
    }

    .card-content {
        top: auto;
        transform: none;
    }

    /*.holdStars {*/
    /*    display: flex;*/
    /*    flex-direction: row;*/
    /*    justify-content: space-between;*/
    /*    align-items: center;*/
    /*    margin-top: 20px;*/
    /*}*/

    .starPrice {
        margin-top: 30px;
        flex-grow: 1;
    }

    .starPrice01 .price {
        font-size: 24px;
    }

    footer [class*='col-']:last-child {
        margin-top: 20px;
    }

    #nav-icon {
        width: 50px;
        height: 25px;
        display: flex;
        justify-content: center;
        position: relative;
        right: 0;
        transform: rotate(0deg);
        cursor: pointer;
    }

    #nav-icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 60%;
        background: var(--hover);
        border-radius: 9px;
        opacity: 1;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    #nav-icon span:nth-child(2) {
        top: 12px;
        transition: 0.4s ease-in-out;
    }

    #nav-icon span:nth-child(3) {
        top: 24px;
    }

    #nav-icon.open span:nth-child(1) {
        top: 13px;
        transform: rotate(135deg);
        background: var(--hover);
    }

    #nav-icon.open span:nth-child(2) {
        opacity: 0;
        transition: 0.4s ease-in-out;
    }

    html[dir='rtl'] #nav-icon.open span:nth-child(2) {
        transform: translateX(100%);
    }

    html[dir='ltr'] #nav-icon.open span:nth-child(2) {
        transform: translateX(-100%);
    }

    #nav-icon.open span:nth-child(3) {
        top: 13px;
        transform: rotate(-135deg);
        background: var(--hover);
    }

    #side_menu {
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 99999;
        width: 385px;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: flex-start;
        transform: translate3d(0, 0, 0);
        /* material acceleration */
        will-change: transform;
        transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }

    html[dir='rtl'] #side_menu {
        right: 0;
        transform: translateX(100%);
    }

    html[dir='ltr'] #side_menu {
        left: 0;
        transform: translateX(-100%);
    }

    #side_menu i {
        color: #FFF;
        cursor: pointer;
        margin-inline-start: 20px;
    }

    #side_menu .sub-menu a {
        font-size: 20px;
    }

    #side_menu .menu-item:not(:last-child) {
        margin-bottom: 10px;
    }

    #X-icon {
        display: none;
    }

    #X-icon.okay {
        display: block;
    }

    #X-icon span {
        display: block;
        position: absolute;
        top: 65px;
        left: 35px;
        z-index: 999;
        height: 4px;
        width: 8%;
        background: var(--hover);
        border-radius: 9px;
        cursor: pointer;
        opacity: 1;
        transform: rotate(0deg);
        transition: all .4s ease-in-out;
    }
html[dir="ltr"] #X-icon span{
    left:unset;
    right: 35px;
}
    #side_menu .sub-menu a {
font-size: 15px;
        padding-inline-start: 30px;
        padding-bottom: 50px;
        color: #FFF;
    }

    #X-icon span:first-child {
        transform: rotate(135deg);
        background: #FFF;
    }

    #X-icon span:last-child {
        transform: rotate(-135deg);
        background: #FFF;
    }

    #side_menu .tt {
        display: flex;
        text-align: center;
        margin: 0 auto;
    }

    #side_menu:before {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 37em;
        background: var(--main);
        content: "";
        will-change: transform;
        transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    }

    #side_menu .nav-list {
        position: relative;
        z-index: 9;
    }

    html[dir='rtl'] #side_menu:before {
        transform-origin: bottom right;
        transform: skewX(-22deg) translateX(100%);
    }

    html[dir='ltr'] #side_menu:before {
        transform-origin: bottom left;
        transform: skewX(22deg) translateX(-100%);
    }

    html[dir='rtl'] #side_menu:before {
        right: 0;
    }

    html[dir='ltr'] #side_menu:before {
        left: 0;
    }

    #side_menu a:not(.main-button, .sub-menu a) {
        margin: 0.5em 0;
        padding: 0;
        padding-inline-start: 20px;
        font-size: 22px;
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.15s, transform 0.5s;
        transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    }

    html[dir='rtl'] #side_menu a:not(.main-button) {
        transform: translateX(100%);
    }

    html[dir='ltr'] #side_menu a:not(.main-button) {
        transform: translateX(-100%);
    }

    #side_menu a:nth-child(1) {
        transition-delay: 0s, 100ms;
    }

    #side_menu a:nth-child(2) {
        transition-delay: 0s, 150ms;
    }

    #side_menu a:nth-child(3) {
        transition-delay: 0s, 200ms;
    }

    #side_menu a:nth-child(4) {
        transition-delay: 0s, 250ms;
    }

    #side_menu a:nth-child(5) {
        transition-delay: 0s, 300ms;
    }

    #side_menu a:nth-child(6) {
        transition-delay: 0s, 350ms;
    }

    #side_menu.active {
        transform: translateX(0) !important;
    }

    html[dir='rtl'] #side_menu.active:before {
        transform: skewX(0deg) translateX(0);
    }

    html[dir='ltr'] #side_menu.active:before {
        transform: skewX(0deg) translateX(0);
    }

    #side_menu.active #side_menu a {
        transform: translateX(0);
    }

    .menu-overlay.do {
        display: block;
        opacity: 1;
        pointer-events: auto;
        z-index: 999;
        transform-origin: left center;
        transform: translateX(0);
        transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);

    }

    .menu-overlay {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 999;
        background: rgba(10, 38, 57, 0.75);
        overflow: hidden;
        opacity: 0;
        will-change: transform;
        transform: translateX(-200%);
        transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);;
    }

    header, section {
        transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }

    header.blur-me,
    section:not(section.menu-overlay).blur-me {
        filter: blur(2px);
        transform-origin: left center;
    }

    #side_menu .main-button {
        border: 1px solid #FFF;
        color: #FFF;
        left: -176px;
        transform: translateX(-50%);
        margin-top: 30px;
    }

    #side_menu.main-button:hover {
        background: transparent;
    }

    #side_menu .header-cart {
        margin: 0.5em 5px !important;
    }

    /* // Side menu */
}

#side_menu .header-cart,
#side_menu .header-wishlist {
    margin-top: 15px;
    transform: none !important;
    background: var(--main);
}




@media (max-width: 991px) {
    .head-home:after{
        display:none !important;
    }
    .footer-list ul {
        column-count: 1;
        margin-bottom: 0;
    }
     footer  .social-media{
        margin-bottom: 30px;
    }
    .join span{
        display: none;
    }
    .vismsgsecimg img {
        max-width: 300px;
    }
    .page-template-page-about .lefcis p {
        margin-bottom: 0;
    }
    .wordfildsce{
        margin-top: 50px;
    }
   .post-type-archive-workfields .wordfildsce{
        margin-top:  30px;
    }

    .lefcis p {
        width: 100%;
        font-size: 21px;
        margin-top: 20px;
        margin-bottom: 60px;
    }
    .footer-tittle h3:after{
        height: 10px;
    }
    .footer-tittle {
        margin-bottom: 20px;
    }
    .fw-small-thumb {
        width: 100%;
        height: auto;
    }






    .contact-informationsa {
        margin-top: 50px;
        background: var(--main) ;
        border-radius: 30px;
        display: flex;
        align-items: start;
        justify-content: space-around;
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }
    .iconitmcont {
        width: 50px;
        height: 50px;
    }
    .contexfdf h4 {
        font-size: 16px;
        font-weight: bold;
        color: #fff;
    }.contexfdf .value {
         direction: ltr;
         font-size: 14px;
         color: #fff;
     }








  .post-type-archive-sliderimages .slider-imgss{
      height: 200px !important;
  }
    .post-type-archive-sliderimages .imgss-slider .slider-imgss img{
        height: 190px !important;
    }
    .pyryhdfg {
        color: #0A033C;
        font-size: 20px;
        font-weight: bold;
        margin: 0px 0 30px 0;
    }
    .lincont{
        display: none !important;
    }
    .frramemap iframe {
        border-radius: 25px;
        width: 100%;
    }






    .vismsgsecimg:after{
        display: none !important;
    }
    #circleSection2{
        display: none !important;
    }
    .vis22.vui2 {
        padding-inline-start: 0;
        margin-top: 50px;
    }
    .vismsgsec {
        margin-top: 0px;
    }
    .about-content {
        color: #8c8c8c;
        font-size: 16px;
    }
    .home  .about-content {
        margin-top: 10px;
    }
    .about-img:after{
        border-radius: 10px;
    }
    .vismsgsecimg:before {
        display: none;
    }
    .slider-partners-sec{
        padding: 30px 0;
    }
    footer.main-footer {
        padding: 40px 0 0;
        overflow: hidden;
    }
    .library {
        padding: 40px 0 100px;
    }
    .library:before {
        height: 120px;
        background-size: 100% 100%;
    }
    .powerd-content, .powerd-content a {
        font-size: 14px;
        margin-bottom: 30px;
        margin-top: -10px;
    }
    .info-footer {
        align-items: start;
        flex-direction: column;
        gap: 25px;
    }
    .no-padding{
        padding: 0 15px !important;
    }
    .contasection {
        position: relative;
        padding: 40px 0;
    }
    .iconsal:before{
        left: 0 !important;
    }
    .iconsal:after{
        right: 0 !important;
        left: unset !important;
    }
    .imgcotsec:after{
        width: 100%;
    }
    .contasection .container > p{
        font-size: 20px;}
    .pagetit{
        font-size: 27px;
    }
    .bannerimage img {
        width: 100%;
        height: 290px;
        object-fit: cover !important;
    }
    .lessons{
        padding: 40px 0;
    }
    .fw-small-card{
        display: flex;
        gap: 15px;
        align-items: start;
        overflow: hidden;
        flex-direction: column;
        margin-top: 10px;
    }
    .imgss-slider .swiper-wrapper{
        padding-bottom: 0;
    }
    .slider-imgss{
        height: 130px !important;
    }
    .imgss-slider .swiper-slide {
        height: 150px !important;
    }
    .imgss-slider .swiper-slide-active .slider-imgss img{
        height: 150px !important;
    }
    .imgss-slider .slider-imgss img{
        height: 130px !important;
    }
    .slider-images {
        padding: 30px 0;
        position: relative;
        overflow: hidden;
    }
    .slider-images > .d-flex{
        margin-top: 0 !important;
    }





    .tabs-buttons {
        display: flex;
        flex-wrap: wrap;
        margin: 0px 0 30px 0;
        justify-content: space-evenly;
        gap: 15px 2px;
    }
    .topigonabout-imgitms > div{
        width: 30px;
        height: 30px;
    }
    .topigonabout-imgitms {
        gap: 0;
    }
    .topigonabout-imgitms span {
        font-size: 12px;
        color: #64748B;
    }
    .semi-gauge {
        width: 200px;
        height: 90px;
    }

    .semi-gauge svg {
        width: 70%;
        height: auto;
    }
    .percent:after {
        top: -15px;
    }










    .onabout-img .onabout-imgitms img {
        max-width: 100px;
        height: auto;
    }
    .onabout-img{
        margin-inline-start: 0;
    }
    .onabout-img .onabout-imgitms{
        max-width: 140px;
        padding: 5px;
        gap: 5px;
    }
    .onabout-img .onabout-imgitms:nth-of-type(2){
        left: -50px;
    }
    html[dir="ltr"] .onabout-img .onabout-imgitms:nth-of-type(2){
        right: -50px;
    }
    .onabout-img .onabout-imgitms p {
        font-size: 11px;
    }
    .about-content h1 {
        font-size: 20px;
    }
    .main-button:before{
        width: 35px !important;
        height: 40px;
    }
    #circleSection{
        width: 100px;
        height: 100px;
    }
    .about-img {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .content {
        padding: 20px 0   !important;
    }
    .main-button {
        font-size: 12px;
        min-width: 110px;
        height: 40px;
        padding-inline-start: 10px !important;
    }
    .main-button i{
        width: 35px;
        height: 40px;
    }
    .slider-url {
        margin: 15px 0;
    }

    .slider-beckground img {
        height: 40vh;
    }
    .sdafa232d{
        margin: 0 auto;
    }

}

@media (max-width: 576px) {

    .breadcrumb-area [class*='col-'] {
        max-width: 100%;
    }

    .sec-tit {
        font-size: 33px;
        padding: 0;
    }



    .about-img img {
        max-height: 130px;
    }


    .breadcrumb-area {
        overflow: hidden;
    }

    .courses-paid {
        margin-top: 20px;
    }

    .nav-item-icon {
        margin-bottom: 20px !important;
    }

    #myTab .nav-item a {
        border-radius: 5px;
    }

    .news-item-img img {
        width: 100%;
    }



    .star i {
        font-size: 18px;
    }

    .star {
        margin-inline-start: 15px;
    }

    .trainer-work:first-child {
        margin-bottom: 13px;
    }
    .hold-trainer-work {
        margin-top: 12px;
    }

    .star .num {
        margin-inline-start: 0;
    }

    .lessons-card {
        padding: 20px;
    }

    .stat-icon {
        width: 75px;
        height: 75px;
        line-height: 75px;
    }

    .stat-num {
        font-size: 30px;
    }


    .trainer-work-tit, .trainer-work-num {
        font-weight: bold;
        font-size: 20px;
    }
    /*.mainArrow_left {*/
    /*    margin-inline-start: 5px;*/
    /*}*/
    /*.mainArrow_right {*/
    /*    margin-inline-end: 5px;*/
    /*}*/


    .logo {
        max-height: 80px;
    }

    #side_menu::before {
        width: 32em;
    }

    .about.homesec {
        margin: 15px 0;
    }

    .slider .slide-captions {
        width: auto;
    }

    .main-slider .swiper-pagination {
        bottom: 10px;
    }

    .slider-beckground img {

    }

    .copywrite {
        text-align: center;
        font-size: 12px;
    }

    .socialfixedicon .social{
        gap: 5px;
        top: 50%;
        left: 10px;
    }
    .socialfixedicon .social a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .social .fa-x-twitter{
        background-size: 17px;
    }
    html[dir="ltr"] .socialfixedicon .social{
        right: 10px;
        left: unset;
    }
    .slider:after{
        box-shadow: 0 0 170px 70px #fff;
    }
    .head-home{
        padding-top: 10px;
    }
    .menu-logo {
        margin-bottom: 10px;
    }
    svg.wsslider {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
        position: absolute;
        z-index: 2;
        opacity: .5;
        width: 500px;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
    }


    .list-inline {
        flex-direction: column !important;
    }

    .list-inline-item:not(:last-child) {
        margin-bottom: 15px !important;
        margin-right: 0 !important;
    }

    .comment .media p {
        margin-bottom: 20px !important;
    }

}

@media (min-width: 481px) and (max-width: 576px) {

}


@media (max-width: 480px) {
    .g-pa-30 {
        padding: 0 !important;
    }

    .nav-item-icon,
    .nav-item {
        margin-bottom: 20px !important;
    }

    .star {
        padding: 6px 18px;
    }

    .header-style {
        flex-direction: column;
    }

    .slider-beckground img {

    }

    .starPrice01 {
        flex-direction: column;
    }

    .starPrice01 .price {
        margin-bottom: 10px;
    }

    #side_menu {
        width: 270px;
    }

    .main-slider .swiper-pagination {
        bottom: 10px;

    }




    .slider .slide-captions {
        text-align: start;
        gap: 10px;
    }

    #side_menu::before {
        width: 17em;
    }





}

element.caption {
  background-color: green;
  color: black;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 30vh;
  font-size: 30px;
  transition-duration: 0.3s;
  border: 2px solid green;
}

element.caption:hover {
  background-color: black;
  color: green;
  border: 2px solid green;
}

div.range {
  animation-name: load;
  animation-duration: 5s;
  background-color: green;
  height: 5px;
  width: 0px;
  display: block;
  margin-top: 20px;
  margin-left: 25%;
}

@keyframes load {
  0% {
    width: 0;
  }
  20%,
  25% {
    width: 10%;
  }
  40% {
    width: 15%;
  }
  80% {
    width: 45%;
  }
  95% {
    width: 46%;
  }
  99% {
    width: 50%;
  }
  100% {
    display: none;
  }
}


.loading-box {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
/*   border: 1px solid #7e7e7e; */
  color: #f0f8ff;
  border-radius: 12px;
/*   box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.5), */
/*     -4px -4px 16px rgba(255, 255, 255, 0.05); */
}

.loading-title {
  font-size: 1.5em;
  transform: translateY(-12px);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
}

.loading-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(111, 123, 247, 1) 0%,
    rgba(155, 248, 244, 1) 0%,
    #101012 0%
  );
  border-radius: 100px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.75),
    -4px -4px 16px rgba(255, 255, 255, 0.1);
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-count {
  content: " ";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 3px;
  left: 3px;
  width: 174px;
  height: 174px;
  border-radius: 100px;
  background: #1d1e22;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.75) inset,
    -4px -4px 16px rgba(255, 255, 255, 0.1) inset;
  animation: spin 1s infinite linear reverse;
}

.loading-count #loadingNumber {
  font-size: 4em;
}
 

.dis-effect{
        cursor: not-allowed !important;
    opacity: .5 !important;
}
