/* ================================================================
   
   Palette : Crème #FBF6F0 | Orange #E86B1A | Violet #4B1FA0 | Noir #1A1118
   ================================================================ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --cream:      #FBF6F0;
  --cream-dark: #F4EDE4;
  --orange:     #E86B1A;
  --orange-lt:  #FDE8D5;
  --violet:     #2f175d;
  --violet-lt:  #EDE8FA;
  --black:      #1A1118;
  --gray:       #6B6678;
  --white:      #FFFFFF;
  --radius-sm:  12px;
  --radius-lg:  24px;
  --shadow:     0 8px 32px rgba(26,17,24,0.10);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
body {
  background: var(--cream) !important;
  font-family: 'DM Sans', sans-serif !important;
  color: var(--black) !important;
}

.nv-wrapper { background: var(--cream) !important; }

/* ── HERO ─────────────────────────────────────────────────────── */
#rev_slider_17_1_wrapper,
#home > .rev_slider_wrapper {
  display: none !important;
}

.nv-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0;
  margin-top: 8px;
  overflow: hidden;
}

.nv-bg-primary {
  background-color: #6D439D !important;
  color:#fff;
}
.nv-bg-secondary {
  background-color: #f38f18 !important;
  color:#fff;
}

/* Blob violet derrière l'image */
.nv-hero::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  background: var(--violet-lt);
  border-radius: 50%;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

/* Blob orange subtil gauche */
.nv-hero::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: var(--orange-lt);
  border-radius: 50%;
  left: -80px; top: 60%;
  z-index: 0;
}

.nv-hero .container { position: relative; z-index: 1; }

/* ── HERO BADGE ───────────────────────────────────────────────── */
.nv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.nv-hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.nv-hero-badge .dot-1 { background: var(--orange); }
.nv-hero-badge .dot-2 { background: var(--violet); }
.nv-hero-badge .dot-3 { background: #CCBBF5; }

/* ── HERO HEADING ─────────────────────────────────────────────── */
.nv-hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 28px;
}
.nv-hero-heading .hl-orange {
  color: var(--orange);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
}
.nv-hero-heading .hl-violet { color: var(--violet); line-height: 1.5; }

/* ── HERO PARAGRAPH ───────────────────────────────────────────── */
.nv-hero-para {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 15px;
}

/* ── CTA BUTTONS ──────────────────────────────────────────────── */
.nv-hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-nv-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(232,107,26,.35);
}
.btn-nv-primary:hover {
  background: #c95710;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,107,26,.45);
}

.btn-nv-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--violet) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none !important;
  transition: gap .2s;
}
.btn-nv-ghost:hover { gap: 12px; }

/* ── HERO IMAGE WRAPPER ───────────────────────────────────────── */
.nv-hero-img-wrapper {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  padding: 20px;
}
.nv-hero-img-wrapper dotlottie-player {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: floatImg 4s ease-in-out infinite;
}

/* Blob animé derrière l'image */
.nv-hero-img-wrapper::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  background: linear-gradient(135deg, var(--violet-lt) 0%, var(--orange-lt) 100%);
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  top: -5%;
  left: -5%;
  z-index: -1;
  animation: blobMove 6s ease-in-out infinite alternate;
}

@keyframes blobMove {
  from { border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%; transform: rotate(0deg) scale(1); }
  to   { border-radius: 55% 45% 40% 60% / 55% 55% 45% 45%; transform: rotate(4deg) scale(1.03); }
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ── BADGES FLOTTANTS ─────────────────────────────────────────── */
.nv-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(26,17,24,.12);
  z-index: 2;
}

.nv-float-top {
  top: -16px;
  right: -20px;
  animation: floatBadge 3s ease-in-out infinite alternate;
}

.nv-float-bottom {
  bottom: -16px;
  left: -20px;
  animation: floatBadge 3s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  from { transform: translateY(0px); }
  to   { transform: translateY(-8px); }
}

.nv-float-icon {
  font-size: 24px;
  width: 40px; height: 40px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nv-float-num {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.nv-float-txt {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

/* ── TRUST ROW (avatars + texte) ──────────────────────────────── */
.nv-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.nv-trust-avatars {
  display: flex;
}
.nv-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-left: -10px;
  border: 2px solid var(--cream);
}
.nv-avatar:first-child { margin-left: 0; }
.nv-trust-text { font-size: 14px; color: var(--gray); }
.nv-trust-text strong { color: var(--black); font-weight: 700; }

/* ── STATS BANNER ─────────────────────────────────────────────── */
.nv-stats-banner {
  background: var(--cream);
  padding: 0 0 48px;
}

.nv-stats-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, var(--orange) 0%, #C8501A 40%, #9B2F7A 70%, var(--violet) 100%);
  border-radius: 24px;
  padding: 40px 48px;
  gap: 0;
}

.nv-stats-item {
  text-align: center;
  flex: 1;
}

.nv-stats-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.nv-star {
  font-size: 0.75em;
  color: #FFD700;
  vertical-align: middle;
}

.nv-stats-lbl {
  font-size: 14px;
  color: rgba(255,255,255,.80);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nv-stats-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ── ABOUT / INFO SECTIONS ────────────────────────────────────── */
.nv-section { padding: 30px 0; }
.nv-cream   { background: var(--cream); }
.nv-purple {
  background: linear-gradient(135deg, var(--violet) 0%, #3c3647 100%);
  color: var(--white);
}

.nv-purple h2.title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.2;
}

.nv-purple .alt-color { color: var(--orange) !important; }

.nv-purple .para {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream-dark);
  margin-bottom: 8px;
}
/*  ── busniss / INFO SECTIONS ────────────────────────────────────── */ 









/* ── FEATURE CARDS ────────────────────────────────────────────── */
.process-wrapp {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(26,17,24,.06);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  text-align: center;
}
.process-wrapp:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pro-step {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}
.pro-step.blue     { background: var(--violet-lt); color: var(--violet); }
.pro-step.midnight { background: #E8F4FF; color: #0066CC; }
.pro-step.purple   { background: var(--violet-lt); color: var(--violet); }
.pro-step.pink     { background: var(--orange-lt); color: var(--orange); }

.service-heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-top: 8px;
  text-align: center;
}

/* ── COUNTER / GRADIENT SECTION ───────────────────────────────── */
.gradient-bg2 {
  background: linear-gradient(135deg, var(--violet) 0%, #3c3647 100%) !important;
  padding: 40px 0;
  
}
.sub-title1{
    color: var(--orange);
}
.title1{
    color: var(--cream);
}
.para1{
    color: var(--cream-dark);
}





.gradient-bg2 dotlottie-player {
  width: 100%;
  max-width: 480px;
  height: 400px;
  display: block;
  margin: 0 auto;
}
.nv-section.nv-cream dotlottie-player {
  width: 100%;
  max-width: 500px;
  height: 420px;
  display: block;
  margin: 0 auto;
}

.counter-list { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 20px; }

.counter-item {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  flex: 1;
  min-width: 120px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
}

.counter-number {
  font-family: 'Playfair Display', serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin: 8px 0 4px;
}

.counter-item .sub-title {
  color: rgba(255,255,255,.7) !important;
  font-size: 12px !important;
}

.counter-item i { font-size: 24px; color: var(--orange) !important; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-pink,
.btn-large.btn-pink {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 40px !important;
  padding: 6px 16px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-family: 'DM Sans', sans-serif !important;
  border: none !important;
  box-shadow: 0 3px 12px rgba(232,107,26,.3) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  transition: all .25s ease !important;
}
.btn-pink:hover {
  background: #c95710 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(232,107,26,.45) !important;
}
.btn-pink a,
.btn-pink a:hover { color: #fff !important; text-decoration: none !important; }

.btn-slider,
.btn-blue,
.btn-hvr-white {
  background: var(--orange) !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(232,107,26,.35) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: background .25s, transform .2s !important;
}
.btn-slider:hover { background: #c95710 !important; transform: translateY(-2px) !important; }
.btn-slider a, .btn-hvr-white a { color: #fff !important; text-decoration: none !important; }
.btn-slider .divider { color: rgba(255,255,255,.5) !important; }
.btn-hvr-setting { display: none !important; }

.btn-purple,
.btn-purple.btn-hvr-blue {
  background: var(--orange) !important;
  border-radius: 50px !important;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(232,107,26,.3) !important;
  transition: background .25s, transform .2s, box-shadow .25s !important;
}
.btn-purple:hover { background: #c95710 !important; transform: translateY(-2px) !important; }

/* ── VIDEO SCROLL ─────────────────────────────────────────────── */
.nv-video-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-lt) transparent;
}
.nv-video-scroll::-webkit-scrollbar { height: 4px; }
.nv-video-scroll::-webkit-scrollbar-thumb { background: var(--orange-lt); border-radius: 4px; }

.nv-video-card {
  min-width: 240px;
  height: 165px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--black);
  flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
}
.nv-video-card:hover { transform: scale(1.04); box-shadow: var(--shadow); }
.nv-video-card video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

.nv-play {
  position: absolute; inset: 0;
  display: flex; justify-content: center; align-items: center;
  background: rgba(26,17,24,.35);
  transition: background .2s;
}
.nv-video-card:hover .nv-play { background: rgba(26,17,24,.55); }
.nv-play i { font-size: 52px !important; color: #fff !important; }

.nv-video-title {
  position: absolute; bottom: 0; width: 100%;
  background: linear-gradient(transparent, rgba(26,17,24,.85));
  color: #fff; padding: 24px 12px 10px;
  font-size: 13px; font-weight: 500;
}

/* LTR : titre vidéo à gauche */
[dir="ltr"] .nv-video-title { text-align: left; }
/* RTL : titre vidéo à droite */
[dir="rtl"] .nv-video-title { text-align: right; }

/* ── CAROUSEL ─────────────────────────────────────────────────── */
.carousel { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.carousel-inner img { object-fit: cover; height: 340px; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-us { background: var(--cream); }
.contact-form .form-control {
  background: var(--white);
  border: 1px solid #E5DDD6;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  transition: border-color .2s;
}
.contact-form .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,107,26,.12);
  outline: none;
}
.contact-form textarea.form-control { min-height: 160px; resize: none; }

/* ── MAP ──────────────────────────────────────────────────────── */
.nv-contact-map iframe {
  width: 100%;
  height: 370px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

/* ── HEADING HIGHLIGHT ────────────────────────────────────────── */
.heading-area .alt-color { color: var(--orange) !important; }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nv-hero-badge        { animation: fadeUp .5s .1s both; }
.nv-hero-heading      { animation: fadeUp .6s .25s both; }
.nv-hero-para         { animation: fadeUp .6s .4s both; }
.nv-hero-cta          { animation: fadeUp .6s .55s both; }
.nv-hero-img-wrapper  { animation: fadeUp .7s .3s both; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 991px) {
  .nv-hero { min-height: auto; padding: 60px 0; }
  .nv-hero::before { width: 300px; height: 300px; right: -60px; }
  .nv-hero-heading { font-size: 44px; }
  .nv-hero-img-wrapper { max-width: 100%; margin: 40px auto 0; }
  .nv-float-top  { right: 0; top: -10px; }
  .nv-float-bottom { left: 0; bottom: -10px; }
  .counter-list { gap: 16px; }
  .counter-item { padding: 16px; }
  .nv-stats-banner-inner { padding: 28px 24px; }
}

@media (max-width: 767px) {
  .nv-stats-banner-inner { flex-wrap: wrap; gap: 24px; }
  .nv-stats-divider { display: none; }
  .nv-stats-item { flex: 0 0 45%; }
}

@media (max-width: 576px) {
  .nv-hero-heading { font-size: 36px; }
  .nv-hero-cta { flex-direction: column; align-items: flex-start; }
  .nv-float-badge { padding: 8px 12px; }
  .nv-float-num { font-size: 15px; }
  .nv-stats-item { flex: 0 0 100%; }
}


/* ================================================================
   APP SECTION — Base (commune aux deux langues)
   ================================================================ */
.nv-app-section {
  background: linear-gradient(135deg, var(--violet) 0%, #3c3647 100%);
  overflow: visible !important;
  position: relative;
  
}

.nv-app-badge {
  display: inline-block;
  background: rgba(232,107,26,.2);
  color: var(--orange);
  border: 1px solid rgba(232,107,26,.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.nv-app-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.nv-app-hl {
  color: var(--orange);
  font-style: italic;
}

.nv-app-para {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 28px;
}

/* Features list */
.nv-app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nv-app-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
}

.nv-app-feat-icon {
  font-size: 20px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nv-app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(232,107,26,.4);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.nv-app-download-btn:hover {
  background: #c95710;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,107,26,.5);
}

.nv-app-store-sub {
  display: block;
  font-size: 11px;
  opacity: .8;
  line-height: 1;
}
.nv-app-store-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.nv-app-mockup-wrapper {
  position: relative;
  display: inline-block;
}

.nv-app-blob {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,107,26,.25) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.nv-app-phone {
  width: 320px;
  max-width: 100%;
  position: relative;
  margin-top: 90px;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.4));
  animation: floatImg 4s ease-in-out infinite;
}

.nv-app-float-badge {
  position: absolute;
  top: 30px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  z-index: 2;
  animation: floatBadge 3s ease-in-out infinite alternate;
}

.nv-app-float-num {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.nv-app-float-txt {
  font-size: 11px;
  color: var(--gray);
}


/* ================================================================
   APP SECTION — LTR (Anglais)
   ================================================================ */
[dir="ltr"] .nv-app-badge,
[dir="ltr"] .nv-app-heading,
[dir="ltr"] .nv-app-para {
  text-align: left;
}

[dir="ltr"] .nv-app-features li {
  flex-direction: row;
}

[dir="ltr"] .nv-app-float-badge {
  left: -30px;
  right: auto;
}

[dir="ltr"] .nv-app-download-btn {
  flex-direction: row;
}

[dir="ltr"] .nv-app-para {
  margin-left: 0;
  margin-right: auto;
}


/* ================================================================
   APP SECTION — RTL (Arabe)
   ================================================================ */
[dir="rtl"] .nv-app-section {
  direction: rtl;
}

[dir="rtl"] .nv-app-badge,
[dir="rtl"] .nv-app-heading,
[dir="rtl"] .nv-app-para {
  text-align: right;
}

[dir="rtl"] .nv-app-features {
  direction: rtl;
}

[dir="rtl"] .nv-app-features li {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

[dir="rtl"] .nv-app-float-badge {
  left: auto;
  right: -30px;
}

[dir="rtl"] .nv-app-download-btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .nv-app-para {
  margin-right: 0;
  margin-left: auto;
}

[dir="rtl"] .nv-hero-cta {
  justify-content: flex-start;
}

[dir="rtl"] .nv-hero-badge {
  flex-direction: row-reverse;
}

[dir="rtl"] .nv-hero-para {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}

[dir="rtl"] .nv-trust-row {
  flex-direction: row-reverse;
}


/* ================================================================
   APP SECTION — Responsive
   ================================================================ */
@media (max-width: 991px) {
  .nv-app-section { padding: 40px 0; }
  .nv-app-features { grid-template-columns: 1fr; }
  .nv-app-phone { width: 240px; }

  /* LTR mobile */
  [dir="ltr"] .nv-app-float-badge { left: 0; top: 10px; }

  /* RTL mobile */
  [dir="rtl"] .nv-app-float-badge { right: 0; left: auto; top: 10px; }
}

@media (max-width: 767px) {
  [dir="rtl"] .nv-app-badge,
  [dir="rtl"] .nv-app-heading,
  [dir="rtl"] .nv-app-para {
    text-align: center;
  }
  [dir="ltr"] .nv-app-badge,
  [dir="ltr"] .nv-app-heading,
  [dir="ltr"] .nv-app-para {
    text-align: center;
  }
  .nv-app-features {
    justify-items: center;
  }
  [dir="rtl"] .nv-app-features li {
    justify-content: center;
  }
  .nv-app-download-btn {
    margin: 0 auto;
  }
}



.loader {
    inset: 0;
    margin: auto;

    width: 20px;
    padding: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f38f18;

    --_m:
            conic-gradient(#0000 10%,#000),
            linear-gradient(#000 0 0) content-box;

    -webkit-mask: var(--_m);
    mask: var(--_m);

    -webkit-mask-composite: source-out;
    mask-composite: subtract;

    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to { transform: rotate(1turn) }
}
