body {
    /* background: linear-gradient(to bottom,  #FFFFFF 0%, #EDF1FF 120%); */
}

@font-face {
    font-family: Cairo;
    src: url('../fonts/Cairo/Cairo-VariableFont_slnt\,wght.ttf');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cairo;
    text-decoration: none;
    list-style: none;
}

cursor {
    display: none;
}

.container {
    width: 100%;
    margin: 0 auto;

    position: relative;

}

::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}


::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px grey;
    border-radius: 1px;
}


::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 2px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--main-red);
}

:root {
    --main-color: #2E3192;
    --second-color: #4F59D1;
    --main-red: #ED1C24;
    --fliner-color: #EDF1FF;
    --sliner-color: #8B9BFF;
    --app-color: #F6F8FF;
    --p-color: #80828D
}

.backs {
    position: fixed;
    height: 50px;
    width: 50px;
    right: -60px;
    bottom: 1vh;
    z-index: 10;
    transition: right 0.5s ease;
    display: block;
}

.button {
    width: 100%;
    background: #f4f6fd;
    padding: 0.5rem;
    border-radius: 5px;
}


.backtext {
    font-family: monospace;
    margin-top: 15px;
}

.backs .backtext {
    visibility: hidden;
    width: 120px;
    background-color: #f4f6fd;
    color: var(--main-color);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -17px;
    right: 110%;
}

.backs:hover .backtext {
    visibility: visible;
}



.backs .backtext {
    visibility: hidden;
    width: 120px;
    background-color: #f4f6fd;
    color: var(--main-color);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -17px;
    right: 110%;
}

.backs:hover .backtext {
    visibility: visible;
}

#new-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#new-loader img {
    width: 500px;
    filter: blur(1px);
    animation: flash 2s infinite;
}

#new-content {
    display: none;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
        filter: none;
    }

    50% {
        filter: blur(5px);
    }
}

.circles-container {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 0 10px 10px 0;
    position: absolute;
    animation: scaleAndFade 2s infinite;
}

.circle.red {
    background-color: red;
    animation-delay: 0s;
}

.circle.blue {
    background-color: blue;
    animation-delay: 1s;
}

@keyframes scaleAndFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}



/* header */

.header {
    height: 90px;
    background: linear-gradient(to left, #fff 0%, #EDF1FF 120%);
    position: sticky;
    top: 0;
    z-index: 9999999;
}

@media(max-width:991px) {
    .header {
        height: 85px;
        background: linear-gradient(to left, #fff 0%, #EDF1FF 50%);
        position: sticky;
        top: 0;
        z-index: 9999;
        /* opacity: 0.9; */
    }
}

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

.navbar ul {
    display: flex;
    width: 100%;
}

.navbar ul.list-style {
    display: none;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.navbar ul.flip {
    display: block;
    position: absolute;
    z-index: 9999999;
}

.navbar ul.logo {

    max-width: 60px;
}


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

.navbar li a {
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: 400;
    text-wrap: nowrap;
    transition: 0.3s ease;

}

.navbar li a:hover {
    color: var(--main-red);
}



@media(max-width:1500px) {
    .navbar li a {
        font-size: 1.0rem;
    }
}

@media(max-width:1200px) {
    .navbar li a {
        font-size: 0.9rem;
    }
}

@media(max-width:991px) {
    .navbar li a {
        font-size: 25px;
    }
}

.navbar li a img {
    max-width: 60px;
    padding: 0.5rem 0;
}

li:last-child {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

li:last-child .fi-tr-earth-asia {
    font-size: 25px;
    display: flex;
    height: 100%;
    align-items: flex-end;

}


@media(max-width:991px) {
    li:nth-child(6) {
        /* display: none; */
    }

    li:last-child {
        /* display: block; */
    }
}

li:nth-child(3) {
    /* position: relative; */
}

.list-style {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.list-style li {
    display: block;
    background: #3D44A6;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    margin: 5px 0;
    padding: 0rem 3rem;
}

.list-style li a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 0 2rem;
}

@media(max-width:1200px) {
    .list-style li a {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        padding: 0 0rem;
    }
}

.navbar li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.navbar li i {
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.mobile-nav {
    display: none !important;
}

@media (max-width: 991px) {
    .mobile-nav {
        display: block !important;
        display: block !important;
        position: relative;
        z-index: 9999999999;
        position: fixed;
    }
}

/* Dropdown Menu */
.navbar li.dropdown {
    position: relative;
    z-index: 9999;
}




.list-style {
    display: none;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.flip {
    display: block;
    position: absolute;
    z-index: 9999999;
}



.list-style li a {
    color: #fff;
    text-align: center;
}


/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .navbar {

        flex-direction: column;
        align-items: center;
        background: #EDF1FF;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 2rem;
        display: none;
        z-index: 99999;
    }


    .navbar ul {
        display: table-column;
        width: 100%;

    }

    .navbar ul.logo {
        display: none;
        max-width: 0px;
        margin: 0;

    }

    .navbar.active {
        display: flex;
        justify-content: start;
    }

    .mobile-nav {
        display: block;
        cursor: pointer;
        font-size: 30px;
        color: var(--main-color);
        padding: 1rem;
        margin: 0 0 1rem;
    }

    .navbar li a {
        margin-bottom: 1rem;
    }

    .navbar li.logo {
        display: none;
    }

    .language-switch {
        display: none;
    }
}

/* Adjust dropdown for mobile */
@media (max-width: 991px) {
    .list-style {
        position: absolute;
        top: 0%;
        width: 100%;
        padding: 0;
        left: 50%;
        transform: translate(-30%, 50%);
    }

    .list-style li {
        width: 100%;
        padding: 0 5rem;
    }
}

.mobile-header {
    display: none;
}

@media (max-width: 991px) {
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mobile-header img {
        padding: 1rem 0;
        width: 5rem;
    }

    .mobile-header ul {
        position: absolute;
        display: flex;
    }

    .mobile-header ul i {
        font-size: 25px;
    }

    .mobile-header ul a {
        display: flex;
        align-items: end;
    }
}



/* header */


/* acount */
.space {
    margin-bottom: 5rem;
    overflow: hidden;
}

@media(max-width:991px) {
    .space {

        margin-bottom: 0rem;
    }
}


.heating {
    margin: 5rem 0;
}

.acount {
    margin: 0 0 1rem;
    background-color: var(--main-color);
    position: relative;
}

.acount .acou-cntent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 25vh;
}

@media(max-width:991px) {
    .acount .acou-cntent .logo {
        width: 7rem;
    }
}

.acount .acou-cntent h1 {
    color: #fff;
    font-size: 40px;
    position: relative;
    z-index: 2;
}

@media(max-width:991px) {
    .acount .acou-cntent h1 {
        font-size: 20px;
    }
}

.acount .acou-cntent span {
    color: var(--main-red);
    font-size: 40px;
}

@media(max-width:991px) {
    .acount .acou-cntent span {
        font-size: 20px;
    }
}

.acount .acou-cntent .bake {
    position: absolute;
    right: -115px;
    transform: rotateY(20deg);
    height: 100%;
    z-index: 1;
    width: 500px;
    max-width: 100%;
}

@media(max-width:991px) {

    .acount .acou-cntent .bake {
        position: absolute;
        right: -100px;
        width: 300px;
    }
}

.acount .acou-cntent .bake1 {
    position: absolute;
    right: 4px;
    width: 630px;
    transform: translateX(12px);
    max-width: 100%;
    z-index: 1;
    height: 100%;
}

@media(max-width:991px) {

    .acount .acou-cntent .bake1 {
        position: absolute;
        right: -30px;
        width: 400px;
    }
}

.acount .acou-cntent .bake2 {
    position: absolute;
    right: 240px;
    z-index: 1;
    height: 100%;
    width: 40rem;
    filter: blur(0.5px);
}

@media(max-width:991px) {

    .acount .acou-cntent .bake2 {
        display: none;
    }
}

.locat-bank {
    display: flex;
    align-items: center;
    justify-content: end;
    /*direction: rtl;*/
    gap: 1rem;
    margin-bottom: 1rem;
}

@media(max-width:991px) {
    .locat-bank {
        justify-content: center;
    }
}

.locat-bank h2 {
    color: var(--main-color);
    font-size: 30px;
}

.locat-bank span {
    color: var(--main-red);
    font-size: 30px;
}

.locat-bank i {
    font-size: 25px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppp {
    font-size: 20px;
    color: var(--main-color);
    text-align: end;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media(max-width:991px) {
    .ppp {
        text-align: center;
    }
}

.report {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    direction: rtl;
}

@media(max-width:991px) {
    .report {
        display: none;
    }
}

.report .date-re {}

.report .date-re h3 {
    background-color: #F7F9FF;
    padding: 1rem 2rem;
    border-top: 2px solid var(--main-color);
    transition: 0.3s ease;
}

.report .date-re a {
    color: var(--main-color);
    transition: 0.3s ease;
}

.report .date-re h3:hover,
.report .date-re h3:hover a {
    color: var(--main-red);
    border-top-color: var(--main-red);
}


.dropdown-content {
    display: none;
}

@media (max-width: 991px) {
    .dropdown-content {
        display: block;
    }
}

.dropdown-content .ACtive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    cursor: pointer;
}

.dropdown-content .ACtive h1 {
    width: 100%;
    background: var(--main-color, #007bff);
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin: 0;
}

.dropdown-content .ACtive .icones {
    background: var(--main-color, #007bff);
    padding: 0rem 1rem;
    color: #ffff;
    font-size: 20px;
}

.dropdown-content .list-report {
    text-align: right;
    width: 100%;
    background: #F7F9FF;
    margin: 1rem 0;
    padding: 0.5rem;
    color: var(--main-color, #007bff);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    visibility: hidden;
}

.dropdown-content .list-report.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-content .list-report a {
    transition: 0.3s ease;
}

.dropdown-content .list-report:hover a {
    color: var(--main-red);
}

.second-icon {
    display: none;
}


.active .first-icon {
    display: none;
}

.active .second-icon {
    display: block;
}

.report-down {
    background: #F7F9FF;
    padding: 1rem;
    margin: 1rem 0;
}

@media(max-width:991px) {
    .report-down {
        padding: 0.5rem;
    }
}

.report-down .down-re {}

.report-down .down-re .repo-dis {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report-down .down-re .repo-dis .texts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}

.report-down .down-re .repo-dis .texts i {
    background: #EDF2FE;
    padding: 0.5rem;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.report-down .down-re .repo-dis .texts h4 {
    color: var(--main-color);
    font-weight: 500;
    font-size: 20px;
}

@media(max-width:991px) {
    .report-down .down-re .repo-dis .texts h4 {
        font-size: 15px;
        text-align: center;
        text-wrap: nowrap;
    }
}

.report-down .down-re .repo-dis .texts2 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.report-down .down-re .repo-dis .texts2 i {
    font-size: 25px;
    color: var(--main-color);
    transition: 0.3s ease;
}

@media(max-width:991px) {
    .report-down .down-re .repo-dis .texts2 i {
        font-size: 20px;
    }
}

.report-down .down-re .repo-dis .texts2 a {
    color: var(--main-color);
    font-weight: 700;
    transition: 0.3s ease;
}

@media(max-width:991px) {
    .report-down .down-re .repo-dis .texts2 a {
        font-size: 10px;
    }
}

.report-down .down-re .repo-dis .texts2:hover i,
.report-down .down-re .repo-dis .texts2:hover a {
    color: var(--main-red);
}

.dropdown-content .list-report {
    text-align: right;
    width: 100%;
    background: #F7F9FF;
    margin: 1rem 0;
    padding: 0.5rem;
    color: var(--main-color, #007bff);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    visibility: hidden;
}

.dropdown-content .list-report.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .report {
        display: none;
    }

    .dropdown-content {
        display: block;
    }
}

.dropdown-content .list-report {
    display: none;
}

.dropdown-content .list-report.show {
    display: block;
}

.list-report {
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.list-report.show {
    display: block;
    opacity: 1;
}

.ACtive.active h1 {

    transition: color 0.3s ease-in-out;
}










/* acount */



/* start footer style  */
footer {
    background-color: var(--main-color);
    border-radius: 40px 40px 0px 0px;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
    padding: 2rem 0;

}

.footer .img>img {
    width: 3rem;
    display: block;
    margin: auto;
}

.footer .links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    border-bottom: 1px solid white;
    padding: 1rem 0;
}

.footer .links>div {

    display: flex;
    justify-content: center;
}



.footer .links>div .dis {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.3rem 0;
    padding: 2rem;
}

@media(max-width:991px) {
    .footer .links>div .dis {
        align-items: center;
    }
}

.footer .links>div .diss {
    color: rgb(255 255 255 / 70%);
    font-size: 20px;
    padding: 1rem;
    text-align: end;
}

.footer .links .loges img {
    max-width: 100%;
}

.footer .links .loges p {
    padding: 0 1rem;
}




.footer .links>div .dis .gaping {
    margin: 2rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: end;

}

@media(max-width:991px) {
    .footer .links>div .dis .gaping {
        justify-content: center;
    }
}

.footer .links>div .dis .gaping a {
    font-size: 20px;
    text-wrap: nowrap
}

.footer .links>div .dis .gaping i {

    display: flex;
    align-items: center;

}

.pad-fotter {
    padding: 1rem 0;
}



.footer .links>div .dis h4 {

    position: relative;
    font-size: 25px;
}

.footer .links>div .dis h4::before {
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 20%);
    height: 5px;
    width: 100%;
    left: 50%;
    bottom: -60%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.footer .links>div .dis h4::after {
    content: "";
    position: absolute;
    background: rgb(255 255 255);
    height: 5px;
    width: 30%;
    left: 50%;
    bottom: -60%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

@media (max-width:800px) {
    .footer .links>div {
        align-items: center;
        text-align: center;


    }
}

form {
    background-color: #EDF1FF;
    padding: 2rem;
    border-radius: 10px;
}

form .forms {
    display: flex;
    flex-direction: column;
    text-align: right;
}

form .forms label {
    color: var(--main-color);
    text-align: end;
}

form .forms input {
    text-align: end;
    outline: none;
    border: none;
    background: #E1E8FF;
    border-radius: 5px;
    padding: 0.1rem;
    margin: 0.5rem 0px;
}

form .forms textarea {
    outline: none;
    border: none;
    background: #E1E8FF;
    border-radius: 5px;
    padding: 0.1rem;
    clip-path: content-box;
    max-width: 100%;
    margin: 0.5rem 0px;
}

.send {
    display: flex;
    margin: 1rem;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--main-color);
    width: fit-content;
    margin: 1rem auto 0;
    padding: 0 1rem;
    border-radius: 5px;
    transition: ease 0.3s;
}

.send a {
    color: rgb(255 255 255 / 70%);
}

.send i {
    color: rgb(255 255 255 / 70%);
}

.send:hover a,
.send:hover i {
    color: rgb(255 255 255 / 100%);
    transition: ease 0.3s;
}


.footer .links>div a,
.footer .links>div a {
    color: rgb(255 255 255 / 70%);
    font-size: 14px;
    transition: ease 0.3s;
}

.footer .links div a:hover {
    color: rgb(255 255 255 / 100%);
}

.footer .links .social>div {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer .links .social>div i {
    font-size: 1.5rem;
}

.copywrite {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.603);
    align-items: center;
    margin: -1rem 0;
}

@media(max-width:991px) {
    .copywrite {
        justify-content: center;
        gap: 1rem;
    }
}

.copywrite .Bin {
    width: 15rem;
    max-width: 100%;
}

@media(max-width:991px) {
    .copywrite .Bin {
        display: none;
    }
}

.copywrite .Arab {
    width: 25rem;
    max-width: 100%;
}








#pagination {
    display: flex;
    justify-content: flex-end; /* محاذاة المحتوى إلى اليمين */
    padding: 20px 0;
    list-style: none; /* إزالة النقاط من القائمة */
}

.pagination {
    padding: 0;
}

.page-item {
    margin: 0 5px; /* إضافة هامش بين العناصر */
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #DDDDDD;
    text-decoration: none;
    color: black;
    border-radius: 5px; /* إضافة زوايا مدورة */
    transition: background-color 0.3s; /* تأثير التحول */
}

.page-link:hover {
    background-color: #DDDDDD; /* لون الخلفية عند التحويم */
}

.page-item.active .page-link {
    background-color: #243996; /* لون الخلفية للزر النشط */
    color: white; /* لون النص للزر النشط */
    border-color: #4CAF50; /* لون الحدود للزر النشط */
}

.page-item.disabled .page-link {
    color: #999999; /* لون النص للزر غير النشط */
    pointer-events: none; /* منع التفاعل مع الزر */
    background-color: transparent; /* خلفية شفافة للزر غير النشط */
}


.row {
    /* padding-left:10%;
    padding-right: 10%; */
    display: flex; /* استخدام flexbox */
    justify-content: space-between; /* توزيع المساحة بين العناصر */
    align-items: center; /* محاذاة العناصر عموديًا */
    margin: 20px 0; /* إضافة مسافة من الأعلى والأسفل */
}

.results-info {
    text-align: right; /* محاذاة النص إلى اليمين */
    font-size: 14px; /* حجم الخط */
    color: #333; /* لون الخط */
}
