@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");

body,
* {
    font-family: "Almarai", sans-serif !important;
}

body,
#topnav .navigation-menu>li>a {
    font-family: "Almarai", sans-serif !important;
}

.logo img {
    width: 118px;
    margin-top: 13px;
    height: 68px;
}

#topnav .navigation-menu>li>a {
    font-weight: normal !important;
    padding-top: 0px;
}

#topnav .navigation-menu .has-submenu .menu-arrow {
    top: 5px;
}

#topnav .navigation-menu>.has-submenu.active .menu-arrow {
    top: 5px;
}

#topnav .navigation-menu>.has-submenu:hover .menu-arrow {
    top: 10px !important;
}

.submenu.megamenu {
    width: 100% !important;
}

.megamenu-btn {
    background-color: unset;
    border: 0px;
    font-size: 14px;
    align-items: center;
    top: -28px;
    color: white !important;
    position: relative;
    right: 7px;
}

a,
.btn.btn-icon {
    color: white !important;
}

#topnav .navigation-menu>li .submenu {
    visibility: hidden;
}

.show {
    opacity: 1 !important;
    visibility: visible !important;
}

#topnav .navigation-menu>li .submenu.megamenu li .megamenu-head,
#topnav .navigation-menu>li .submenu li a {
    font-size: 15px !important;
}

.title {
    text-align: center;
    font-weight: bold;
    font-size: 21px;
    color: #000;
    margin-bottom: 3px;
}

.sub-title {
    font-size: 12px;
    color: gray;
    top: -70px;
    display: block;
    position: relative;
}

#topnav .navigation-menu>li .submenu.megamenu li .megamenu-head {
    max-height: 85px;
}

.megamenu-head {
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border-radius: 15px;
}

.megamenu-head:hover {
    background-color: #f8cb25 !important;
}

.support-bar {
    text-align: center;
    background-color: #f8cb25;
    padding: 10px;
    color: #000000;
    font-weight: bold;
    font-size: 15px;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

#close {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

header {
    top: 40px !important;
}

.topnaav {
    top: 0px !important;
}

.img-thum {
    width: 80px;
    height: 80px;
    margin-left: 20px;
    border-radius: 50%;
}

.container--thum {
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-between;
}

#topnav .navigation-menu>li>a,
#topnav .navigation-menu>li {
    color: white !important;
}

#topnav.nav-sticky {
    background-color: #3164f5 !important;
    box-shadow: 0 0 3px rgb(60 72 88) !important;
}

#topnav {
    max-height: 155px;
}

.bg-home {
    height: 70vh !important;
    border-bottom: 3px solid #f8cb25;
}

.bg-home .container {
    position: relative;
    top: 50px;
}

.parener-title {
    color: #3164f5;
    text-align: center;
    font-family: "Almarai", sans-serif !important;
}

#login {
    border: 1px solid #ffffff !important;
}

#login:hover {
    background-color: unset !important;
    border: 1px solid #f8cb25 !important;
    color: #f8cb25 !important;
}

#create-site {
    background-color: #f8cb25 !important;
    color: #3164f5 !important;
    border: 1px solid #f8cb25 !important;
}

#banner img {
    align-items: center;
    justify-content: center;
    margin: auto;
    display: flex;
    text-align: center;
    width: 100%;
    max-height: 25vh;
    height: 100%;
    margin-top: 30px;
    object-fit: fill;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 60s linear infinite;
    /* تكرار المحتوى عشان مايكونش فيه مسافات فارغة */
    width: max-content;
}

.marquee-item {
    flex: 0 0 auto;
    margin: 0 40px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.marquee-item:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.marquee-item img {
    height: 60px;
    width: 120px;
    object-fit: contain;
}

/* الـ keyframes الجديدة بدون مسافات فارغة */
@keyframes marquee {
    0% {
        transform: translateX(-0);
    }

    100% {
        transform: translateX(50%);
    }
}

.parener-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #3164f5;
    margin-bottom: 2rem;
    position: relative;
}

.parener-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f8cb25;
    border-radius: 2px;
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Fade effects على الأطراف */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right,
            rgba(248, 249, 250, 1),
            rgba(248, 249, 250, 0));
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left,
            rgba(248, 249, 250, 1),
            rgba(248, 249, 250, 0));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-item {
        margin: 0 20px;
    }

    .marquee-item img {
        height: 40px;
        width: 80px;
    }

    .parener-title {
        font-size: 1.5rem;
    }

    .marquee-content {
        animation-duration: 40s;
    }
}

.card-body .title {
    font-weight: 900 !important;
    font-size: 27px;
    color: #254ed6;
    text-align: right;
}

.btn.btn-primary {
    width: 100%;
    border-radius: 50px;
}

.create-store {
    box-shadow: 0px 0px 3px 3px #f8cb256e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f8cb25;
    padding: 20px;
    border-radius: 20px;
}

.nav-justified .nav-item {
    border: 2px solid #0d6efd !important;
    border-radius: 9px;
}

.flex-sm-row {
    gap: 15px;
}


.reviews-slider {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.review-card {
    flex: 0 0 calc(33.333% - 14px);
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd);
}

.review-card.card-1::before {
    background: linear-gradient(90deg, #0d6efd);
}

.review-card.card-2::before {
    background: linear-gradient(90deg, #0d6efd);
}

.review-card.card-3::before {
    background: linear-gradient(90deg, #0d6efd);
}

.review-card.card-4::before {
    background: linear-gradient(90deg, #0d6efd);
}

.review-card.card-5::before {
    background: linear-gradient(90deg, #0d6efd);
}

.review-card.card-6::before {
    background: linear-gradient(90deg, #0d6efd);
}

.quote-icon {
    font-size: 40px;
    color: #e9ecef;
    margin-bottom: 20px;
    font-family: serif;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
    text-align: right;
    min-height: 120px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviewer-details {
    flex: 1;
    text-align: right;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 3px;
}

.reviewer-store {
    font-size: 14px;
    color: #6c757d;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #0d6efd;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e9ecef;
    color: #495057;
    font-size: 20px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    right: 22px;
    padding: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 29px;
}

.slider-arrow.next {
    left: 22px;
    padding: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 29px;
}

@media (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(50% - 10px);
    }

    .reviews-slider {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
    }

    .reviews-slider {
        padding: 0 20px;
    }

    .review-text {
        min-height: auto;
        font-size: 15px;
    }

    .slider-arrow {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .reviews-slider {
        padding: 0 10px;
    }

    .review-card {
        padding: 20px;
        flex: 0 0 calc(90%);
        margin: 0 5%;
    }
}

.review-card {
    opacity: 1;
    transform: scale(1);
}

.slider-container .review-card:not(.active) {
    opacity: 0.7;
}

.slider-container .review-card.active {
    opacity: 1;
    transform: scale(1.02);
}

.back-to-top {
    background-color: #f8cb25 !important;
    color: #000 !important;
}

.align-middle, .footer .footer-head, .footer .footer-list li a {
    color: #000 !important;
}

.playstore-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 2px solid #000;

    border-radius: 9999px;

    background-color: rgba(0, 0, 0, 1);

    padding: 0.625rem 1.5rem;

    text-align: center;

    color: rgba(255, 255, 255, 1);

    outline: 0;

    transition: all .2s ease;

    text-decoration: none;

}


.icon {
    height: 1.5rem;
    width: 1.5rem;
}

.texts {
    margin-right: 1rem;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    line-height: 1;

}

.text-1 {

    margin-bottom: 0.25rem;

    font-size: 0.75rem;

    line-height: 1rem;

}

.text-2 {

    font-weight: 600;

}

.switcher-pricing .toggler--is-active {
    color: #0d6efd !important;
}

.blog:hover {
    transform: translateY(-0px) !important;
}

#back-to-top {
    border: 1px solid;
}

.btn-more {
    background: #3164f5 !important;
    border-radius: 5px !important;
    padding: 13px !important;
    color: #fff !important;
}

.features.feature-primary.feature-clean .icons i {
    background-color: #3164f5 !important;
    color: white !important;
}