:root {
    --text-color: #ffffff;
    --main-gray: #cfcfcf;
    --lower-gray: #bbbbbb;
    --highlight-text-color: #CDDC39;
    --main-color: #ffffff;
    --second-color: #000000;
    --radius: 15px;
    --radius-2x: 20px;
    --font-famiy: DanaFanum;
    --title-font-famiy: unset;
    --full-width: calc(100% - 40px);
    --header-width: calc(100% - 140px);
    --max-element-width: 1500px;
}


@font-face {
    font-family: 'Product Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}

/* Regular font weight */
@font-face {
    font-family: 'DanaFanum';
    src: url('dana-fanum-regular.woff2') format('woff2');
    font-weight: 400;
    /* Normal weight */
    font-style: normal;
}

/* Bold font weight */
@font-face {
    font-family: 'DanaFanum';
    src: url('dana-fanum-bold.woff2') format('woff2');
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
}

/* Black font weight */
@font-face {
    font-family: 'DanaFanum';
    src: url('dana-fanum-black.woff2') format('woff2');
    font-weight: 900;
    /* Bold weight */
    font-style: normal;
}




* {
    font-family: var(--font-famiy);
    -webkit-tap-highlight-color: #ffffff00;
    outline: none;
    transition:1s;
}


body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}




/** mouse circle **/


.mouse-circle {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.342);
    border-radius: 50%;
    pointer-events: none;
    /* Ensure the circle doesn't interfere with mouse events */
    transition: 0.2s;
    opacity: 0;
    /* Start hidden */
    z-index: 4000;
}

.mouse-circle.hover {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

body:not(:hover) .mouse-circle {
    opacity: 0;
}


/** animated in scroll **/

section {
    transition: 2s;
    animation-delay: 3s;
}

section.is-visible {
    opacity: 1;
    transform: translateY(0px);
}



/** header and menu **/


.hero-bg {
    position: absolute;
    opacity: 0.1;
    z-index: -30;
    width: 180%;
    top: -400px;
}

#overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: var(--header-width);
    margin: auto;
    position: fixed;
    top: 0;
    width: -webkit-fill-available;
    margin: 20px auto;
    right: 0;
    left: 0;
    z-index: 3000;
    backdrop-filter: blur(20px);
    /* background: #0000004a; */
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-radius: 20px;
    max-width: var(--header-width);
    margin: auto;
    position: fixed;
    top: 0;
    width: -webkit-fill-available;
    margin: 20px auto;
    right: 0;
    left: 0;
    z-index: 3000;
    /* background: #dbdbdb;*/
}

#main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 16px;
}

#main-menu a {
    text-decoration: none;
    color: var(--text-color);
    padding: 20px 0;
    display: flex;
    white-space: nowrap;
}

.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.dropdown-toggle {
    display: block;
}

.dropdown-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.dropdown-arrow img {
    width: 12px;
    margin: 2px 5px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: contrast(0) brightness(3);
}

.dropdown-menu {
    display: none;
    position: absolute;
    overflow: hidden;
    top: 100%;
    margin: 0px 0;
    background-color: #505050;
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    z-index: 1;
    color: #fff;
    padding: 10px 20px;
    flex-wrap: wrap;
    transition: 0.2s;
    transition-delay: 0s;
}

.dropdown-menu a {
    padding: 10px 15px !important;
    white-space: nowrap;
    color: #fff !important;
}

.dropdown:hover>.dropdown-menu {
    display: flex;
}

.dropdown:hover .dropdown-arrow img {
    transform: rotate(180deg);
}

button,
input,
textarea {
    background: #ffffff00;
    color: var(--main-gray);
    border: 0px solid var(--lower-gray);
    padding: 10px 15px;
    border-radius: var(--radius);
    font-size: 16px;
    margin: 5px;
    outline: 0px solid #0000000f;
}

button:hover {
    cursor: pointer;
    outline: 5px solid #0000000f;
}

.cta {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #000000;
    font-weight: 700;
}

.intro-btn {
    font-size: 16;
    border-radius: 30px;
}

.intro-btn img {
    width: 12px;
    object-fit: contain;
}


.btn-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-header-btn-container {
    display: none;
}


.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}


.logo {
    width: 120px;
    filter: contrast(0) brightness(3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 200;
    position: fixed;
    right: 40px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
}





/** hero section **/

.hero {
    margin: 20px;
    max-width: var(--full-width);
    width: 1200px;
    display: flex;
    transform: translateY(40px);
}


.head-hero {
    margin: 0px auto 0px auto;
    text-align: center;
    max-width: 1000px;
    flex-direction: column;
    align-items: center;
}

.body-hero {
    gap: 50px;
    direction: rtl;
}


.flex-partition {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    align-items: flex-start;
}

.hero-title {
    font-size: 60px;
    margin: 30 auto 30 auto;
    line-height: 90px;
    letter-spacing: -2px;
    font-weight: 900;
    font-family: var(--title-font-famiy);
    color: var(--text-color);
}


.highlight {
    color: #e78342;
    font-family: var(--title-font-famiy);
}


.hero p {
    font-size: 20px;
    margin: 30px auto;
    line-height: 30px;
    color: var(--text-color);
}

.head-hero p {
    max-width: 400px;
}






.hero>.btn-container>button {
    font-size: 18px;
    display: flex;
    align-items: center;
    align-content: space-between;
    gap: 10px;
    padding: 15px 20px;
}


h1 {
    font-size: 40px;
    margin: 10px 0;
}


.callout{
    width: 1000px;
    opacity: 0.75;
    filter: invert(1) hue-rotate(14deg);
    transform: translate(0px, 130px);
    scale: 1.1;
}

.flowchart{
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 0;
    object-fit: cover;
    filter: invert(1);
    margin: 30px 0;
}






.main-slider {
    width: 100%;
    padding: 10px 0;
    max-height: 600px;
    mask: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(12, 12, 12, 1) 85%, rgba(255, 255, 255, 0) 100%);
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    max-width: 900px;
    width: calc(100% - 60px);
    height: fit-content;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: var(--lower-gray);
    /* box-shadow: 0px 0px 80px -50px #000000f2; */
}

.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 20px 30px!important;
    display: inline-block;
    border-radius: 20px;
    background: #ffffff;
    opacity: 1;
    transition: .2s;
}


.swiper-pagination-bullet-active {
    height: 20px;
    border-radius: 20px;
}












.partners {
    text-align: center;
    margin: 50px auto;
    /* width: var(--header-width); */
    max-width: 100%;
}

.partners-grid {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 20px 50px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 30px;
}

.partner-item img {
    width: 150px;
    opacity: 0.6;
}













.brand-carousel-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 10px;
    transition: 0.2s;
    margin: auto;
    mask: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(12, 12, 12, 1) 80%, rgba(255, 255, 255, 0) 100%);
}

.brand-carousel-container:hover .brand-carousel-track {
    filter: blur(5px);
}

.brand-carousel-container:hover .brand-carousel-see-more {
    opacity: 1;
    transform: translateY(0px);
}

.brand-carousel-see-more {
    z-index: 30;
    padding: 30px 0;
    cursor: pointer;
    opacity: 0;
    font-size: 18px;
    color: #33c;
    transform: translateY(-40px);
    position: absolute;
    text-align: center;
    transition: 0.4s;
    margin: auto;
    width: var(--full-width);
}

.brand-carousel-track {
    display: flex;
    gap: 20px;
    /* should be matched with js */
    will-change: transform;
}

.brand-carousel-item {
    flex: 0 0 auto;
    width: 190px;
    height: 100px;
    /* background-color: #eee; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}










.tab-container {
    /* max-width: 700px; */
    margin: 50px auto;
    text-align: center;
    padding: 20px;
    background: #ededed;
}

.tab-buttons {
    display: flex;
    cursor: pointer;
    gap: 10px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    max-width: 500px;
}

.tab-buttons div {
    padding: 10px 20px;
    background-color: #ffffff00;
    align-content: center;
    flex: 1;
    white-space: nowrap;
    border-radius: 15px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.tab-buttons div:hover {}

.tab-buttons .active {
    background-color: var(--main-color);
    color: #fff;
}

.tab-content {
    position: relative;
    padding: 20px;
    background-color: #fff0;
    height: 200px;
}

.tab-content div {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    align-items: center;
    justify-content: center;
}

.tab-content .active {
    opacity: 1;
    visibility: visible;
}








.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.faq-question {
    margin: 0;
    padding: 15px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    width: 16px;
    height: 20px;
    background-image: url('arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #f1f1f1;
    margin: 0;
    padding: 0 15px;
    transition: max-height 0.3s ease;
    border-radius: 20px;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 18;
    padding: 20px;
    line-height: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content */
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}









footer {
    width: var(--full-width);
    margin: 20px auto;
    border-radius: var(--radius-2x);
}


.inner-container {
    margin: auto;
    max-width: 1000px;
    display: flex;
    flex-wrap: nowrap;
    gap: 100px;
    justify-content: center;
}

.info-container {
    display: flex;
    flex-direction: column;
    width: 30%;
    justify-content: center;
}

.link-container {
    display: flex;
    margin: 50px 0;
    gap: 20px;
    width: 70%;
}



.link-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.link-box a {
    text-decoration: none;
    color: var(--main-gray);
    padding: 8px
}

.link-box>.title {
    color: var(--main-color);
    font-weight: bold;
}
























    /* Reset body margins and paddings */
    body, html {
        margin: 0;
        padding: 0;
        overflow: hidden;
        background: #232222;
      }
  
      /* Fullscreen 3D model viewer */
      model-viewer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
  
      .hotspot-btn {
        display: none;
      }
  
      /* Swiper container styling */
      .swiper-container {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
      }
  
      .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 20px;
        font-size: 1.2em;
        color: #ffffff;
        background: transparent;
        height: 100%;
        width: 100% !important;
        max-width: unset;
        box-sizing: border-box;
      }
  
      /* Hero title styling */
      .slide-title {
        font-size: 2em;
        margin-bottom: 10px;
      }
  
      .slide-description {
        font-size: 1.2em;
      }








/*    Mobile devices (less than 768px)   */


@media (max-width: 767.98px) {

    .mouse-circle {
        display: none;
    }


    /** header and menu **/

    #overlay {
        top: 0;
        padding: 60px 0;
        margin: 0px;
        max-width: 100%;
    }




    header {
        padding: 22px;
        margin: 0;
        max-width: 100%;
    }

    #main-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        /* filter: blur(10px); */
        opacity: 0;
        width: 0px;
        overflow: hidden;
        height: calc(100% - 100px);
        backdrop-filter: blur(10px);
        background-color: #141414;
        flex-direction: column;
        gap: 10px;
        padding: 100px 0 0 0;
        transition: 0.2s ease;
        transition-delay: 0.2s;
        z-index: 100;
    }

    #main-menu a {
        padding: 15px 20px;
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }

    header.active #main-menu {
        width: var(--full-width);
        display: flex;
        opacity: 1;
        filter: blur(0px);
        padding: 100 20px 0 20px;
    }

    .dropdown-menu {
        width: 100%;
        display: none;
        position: static;
        box-shadow: none;
        padding: 0;
        overflow: hidden;
        background: #c2c2c263;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }

    .dropdown-arrow {
        display: flex;
    }

    .dropdown-menu.active {
        display: flex !important;
    }

    .dropdown-arrow img {
        transform: rotate(0deg);
    }

    .dropdown-menu a {
        color: #000 !important;
    }

    .dropdown-arrow.active img {
        transform: rotate(180deg);
    }

    .dropdown:hover>.dropdown-menu {
        /* display: none; */
    }

    .mobile-header-btn-container {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: calc(100% - 40px);
        position: fixed;
        bottom: 0;
    }

    .mobile-header-btn-container button {
        width: 100%
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: unset;
    }


    .logo {
        width: 120px;
        mix-blend-mode: darken;
        filter: unset;
        padding: 10px;
    }



    /** hero section **/

    .hero {
        margin: 70px 30px;
        max-width: var(--full-width);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 0;
        transform: unset;
    }

    .head-hero {
        margin: 0px 20px 280px 20px;
        text-align: center;
        max-width: 450px;
        flex-direction: column;
        align-items: center;
    }

    .body-hero {
        gap: 20px;
    }

    .body-hero img {
        width: 100%;
        border-radius: var(--radius);
        overflow: hidden;
        border: 0;
        object-fit: contain;
    }

    .flex-partition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        backdrop-filter: blur(10px);
        background: #33333373;
        padding: 20px;
        width: auto;
        border-radius: var(--radius);
    }

    .hero-title {
        font-size: 36px;
        margin: 30 auto 30 auto;
        line-height: 50px;
        font-weight: 900;
        font-family: var(--title-font-famiy);
        color: var(--text-color);
    }


    .highlight {
        color: var(--highlight-text-color);
        font-family: var(--title-font-famiy);
    }


    .hero p {
        font-size: 18px;
        margin: 10px auto;
        line-height: 30px;
        color: var(--text-color);
    }

    .head-hero p {
        max-width: var(--full-width);
    }



    .hero>.btn-container>button {
        font-size: 18px;
        display: flex;
        align-items: center;
        align-content: space-between;
        gap: 10px;
        padding: 15px 20px;
        backdrop-filter: blur(10px);
    }


    h1 {
        font-size: 25px;
        margin: 10px 0;
        font-weight: 900;
    }






    .screen-container {
        width: 1200px;
        width: 1200px;
        max-width: calc(100% - 40px);
        margin: 50px auto;
        border-radius: var(--radius-2x);
        background: #d1d1d1;
        aspect-ratio: 16 / 9;
    }



    .partners {
        text-align: center;
        margin: 50px auto;
        width: 1000px;
        max-width: 100%;
    }

    .partners-grid {
        display: flex;
        align-items: center;
        align-content: center;
        gap: 20px 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 50px 30px;
    }

    .partner-item img {
        height: 60px;
        object-fit: contain;
    }


    .btn-container {
        scale: 0.9;
    }


    .main-slider {
        max-height: 250px;
        mask: unset;
    }


    footer {
        width: var(--full-width);
    }


    .inner-container {
        margin: auto;
        max-width: 1000px;
        display: flex;
        gap: 50px;
        justify-content: center;
        padding: 30px;
        flex-wrap: wrap;
    }

    .info-container {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .link-container {
        display: flex;
        margin: 50px 0;
        gap: 20px;
        width: 70%;
        align-items: center;
        flex-wrap: wrap;
        display: none;
    }



    .link-box {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .link-box a {
        text-decoration: none;
        color: var(--main-gray);
        padding: 8px
    }

    .link-box>.title {
        color: var(--main-color);
        font-weight: bold;
    }




    .faq-question {
        font-size: 16px;
        padding: 10px;
    }



    .swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
        top: unset;
        bottom: 0;
    }















    


    /* Reset body margins and paddings */
    body, html {
        margin: 0;
        padding: 0;
        overflow: hidden;
        background: #232222;
      }
  
      /* Fullscreen 3D model viewer */
      model-viewer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
       scale: 1.5;
      }
  
      .hotspot-btn {
        display: none;
      }
  
      /* Swiper container styling */
      .swiper-container {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
      }
  
      .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 20px;
        font-size: 1.2em;
        color: #ffffff;
        background: transparent;
        height: 100%;
        width: 100% !important;
        max-width: unset;
        box-sizing: border-box;
      }
  
      .callout{
        display: none;
      }




}




/* Mini laptops and tablets (768px to 1199.98px) */
@media (min-width: 768px) and (max-width: 1199.98px) {}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {}