:root {
    --primary: #3a3985;
    --secondary: #7549ad;
    --white: #ffffff;
    --black: #000000;
    --yellow: #ffc501;
    --gray: #344054;
} 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* border: 1px solid #ff0000; */
}
body {
    overflow-x: hidden;
    /* background-color: var(--white); */
    font-family: "Careem", sans-serif;
    direction: rtl;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: Careem;
    src: url("/assets-rw-zid/fonts/careem-regular/Careem Regular.ttf");
}

.shimmer-link {
    color: var(--black); /* Initial color of the link */
    font-weight: 600;
    text-decoration: none; /* Optional: removes underline */
    padding: 8px 16px; /* Provides some spacing around the text */
    transition: background 0.3s ease-in-out;
    background: linear-gradient(
        110deg,
        var(--primary) 45%,
        var(--secondary) 55%,
        var(--primary)
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; /* Makes the text color transparent to reveal the gradient */
    display: inline-block; /* Necessary for the background-clip on text */
}

.shimmer-link:hover {
    animation: shimmer-text 2s infinite linear !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 150px; /* Adjusted padding */
    /* background-color: transparent; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(109.78deg, #3a3985 21.88%, #7549ad 98.44%);
    color: var(--white);
    height: 60px; /* Changed from max-height to height */
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: padding 0.3s;
}

nav.scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links a.active {
    color: #ffc501 !important; /* Active link color */
}

.nav-left,
.nav-links,
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-left a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-left {
    gap: 2rem;
}

nav .links-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

nav .links-container .transfer {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;

    /* Makes the text color transparent to reveal the gradient */
    display: inline-block;
}

@keyframes shimmer-text {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

nav .links-container .transfer:hover {
    animation: shimmer-text 2s infinite linear !important;
    text-decoration: none; /* Optional: removes underline */
    transition: background 0.3s ease-in-out;
    background: linear-gradient(
        110deg,
        var(--yellow) 45%,
        var(--white) 55%,
        var(--yellow)
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.nav-logo {
    object-fit: cover;
    max-width: 150px;
}

.nav-links {
    gap: 2rem;
    list-style: none;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
}

.nav-links li a:hover {
    color: var(--yellow) !important;
}

.btn-highlight {
    background-color: var(--yellow);
    color: var(--black);
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    height: 100%;
    position: relative;
    padding: 100px 150px;
}
.header-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(109.78deg, #3a3985 21.88%, #7549ad 98.44%);
}
.header-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 40%;
    z-index: 1;
}

.header-left h1 {
    font-size: 40px;
    color: var(--yellow);
    font-weight: 500;
    font-family: "Careem", sans-serif;
}

.header-left p {
    font-size: 30px;
    color: var(--white);
    font-weight: 500;
}

.header-left a {
    margin-top: 20px;
    border-radius: 100px;
    background-color: var(--yellow);
    color: var(--primary);
    padding: 16px 27px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
}

.header-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; /* Adjusted to take half of the screen width */
    z-index: 1;
}

.header-right img {
    width: 100%; /* Image will take the full width of its container */
    max-width: 100%; /* Ensures image does not exceed the width of the container */
    height: auto; /* Keeps the image's height proportional to its width */
    object-fit: cover; /* Maintains the aspect ratio without cropping */
}
/* @media (max-width: 960px) { */

/* @media (min-width: 320px) and (max-width: 767px) {
    header {
        flex-direction: column-reverse;
        padding: 50px 20px;
        gap: 1rem;
        align-items: center;
    }

    .header-left {
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 100%;
        gap: 1rem;
    }

    .header-left h1 {
        font-size: 24px !important;
    }

    .header-left p {
        font-size: 24px;
    }

    .header-left a {
        padding: 12px 20px;
        font-size: 16px;
    }

    .header-right {
        width: 100%;
    }

    .header-right img {
        max-width: 100%;
    }
} */

/* begin::about */
#about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 100px 150px;
}

#about .about-img {
    max-width: 1200px;
    width: 100%;
    object-fit: cover;
}

#about h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 36px;
    font-family: "Careem", sans-serif;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background-color: var(--primary);
    position: relative;
    padding: 48px 80px;
    border-radius: 28px;
    max-width: 1140px;
    text-align: center;
}

.about-container p {
    color: var(--white);
    font-size: 24px;
}

.about-container img {
    object-fit: cover;
    max-width: 500px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
/* end::about */

/* begin::systems */
#systems {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 100px 150px;
    /* background-color: #f7f7f8; */
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAElBMVEUAAAD8/vz08vT09vT8+vzs7uxH16TeAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAuFJREFUOI0Vk+3NLiEIRG1B8ClAYAsQ2AIEt4D9ePtv5Xp/mZgYJ2fOFJKEfInkVWY2aglmQFkimRTV7MblYyVqD7HXyhKsSuPX12MeDhRHLtGvRG+P+B/S0Vu4OswR9tmvwNPyhdCDbVayJGads/WiUWcjCvCnruTBNHS9gmX2VzVbk7ZvB1gb1hkWFGl+A/n+/FowcO34U/XvKqZ/fHY+6vgRfU92XrOBUbGeeDfQmjWjdrK+frc6FdGReQhfSF5JvR29O2QrfNw1huTwlgsyXLo0u+5So82sgv7tsFZR2nxB6lXiquHrfD8nfYZ9SeT0LiuvSoVrxGY16pCNRZKqvwWsn5OHypPBELzohMCaRaa0ceTHYqe7X/gfJEEtKFbJpWoNqO+aS1cuTykGPpK5Ga48m6L3NefTr013KqYBQu929iP1oQ/7UwSR+i3zqruUmT84qmhzLpxyj7pr9kg7LKvqaXxZmdpn+6o8sHqSqojy02gU3U8q9PnpidiaLks0mbMYz+q2uVXsoBQ8bfURULYxRgZVYCHMv9F4OA7qxT2NPPpvGQ/sTDH2yznKh7E2AcErfcNsaIoN1izzbJiaY63x4QjUFdBSvDCvugPpu5xDny0jzEeuUQbcP1aGT9V90uixngTRLYNEIIZ6yOF1H8tm7rj2JxiefsVy53zGVy3ag5uuPsdufYOzYxLRxngKe7nhx3VAq54pmz/DK9/Q3aDam2Yt3hNXB4HuU87jKNd/CKZn77Qdn5QkXPfqSkhk7hGOXXB+7v09KbBbqdvxGqa0AqfK/atIrL2WXdAgXAJ43Wtwe/aIoacXezeGPMlhDOHDbSfHnaXsL2QzbT82GRwZuezdwcoWzx5pnOnGMUdHuiY7lhdyWzWiHnucLZQxYStMJbtcydHaQ6vtMbe0AcDbxG+QG14AL94xry4297xpy9Cpf1OoxZ740gHDfrK+gtsy0xabwJmfgtCeii79B6aj0SJeLbd7AAAAAElFTkSuQmCC);
}

@media (max-width: 1200px) {
    #systems {
        padding: 100px 50px;
    }

    .integration-box {
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
        border-radius: 1rem;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

#systems .systems-header {
    color: var(--primary);
    font-weight: 500;
    font-size: 36px;
    font-family: "Careem", sans-serif;
}

.logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 50px;
}

.logos-container img {
    object-fit: cover;
    max-width: 150px;
}

.integration-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 122px;
}

.integration-container h3 {
    color: var(--primary);
    font-weight: 500;
    font-size: 36px;
    font-family: "Careem", sans-serif;
}

.integration-container p {
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
}

.integration-container p span {
    color: var(--secondary);
    font-weight: 700;
}

.integration-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
    margin-top: 40px;
}

.integration-box {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f8;
}

.integration-box img {
    object-fit: cover;
    max-width: 100px;
}

.integration-box h4 {
    color: var(--black);
    font-weight: 600;
    font-size: 32px;
    margin-top: 1rem;
}

.integration-box p {
    color: var(--black);
    font-size: 16px;
    text-align: center;
    font-weight: 400;
}
/* end::systems */

/* begin::case-study */
#case-study {
    display: flex;
    flex-direction: column;
    padding: 100px 150px;
    justify-content: center;
}

@media (max-width: 1200px) {
    #case-study {
        padding: 100px 50px;
    }
}

#case-study h3 {
    color: var(--primary);
    font-weight: 500;
    font-size: 36px;
    font-family: "Careem", sans-serif;
}

#case-study p {
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
}

#case-study img {
    object-fit: contain;
    width: 100%;
    margin-top: 2rem;
}

.case-study-img-container {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 2rem;
    margin-top: 2rem;

    max-width: 800px;

    align-self: center;
}
/* end::case-study */

/* begin::clients */
.clients-container {
    background-color: var(--primary);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.clients-container h3 {
    color: var(--white);
    font-weight: 500;
    font-size: 36px;
    z-index: 30;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

.logos {
    /* overflow: hidden; */
    white-space: nowrap;
    padding: 50px 0;
}

.logos::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    content: "";
    background: linear-gradient(to right, var(--primary), rgba(0, 0, 0, 0));
    z-index: 20;
}

.logos::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    content: "";
    background: linear-gradient(to left, var(--primary), rgba(0, 0, 0, 0));
    z-index: 20;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    animation: 6s slide infinite linear;
    display: inline-block;
}

.logos-slide img {
    height: 50px;
    margin: 0 40px;
}

@media (max-width: 1200px) {
    .clients-container {
        padding: 100px 50px;
    }

    .logos-slide img {
        height: 40px;
        margin: 0 20px;
    }

    .logos::before {
        width: 100px;
    }
    .logos::after {
        width: 100px;
    }
}

/* end::clients */

/* begin::form */
section#form .form-content {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 30rem;
    height: 100%;
    gap: 100px;

    padding: 100px 150px;
}

.form-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    position: relative;
    background-color: var(--primary);
    border-radius: 1.7rem;
    overflow: hidden;
    padding: 0 3rem;
}

.form-left-content img {
    height: 12rem;
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;
    flex-shrink: 0;
    opacity: 0.7;
    position: absolute;
}

.form-left-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.375rem;
}

.form-left-content p {
    color: var(--white);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.form-right-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    gap: 1.5rem;
    max-width: 34rem;
}

.form-right-content h3 {
    width: 100%;
    font-family: "Careem", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 3.5rem;
}

.form-right-content h3 span {
    font-weight: 600;
}

.form-right-content form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-right-content form input {
    border-radius: 1.75rem;
    /* height: 3.5rem; */
    outline: none;
    border: none;
    background-color: #e1dee533;
    padding: 1rem 1.5rem;
    max-width: 30rem;
    font-size: 18px;
    color: var(--primary);
}

/* apply styles for select input */
.form-right-content form select {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 1rem 1.5rem;
    outline: none;
    border: none;
    background-color: #e1dee533;
    font-weight: 100 !important;
    font-size: 18px;
    color: #12022fb3;
    border-radius: 1.75rem;
    cursor: pointer;
}

.select-wrapper {
    border-radius: 1.75rem;
    /* overflow: hidden; */
    position: relative;
    /* height: 3.5rem; */
    outline: none;
    border: none;

    max-width: 30rem;
    cursor: pointer;
}

.select-wrapper::after {
    content: "▼";
    font-size: 1rem;
    top: 25%;
    left: 1rem;
    position: absolute;
    color: #12022fb3;
}
.form-right-content form textarea {
    border-radius: 1.75rem;
    /* height: 3.5rem; */
    outline: none;
    border: none;
    background-color: #e1dee533;
    padding: 1rem 1.5rem;
    max-width: 30rem;
    font-size: 18px;
}

.form-right-content form button {
    max-width: 70%;
    width: 100%;
}

.form input,
input::placeholder,
.form select,
select::placeholder,
.form textarea,
textarea::placeholder {
    font-weight: 100 !important;
    font-size: 1rem;
    color: #12022fb3;
}

@media screen and (max-width: 960px) {
    section#form .form-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 100px 10px !important;
        text-align: center;
    }

    .form-left-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        background-color: var(--primary);
        border-radius: 1.7rem;
        overflow: hidden;
        padding: 1rem;
    }

    .form-left-content h3 {
        font-size: 1.75rem;
        line-height: 2.375rem;
    }

    .form-left-content p {
        font-size: 20px !important;
        line-height: 1.5rem;
    }

    .form-left-content img {
        height: 100%;
        bottom: 0 !important;
        left: 0 !important;
        margin: auto !important;
        flex-shrink: 0;
        opacity: 0.2;
    }

    .form-right-content h3 {
        font-size: 18px;
        line-height: 2rem;
    }

    .form-right-content form button {
        max-width: 100%;
        width: 100%;
    }
}
/* end::form */

/* @media (max-width: 1200px) {
    section#form .form-content {
        padding: 100px 50px;
    }

    .form-left-content p {
        font-size: 16px;
    }
} */

/* Footer Styling Start */

footer {
    background-color: var(--white) !important;
}

.footer {
    display: flex;
    flex-direction: column;
    border-radius: 1.6rem 1.6rem 0 0;
    background-color: #f7f7f8;
}

.footer-image-container {
    position: relative;
    width: 100%;
    max-height: 40px;
    height: 100%;
    overflow: hidden;
}

.footer-header-image {
    width: 100%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.footer a:hover {
    color: var(--primary);
}

.footer-content {
    padding: 80px;
}

.footer-top-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.footer-top-content a {
    color: var(--primary);
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px; /* 182.609% */
    letter-spacing: 0.46px;
}

.footer-sm {
    display: flex;
    gap: 10px;
}

.footer-sm img {
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-bottom a {
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    text-decoration-line: underline;
}

.footer-bottom p {
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.footer-bottom-right {
    display: flex;
    gap: 24px;
}

.footer-middle {
    display: flex;
    flex-direction: row;
    gap: 7px;
    justify-content: center;
    align-items: center;
}

.footer-middle img {
    transition: all 0.3s linear;
    filter: invert(1);
}

.footer-middle:hover img {
    transform: translateX(-10px);
    transition: all 0.3s linear;
}

/* Responsive  */
@media (max-width: 960px) {
    .footer-content {
        padding: 40px;
        width: 100%;
    }

    .footer-middle {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 7px;
        justify-content: center;
        align-items: center;
    }

    .footer-top-content {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .footer-bottom-right {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .footer-top-content a {
        font-size: 1rem;
        font-style: normal;
        font-weight: 500;
        line-height: 2.625rem;
        letter-spacing: 0.36px;
    }
}
/* Footer Styling End */
/* end::footer */

/* begin::shared */
.secondary-highlight {
    color: var(--secondary);
}

.yellow-highlight {
    color: var(--yellow);
}

@keyframes shimmer {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.btn {
    color: var(--black);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    padding: 12px 24px;
    border-radius: 100px;
    max-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    background-color: var(--yellow); /* Set the default background to yellow */
}

.btn:hover {
    color: var(--white);
    background-image: linear-gradient(
        110deg,
        var(--primary) 45%,
        var(--secondary) 55%,
        var(--primary)
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

.request-btn {
    background-color: var(--yellow);
}

.website-btn {
    background-color: var(--primary);
    color: var(--white) !important;
}
/* end::shared */

/* Mobile styles */
@media (min-width: 320px) and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
    /* Navigation */
    nav {
        padding: 30px 20px;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .links-container a:nth-child(2) {
        display: none;
    }

    nav .btn {
        padding: 5px 10px !important;
        font-size: 14px;
        height: auto;
    }

    /* Header */
    header {
        flex-direction: column-reverse;
        /* padding: 50px 20px; */
        padding-bottom: 70px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 1rem;
        align-items: center;
    }

    .header-left {
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 100%;
        gap: 1rem;
    }

    .header-left h1 {
        font-size: 20px !important;
    }

    .header-left p {
        font-size: 14px;
    }

    .header-left a {
        padding: 12px 20px;
        font-size: 16px;
    }

    .header-right {
        width: 100%;
    }

    .header-right img {
        max-width: 300px;
        max-height: 300px;
        width: 100%;
        height: 100%;
    }

    .header-left,
    .header-right {
        padding: 0;
        text-align: center;
    }

    /* About */
    #about {
        padding: 50px 20px;
    }

    #about h3 {
        font-size: 24px;
        text-align: center;
    }

    #about img {
        display: none;
    }

    .about-container {
        flex-direction: column;
        padding: 20px;
    }

    .about-container p {
        font-size: 12px;
    }

    .about-container img {
        display: none;
    }

    /* Systems */
    #systems {
        padding: 50px 20px;
    }

    .systems-header {
        font-size: 24px !important;
        text-align: center;
    }

    .systems-header br {
        display: none;
    }

    .logos-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
    }

    .logos-container img {
        max-width: 60px;
    }

    .integration-container h3 {
        font-size: 24px;
    }

    .integration-container {
        margin-top: 20px;
    }

    .integration-container p {
        font-size: 16px;
    }

    .integration-container h3,
    .integration-container p {
        text-align: center;
    }

    .integration-boxes-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .integration-box {
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
        border-radius: 1rem;
        padding: 0.5rem;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .integration-box h4 {
        font-size: 20px;
    }

    .integration-box p {
        font-size: 14px;
    }

    /* Case Study */
    #case-study {
        padding: 50px 20px;
    }

    #case-study h3 {
        font-size: 24px;
        text-align: center;
    }

    #case-study p {
        text-align: center;
        font-size: 16px;
    }

    /* Clients */
    .clients-container {
        padding: 50px 20px;
    }

    .clients-container h3 {
        text-align: center;
        font-size: 24px;
    }

    .clients {
        flex-wrap: wrap;
        justify-content: center;
    }

    .clients img {
        max-width: 100px;
    }
}

.loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    background: #fff;
    box-shadow: -24px 0 #fff, 24px 0 #fff;
    box-sizing: border-box;
    animation: shadowPulse 0.6s ease-in infinite;
}

@keyframes shadowPulse {
    33% {
        background: #fff;
        box-shadow: -24px 0 #3a3985, 24px 0 #fff;
    }
    66% {
        background: #3a3985;
        box-shadow: -24px 0 #fff, 24px 0 #fff;
    }
    100% {
        background: #fff;
        box-shadow: -24px 0 #fff, 24px 0 #3a3985;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content .close-btn {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 40px;
    font-weight: 200;
    color: var(--primary);
    cursor: pointer;
}

.modal-content .close-btn:hover {
    color: var(--secondary);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 700px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
}

.modal-content div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-direction: column;
    padding: 50px 100px;
}

.modal-content h3 {
    font-size: 28px;
    font-weight: 400;
    font-family: "Careem", sans-serif;
}

.modal-content p {
    font-weight: 400;
    font-size: 18px;
}

.modal-content a {
    margin-top: 20px;
    border-radius: 100px;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 27px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.modal-content a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.primary-highlight {
    color: var(--primary);
    font-weight: 700;
}

.left-shadow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 400px;
    background: linear-gradient(109.78deg, #3a3985 21.88%, #7549ad 98.44%);
    filter: blur(150px);
}

.right-shadow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 100px;
    height: 400px;
    background: linear-gradient(109.78deg, #3a3985 21.88%, #7549ad 98.44%);
    filter: blur(150px);
}

@media (min-width: 1101px) and (max-width: 1400px) {
    nav {
        padding: 20px 50px;
    }

    .nav-left {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .links-container .btn {
        padding: 12px 20px;
        font-size: 16px;
        max-height: 35px;
    }

    /* header */

    header,
    section {
        padding: 100px 50px;
    }

    .header-left {
        width: 50%;
    }

    .header-left h1 {
        font-size: 36px;
    }

    .header-left p {
        font-size: 24px;
    }

    .header-left a {
        padding: 16px 27px;
        font-size: 18px;
    }

    .header-right {
        width: 50%;
    }

    .header-right img {
        max-width: 100%;
        max-height: 100%;
    }

    /* about */

    #about {
        padding: 100px 50px;
    }

    /* form */
    .form-right-content {
        max-width: 100%;
        width: 100%;
    }

    section#form .form-content {
        padding: 100px 50px !important;
        gap: 50px;
    }
}

@media (min-width: 481px) and (max-width: 1100px) {
    nav {
        padding: 20px 50px;
    }

    .nav-left {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .links-container .btn {
        padding: 12px 20px;
        font-size: 16px;
        max-height: 35px;
    }

    /* header */
    section,
    header {
        padding: 100px 50px;
    }

    .header-left {
        width: 100%;
    }

    .header-left h1 {
        font-size: 36px;
    }

    .header-left p {
        font-size: 24px;
    }

    .header-left a {
        padding: 16px 27px;
        font-size: 18px;
    }

    .header-right {
        width: 100%;
    }

    .header-right img {
        max-width: 100%;
        max-height: 100%;
    }

    /* about */
    #about {
        padding: 100px 50px;
    }

    .about-container {
        padding: 20px;
    }

    .about-container p {
        font-size: 18px;
        margin-left: 2rem;
    }

    /* form */
    section#form .form-content {
        padding: 100px 50px !important;
        gap: 50px;
    }

    .form-left-content {
        padding: 1rem;
    }

    .form-left-content p {
        font-size: 20px;
    }

    .form-right-content h3 {
        font-size: 24px;
    }

    .form-right-content form input {
        font-size: 18px;
    }

    .form-right-content form select {
        font-size: 18px;
    }

    .form-right-content form textarea {
        font-size: 18px;
    }

    .form-right-content form button {
        max-width: 70%;
    }

    .form-right-content {
        max-width: 100%;
        width: 100%;
    }
}


/* new page design */
/* add by Raghad Ismail  */
/* sunday 24/11/2024 */

/* nav and hero section */

nav {
    background-color: rgb(255 255 255 / 60%) !important;
    z-index: 9999;
    position: absolute;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.1);
    background: none;
    transition: padding 0.3s;
    width: 95%;
    margin: 50px 50px;
    border-radius: 1.5rem;
    padding: 40px 45px;
}

.left-container {
    display: flex;
    justify-content: center;
    align-items: end;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

nav .nav-links, a {
    color: #344054;
}

.logo {
    width: 190px !important;
}

nav .nav-links, a {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 25px;
    font-size: 20px;
    color: #000 !important;
    font-weight: 500;
}

.request-btn {
    background-color: var(--primary);
}

.btn {
    color: var(--white) !important;
    text-align: center;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    padding: 17px 40px;
    border-radius: 100px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.lang-link {
    color: var(--primary) !important;
    text-decoration: none;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

.hero-background {
    background: url(/assets-ecommerce/hero/hero-bg.svg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-right-box, .left-primary-box {
    z-index: 99;
}

section#hero {
    height: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
    column-gap: 0px;
    row-gap: 0px;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.hero-right-box {
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 50px;
}

.hero-right-box, .left-primary-box {
    z-index: 99;
}

.left-primary-box {
    height: 100%;
    padding-right: 50px;
    padding-top: 150px;
    padding-bottom: 50px;
    border-radius: 0 0 80px 0;
    color: var(--white);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.left-primary-box {
    margin-left: 100px;
    justify-content: center;
}

.hero-star {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.form-right-content h3 {
    font-family: "Careem", sans-serif;
}

.hero-supercharge {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #7549ad;
}

.hero-header-text .highlight {
    display: block;
}

.hero-header-text .highlight {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1px;
    word-spacing: 3px;
}

.highlight {
    color: var(--secondary);
}

.hero-header-text .highlight-p {
    padding-top: 30px;
    font-size: 26px;
    line-height: 35px;
    color: var(--gray);
}

.highlight-p {
    margin-bottom: 25px;
}

.highlight-p-colored {
    color: var(--secondary);
}

.hero-message {
    padding: 15px 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    color: var(--black);
    line-height: 25px;
    opacity: 0.6;
    max-width: 500px;
    width: 100%;
}

.form-right-content form input ,
.form-right-content form select{
    border: 1px solid #dedce2;
    background-color: #fff;
    color: #808080;
    max-width: 100%;
}

.form-right-content form input::placeholder ,
 .form-right-content form select::placeholder{
    color: #808080;
 }

 .form-right-content form button {
    max-width: 55%;
    width: 100%;
}

.btn:hover {
    color: var(--white);
    background-image: linear-gradient(110deg, rgba(255, 201, 71, 1) 45%, rgb(219 170 54) 55%, rgba(255, 201, 71, 1));
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

.hero .request-btn {
    background-color: var(--yellow);
    color: var(--gray) !important;
}

.select-wrapper{
    max-width: 100%;
}

.highlight-p-colored {
    color: #344054;
    font-weight: 500;
}

#about h3 {
    color: var(--gray);
    text-align: center;
}

.integration {
    background-color: rgba(251, 246, 255, 1);
}

.integration .about-img {
    max-width: 100%;
}

section#seamless {
    padding-top: 6rem;
    padding-bottom: 2rem;
    justify-content: flex-start;
    flex-direction: row;
    display: flex;
    padding: 6.5rem 5.5rem;
    background-color: var(--white);
    align-items: center;
}

section#seamless h3 {
    font-weight: 700;
    color: #344054;
    font-size: 2.625rem;
    line-height: 3.43rem;
}

section#seamless p {
    font-style: normal;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5rem;
    margin-bottom: 10px;
    color: #344054;
}

.seamless-content {
    grid-template-columns: 85% 15%;
    gap: 0rem;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.seamless-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px 0 40px;
}

.secondary-highlight {
    color: var(--secondary);
    display: block;
    font-size: 35px;
}

section#seamless h3 {
    font-weight: 600;
    color: #344054;
    font-size: 32px;
    line-height: 3.43rem;
    margin-bottom: 15px;
}

.primary-highlight {
    color: var(--gray);
    font-weight: 600;
}

span.primary-highlight span.number {
    font-size: 35px;
    line-height: 38px;
}

.footer-middle.btn.website-btn {
    background: linear-gradient(287.73deg, #7549AD -15.83%, #4544A7 100%) !important;
}

.footer {
    background-color: #FBF6FF;
    border-radius: 0;
}

.about-container {
    background: linear-gradient(90deg, #8756C4 0%, #706EE2 100%);
}

section.order-your-copy {
    padding: 7rem 0;
    display: flex;
    justify-content: center;
    background: #fbf6ff;
}

section.order-your-copy .about-container {
    display: flex;
    flex-direction: column;
    min-width: 76rem;
}

section.order-your-copy .about-container h3{
    color: #fff;
    font-size: 38px;
    padding-top: 25px;
}

section.order-your-copy .about-container p{
    font-size: 20px;
}

section.order-your-copy .about-container .request-btn.btn {
    background-color: #ffc501;
    color: #000 !important;
}

img.order-img2 {
    position: absolute;
    right: -45px;
    height: 170px;
    z-index: 1;
    top: 125px;
    opacity: 30%;
}

img.order-img1 {
    opacity: 30%;
    top: -49px;
    position: absolute;
    left: -78px;
    height: 268px;
}

.clients-container{
    background-color: #fff;
}

.logos::before{
    background: linear-gradient(to right, var(--white), rgba(0, 0, 0, 0));
}

.logos::after {
    background: linear-gradient(to left, var(--white), rgba(0, 0, 0, 0));
}

.clients-container {
    padding: 100px 10rem;
}

.form-right-content form input, .form-right-content form select, button.btn.request-btn.form-submit-btn, button.btn.request-btn {
    font-family: "Careem", sans-serif;
}

.logos-container {
    margin-top: 7rem;
    margin-bottom: 12rem;
}

.clients-container h3 {
    color: var(--gray);
    font-size: 40px;
    text-align: center;
}

section#integration-overview {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 140px 135px;
}

section#integration-overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets-ecommerce/ee.jpeg);
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* الشفافية فقط للخلفية */
    z-index: -1; /* خلف المحتوى */
}

#integration-overview h3.section-title {
    text-align: center;
    font-size: 45px;
}

.step-one {
    display: flex;
}

.highlight-p-colored {
    color: var(--secondary);
    font-weight: 500;
}

.step {
    margin: 35px 62px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.step h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step .step-img img {
    height: 50px;
    width: auto;
}

.step .step-img {
    background-color: #fff;
    border: 2px solid #8756c4;
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

section.order-your-copy{
    overflow: hidden;
}


.seamless-right-content img {
    width: 700px;
    height: auto;
    padding: 25px 15px 0;
}

img.about-img.desktop-img {
    display: block !important;
}

img.about-img.mobile-img {
    display: none !important;
}











@media (max-width: 767px){

    img.about-img.desktop-img {
        display: none !important;
    }

    img.about-img.mobile-img {
        display: block !important;
    }

    nav {
        margin: 50px 5px;
        padding: 35px 15px;
    }

    nav a.btn.request-btn ,
    nav .center-container{
        display: none;
    }

    section#hero {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .hero-header-text .highlight {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: 0px;
        word-spacing: 6px;
        text-align: center;
    }

    .hero-header-text .highlight-p {
        padding-top: 30px;
        font-size: 30px;
        line-height: 32px;
        color: var(--gray);
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .left-primary-box {
        margin-left: 20px;
        padding-right: 20px;
        text-align: center;
        align-items: center;
    }

    .logo {
        width: 160px !important;
    }

    .hero-right-box {
        padding-top: 40px;
        padding-bottom: 50px;
        text-align: center;
    }

    .secondary-highlight {
        display: contents;
        font-size: 25px;
    }

    section#seamless {
        display: flex;
        flex-direction: column-reverse;
        margin: 5rem 0px;
        padding: 0rem 0rem;
    }

    .seamless-right-content img {
        width: -webkit-fill-available;
    }

    .step-one {
        display: flex;
        flex-direction: column-reverse;
    }

    section.order-your-copy .about-container {
        min-width: 100%;
    }

    .form-right-content h3 {
        font-size: 25px;
    }

    #about img {
        display: flex;
    }

    section#integration-overview {
        padding: 100px 10px;
    }

    #integration-overview h3.section-title {
        text-align: center;
        font-size: 28px;
    }

    .clients-container {
        padding: 100px 0rem;
    }

    section.order-your-copy .about-container h3 {
        color: #fff;
        font-size: 25px;
        padding-top: 25px;
    }

    .seamless-right-content img {
        width: 100%;
        height: auto;
    }
    















}


@media (min-width: 767px) and (max-width: 1024px) { 

    img.about-img.desktop-img {
        display: none !important;
    }

    img.about-img.mobile-img {
        display: block !important;
    }
        
    nav {
        margin: 25px 20px;
        padding: 35px 10px;
    }

    .left-primary-box {
        margin-left: 0px;
        justify-content: center;
    }

    .hero-header-text .highlight {
        font-size: 30px;
        line-height: 42px;
    }

    .hero-right-box, .left-primary-box {
        z-index: 99;
        margin-right: 15px;
    }

    section#seamless {
        flex-direction: column-reverse;
        padding: 5.5rem 2.5rem 0;
        align-items: center;
    }

    #about h3 {
        font-size: 33px;
    }

    section#integration-overview {
        padding: 100px 10px;
    }

    .step {
        margin: 25px 15px;
    }

    .clients-container {
        padding: 100px 6rem;
    }

    section.order-your-copy .about-container {
        min-width: 100%;
    }

    section.order-your-copy {
        overflow: hidden;
    }

    



}


@media (min-width: 1024px) and (max-width: 1440px){
    img.about-img.desktop-img {
        display: block !important;
    }

    img.about-img.mobile-img {
        display: none !important;
    }

    .left-primary-box {
        margin-left: 15px;
        justify-content: center;
    }

    section#hero {
        padding: 0 5rem !important;
    }

    section#seamless {
        padding: 1.5rem 2.5rem;
    }

    section#integration-overview {
        padding: 140px 15px;
    }

    .clients-container {
        padding: 100px 6rem;
    }


}





