:root {
  --qv-primary: #4f46e5;
  --qv-primary-2: #7c3aed;
  --qv-accent: #06b6d4;
  --qv-ink: #0f172a;
  --qv-bg: #f6f7fb;
  --qv-surface: #ffffff;
  --qv-text: #1e293b;
  --qv-muted: #64748b;
  --qv-border: #e2e8f0;
  --qv-success: #10b981;
  --qv-danger: #ef4444;
  --qv-warning: #f59e0b;
  --qv-info: #0ea5e9;
  --qv-radius: 18px;
  --qv-shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 8px 24px -14px rgba(15, 23, 42, .14);
  --qv-shadow-lg: 0 24px 48px -16px rgba(79, 70, 229, .3);
  --qv-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 55%, #06b6d4 120%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--qv-bg);
  background-image:
    radial-gradient(circle at 8% -8%, rgba(79, 70, 229, .09), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(6, 182, 212, .09), transparent 40%);
  background-attachment: fixed;
  color: var(--qv-text);
  animation: qv-fadein .5s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  color: var(--qv-ink);
}

a {
  color: var(--qv-primary);
  transition: color .2s ease;
}

a:hover {
  color: #4338ca;
}

::selection {
  background: #6366f1;
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a5b4fc;
}

::-webkit-scrollbar-track {
  background: transparent;
}

.text-gradient {
  background: var(--qv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title {
  font-weight: 800;
  letter-spacing: -.01em;
}

.section-sub {
  color: var(--qv-muted);
}

.container {
  max-width: 1340px;
}

.alert {
  border: none;
  border-radius: 14px;
  box-shadow: var(--qv-shadow-sm);
  animation: qv-slide-in .4s ease;
}

.alert-danger {
  background: #fef2f2;
  color: #b91c1c;
  border-left: 4px solid #ef4444;
}

.alert-success {
  background: #ecfdf5;
  color: #047857;
  border-left: 4px solid #10b981;
}

.alert-warning {
  background: #fffbeb;
  color: #b45309;
  border-left: 4px solid #f59e0b;
}

.alert-info {
  background: #f0f9ff;
  color: #0369a1;
  border-left: 4px solid #0ea5e9;
}

.badge {
  font-weight: 600;
  border-radius: 999px;
  padding: .42em .75em;
  font-size: .72rem;
  letter-spacing: .02em;
}

.badge.bg-light {
  color: #334155;
}

.badge-dynamic {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4) !important;
  color: #fff !important;
  font-size: .65rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-left: .3rem;
}

.badge-static {
  background: #64748b !important;
  color: #fff !important;
  font-size: .65rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-left: .3rem;
}

.btn {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .22s ease;
}

.btn:active {
  transform: translateY(1px) scale(.985);
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border: none;
  box-shadow: 0 8px 20px -8px rgba(79, 70, 229, .55);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #4338ca, #6d28d9);
  box-shadow: 0 12px 26px -8px rgba(79, 70, 229, .7);
  transform: translateY(-1px);
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  box-shadow: 0 8px 20px -8px rgba(16, 185, 129, .55);
}

.btn-success:hover,
.btn-success:focus {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
}

.btn-info {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(14, 165, 233, .55);
}

.btn-info:hover,
.btn-info:focus {
  background: linear-gradient(135deg, #0284c7, #0891b2);
  color: #fff;
  transform: translateY(-1px);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(245, 158, 11, .55);
}

.btn-warning:hover,
.btn-warning:focus {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  transform: translateY(-1px);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  box-shadow: 0 8px 20px -8px rgba(239, 68, 68, .55);
}

.btn-danger:hover,
.btn-danger:focus {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, #64748b, #475569);
  border: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: linear-gradient(135deg, #475569, #334155);
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--qv-primary);
  border: 1px solid var(--qv-border);
}

.btn-light:hover {
  background: #eef2ff;
  color: var(--qv-primary);
}

.btn-outline-secondary,
.btn-outline-primary,
.btn-outline-danger,
.btn-outline-warning {
  border-radius: 12px;
  font-weight: 600;
}

.btn-outline-danger:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-color: transparent;
  color: #fff;
}

.btn-qv {
  background: var(--qv-gradient);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  padding: .85rem 1.8rem;
  box-shadow: 0 12px 28px -10px rgba(79, 70, 229, .7);
  transition: all .25s ease;
}

.btn-qv:hover,
.btn-qv:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(124, 58, 237, .8);
}

.btn-qv-lg {
  font-size: 1.05rem;
  padding: 1rem 2.1rem;
}

.card {
  border: none;
  border-radius: var(--qv-radius);
  box-shadow: var(--qv-shadow-sm);
  background: var(--qv-surface);
}

.card-header {
  font-weight: 700;
  border: none;
  border-radius: var(--qv-radius) var(--qv-radius) 0 0 !important;
  padding: 1rem 1.3rem;
  background: #f8fafc;
}

.card-body {
  padding: 1.3rem;
}

.card-hover {
  transition: transform .28s ease, box-shadow .28s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--qv-shadow-lg);
}

.card.text-white {
  background-size: cover;
  transition: transform .28s ease, box-shadow .28s ease;
}

.card.text-white:hover {
  transform: translateY(-4px);
  box-shadow: var(--qv-shadow-lg);
}

.card.text-white .card-header {
  background: rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.card.text-white .card-body h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--qv-ink);
}

.bg-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
}

.bg-info {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4) !important;
}

.bg-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

.bg-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, #64748b, #475569) !important;
}

.bg-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.card.text-white.bg-warning {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
}

.bg-light {
  background-color: #f8fafc !important;
}

.qv-topbar {
  background: var(--qv-gradient);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  text-align: center;
  padding: .45rem 1rem;
  letter-spacing: .02em;
}

.qv-topbar i {
  margin-right: .35rem;
}

.navbar {
  padding-top: .8rem;
  padding-bottom: .8rem;
}

.navbar.bg-primary {
  background: rgba(8, 12, 26, .92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar.nav-scrolled {
  box-shadow: 0 14px 34px -16px rgba(2, 6, 23, .6);
}

.navbar-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

.qv-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--qv-gradient);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px -6px rgba(79, 70, 229, .6);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, .78) !important;
  font-weight: 500;
  margin: 0 .15rem;
  padding: .5rem .85rem !important;
  border-radius: 10px;
  transition: all .2s ease;
}

.navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .09);
}

.navbar .dropdown-menu {
  border: 1px solid var(--qv-border);
  border-radius: 14px;
  box-shadow: 0 20px 40px -16px rgba(15, 23, 42, .4);
  padding: .5rem;
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: .55rem .9rem;
  font-weight: 500;
}

.navbar .dropdown-item:hover {
  background: #eef2ff;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .2);
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid var(--qv-border);
  padding: .62rem .95rem;
  font-size: .95rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .12);
}

input[type="color"].form-control {
  height: 46px;
  padding: .3rem;
  border-radius: 12px;
  cursor: pointer;
}

.form-label {
  font-weight: 600;
  color: #334155;
  font-size: .88rem;
  margin-bottom: .35rem;
}

.form-check-input:checked {
  background-color: var(--qv-primary);
  border-color: var(--qv-primary);
}

.qv-password {
  position: relative;
}

.qv-password .form-control {
  padding-right: 46px;
}

.qv-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--qv-muted);
  padding: 4px;
  cursor: pointer;
  line-height: 1;
}

.qv-password-toggle:hover {
  color: var(--qv-primary);
}

.select2-container .select2-selection--single {
  height: auto;
  min-height: 46px;
  padding: .45rem .5rem;
  border: 1px solid var(--qv-border) !important;
  border-radius: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
  color: var(--qv-text);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.table {
  --bs-table-bg: transparent;
  color: var(--qv-text);
}

.table thead th {
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--qv-muted);
  font-weight: 700;
  border-bottom: 2px solid var(--qv-border);
  background: #f8fafc;
}

.table td {
  vertical-align: middle;
}

.table-bordered > :not(caption) > * {
  border-color: var(--qv-border);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #f8fafd;
}

.table tbody tr {
  transition: background-color .18s ease;
}

.table-striped > tbody > tr:hover > td,
.table-striped > tbody > tr:hover > th,
.table > tbody > tr:hover > td,
.table > tbody > tr:hover > th {
  background-color: #eef2ff;
}

.progress {
  background: #eef2f7;
  border-radius: 999px;
}

.progress-bar {
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #06b6d4);
  border-radius: 999px;
}

.list-group {
  gap: 6px;
}

.list-group-item {
  border: 1px solid var(--qv-border);
  border-radius: 12px !important;
  transition: all .2s ease;
}

.list-group-item.active {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(79, 70, 229, .55);
}

.pagination .page-link {
  border-radius: 10px !important;
  margin: 0 3px;
  color: var(--qv-primary);
  border: 1px solid var(--qv-border);
  font-weight: 600;
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(79, 70, 229, .5);
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, .4);
}

.modal-header {
  border-bottom: 1px solid var(--qv-border);
  border-radius: 20px 20px 0 0;
}

.modal-header.bg-primary {
  color: #fff;
}

.modal-footer {
  border-top: 1px solid var(--qv-border);
  border-radius: 0 0 20px 20px;
}

.row.justify-content-center .card {
  max-width: 480px;
  margin: 1.5rem auto;
}

.hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4f46e5 78%, #0ea5e9 135%);
  color: #fff;
  padding: 4.5rem 2rem;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(30, 27, 75, .55);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  letter-spacing: -.02em;
  color: #fff;
}

.hero .lead {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
}

.hero .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.hero .btn-outline-light:hover {
  background: #fff;
  color: #312e81;
  border-color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.hero-stats > div {
  text-align: center;
  min-width: 96px;
}

.hero-stats strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #22d3ee;
}

.hero-stats span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.qv-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}

.qv-blob-1 {
  width: 340px;
  height: 340px;
  right: -90px;
  top: -120px;
  background: radial-gradient(circle, rgba(6, 182, 212, .5), transparent 65%);
  animation: qv-float 9s ease-in-out infinite;
}

.qv-blob-2 {
  width: 300px;
  height: 300px;
  left: -100px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(124, 58, 237, .55), transparent 65%);
  animation: qv-float 11s ease-in-out infinite reverse;
}

.feature-card {
  background: var(--qv-surface);
  border: 1px solid var(--qv-border);
  border-radius: 20px;
  padding: 1.6rem;
  height: 100%;
  box-shadow: var(--qv-shadow-sm);
  transition: all .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(79, 70, 229, .25);
  border-color: #c7d2fe;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: var(--qv-gradient);
  box-shadow: 0 8px 18px -6px rgba(79, 70, 229, .5);
  margin-bottom: 1rem;
}

.feature-icon.icon-cyan {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 8px 18px -6px rgba(6, 182, 212, .5);
}

.feature-icon.icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 18px -6px rgba(16, 185, 129, .5);
}

.feature-icon.icon-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 18px -6px rgba(245, 158, 11, .5);
}

.feature-icon.icon-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  box-shadow: 0 8px 18px -6px rgba(244, 63, 94, .5);
}

.feature-icon.icon-slate {
  background: linear-gradient(135deg, #64748b, #475569);
  box-shadow: 0 8px 18px -6px rgba(100, 116, 139, .5);
}

.feature-card h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  margin-bottom: .45rem;
}

.device-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #eef2ff;
  color: var(--qv-primary);
  font-size: 1.05rem;
}

.feature-card p {
  color: var(--qv-muted);
  font-size: .92rem;
  margin: 0;
}

.plan-card .card-header {
  border: none;
}

.plan-card .card-header h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.plan-card ul li {
  padding: .34rem 0;
  color: #334155;
}

.plan-card ul li i {
  font-size: 1rem;
}

.cta {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(120deg, #312e81, #4f46e5 55%, #7c3aed);
  color: #fff;
  padding: 3.4rem 2rem;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(49, 46, 129, .5);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, .85);
}

.cta .btn-light {
  border: none;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .35);
}

.cta .btn-light:hover {
  background: #eef2ff;
  transform: translateY(-2px);
}

.jumbotron {
  border-radius: 28px;
  background: linear-gradient(135deg, #1e1b4b, #312e81 55%, #4f46e5) !important;
  color: #fff;
}

.qv-footer {
  background: #0b1120;
  color: #94a3b8;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #4f46e5, #7c3aed, #06b6d4) 1;
}

.qv-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color .2s;
  font-weight: 500;
}

.qv-footer a:hover {
  color: #a5b4fc;
}

.qv-footer .small {
  color: #64748b;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.qv-toasts {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 92vw;
}

.qv-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--qv-text);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, .35);
  border: 1px solid var(--qv-border);
  font-size: .9rem;
  font-weight: 500;
  max-width: 360px;
  opacity: 0;
  transform: translateX(24px);
  transition: all .35s ease;
}

.qv-toast.show {
  opacity: 1;
  transform: none;
}

.qv-toast i {
  font-size: 1.15rem;
}

.qv-toast-success i {
  color: var(--qv-success);
}

.qv-toast-danger i {
  color: var(--qv-danger);
}

.qv-toast-info i {
  color: var(--qv-primary);
}

@keyframes qv-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}

@keyframes qv-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes qv-slide-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .qv-blob,
  .qv-blob-1,
  .qv-blob-2 {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.25rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  .cta {
    padding: 2.6rem 1.25rem;
  }
  .navbar .nav-link {
    margin: .15rem 0;
  }
}

[dir="rtl"] body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Tahoma, Arial, sans-serif;
}

[dir="rtl"] .qv-topbar i {
  margin-right: 0;
  margin-left: .35rem;
}

[dir="rtl"] .alert-danger {
  border-left: none;
  border-right: 4px solid #ef4444;
}

[dir="rtl"] .alert-success {
  border-left: none;
  border-right: 4px solid #10b981;
}

[dir="rtl"] .alert-warning {
  border-left: none;
  border-right: 4px solid #f59e0b;
}

[dir="rtl"] .alert-info {
  border-left: none;
  border-right: 4px solid #0ea5e9;
}

[dir="rtl"] .badge-dynamic,
[dir="rtl"] .badge-static {
  margin-left: 0;
  margin-right: .3rem;
}

[dir="rtl"] .qv-password .form-control {
  padding-right: .95rem;
  padding-left: 46px;
}

[dir="rtl"] .qv-password-toggle {
  right: auto;
  left: 10px;
}

[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: auto;
  left: 10px;
}

[dir="rtl"] .qv-toasts {
  right: auto;
  left: 16px;
}

[dir="rtl"] .qv-toast {
  transform: translateX(-24px);
}

[dir="rtl"] .navbar-nav {
  padding-right: 0;
}

[dir="rtl"] .navbar .nav-link {
  text-align: right;
}

[dir="rtl"] .dropdown-menu {
  text-align: right;
}

[dir="rtl"] .hero-stats span,
[dir="rtl"] .table thead th {
  letter-spacing: 0;
}

