
:root {
    --siteGold: #c7a147;
    --siteBlue: #223366;
    --siteGray: #eeeeee;
}

body {
    font-family: Roboto,sans-serif;
    font-size: 18px;
    line-height: 25px;
}

a, a:hover {
    transition: .3s
}

    a, a:hover {
        text-decoration: none;
        color: inherit
    }

:lang(ar) ol, ul {
    padding-left: inherit;
    padding-right: 2rem;
}


.scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .scroll-animation.visible {
        opacity: 1;
        transform: translateY(0);
    }


.header {
    position: relative;
    background-image: url('../images/header.webp');
    background-size: cover;
    border-bottom: 5px solid var(--siteGold)
}

    .header:before {
        content: '';
        padding-top: 57%;
        display: inline-block;
    }

.menu-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    color: #fff;
    z-index: 2
}

.menu {
    color: #fff;
    z-index: 2
}

    .menu li {
        font-size: 15px;
        position: relative;
    }

        .menu li:after {
            content: '|';
            padding: 0 40px;
        }

        .menu li:last-child:after {
            content: '';
            padding: 0;
        }

        .menu li a:hover {
            color: var(--siteGold)
        }

.menu-toggle {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
}

    .menu-toggle .icon {
        width: 25px;
        height: 2px;
        display: block;
        transition: all 0.3s ease;
    }

        .menu-toggle .icon::before,
        .menu-toggle .icon::after {
            margin-top: 10px;
            content: '';
            width: 100%;
            height: 100%;
            background-color: #fff;
            display: block;
            transition: all 0.3s ease;
        }

    .menu-toggle[aria-expanded="true"] .icon::before {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .icon::after {
        transform: translateY(-8px) rotate(-45deg);
    }



.header-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1
}



.header-text-left {
    display: flex;
    flex-direction: column;
}

.header-text-left-big {
    color: var(--siteGold);
    font-size: 42px;
    line-height: 45px;
    font-weight: bold;
}

.header-text-left-small {
    color: #fff;
    font-size: 30px;
    line-height: 35px;
}

.header-text-right {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    padding: 30px 40px;
}

.header-form {
    background-color: var(--siteGold);
    padding: 40px;
    border-radius: 25px;
    color: #fff;
}

    .header-form input {
        height: 34px;
        padding: 10px;
        font-size: 12px;
        color: var(--siteBlue);
    }

    .header-form select {
        height: 34px;
        font-size: 12px;
        color: var(--siteBlue);
    }

.send-button-container {
    display: flex;
    justify-content: center;
}

.btn-send {
    background-color: var(--siteBlue);
    padding: 8px;
    width: 50%;
    transition: .3s
}

    .btn-send:hover {
        color: var(--siteGold);
        transition: .3s
    }

.section-brief {
    background-color: var(--siteGray);
    color: var(--siteBlue);
    font-size: 38px;
    line-height: 44px;
}

    .section-brief span {
        color: var(--siteGold);
    }

.section-brief-span {
    color: var(--siteBlue) !important;
}

.section-testimonials {
    background-color: #fff;
}

.testimonials-header {
    color: var(--siteBlue);
    font-size: 42px;
    line-height: 46px;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

.testimonials-outer {
    position: relative;
}

.swiper-testimonials .details-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    text-align: start;
}

.section-testimonials .swiper-testimonials {
    width: 100%;
    height: auto;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: unset;
}

.section-testimonials .swiper-wrapper {
    flex-direction: initial;
    align-items: stretch;
}

.section-testimonials .swiper-testimonials .swiper-slide {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--siteBlue);
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 30px;
    margin-top: 50px;
}

:lang(en) .section-testimonials .swiper-testimonials .swiper-slide .logo {
    position: absolute;
    top: -50px;
    right: 40px;
}

:lang(ar) .section-testimonials .swiper-testimonials .swiper-slide .logo {
    position: absolute;
    top: -50px;
    left: 40px;
}

.section-testimonials .swiper-testimonials .swiper-slide img {
    height: 120px;
    width: 120px;
    border-radius: 70px;
    border: 4px solid var(--siteGold)
}

.section-testimonials .swiper-testimonials .swiper-slide .details {
    display: flex;
    flex-direction: column;
}

    .section-testimonials .swiper-testimonials .swiper-slide .details .title {
        color: var(--siteGold);
        font-size: 30px;
        font-weight: bold;
    }

        .section-testimonials .swiper-testimonials .swiper-slide .details .title p {
            padding-top: 10px;
            color: #fff;
            font-size: 18px;
            text-align: start;
        }

    .section-testimonials .swiper-testimonials .swiper-slide .details .hint {
        padding-top: 5px;
        text-align: start;
        position: relative;
        font-size: 16px;
    }

.section-testimonials .swiper-testimonials .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-testimonials .swiper-testimonials .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--siteGold);
    opacity: 1;
}

.section-testimonials .swiper-testimonials .swiper-pagination-bullet-active {
    background: var(--siteBlue);
}


.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f054";
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f053";
}

.section-testimonials .swiper-button-next,
.section-testimonials .swiper-button-prev {
    color: var(--siteGold);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-rating {
    padding-top: 10px;
    display: flex;
    justify-content: center;
}

.star {
    font-size: 24px;
    color: var(--siteGold);
    padding: 0 5px;
}

.section-erp {
    background-color: var(--siteBlue);
    color: #fff;
}

.erp-header {
    display: flex;
    font-size: 42px;
    line-height: 46px;
    color: var(--siteGold);
    justify-content: center;
    font-weight: bold;
}

.section-erp .grid {
    align-items: center;
}

.section-erp ul {
    list-style: unset;
}

    .section-erp ul li {
        padding-bottom: 20px;
    }

.why-sajaya-header {
    display: flex;
    font-size: 42px;
    line-height: 46px;
    color: var(--siteBlue);
    justify-content: center;
    font-weight: bold;
}

.why-sajaya-sub-header {
    display: flex;
    color: var(--siteGold);
    justify-content: center;
    font-size: 32px;
    line-height: 36px;
}

.why-sajaya-text-big {
    font-size: 42px;
    line-height: 50px;
    font-weight: bold;
    color: var(--siteBlue);
}

.why-sajaya-unserline {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

    .why-sajaya-unserline:after {
        position: absolute;
        left: 2%;
        right: 2%;
        bottom: 0px;
        display: inline-block;
        width: 96%;
        content: '';
        height: 2px;
        border-bottom: 2px solid var(--siteGold)
    }

.why-sajaya-text-small {
    text-align: center;
    color: var(--siteBlue);
    width: 40%;
}

.why-sajaya-block-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-clients {
    background-color: #eeeeee
}

.clients-header {
    display: flex;
    font-size: 42px;
    line-height: 46px;
    color: var(--siteBlue);
    justify-content: center;
    font-weight: bold;
}

.clients-sub-header {
    display: flex;
    color: var(--siteGold);
    justify-content: center;
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    width: 80%
}

.clients-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper.swiper-clients {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

    .swiper.swiper-clients .swiper-wrapper {
        flex-direction: initial;
        align-items: end
    }

    .swiper.swiper-clients .swiper-slide {
        text-align: center;
        height: calc((100% - 30px)/ 3) !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .swiper.swiper-clients .swiper-slide div img {
            width: 185px;
        }

.section-call-1 {
    padding: 210px 0;
    background-image: url('../images/request-free-consultation.webp');
    background-size: cover;
    background-repeat: no-repeat
}

.call-1-title {
    color: #fff;
    font-size: 42px;
    line-height: 52px;
    text-align: center;
}

    .call-1-title span {
        color: var(--siteGold);
    }

.call-1-brief {
    color: #fff;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
}

.call-1-link {
    display: flex;
    justify-content: center;
}

    .call-1-link a {
        background-color: var(--siteGold);
        color: var(--siteBlue);
        padding: 15px 60px;
        border-radius: 10px;
        font-size: 22px;
        font-weight: bold
    }

        .call-1-link a:hover {
            color: #fff;
        }


.system-header {
    display: flex;
    font-size: 42px;
    line-height: 46px;
    color: var(--siteBlue);
    justify-content: center;
    font-weight: bold;
}

.system-sub-header {
    display: flex;
    color: var(--siteGold);
    justify-content: center;
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    width: 80%
}

.system-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.system-block {
    background-size: cover;
    position: relative;
}

    .system-block:after {
        content: '';
        display: inline-block;
        padding-top: 73%;
    }

.system-block-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    font-size: 24px;
    line-height: 28px;
    background-color: rgba(34, 51, 102, 0.7);
}

.section-call-2 {
    padding: 210px 0;
    background-image: url('../images/consult-us-today.webp');
    background-size: cover;
    background-repeat: no-repeat
}

.call-2-title {
    color: #fff;
    font-size: 42px;
    line-height: 46px;
    text-align: center;
}

.call-1-title span {
    color: var(--siteGold);
}

.call-2-brief {
    color: #fff;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
}

    .call-2-brief span {
        color: var(--siteGold);
    }

.call-2-link {
    display: flex;
    justify-content: center;
}

    .call-2-link a {
        background-color: var(--siteGold);
        color: var(--siteBlue);
        padding: 15px 60px;
        border-radius: 10px;
        font-size: 22px;
        font-weight: bold
    }

        .call-2-link a:hover {
            color: #fff;
        }


.facts-header {
    display: flex;
    font-size: 42px;
    line-height: 46px;
    color: var(--siteBlue);
    justify-content: center;
    font-weight: bold;
}

.facts-sub-header {
    display: flex;
    justify-content: center;
    font-size: 32px;
    line-height: 36px;
    text-align: center;
    width: 80%
}

.facts-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-faq {
    background-color: #eeeeee
}

.faq-header {
    display: flex;
    font-size: 42px;
    line-height: 46px;
    color: var(--siteBlue);
    justify-content: center;
    font-weight: bold;
}

.faq-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion-item {
    border: none !important
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--siteBlue) !important;
    box-shadow: none !important;
    color: #fff;
}

:lang(en) .accordion-item .accordion-button {
    border-left: 3px solid var(--siteGold) !important;
    padding-right: 40px;
}

:lang(ar) .accordion-item .accordion-button {
    border-right: 3px solid var(--siteGold) !important;
    padding-left: 40px;
    text-align: right;
}

.accordion-button:focus {
    z-index: 0;
    border-color: var(--siteGold) !important;
    box-shadow: none !important;
    color: #fff !important;
}

.accordion-body {
    color: #fff !important;
    background-color: var(--siteBlue) !important;
}

.accordion-button {
    font-size: 24px !important;
    line-height: 28px !important;
}

    .accordion-button.collapsed {
        color: var(--siteGold) !important;
    }

.accordion-item {
    margin-bottom: 10px;
}

    .accordion-item:first-child .accordion-button,
    .accordion-item:last-child .accordion-button {
        border-radius: 0 !important
    }

.accordion-button:not(.collapsed) {
    color: #fff !important;
    border-left: 3px solid transparent !important
}


.accordion-button::after {
    display: none
}

:lang(en) .accordion-button.collapsed::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f105';
    position: absolute;
    right: 20px;
}

:lang(en) .accordion-button::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f107';
    position: absolute;
    right: 20px;
}

:lang(ar) .accordion-button.collapsed::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f104';
    position: absolute;
    left: 20px;
}

:lang(ar) .accordion-button::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f107';
    position: absolute;
    left: 20px;
}

.section-map iframe {
    width: 100% !important;
    height: 500px !important;
}

.footer {
    background-color: var(--siteBlue);
    color: #fff;
}

    .footer a {
        color: #fff;
    }

        .footer a:hover {
            color: var(--siteGold);
        }

    .footer ul {
        color: var(--siteBlue);
        padding: 0 0 20px 0;
        margin: 0;
        display: flex;
        border-bottom: 2px solid #ffff
    }



.footer-links {
    display: inline-block !important;
}

    .footer-links li {
        display: inline;
    }

.footer .footer-links li:after {
    color: #fff;
    content: '|';
    padding: 0 10px;
}

.footer .footer-links li:last-child:after {
    content: '';
    padding: 0;
}

.footer-contact-us a {
    background-color: var(--siteGold);
    color: #fff;
    border-radius: 15px;
    padding: 10px 30px;
}

    .footer-contact-us a:hover {
        color: var(--siteBlue);
    }

.footer i {
    color: #fff;
    background-color: var(--siteGold);
    padding: 10px;
    border-radius: 25px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.footer-contacts-continer {
    display: flex;
    justify-content: end
}

.footer-social-media-continer {
    display: flex;
    justify-content: end
}

.footer-contacts {
    border-bottom: 0px !important;
    flex-direction: column;
    gap: 10px;
    color: #fff !important;
}

:lang(en) .footer-contacts i {
    margin-right: 10px;
}

:lang(ar) .footer-contacts i {
    margin-left: 10px;
}

.footer-contacts p {
    display: inline-block;
    direction: ltr;
}

.footer-social-media {
    border-bottom: 0 !important;
    gap: 10px;
}

.disclaimer {
    background-color: var(--siteGold);
    color: var(--siteBlue)
}

/* New styles for smaller screens */
@media only screen and (max-width: 1280px) {
    .menu {
        display: none; /* Hide the menu by default on smaller screens */
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        text-align: center;
    }

        .menu.active {
            display: block;
        }

            .menu.active ul {
                flex-direction: column;
            }

        .menu ul {
            list-style: none;
            padding: 0;
        }

        .menu li {
            margin-bottom: 10px;
            text-align: left;
            margin-left: 0 !important;
        }

    .menu-toggle {
        display: block; /* Show the toggle button on smaller screens */
    }
}

@media only screen and (max-width: 1024px) {

    .header:before {
        content: '';
        display: none;
    }

    .header-container {
        position: relative;
        padding-top: 150px;
        padding-bottom: 150px
    }

    .header-text-right {
        padding: 30px 0px;
    }
}

@media screen and (max-width: 767px) {
    .section-testimonials .swiper-testimonials .swiper-slide {
        padding: 25px;
    }

        .section-testimonials .swiper-testimonials .swiper-slide .details .title {
            font-size: 24px;
        }

    .footer-social-media-continer {
        display: flex;
        justify-content: start
    }
}

@media screen and (max-width: 520px) {
    .section-testimonials .swiper-testimonials .swiper-slide {
        flex-direction: column !important;
    }

        .section-testimonials .swiper-testimonials .swiper-slide .details {
            align-items: center;
        }

            .section-testimonials .swiper-testimonials .swiper-slide .details .hint,
            :lang(ar) .section-testimonials .swiper-testimonials .swiper-slide .details .hint {
                text-align: center;
            }
}

@media screen and (max-width: 1023px) {
    .swiper-testimonials .details-inner {
        gap: 20px;
        flex-direction: column;
        padding-top: 50px;
    }

    .footer-contacts-continer {
        display: flex;
        justify-content: start
    }
}
