


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999998;
}

#popup {
    width: 90%;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid gray;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    z-index: 9999999;
    overflow: hidden;
}

#popup .btn {
    padding: 6px 20px 6px 20px !important;
    width: auto !important;
}
#popup .tit{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(60,63,65,1);
    padding: 13px 20px 10px 10px;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
}
#popup .txt{
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    direction: ltr;
    font-weight: bold;
    font-size: 0.9rem;
    color: black;
}

#loader{
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader .loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

    :root {
        --typo-primary-font-family: Montserrat;
        --typo-primary-font-weight: 500;
        --typo-secondary-font-family: Montserrat;
        --typo-secondary-font-weight: 500;
        --typo-text-font-family: Montserrat;
        --typo-text-font-weight: 500;
        --typo-accent-font-family: Montserrat;
        --typo-accent-font-weight: 500;

        --bs-primary: #000000;
        --bs-primary-rgb: 0,0,0;
        --bs-secondary: #7B5F43;
        --bs-secondary-rgb: 123,95,67;
        --bs-success: #705539;
        --bs-success-rgb: 112,85,57;
        --bs-info: #555555;
        --bs-info-rgb: 85,85,85;
        --bs-warning: #ffc107;
        --bs-warning-rgb: 295,193,7;
        --bs-danger: #dc3545;
        --bs-danger-rgb: 220,53,69;
        --bs-light: #EDEDED;
        --bs-light-rgb: 237,237,237;
        --bs-dark: #050505;
        --bs-dark-rgb: 5,5,5;
    }


    


    html {
        scroll-behavior: smooth;
    }
    body{
        font-family: 'roboto', sans-serif;
        font-size: 16px;
        font-weight: normal;
        padding: 0px;
        margin: 0px;
        background-color: #080808;
    }
    a{
        text-decoration: none;
        text-transform: capitalize;
    }

    * {
        box-sizing: border-box;
    }

    *,*::after,*::before {
        /*box-sizing: border-box;*/
        /*outline: solid 2px lime;*/
    }


    button{
        text-transform: capitalize;
    }

    .clear{
        clear: both;
    }

    .unselect{
        -moz-user-select: none;
        -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
        user-select: none; /* Standard syntax */
        /*-khtml-user-select: none;*/
    }

    #main{
        padding: 0px;
        margin: 0px;
    }

    #app{
        min-height: 100vh;
    }

    .topspace{
        padding-top: 150px;
    }

    .hideme{
        display: none !important;
        visibility: hidden; !important;
    }


    .disabel {
        opacity: 0.6 !important;
        cursor: not-allowed !important;
    }



    /*******  DESKTOP ******878*/
    @media only screen and (min-width: 980px) {
        .mobile{
            display: none !important;
            visibility: hidden !important;
        }

        .desktop{
            /*display: block;*/
            visibility: visible !important;
        }

    }

    /*******  MOBILE ******888*/
    @media only screen and (max-width: 992px) {

        .mobile{
            /*display: block;*/
            visibility: visible !important;
        }

        .desktop{
            display: none !important;
            visibility: hidden !important;
        }

    }



    @keyframes fadein-right {
        from {margin-left: 100px;opacity: 0;}
        to {margin-left: 10px;opacity: 1;}
    }

    @keyframes fadein-left {
        from {margin-left: -100px;opacity: 0;}
        to {margin-left: 10px;opacity: 1;}
    }

    .fadein-left{
        margin-left: 0px !important;
        opacity: 0 !important;
    }


    .xbtn{
        border: solid 2px var(--bs-secondary);
        border-radius: 0px;
        padding: 10px 10px 10px 10px;
        color: var(--bs-secondary);
        text-decoration: none;
        text-align: center;
        transition: all .3s linear;
    }
    .xbtn:hover{
        background-color: var(--bs-secondary);
        color: var(--bs-light);
        padding: 10px 10px 10px 10px;
    }
    .xbtn:hover span{
        padding-right: 20px;
        padding-left: 20px;
    }



    .cr{
        background-color: #050505;
        color: #f8f9fa;
        font-size: 14px;
        text-align: center;
        padding: 20px;
    }

    .glassbg{
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .page {
        min-height: 100vh;
    }
    .ptit {
        font-weight: bold;
        color: #696767;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    .drtit{
        display: block;
        font-weight: bold;
        color: #b17b66 !important;
        font-size: 1.1rem;
    }

    .drname{
        display: block;
        font-weight: bold;
        color: whitesmoke !important;
        font-size: 1.1rem;
    }

    .animate {
        opacity: 0;
        transition: all 0.8s ease-out;
    }
    .speed1 {
        transition: all 0.25s ease-out;
    }
    .speed2 {
        transition: all 0.45s ease-out;
    }
    .speed3 {
        transition: all 0.65s ease-out;
    }
    .speed4 {
        transition: all 0.8s ease-out;
    }
    .delay1{
        transition-delay: 0.3s;
    }
    .delay2{
        transition-delay: 0.55s;
    }
    .delay3{
        transition-delay: 0.8s;
    }
    .delay4{
        transition-delay: 1s;
    }
    .animate-from-top {
        transform: translateY(-50px);
    }
    .animate-from-top.in-view {
        opacity: 1;
        transform: translateY(0);
    }
    .animate-from-bottom {
        transform: translateY(50px);
    }
    .animate-from-bottom.in-view {
        opacity: 1;
        transform: translateY(0);
    }
    .animate-from-right {
        transform: translateX(100px);
    }
    .animate-from-right.in-view {
        opacity: 1;
        transform: translateX(0);
    }
    .animate-from-left {
        transform: translateX(-100px);
    }
    .animate-from-left.in-view {
        opacity: 1;
        transform: translateX(0);
    }
    .animate-fadein.in-view {
        opacity: 1;
    }



     .policies-links {
         text-align: center;
         margin-top: 20px;
         font-size: 14px;
     }
    .policies-links a {
        color: #0d47a1;
        text-decoration: none;
        margin: 0 8px;
        font-weight: 600;
    }
    .policies-links a:hover {
        text-decoration: underline;
    }




    .carousel {
        width: 100%;
        margin: 20px auto;
        overflow: hidden;
        position: relative;
        cursor: grab;
    }


    .track {
        display: flex;
        align-items: stretch;
        gap: 20px;
        will-change: transform;
    }


    .item {
        flex: 0 0 15%;
        user-select: none;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }


    .item img {
        width: 95%;
        border-radius: 12px;
        display: block;
        pointer-events: none;      /* يسمح بالسحب فوق الصورة */
        user-select: none;         /* يمنع تحديد النص */
        -webkit-user-drag: none;   /* يمنع image ghost عند السحب */
    }


    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.6);
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
    }

    .arrow.left { left: 10px; }
    .arrow.right { right: 10px; }


    .track,
    .item,
    .item img {
        user-select: none;
        -webkit-user-drag: none;
    }


    @media(max-width: 1024px) {
        .item { flex: 0 0 23.33%; }
    }

    @media(max-width: 768px) {
        .item { flex: 0 0 30%; }
    }

    @media(max-width: 480px) {
        .item { flex: 0 0 50%; }
    }



    



