.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s, opacity 0s;-moz-transition:transform 0s, opacity 0s;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}

/* ===== Global nav / aside styling ===== */
.nav-category .nav-link,
.navbar-nav-offcanvac .nav-link,
.navbar-nav-offcanvac .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #212529;
  font-weight: 600;
  padding: .6rem .75rem;
  border-radius: 6px;
}

.nav-category .nav-link:hover,
.navbar-nav-offcanvac .nav-link:hover,
.navbar-nav-offcanvac .accordion-button:hover {
  background: #f8f9fa;
  color: #000000;
}

/* rotate the chevron icon when collapsed toggled open */
.nav-category .nav-link[aria-expanded="true"] .feather-icon,
.navbar-nav-offcanvac .accordion-button[aria-expanded="true"] .feather-icon {
  transform: rotate(90deg);
}

/* chevron alignment */
.feather-icon.icon-chevron-right {
  font-size: 0.95rem;
  transition: transform .2s ease;
  margin-inline-start: .6rem;
}

/* sub-items */
.nav.flex-column .nav-link {
  padding: .3rem .75rem;
  font-weight: 500;
  color: #444;
}

/* make nested lists readable in rtl */
[dir="rtl"] .nav.flex-column .nav-link { text-align: right; padding-right: .75rem; }

/* small responsive tweaks */
.offcanvas .accordion-button { background: transparent; box-shadow: none; }
.offcanvas .accordion-body .dropdown-item { padding: .45rem 0; white-space: normal; }

/* prevent overflow in aside */
.offcanvas-body { overflow-y: auto; max-height: calc(100vh - 120px); }

/* visual polish for links */
.dropdown-item, .nav-link { text-decoration: none; }

/* badge / count style if you add numbers later */
.badge-count-small {
  background: #198754;
  color: #fff;
  padding: 0 .45rem;
  border-radius: 12px;
  font-size: .75rem;
  line-height: 1.6;
}

#miniBillingForm .form-control-sm {
  border-radius: 8px;
  height: 38px;
  font-size: .9rem;
}
#miniBillingForm .form-label.small {
  font-size: .85rem;
  color: #394048;
  margin-bottom: .25rem;
}
.btn-success {
  background-color: #15a84a;
  border-color: #15a84a;
}
.btn-success:hover {
  background-color: #94d522;
  border-color: #94d522;
}



/* --- marquee container --- */
  .partners-slider { padding: 40px 0; background: #fff; }
  .partners-slider .section-title { font-weight:700; color:#222; }

  .marquee { overflow: hidden; width: 100%; }
  .marquee-track {
    display: flex;
    align-items: center;
    gap: 12px;
    /* continuous animation: moves exactly 50% (one duplicate set) */
    animation: marquee-animation linear infinite;
    animation-duration: 18s; /* change this to adjust speed (higher = slower) */
  }

  .marquee-item { display:flex; align-items:center; justify-content:center; }
  .marquee-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 20px rgba(12,20,30,0.05);
    display:flex;
    align-items:center;
    justify-content:center;
    min-width: 140px;
    max-width: 220px;
  }

  .marquee-card img {
    max-width: 160px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.95;
    transition: transform .25s ease, filter .25s ease, opacity .25s ease;
    display:block;
  }
  .marquee-card:hover img { filter: none; transform: scale(1.03); opacity: 1; }

  /* responsive adjustments */
  @media (max-width: 768px) {
    .marquee-track { animation-duration: 14s; gap:10px; }
    .marquee-card { min-width:110px; max-width:160px; padding:10px; }
    .marquee-card img { max-width:110px; max-height:50px; }
  }
  @media (max-width: 420px) {
    .marquee-track { animation-duration: 11s; gap:8px; }
    .marquee-card { min-width:100px; max-width:140px; padding:8px; }
    .marquee-card img { max-width:90px; max-height:44px; }
  }

  @keyframes marquee-animation {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); } /* moves by one set width (we duplicated content) */
  }

  .site-footer { background:#f8f9fb; color:#233; padding:28px 0 18px; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
    .site-footer h6 { margin-bottom:12px; font-size:0.95rem; font-weight:600; color:#111; }
    .simple-list { list-style:none; padding:0; margin:0; }
    .simple-list li { margin-bottom:8px; }
    .simple-list a { color:#495057; text-decoration:none; font-size:0.92rem; }
    .simple-list a:hover { text-decoration:underline; color:#0d6efd; }

    .payments { display:flex; gap:8px; align-items:center; margin-top:8px; }
    .pay-icon { height:26px; opacity:0.9; }

    .apps { display:flex; gap:8px; align-items:center; justify-content:flex-end; }
    .app-icon { height:36px; }

    .footer-middle { border-top:1px solid rgba(0,0,0,0.06); padding-top:18px; margin-top:14px; }
    .footer-bottom { border-top:1px solid rgba(0,0,0,0.06); padding-top:12px; margin-top:14px; }

    .socials { display:flex; gap:12px; justify-content:flex-end; }
    .social { color:#495057; text-decoration:none; font-size:0.92rem; }
    .social:hover { color:#0d6efd; }

    @media (max-width:767px) {
      .apps { justify-content:flex-start; margin-top:8px; }
      .socials { justify-content:flex-start; margin-top:8px; }
    }



    .order-track-section {
  position: relative;
  min-height: 100vh; /* full height of the page */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}

.order-track-content {
  position: relative;
  z-index: 1; /* ensures text appears above background */
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85); /* optional white transparency */
  border-radius: 10px;
}

.track-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.track-subtitle {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.track-form {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.track-input-group {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 350px;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.form-control {
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-primary {
  background-color: #2563eb;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.1s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-primary:active {
  transform: translateY(1px);
}

.form-error {
  text-align: center;
  font-size: 0.95rem;
}



/* Responsive */
@media (max-width: 992px) {
  .order-bg {
    display: none;
  }
  .track-form {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary {
    width: 100%;
  }
}


  /* Style du paragraphe arabe */
  .arabic-paragraph {
    direction: rtl;              /* Texte de droite à gauche */
    text-align: right;           /* Alignement à droite */
    font-family: "Tajawal", "Cairo", "Noto Kufi Arabic", sans-serif; /* Police claire et moderne */
              /* Taille lisible */
    color: #222;                 /* Couleur du texte */
      /* Léger fond gris clair */
   /* Fine bordure grise */
  }

  /* Amélioration responsive */
  @media (max-width: 768px) {
    .arabic-paragraph {
      font-size: 1rem;
      padding: 1rem;
    }
  }

    .swatch { display:inline-block; cursor:pointer; }
  .swatch-input { display:none; }
  .swatch-box {
    width:36px;
    height:36px;
    display:block;
    border-radius:6px;
    border:2px solid transparent;
    box-shadow: 0 1px 2px rgba(16,24,40,0.05);
    transition: box-shadow .15s ease, transform .08s ease, border-color .12s ease;
  }
  .swatch:hover .swatch-box { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16,24,40,0.08); }
  .swatch-active .swatch-box {
    
    box-shadow: 0 6px 18px rgba(16,185,129,0.12);
  }



    /* container look like your screenshot: red overlay */
  #contact-mini .contact-panel {
   background-color: #94d522;
    color: #fff;
    min-height: 260px;
    border-radius: 12px;
  }

  /* optional faint patterned bg (uncomment in HTML if you add an image) */
  #contact-mini .contact-bg {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  #contact-mini .contact-panel > .row,
  #contact-mini .contact-panel .contact-list { position: relative; z-index: 2; }

  .text-light-opacity { color: rgba(255,255,255,0.82); font-size: .9rem; }
  .link-white { color: #fff; text-decoration: none; }
  .link-white:hover { text-decoration: underline; }

  .contact-list .icon { color: #fff; display: inline-flex; align-items:center; justify-content:center; width:36px; height:36px; }
  .contact-list li .fw-semibold { font-weight:600; }

  /* map card */
  .map-card { background: transparent; display:flex; }

  /* responsive */
  @media (max-width: 991px) {
    #contact-mini .contact-panel { padding: 20px; margin-bottom: 16px; }
    .map-card iframe { width:100% !important; height:260px !important; }
  }