:root {
    --bs-primary: #FBBA16; /* custom primary color */
    --bs-black: #0F0F0E;
    --bs-border-color: #E3DEDE;
}
*{
    font-family: 'Frutiger LT Arabic', sans-serif;
}
.rtl * {
    font-family: 'Frutiger LT Arabic', sans-serif;
}
.fas{
    font-family: "Font Awesome 6 Free" !important;
}
.slashed-price{
    text-decoration: line-through;
    color: var(--bs-primary);
    font-size: 20px;
}

.rtl{
    direction: rtl;
  }

.width-fit-content{
    width: fit-content;
}

.rtl .dropdown-menu[data-bs-popper]{
    right: 0px;
}

.me-auto{
    margin-inline-end: auto !important;
}

.btn-dark{
    background: var(--bs-black);
    border: none;
    border-radius: 6px;
    padding: 10px 50px;
    font-weight: 600;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;    
}

.navbar-custom {
    /* background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); */
    padding: 15px 0;
    transition: all 0.5s ease;
}

.navbar-toggler{    
    border: 0px;
}

.bg-light{
    background-color: rgb(248, 249, 250) !important;
}

.text-primary{
    color: var(--bs-primary) !important;
}

.navbar-toggler-icon_{
    color: white;
    width: 40px;
    height: 40px;
}

.navbar-toggler:focus{
    box-shadow: none;
} 
.navbar-custom.scrolled {
  background: rgba(0, 0, 0, 0.6) !important;  /* dark background */
  backdrop-filter: blur(10px) !important;     /* blur effect */
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: #ffc107 !important;
}

.dropdown-toggle::after {
    margin-left: 8px;
}

.dropdown-menu {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 22px;
    min-width: max-content;
    margin-top: 10px;
}

.dropdown-menu .row {
    margin: 0;
}

.dropdown-item {
    padding: 15px 0;
    border: none;
    background: none;
}

.dropdown-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.dropdown-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-weight: 100;
    text-wrap: auto;
}

.text-start{
    text-align: start !important;
}

.dropdown-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
}

.btn-login {
    background: white;
     color: rgb(0, 0, 0);
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 500;
    margin-left: 15px;
}

.btn-login:hover {
    background: white;
    color: #333;
}

.btn-about {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 500;
    margin-left: 10px;
}

.btn-about:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.pricing-section .pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-section .toggle-container {
    border: 1px solid #ACACAC;
    border-radius: 20px;
    padding: 7px 10px;
    display: flex;
    position: relative;
    gap: 7px;
}

.pricing-section .toggle-option {
    padding: 12px 24px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

.pricing-section .toggle-option.active {
    background: #1a1a1a;
    color: white;
}

.pricing-section .toggle-option.inactive {
    color: #666;
}

.margin-inline-start-auto{
    margin-inline-start: auto;
}

.section{    
    padding: 80px 0;
}

.breadcrumb .section-title{
    font-size: 3.6rem;
    margin-bottom: 20px;
}

.section-title{

    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-black);
    text-align: center;
    margin-bottom: 50px;

}

.breadcrumb{
    background: var(--bs-primary);
    padding: 170px 0px 80px 0px;
    text-align: center;
}

.lang-switch {
    color: #ffc107; /* اللون الأصلي */
    font-weight: 500;
    text-decoration: none;
    margin-inline-start: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.lang-switch:hover {
    color: var(--bs-primary);
    text-decoration: none;
}

/* إذا هناك حالة scroll */
.scrolled .lang-switch {
    color: white; 
}

.switch-version {
    color: #ffc107;      
    font-weight: 500;
    text-decoration: none;
    margin-inline-start: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.switch-version:hover {
    color: var(--bs-primary);
    text-decoration: none;
}


@media (max-width: 990px) {

     .navbar-custom{
        background: rgb(0 0 0 / 39%);
        backdrop-filter: blur(5px);
        max-height: 100vh;
        overflow-y: auto;   
    }
    
    .navbar-nav{
        margin-top: 15px;

    }

    .nav-link{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-action-buttons{
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    .header-action-buttons .btn{
        width: 100%;
    }

    .app-download-section{
        align-items: center !important;
    }
}
@media (max-width: 768px) {
    .section-title{
        font-size: 2.2rem;
    }

    .breadcrumb .section-title{
        font-size: 2.9rem;
    }

    .nav-link{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
       

    .navbar .dropdown-menu {
        min-width: 280px;
        padding: 20px;

        width: calc(100% - 2rem);
        left: 50%;
        right: auto;
        transform: translateX(-50%) !important; 
        text-align: center;
    }
   
    .navbar-nav {
        text-align: center;
    }
    
    .btn-login, .btn-about {
        margin: 5px;
        display: block;
        width: fit-content;
        margin-inline-start: auto;
        margin-inline-end: auto;   
    }
}


@media (max-width: 576px) {    
    
    .dropdown-menu .col-md-6 {
        margin-bottom: 20px;
    }
}


/* Video Modal */

.videoModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.videoModal .modal-header {
    padding: 15px 20px 0;
}

.videoModal .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    opacity: 0.7;
}

.videoModal .btn-close:hover {
    opacity: 1;
}


/* Footer Section */

.footer-section {
    background-color: #2d2d2d;
    color: white;
    padding: 60px 0 30px;
}

.app-download-btn {
    display: inline-block;
    background-color: #000;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: white;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    width: 200px;
}

.app-download-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.app-download-btn img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.app-download-btn .store-text {
    font-size: 12px;
    color: #ccc;
    display: block;
    line-height: 1.2;
}

.app-download-btn .store-name {
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

.footer-logo {
    width: 85px;
}

.footer-tagline {
    font-size: 15px;
    color: #ccc;
    margin-top: 25px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 40px;
    margin: 40px 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #f4c430;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, #f4c430 0%, #e6b800 100%);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.copyright {
    font-size: 14px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f4c430;
}

.app-download-section{
    display: flex;
    flex-direction: column;
    align-items: end;
}

@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .app-download-section {
        margin-bottom: 30px;
    }
}

.app_download_links img{
    width: 170px;
}

.icon .arrow-right{
    transform: scaleX(-1);
    margin-inline-start: 6px;
}

.rtl .icon  .arrow-right{
      transform: none
}


.opportunity-section{
    background: linear-gradient(to right, var(--bs-primary), #fff6e0);

}

/* Our Products */
.products-section {
    background: #F6DC8E;
    padding: 60px 0;
    
}

.products-section .products-title {
    font-size: 3rem;
    font-weight: 700;    
    text-align: center;
    margin-bottom: 50px;
}

.products-section .category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.products-section .category-tab {

    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 5px;
    padding: 15px 30px;    
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.products-section .category-tab:hover,
.products-section .category-tab.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);    
    
}

.products-section .category-icon {
    font-size: 1.2rem;
}

.products-section .filter-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.products-section .filter-pill {
    background: white;
    border: 1px solid var(--bs-border-color);
    border-radius: 25px;
    padding: 12px 25px;    
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.products-section .filter-pill:hover,
.products-section .filter-pill.active {
    background: var(--bs-black);
    color: white;
    transform: translateY(-2px);
}

.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
    cursor: grab;
    gap: 20px;
    padding: 0 20px;
    touch-action: pan-y; /* allow vertical scroll, but override horizontal */
  
}

.slider-track:active {
    cursor: grabbing;
}

.slider-item{
    flex: 0 0 auto;
    overflow: hidden;
    transition: transform 0.3s ease;
    
}

.products-section .product-card {
    flex: 0 0 auto;
    width: 280px;        
    overflow: hidden;    
    transition: transform 0.3s ease;
    user-select: none;
}


.products-section .product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.products-section .product-info {
    padding: 20px 5px;
}

.products-section .product-info img {
    width: 15px;
    transform: rotate(180deg);
}

.products-section .product-title {
    font-size: 1.1rem;
    font-weight: 600;    
    margin-bottom: 10px;
}

.products-section .product-link {
    color: var(--bs-black);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-section .product-link:hover {
    color: #e67e22;
}

@media (max-width: 768px) {
    .products-section .products-title {
        font-size: 2rem;
    }

    .products-section .category-tab {
        min-width: 150px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .products-section .product-card {
        width: 250px;
    }

    .products-section .slider-track {
        padding: 0 15px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .products-section .product-card {
        width: 220px;
    }

    .products-section .slider-track {
        padding: 0 10px;
        gap: 10px;
    }
}


/* Supplier Section */

.supplier-section {
    padding: 80px 0;
}

.supplier-section .supplier-join-btn {
    background: var(--bs-primary);
    border: none;
    border-radius: 6px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;        
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.supplier-join-btn .icon{
    transform: scaleX(-1);
}

.rtl .supplier-join-btn .icon{
      transform: none
}

.supplier-section .supplier-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
    color: #2c3e50;
}

.supplier-section .supplier-main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--bs-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.supplier-section .supplier-subtitle {
    font-size: 17px;
    color: var(--bs-black);
    line-height: 1.6;
    margin-bottom: 60px;
}

.supplier-section .steps-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--bs-black);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.supplier-section .step-card {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 28px 30px;
     height: 100%;
    border: none;    
    transition: all 0.3s ease;
}



.supplier-section .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.supplier-section .step-icon.purple {
    background: linear-gradient(135deg, #e8d5ff 0%, #d4b3ff 100%);
    color: #8b5cf6;
}

.supplier-section .step-icon.green {
    background: linear-gradient(135deg, #d1f2eb 0%, #a7f3d0 100%);
    color: #10b981;
}

.supplier-section .step-icon.orange {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #f97316;
}

.supplier-section .step-title {
    font-size: 20px;
    font-weight: 600;    
    margin-bottom: 8px;
    line-height: 1.4;
}

.supplier-section .step-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0px;
}

.supplier-section .ready-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--bs-primary);
    text-align: center;
    margin: 0px 0 30px;
}

.supplier-section .start-btn {
    background: var(--bs-black);
    border: none;
    border-radius: 6px;
    padding: 10px 50px;
    font-weight: 600;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;    
}

.supplier-section .start-btn:hover {
    background: var(--bs-primary);
    
    color: var(--bs-black);
}

@media (max-width: 768px) {
    .supplier-section .supplier-main-title {
        font-size: 32px;
    }

    .supplier-section .steps-title {
        font-size: 28px;
    }

    .supplier-section .ready-text {
        font-size: 24px;
    }

    .supplier-section .step-card {
        margin-bottom: 30px;
    }
}

/* Section END */


.client-slider-container {
  overflow: hidden;
  width: 100%;
  background: #F7F7F7; /* optional */
  padding: 20px 0;
}

.client-slider-container .slider {
  height: 100px; /* adjust to logo height */
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.client-slider-container .slide-track {
  display: flex;
  width: calc(250px * 18); /* logo width * total (9 original + 9 duplicate) */
 animation: scroll-ltr 40s linear infinite; /* default LTR */
}

.client-slider-container .slide {
  width: 235px; /* fixed logo width */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 13px;
  
}

.client-slider-container .slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

html[dir="rtl"].client-slider-container .slide-track {
    animation: scroll-rtl 30s linear infinite;
  }

@keyframes scroll-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 📱 Mobile responsive */
@keyframes scroll-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Section END */

/* Faq Section */

.faq-container {
    background-color: #F6DC8E;
    min-height: 100vh;
    padding: 80px 0;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    background: transparent;
    margin-bottom: 0;
}

.faq-header {
    background: transparent;
    border: none;
    padding: 30px 0;
    border-bottom: 2px solid rgba(44, 44, 44, 0.2);
}

.faq-button {
    background: transparent;
    border: none;
    width: 100%;
    text-align: right;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.faq-button:hover,
.faq-button:focus {
    background: transparent;
    color: #2c2c2c;
    box-shadow: none;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #2c2c2c;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    background: transparent;
    border: none;
    padding: 30px 0 0 0;
}

.faq-body {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 1.6;
}

.accordion-button:not(.collapsed)
{
    background-color: transparent;
    border: 0px solid;
    box-shadow: none;
    color: var(--bs-black);
}

.accordion-button:not(.collapsed)
.faq-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.faq-body li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 12px;
}


.accordion-button::after {
    display: none;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .faq-button {
        font-size: 18px;
    }
    
    .faq-body {
        font-size: 16px;
        padding-right: 28px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
}

/* Section END */