/* @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap'); */
html body {
    font-family: "Tajawal", sans-serif;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-weight: 500;
    min-height: 100vh;
    text-align: right !important;
    background-color: #F8FAFC !important;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.navbar-brand {
    font-weight: 700 !important;
}

.home-section {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.box {
    width: 100%;

    min-height: 50vh;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    border-radius: 16px;
    /* box-shadow: inset 0 0 3px black; */
}

.content {
    display: flex;
    align-items: center;
}

p {
    font-size: 20px;
    text-align: justify;
    line-height: 1.6;
    margin: 0;
}

.img-box img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover;
    border-radius: 8px;

}

@media (max-width: 1200px) {
    .box {

        grid-template-columns: 1fr;
    }

    .img-box {

        /* height: 250px; */
        order: -1;
    }

    .navbar-brand {
        width: 50px;
    }
}

@media (max-width: 450px) {
    .box {
        border-radius: 0;
    }
}

.swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;


}



.swiper-img {
    transform: scale(0.8);
}

.box2 {
    min-height: 50vh;
}

nav {
    background-color: rgb(87, 17, 34);

}


.box3 {
    min-height: 50vh;
    width: 100%;

}

ol {
    width: 100%;
}


.dropdown-item {
    text-align: right;
}


.accordion-button {

    font-weight: 500;
    color: rgb(87, 17, 34);
}

.pass {
    width: 100vw;
    height: 100vh;
    top: 0px;
    background-color: #ddd;
    position: fixed;
    z-index: 500000000000000;
}



img {
    -webkit-user-drag: none;
    /* يمنع سحب الصور */

}


.tablebox {
    width: 100%;
}

.tablebox img {
    width: 100%;
    border-radius: 5px;

}

.table {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    border-collapse: collapse;
}

.qon {
    color: rgb(87, 17, 34);
    font-weight: 800;
}


::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: rgb(87, 17, 34);
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 6px;
    border: 3px solid rgb(87, 17, 34);
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b8b8b8;
}


table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: right;
}

thead th {
    background-color: rgb(87, 17, 34);

    color: white;
    font-size: 18px;
}

tbody tr:nth-child(even) {
    background: #f4f4f4;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.459);
    color: #949494;
}
.loading h1{
    color: white;
    text-align: center;
}

.loading {
    background-color: rgb(87, 17, 34);

    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 10000;
    display: flex;
    transition: 3.0s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: load 4s forwards 1;
    
}

@keyframes load {
    0% {
        opacity: 100%;
        display: flex;
    }
        80% {
        opacity: 100%;
    }

    100% {
        opacity: 0%;
        display: none;
    }
}

.gold {

    font-weight: 800;

    background: linear-gradient(135deg,
            #6b4f00,
            /* بني ذهبي داكن */
            #d4af37,
            /* ذهبي كلاسيكي */
            #f0d86b,
            /* ذهبي فاتح */
            #c9a600,
            /* ذهبي متوسط */
            #8b6b00
            /* ذهبي غامق */
        );

    background-size: 200% auto;

    color: transparent;

    background-clip: text;
    -webkit-background-clip: text;

    animation: goldMove 5s linear infinite;

}

@keyframes goldMove {
    to {
        background-position: 200% center;
    }
}


.table-bordered {
    width: 100%;
}

@media (max-width: 768px) {

    th,
    td {
        font-size: 14px;
        padding: 6px;
    }
}


footer {
    color: rgb(92, 92, 92);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    text-align: end;

    text-align: justify;
}