/* ============================================================
   أعمالي دوت كوم — EasyPOS ERP
   ورقة الأنماط الكاملة (style.css)
   جميع القواعد معزولة تحت المعرف #nexasoft-website
   لتجنب أي تعارض مع قالب ووردبريس أو الإضافات.
   ============================================================ */

#nexasoft-website {
  /* ========== المتغيرات (الهوية البصرية) ========== */
  --nx-primary: #0F2A5F;   /* اللون الأساسي: أزرق داكن */
  --nx-secondary: #2563EB; /* اللون الثانوي: أزرق تقني */
  --nx-accent: #06B6D4;    /* لون التميز: سماوي */
  --nx-green: #16A34A;     /* لون أزرار التجربة: أخضر */
  --nx-light: #F8FAFC;     /* خلفية فاتحة */
  --nx-text: #0F172A;      /* النص الرئيسي */
  --nx-muted: #64748B;     /* النص الثانوي */
  --nx-white: #FFFFFF;     /* الأبيض */
  --nx-border: #E2E8F0;    /* حدود */
  --nx-red: #DC2626;       /* تنبيه / مشكلة */
  --nx-amber: #F59E0B;     /* تمييز */
  --nx-radius: 18px;
  --nx-radius-sm: 10px;
  --nx-radius-lg: 24px;
  --nx-shadow: 0 10px 30px rgba(15, 42, 95, 0.08);
  --nx-shadow-lg: 0 24px 60px rgba(15, 42, 95, 0.16);
  --nx-nav-h: 78px;
  --nx-font: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;

  font-family: var(--nx-font);
  direction: rtl;
  text-align: right;
  color: var(--nx-text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* إعادة ضبط محلية داخل الحاوية فقط */
#nexasoft-website *,
#nexasoft-website *::before,
#nexasoft-website *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#nexasoft-website ul,
#nexasoft-website ol {
  list-style: none;
}

#nexasoft-website img {
  max-width: 100%;
  display: block;
}

#nexasoft-website a {
  text-decoration: none;
  color: inherit;
}

#nexasoft-website button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

#nexasoft-website input,
#nexasoft-website select,
#nexasoft-website textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

#nexasoft-website h1,
#nexasoft-website h2,
#nexasoft-website h3,
#nexasoft-website h4 {
  line-height: 1.35;
  font-weight: 800;
  color: var(--nx-primary);
}

/* ========== تنسيق عام ========== */
#nexasoft-website .nx-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

#nexasoft-website .nx-section {
  padding-block: 96px;
}

#nexasoft-website .nx-section-alt {
  background: var(--nx-light);
}

#nexasoft-website .nx-section-dark {
  background: var(--nx-primary);
  color: var(--nx-white);
}

#nexasoft-website .nx-section-dark h2,
#nexasoft-website .nx-section-dark h3 {
  color: var(--nx-white);
}

/* عنوان القسم */
#nexasoft-website .nx-sec-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 56px;
}

#nexasoft-website .nx-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--nx-secondary);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

#nexasoft-website .nx-section-dark .nx-sec-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #93C5FD;
}

#nexasoft-website .nx-sec-title {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
}

#nexasoft-website .nx-sec-desc {
  color: var(--nx-muted);
  font-size: 17px;
}

#nexasoft-website .nx-section-dark .nx-sec-desc {
  color: #B9C6E2;
}

/* ========== الأزرار ========== */
#nexasoft-website .nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--nx-radius-sm);
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}

#nexasoft-website .nx-btn i {
  font-size: 14px;
}

#nexasoft-website .nx-btn:hover {
  transform: translateY(-3px);
}

#nexasoft-website .nx-btn-primary {
  background: var(--nx-secondary);
  color: var(--nx-white);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

#nexasoft-website .nx-btn-primary:hover {
  background: #1D4ED8;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.42);
}

#nexasoft-website .nx-btn-green {
  background: var(--nx-green);
  color: var(--nx-white);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}

#nexasoft-website .nx-btn-green:hover {
  background: #15803D;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
}

#nexasoft-website .nx-btn-outline {
  background: transparent;
  border: 2px solid var(--nx-secondary);
  color: var(--nx-secondary);
}

#nexasoft-website .nx-btn-outline:hover {
  background: var(--nx-secondary);
  color: var(--nx-white);
}

#nexasoft-website .nx-btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: var(--nx-white);
}

#nexasoft-website .nx-btn-white-outline:hover {
  background: var(--nx-white);
  color: var(--nx-primary);
  border-color: var(--nx-white);
}

#nexasoft-website .nx-btn-white {
  background: var(--nx-white);
  color: var(--nx-primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

#nexasoft-website .nx-btn-white:hover {
  background: #EFF6FF;
}

#nexasoft-website .nx-btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 14px;
}

#nexasoft-website .nx-btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

/* ========== الشريط العلوي Navbar ========== */
#nexasoft-website .nx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nx-nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

#nexasoft-website .nx-nav.nx-nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(15, 42, 95, 0.1);
  border-bottom: 1px solid var(--nx-border);
}

#nexasoft-website .nx-nav-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
  height: var(--nx-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* الشعار */
#nexasoft-website .nx-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#nexasoft-website .nx-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--nx-primary), var(--nx-secondary));
  color: var(--nx-white);
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

#nexasoft-website .nx-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

#nexasoft-website .nx-logo-name {
  font-weight: 900;
  font-size: 19px;
  color: var(--nx-white);
  transition: color 0.3s ease;
}

#nexasoft-website .nx-logo-sub {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

#nexasoft-website .nx-nav.nx-nav-scrolled .nx-logo-name {
  color: var(--nx-primary);
}

#nexasoft-website .nx-nav.nx-nav-scrolled .nx-logo-sub {
  color: var(--nx-muted);
}

/* روابط القائمة */
#nexasoft-website .nx-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

#nexasoft-website .nx-nav-links a {
  padding: 9px 14px;
  border-radius: var(--nx-radius-sm);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease, background 0.25s ease;
}

#nexasoft-website .nx-nav-links a:hover,
#nexasoft-website .nx-nav-links a.nx-active {
  color: var(--nx-white);
  background: rgba(255, 255, 255, 0.14);
}

#nexasoft-website .nx-nav.nx-nav-scrolled .nx-nav-links a {
  color: var(--nx-text);
}

#nexasoft-website .nx-nav.nx-nav-scrolled .nx-nav-links a:hover,
#nexasoft-website .nx-nav.nx-nav-scrolled .nx-nav-links a.nx-active {
  color: var(--nx-secondary);
  background: rgba(37, 99, 235, 0.08);
}

/* أزرار الشريط */
#nexasoft-website .nx-nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#nexasoft-website .nx-nav-login {
  padding: 9px 18px;
  border-radius: var(--nx-radius-sm);
  font-weight: 700;
  font-size: 14px;
  color: var(--nx-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
}

#nexasoft-website .nx-nav-login:hover {
  background: rgba(255, 255, 255, 0.12);
}

#nexasoft-website .nx-nav.nx-nav-scrolled .nx-nav-login {
  color: var(--nx-secondary);
  border-color: var(--nx-secondary);
}

#nexasoft-website .nx-nav.nx-nav-scrolled .nx-nav-login:hover {
  background: rgba(37, 99, 235, 0.08);
}

#nexasoft-website .nx-nav-register {
  padding: 10px 20px;
  border-radius: var(--nx-radius-sm);
  font-weight: 800;
  font-size: 14px;
  color: var(--nx-white);
  background: var(--nx-green);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
  transition: all 0.25s ease;
}

#nexasoft-website .nx-nav-register:hover {
  transform: translateY(-2px);
  background: #15803D;
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.5);
}

/* زر القائمة للهاتف */
#nexasoft-website .nx-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--nx-radius-sm);
  align-items: center;
}

#nexasoft-website .nx-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.6px;
  border-radius: 3px;
  background: var(--nx-white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

#nexasoft-website .nx-nav.nx-nav-scrolled .nx-menu-toggle span {
  background: var(--nx-primary);
}

#nexasoft-website .nx-menu-toggle.nx-active span:nth-child(1) {
  transform: translateY(7.6px) rotate(45deg);
}

#nexasoft-website .nx-menu-toggle.nx-active span:nth-child(2) {
  opacity: 0;
}

#nexasoft-website .nx-menu-toggle.nx-active span:nth-child(3) {
  transform: translateY(-7.6px) rotate(-45deg);
}

/* ========== القسم الرئيسي Hero ========== */
#nexasoft-website .nx-hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 55% at 85% 15%, rgba(6, 182, 212, 0.25), transparent 60%),
    radial-gradient(ellipse 55% 50% at 10% 85%, rgba(37, 99, 235, 0.4), transparent 60%),
    linear-gradient(135deg, #0A1D46 0%, var(--nx-primary) 45%, #1B4A94 100%);
  color: var(--nx-white);
  overflow: hidden;
  padding-top: calc(var(--nx-nav-h) + 70px);
  padding-bottom: 90px;
}

/* نقاط شبكية زخرفية */
#nexasoft-website .nx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.4;
  pointer-events: none;
}

#nexasoft-website .nx-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
}

/* محتوى الهيرو */
#nexasoft-website .nx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #A5F3FC;
}

#nexasoft-website .nx-hero-badge i {
  color: var(--nx-accent);
}

#nexasoft-website .nx-hero h1 {
  color: var(--nx-white);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1.3;
}

#nexasoft-website .nx-hero h1 .nx-highlight {
  position: relative;
  display: inline-block;
  color: #7DD3FC;
}

#nexasoft-website .nx-hero h1 .nx-highlight::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--nx-accent), var(--nx-secondary));
  border-radius: 6px;
  opacity: 0.35;
  z-index: -1;
}

#nexasoft-website .nx-hero-desc {
  font-size: 18px;
  color: #C7D3EE;
  max-width: 560px;
  margin-bottom: 34px;
}

#nexasoft-website .nx-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

#nexasoft-website .nx-hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #A9BCDF;
}

#nexasoft-website .nx-hero-note i {
  color: #4ADE80;
}

#nexasoft-website .nx-hero-note span {
  margin-inline: 2px;
}

/* نموذج لوحة التحكم (Hero) */
#nexasoft-website .nx-dash {
  position: relative;
  background: var(--nx-white);
  border-radius: var(--nx-radius-lg);
  box-shadow: 0 40px 90px rgba(4, 20, 60, 0.45);
  color: var(--nx-text);
  overflow: hidden;
  transform: rotate(1.5deg);
}

#nexasoft-website .nx-dash-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--nx-border);
}

#nexasoft-website .nx-dash-dots {
  display: flex;
  gap: 6px;
}

#nexasoft-website .nx-dash-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
}

#nexasoft-website .nx-dash-dots i:nth-child(1) { background: #F87171; }
#nexasoft-website .nx-dash-dots i:nth-child(2) { background: #FBBF24; }
#nexasoft-website .nx-dash-dots i:nth-child(3) { background: #4ADE80; }

#nexasoft-website .nx-dash-title {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--nx-muted);
}

#nexasoft-website .nx-dash-live {
  font-size: 11px;
  font-weight: 800;
  color: var(--nx-green);
  background: rgba(22, 163, 74, 0.12);
  padding: 3px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#nexasoft-website .nx-dash-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nx-green);
  animation: nx-pulse 1.6s infinite;
}

@keyframes nx-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

#nexasoft-website .nx-dash-body {
  padding: 20px;
}

/* مؤشرات KPI */
#nexasoft-website .nx-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

#nexasoft-website .nx-dash-stat {
  background: var(--nx-light);
  border: 1px solid var(--nx-border);
  border-radius: 14px;
  padding: 13px 14px;
}

#nexasoft-website .nx-dash-stat-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--nx-muted);
  margin-bottom: 4px;
}

#nexasoft-website .nx-dash-stat-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--nx-primary);
}

#nexasoft-website .nx-dash-stat-value small {
  font-size: 11px;
  font-weight: 700;
  color: var(--nx-muted);
}

#nexasoft-website .nx-dash-stat-change {
  font-size: 11px;
  font-weight: 800;
  margin-top: 3px;
}

#nexasoft-website .nx-dash-stat-change.nx-up { color: var(--nx-green); }
#nexasoft-website .nx-dash-stat-change.nx-down { color: var(--nx-red); }

/* الرسم البياني والمعاملات */
#nexasoft-website .nx-dash-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
}

#nexasoft-website .nx-dash-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: 14px;
  padding: 16px;
}

#nexasoft-website .nx-dash-card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--nx-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nexasoft-website .nx-dash-card-title span {
  font-size: 11px;
  color: var(--nx-muted);
  font-weight: 600;
}

/* أعمدة الرسم */
#nexasoft-website .nx-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
}

#nexasoft-website .nx-chart .nx-bar {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--nx-accent), var(--nx-secondary));
  min-width: 10px;
  transition: transform 0.3s ease;
}

#nexasoft-website .nx-chart .nx-bar:hover {
  transform: scaleY(1.04);
}

#nexasoft-website .nx-chart .nx-bar:nth-child(1) { height: 45%; }
#nexasoft-website .nx-chart .nx-bar:nth-child(2) { height: 62%; }
#nexasoft-website .nx-chart .nx-bar:nth-child(3) { height: 40%; }
#nexasoft-website .nx-chart .nx-bar:nth-child(4) { height: 78%; }
#nexasoft-website .nx-chart .nx-bar:nth-child(5) { height: 55%; }
#nexasoft-website .nx-chart .nx-bar:nth-child(6) { height: 88%; }
#nexasoft-website .nx-chart .nx-bar:nth-child(7) { height: 70%; }
#nexasoft-website .nx-chart .nx-bar:nth-child(8) { height: 96%; }

/* المعاملات */
#nexasoft-website .nx-tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#nexasoft-website .nx-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border-radius: 10px;
  background: var(--nx-light);
  border: 1px solid var(--nx-border);
}

#nexasoft-website .nx-tx-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--nx-secondary);
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

#nexasoft-website .nx-tx-icon.nx-ic-green {
  background: rgba(22, 163, 74, 0.12);
  color: var(--nx-green);
}

#nexasoft-website .nx-tx-icon.nx-ic-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: #0891B2;
}

#nexasoft-website .nx-tx-text {
  flex: 1;
  min-width: 0;
}

#nexasoft-website .nx-tx-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--nx-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#nexasoft-website .nx-tx-date {
  font-size: 10.5px;
  color: var(--nx-muted);
}

#nexasoft-website .nx-tx-amount {
  font-size: 12px;
  font-weight: 800;
  color: var(--nx-green);
}

#nexasoft-website .nx-tx-amount.nx-neg {
  color: var(--nx-red);
}

/* عناصر عائمة فوق اللوحة */
#nexasoft-website .nx-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--nx-white);
  color: var(--nx-text);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 14px 34px rgba(4, 20, 60, 0.28);
  font-size: 12.5px;
  font-weight: 800;
  z-index: 3;
  animation: nx-float 5s ease-in-out infinite;
}

#nexasoft-website .nx-float-chip i {
  font-size: 14px;
}

#nexasoft-website .nx-float-chip .nx-chip-ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
}

#nexasoft-website .nx-chip-green .nx-chip-ic {
  background: rgba(22, 163, 74, 0.14);
  color: var(--nx-green);
}

#nexasoft-website .nx-chip-blue .nx-chip-ic {
  background: rgba(37, 99, 235, 0.14);
  color: var(--nx-secondary);
}

#nexasoft-website .nx-chip-cyan .nx-chip-ic {
  background: rgba(6, 182, 212, 0.14);
  color: #0891B2;
}

#nexasoft-website .nx-chip-1 { top: 34px; right: -34px; animation-delay: 0s; }
#nexasoft-website .nx-chip-2 { bottom: 96px; left: -46px; animation-delay: 1.6s; }
#nexasoft-website .nx-chip-3 { top: -20px; left: 40px; animation-delay: 3s; }

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

/* ========== شريط الثقة والأرقام ========== */
#nexasoft-website .nx-trust {
  background: linear-gradient(90deg, var(--nx-primary), #1B4A94);
  color: var(--nx-white);
  padding-block: 44px;
}

#nexasoft-website .nx-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

#nexasoft-website .nx-trust-item {
  position: relative;
}

#nexasoft-website .nx-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.18);
}

#nexasoft-website .nx-trust-icon {
  font-size: 22px;
  color: #7DD3FC;
  margin-bottom: 8px;
}

#nexasoft-website .nx-trust-value {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}

#nexasoft-website .nx-trust-label {
  font-size: 14px;
  color: #B9C6E2;
  font-weight: 600;
}

/* ========== قسم المشكلة والحل ========== */
#nexasoft-website .nx-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

#nexasoft-website .nx-problem-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 28px;
  box-shadow: var(--nx-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#nexasoft-website .nx-problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow-lg);
}

#nexasoft-website .nx-problem-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.1);
  color: var(--nx-red);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 18px;
}

#nexasoft-website .nx-problem-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

#nexasoft-website .nx-problem-card p {
  color: var(--nx-muted);
  font-size: 15px;
}

/* لافتة الحل */
#nexasoft-website .nx-solution-banner {
  background:
    radial-gradient(ellipse 55% 80% at 90% 10%, rgba(6, 182, 212, 0.25), transparent 60%),
    linear-gradient(120deg, var(--nx-primary), #1B4A94);
  border-radius: var(--nx-radius-lg);
  color: var(--nx-white);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 24px 60px rgba(15, 42, 95, 0.3);
}

#nexasoft-website .nx-solution-banner h3 {
  color: var(--nx-white);
  font-size: clamp(20px, 2.8vw, 28px);
  margin-bottom: 10px;
}

#nexasoft-website .nx-solution-banner p {
  color: #C7D3EE;
  font-size: 16px;
  max-width: 620px;
}

/* ========== قسم المميزات ========== */
#nexasoft-website .nx-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

#nexasoft-website .nx-feature-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 26px 24px;
  box-shadow: var(--nx-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

#nexasoft-website .nx-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--nx-secondary), var(--nx-accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

#nexasoft-website .nx-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nx-shadow-lg);
  border-color: rgba(37, 99, 235, 0.35);
}

#nexasoft-website .nx-feature-card:hover::before {
  transform: scaleX(1);
}

#nexasoft-website .nx-feature-ic {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.12));
  color: var(--nx-secondary);
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 18px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#nexasoft-website .nx-feature-card:hover .nx-feature-ic {
  background: linear-gradient(135deg, var(--nx-secondary), var(--nx-accent));
  color: var(--nx-white);
  transform: rotate(-6deg) scale(1.06);
}

#nexasoft-website .nx-feature-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

#nexasoft-website .nx-feature-card p {
  font-size: 14px;
  color: var(--nx-muted);
}

/* ========== قسم كيف يعمل ========== */
#nexasoft-website .nx-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

#nexasoft-website .nx-step {
  position: relative;
  text-align: center;
  padding: 28px 16px;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  box-shadow: var(--nx-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#nexasoft-website .nx-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow-lg);
}

#nexasoft-website .nx-step-num {
  width: 46px;
  height: 46px;
  margin-inline: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nx-secondary), var(--nx-accent));
  color: var(--nx-white);
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  position: relative;
  z-index: 2;
}

#nexasoft-website .nx-step-ic {
  font-size: 20px;
  color: var(--nx-secondary);
  margin-bottom: 12px;
  display: block;
}

#nexasoft-website .nx-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

#nexasoft-website .nx-step p {
  font-size: 13.5px;
  color: var(--nx-muted);
}

#nexasoft-website .nx-steps-line {
  position: absolute;
  top: 23px;
  right: calc(10%);
  left: calc(10%);
  height: 2px;
  border-top: 2px dashed rgba(37, 99, 235, 0.35);
  z-index: 1;
}

/* ========== قسم القطاعات ========== */
#nexasoft-website .nx-sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

#nexasoft-website .nx-sector-btn {
  text-align: right;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 22px 18px;
  box-shadow: var(--nx-shadow);
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

#nexasoft-website .nx-sector-btn:hover,
#nexasoft-website .nx-sector-btn.nx-open {
  border-color: var(--nx-secondary);
  transform: translateY(-5px);
  box-shadow: var(--nx-shadow-lg);
}

#nexasoft-website .nx-sector-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--nx-secondary);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 14px;
}

#nexasoft-website .nx-sector-name {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--nx-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

#nexasoft-website .nx-sector-name i {
  font-size: 12px;
  color: var(--nx-muted);
  transition: transform 0.3s ease;
}

#nexasoft-website .nx-sector-btn.nx-open .nx-sector-name i {
  transform: rotate(180deg);
  color: var(--nx-secondary);
}

#nexasoft-website .nx-sector-desc {
  display: none;
  font-size: 13.5px;
  color: var(--nx-muted);
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px dashed var(--nx-border);
}

#nexasoft-website .nx-sector-btn.nx-open .nx-sector-desc {
  display: block;
}

/* ========== قسم عرض النظام (لوحة كبيرة + تبويبات) ========== */
#nexasoft-website .nx-showcase {
  background: linear-gradient(160deg, #0A1D46 0%, var(--nx-primary) 60%, #1B4A94 100%);
  padding-block: 96px;
  overflow: hidden;
}

#nexasoft-website .nx-showcase .nx-sec-title {
  color: #FFFFFF;
}

#nexasoft-website .nx-showcase .nx-sec-desc {
  color: #B9C6E2;
}

#nexasoft-website .nx-showcase .nx-sec-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

#nexasoft-website .nx-showcase-window {
  background: var(--nx-white);
  border-radius: var(--nx-radius-lg);
  box-shadow: 0 40px 90px rgba(4, 20, 60, 0.5);
  overflow: hidden;
  max-width: 1150px;
  margin-inline: auto;
}

#nexasoft-website .nx-showcase-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #0A1D46;
  color: var(--nx-white);
}

#nexasoft-website .nx-showcase-bar .nx-dash-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
}

#nexasoft-website .nx-showcase-bar .nx-dash-dots i:nth-child(1) { background: #F87171; }
#nexasoft-website .nx-showcase-bar .nx-dash-dots i:nth-child(2) { background: #FBBF24; }
#nexasoft-website .nx-showcase-bar .nx-dash-dots i:nth-child(3) { background: #4ADE80; }

#nexasoft-website .nx-showcase-title {
  font-size: 13px;
  font-weight: 700;
  color: #A9BCDF;
}

#nexasoft-website .nx-showcase-address {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #8FA5CF;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 5px 14px;
  max-width: 340px;
  margin-inline: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#nexasoft-website .nx-showcase-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 460px;
}

#nexasoft-website .nx-showcase-body > * {
  min-width: 0;
}

/* الشريط الجانبي */
#nexasoft-website .nx-showcase-side {
  background: #0F2A5F;
  color: var(--nx-white);
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#nexasoft-website .nx-side-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #A9BCDF;
  border-right: 3px solid transparent;
  transition: all 0.25s ease;
}

#nexasoft-website .nx-side-item i {
  width: 18px;
  text-align: center;
  font-size: 14px;
}

#nexasoft-website .nx-side-item.nx-side-active {
  background: rgba(37, 99, 235, 0.25);
  color: var(--nx-white);
  border-right-color: var(--nx-accent);
}

/* منطقة التبويبات */
#nexasoft-website .nx-showcase-main {
  background: var(--nx-light);
  padding: 22px;
}

#nexasoft-website .nx-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#nexasoft-website .nx-tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  font-size: 14px;
  font-weight: 800;
  color: var(--nx-muted);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#nexasoft-website .nx-tab-btn:hover {
  border-color: var(--nx-secondary);
  color: var(--nx-secondary);
}

#nexasoft-website .nx-tab-btn.nx-active {
  background: var(--nx-secondary);
  color: var(--nx-white);
  border-color: var(--nx-secondary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

#nexasoft-website .nx-showcase-panel {
  display: none;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: 16px;
  padding: 20px;
}

#nexasoft-website .nx-showcase-panel.nx-active {
  display: block;
  animation: nx-fade-in 0.4s ease;
}

@keyframes nx-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#nexasoft-website .nx-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

#nexasoft-website .nx-panel-head h4 {
  font-size: 16px;
}

#nexasoft-website .nx-panel-head .nx-mini-btn {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--nx-secondary);
  background: rgba(37, 99, 235, 0.1);
  padding: 7px 16px;
  border-radius: 50px;
}

/* جداول العرض */
#nexasoft-website .nx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

#nexasoft-website .nx-table th {
  text-align: right;
  color: var(--nx-muted);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 12px;
  border-bottom: 2px solid var(--nx-border);
  background: var(--nx-light);
}

#nexasoft-website .nx-table th:first-child { border-radius: 0 10px 0 0; }
#nexasoft-website .nx-table th:last-child { border-radius: 10px 0 0 0; }

#nexasoft-website .nx-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #EEF2F7;
  font-weight: 600;
}

#nexasoft-website .nx-table tr:last-child td {
  border-bottom: none;
}

#nexasoft-website .nx-table tr:hover td {
  background: #F8FAFC;
}

#nexasoft-website .nx-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

#nexasoft-website .nx-pill-green { background: rgba(22, 163, 74, 0.12); color: var(--nx-green); }
#nexasoft-website .nx-pill-blue { background: rgba(37, 99, 235, 0.12); color: var(--nx-secondary); }
#nexasoft-website .nx-pill-amber { background: rgba(245, 158, 11, 0.15); color: #B45309; }
#nexasoft-website .nx-pill-red { background: rgba(220, 38, 38, 0.12); color: var(--nx-red); }

#nexasoft-website .nx-panel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

#nexasoft-website .nx-panel-stat {
  background: var(--nx-light);
  border: 1px solid var(--nx-border);
  border-radius: 14px;
  padding: 16px;
}

#nexasoft-website .nx-panel-stat-label {
  font-size: 12px;
  color: var(--nx-muted);
  font-weight: 700;
}

#nexasoft-website .nx-panel-stat-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--nx-primary);
  margin-top: 4px;
}

#nexasoft-website .nx-panel-stat-value.nx-up-c { color: var(--nx-green); }
#nexasoft-website .nx-panel-stat-value.nx-down-c { color: var(--nx-red); }

/* ========== قسم لماذا تختار شركتنا ========== */
#nexasoft-website .nx-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#nexasoft-website .nx-why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 22px 24px;
  box-shadow: var(--nx-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#nexasoft-website .nx-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nx-shadow-lg);
}

#nexasoft-website .nx-why-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.12));
  color: var(--nx-secondary);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

#nexasoft-website .nx-why-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

#nexasoft-website .nx-why-card p {
  font-size: 14px;
  color: var(--nx-muted);
}

/* ========== قسم التكامل ========== */
#nexasoft-website .nx-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}

#nexasoft-website .nx-flow-step {
  text-align: center;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 24px 14px;
  box-shadow: var(--nx-shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#nexasoft-website .nx-flow-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow-lg);
}

#nexasoft-website .nx-flow-ic {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--nx-primary), var(--nx-secondary));
  color: var(--nx-white);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 14px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.3);
}

#nexasoft-website .nx-flow-step h3 {
  font-size: 15px;
  margin-bottom: 7px;
}

#nexasoft-website .nx-flow-step p {
  font-size: 12.5px;
  color: var(--nx-muted);
}

#nexasoft-website .nx-flow-arrow {
  position: absolute;
  top: 40px;
  left: -16px;
  width: 14px;
  height: 14px;
  border-top: 2.5px solid var(--nx-secondary);
  border-left: 2.5px solid var(--nx-secondary);
  transform: rotate(-45deg);
  z-index: 3;
}

/* في RTL السهم يشير لليسار */

/* ========== قسم الفترة التجريبية ========== */
#nexasoft-website .nx-trial-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 70% at 15% 0%, rgba(6, 182, 212, 0.3), transparent 60%),
    radial-gradient(ellipse 45% 65% at 90% 100%, rgba(37, 99, 235, 0.45), transparent 60%),
    linear-gradient(135deg, var(--nx-primary), #1B4A94);
  border-radius: var(--nx-radius-lg);
  padding: 64px 56px;
  color: var(--nx-white);
  box-shadow: 0 30px 70px rgba(15, 42, 95, 0.35);
}

#nexasoft-website .nx-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nx-green);
  color: var(--nx-white);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.4);
}

#nexasoft-website .nx-trial-title {
  color: var(--nx-white);
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}

#nexasoft-website .nx-trial-desc {
  color: #C7D3EE;
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 30px;
}

#nexasoft-website .nx-trial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
  max-width: 760px;
}

#nexasoft-website .nx-trial-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #E2E8F0;
}

#nexasoft-website .nx-trial-list i {
  color: #4ADE80;
  font-size: 16px;
}

#nexasoft-website .nx-trial-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

#nexasoft-website .nx-trial-days-note {
  margin-top: 22px;
  font-size: 14px;
  color: #A9BCDF;
}

#nexasoft-website .nx-trial-days-note strong {
  color: #7DD3FC;
}

/* ========== قسم الأسعار ========== */
#nexasoft-website .nx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

#nexasoft-website .nx-price-card {
  background: var(--nx-white);
  border: 2px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--nx-shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#nexasoft-website .nx-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nx-shadow-lg);
}

#nexasoft-website .nx-price-popular {
  border-color: var(--nx-secondary);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.2);
}

#nexasoft-website .nx-price-popular:hover {
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.3);
}

#nexasoft-website .nx-price-badge {
  position: absolute;
  top: -15px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(90deg, var(--nx-secondary), var(--nx-accent));
  color: var(--nx-white);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

#nexasoft-website .nx-price-name {
  font-size: 19px;
  font-weight: 900;
  color: var(--nx-primary);
  margin-bottom: 6px;
}

#nexasoft-website .nx-price-desc {
  font-size: 14px;
  color: var(--nx-muted);
  margin-bottom: 22px;
}

#nexasoft-website .nx-price-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--nx-secondary);
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--nx-border);
}

#nexasoft-website .nx-price-list {
  flex: 1;
  margin-bottom: 28px;
}

#nexasoft-website .nx-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--nx-text);
  margin-bottom: 12px;
}

#nexasoft-website .nx-price-list i {
  color: var(--nx-green);
  font-size: 13px;
  margin-top: 4px;
}

/* ========== قسم آراء العملاء ========== */
#nexasoft-website .nx-testi-wrap {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  direction: ltr;
}

#nexasoft-website .nx-testi-viewport {
  overflow: hidden;
  border-radius: var(--nx-radius-lg);
}

#nexasoft-website .nx-testi-track {
  display: flex;
  transition: transform 0.6s ease;
}

#nexasoft-website .nx-testi-slide {
  flex: 0 0 100%;
  direction: rtl;
  text-align: right;
}

#nexasoft-website .nx-testi-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  padding: 40px 44px;
  box-shadow: var(--nx-shadow);
  position: relative;
}

#nexasoft-website .nx-testi-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 28px;
  left: 32px;
  font-size: 40px;
  color: rgba(37, 99, 235, 0.12);
}

#nexasoft-website .nx-testi-stars {
  color: var(--nx-amber);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

#nexasoft-website .nx-testi-text {
  font-size: 17px;
  color: var(--nx-text);
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 26px;
}

#nexasoft-website .nx-testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

#nexasoft-website .nx-testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nx-primary), var(--nx-secondary));
  color: var(--nx-white);
  font-weight: 900;
  font-size: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

#nexasoft-website .nx-testi-name {
  font-weight: 900;
  font-size: 16px;
  color: var(--nx-primary);
}

#nexasoft-website .nx-testi-role {
  font-size: 13.5px;
  color: var(--nx-muted);
}

#nexasoft-website .nx-testi-meta {
  font-size: 12px;
  color: var(--nx-secondary);
  font-weight: 700;
  background: rgba(37, 99, 235, 0.08);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  margin-top: 6px;
}

#nexasoft-website .nx-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  direction: rtl;
}

#nexasoft-website .nx-testi-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  color: var(--nx-secondary);
  font-size: 15px;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
  box-shadow: var(--nx-shadow);
}

#nexasoft-website .nx-testi-arrow:hover {
  background: var(--nx-secondary);
  color: var(--nx-white);
  border-color: var(--nx-secondary);
}

#nexasoft-website .nx-testi-dots {
  display: flex;
  gap: 8px;
}

#nexasoft-website .nx-testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #CBD5E1;
  transition: all 0.3s ease;
}

#nexasoft-website .nx-testi-dot.nx-active {
  width: 30px;
  background: var(--nx-secondary);
}

/* ========== الأسئلة الشائعة ========== */
#nexasoft-website .nx-faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#nexasoft-website .nx-faq-item {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#nexasoft-website .nx-faq-item.nx-open {
  border-color: var(--nx-secondary);
  box-shadow: var(--nx-shadow);
}

#nexasoft-website .nx-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  text-align: right;
  font-size: 16px;
  font-weight: 800;
  color: var(--nx-primary);
}

#nexasoft-website .nx-faq-q i {
  color: var(--nx-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

#nexasoft-website .nx-faq-item.nx-open .nx-faq-q i {
  transform: rotate(180deg);
}

#nexasoft-website .nx-faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--nx-muted);
  font-size: 15px;
}

#nexasoft-website .nx-faq-item.nx-open .nx-faq-a {
  display: block;
  animation: nx-fade-in 0.35s ease;
}

/* ========== قسم التواصل ========== */
#nexasoft-website .nx-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: start;
}

#nexasoft-website .nx-contact-form {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  padding: 36px;
  box-shadow: var(--nx-shadow);
}

#nexasoft-website .nx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#nexasoft-website .nx-field {
  margin-bottom: 18px;
}

#nexasoft-website .nx-field label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--nx-text);
  margin-bottom: 7px;
}

#nexasoft-website .nx-field label .nx-req {
  color: var(--nx-red);
}

#nexasoft-website .nx-input,
#nexasoft-website .nx-select,
#nexasoft-website .nx-textarea {
  width: 100%;
  border: 2px solid var(--nx-border);
  border-radius: var(--nx-radius-sm);
  padding: 12px 16px;
  background: var(--nx-light);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-size: 15px;
  color: var(--nx-text);
}

#nexasoft-website .nx-input::placeholder,
#nexasoft-website .nx-textarea::placeholder {
  color: #94A3B8;
}

#nexasoft-website .nx-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 15px;
  padding-left: 40px;
  cursor: pointer;
}

#nexasoft-website .nx-textarea {
  resize: vertical;
  min-height: 110px;
}

#nexasoft-website .nx-input:focus,
#nexasoft-website .nx-select:focus,
#nexasoft-website .nx-textarea:focus {
  outline: none;
  border-color: var(--nx-secondary);
  background: var(--nx-white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

#nexasoft-website .nx-field.nx-invalid .nx-input,
#nexasoft-website .nx-field.nx-invalid .nx-select,
#nexasoft-website .nx-field.nx-invalid .nx-textarea {
  border-color: var(--nx-red);
  background: rgba(220, 38, 38, 0.04);
}

#nexasoft-website .nx-field-error {
  display: none;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nx-red);
  margin-top: 6px;
}

#nexasoft-website .nx-field.nx-invalid .nx-field-error {
  display: block;
}

#nexasoft-website .nx-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--nx-muted);
  cursor: pointer;
  margin-bottom: 20px;
}

#nexasoft-website .nx-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--nx-secondary);
  cursor: pointer;
  flex-shrink: 0;
}

#nexasoft-website .nx-consent-field.nx-invalid .nx-field-error {
  display: block;
}

#nexasoft-website .nx-form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: var(--nx-green);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

#nexasoft-website .nx-form-success[hidden] {
  display: none;
}

#nexasoft-website .nx-form-success i {
  font-size: 20px;
}

/* بطاقات معلومات التواصل */
#nexasoft-website .nx-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#nexasoft-website .nx-contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 22px;
  box-shadow: var(--nx-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#nexasoft-website .nx-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nx-shadow-lg);
}

#nexasoft-website .nx-contact-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--nx-primary), var(--nx-secondary));
  color: var(--nx-white);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

#nexasoft-website .nx-contact-card h3 {
  font-size: 15.5px;
  margin-bottom: 4px;
}

#nexasoft-website .nx-contact-card p {
  font-size: 14px;
  color: var(--nx-muted);
  direction: ltr;
  text-align: right;
}

/* ========== التذييل Footer ========== */
#nexasoft-website .nx-footer {
  background: #081A3A;
  color: #A9BCDF;
  padding-top: 72px;
  margin-top: 96px;
}

#nexasoft-website .nx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

#nexasoft-website .nx-footer-about p {
  font-size: 14.5px;
  margin-top: 16px;
}

#nexasoft-website .nx-footer h4 {
  color: var(--nx-white);
  font-size: 16px;
  margin-bottom: 18px;
}

#nexasoft-website .nx-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#nexasoft-website .nx-footer ul a {
  font-size: 14.5px;
  transition: color 0.25s ease, padding-right 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#nexasoft-website .nx-footer ul a i {
  font-size: 10px;
  color: var(--nx-accent);
}

#nexasoft-website .nx-footer ul a:hover {
  color: var(--nx-white);
  padding-right: 5px;
}

#nexasoft-website .nx-footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

#nexasoft-website .nx-footer-contact i {
  color: var(--nx-accent);
  margin-top: 4px;
  font-size: 13px;
}

#nexasoft-website .nx-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#nexasoft-website .nx-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #C7D3EE;
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: all 0.25s ease;
}

#nexasoft-website .nx-social-row a:hover {
  background: var(--nx-secondary);
  color: var(--nx-white);
  transform: translateY(-3px);
}

#nexasoft-website .nx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

#nexasoft-website .nx-footer-bottom .nx-legal {
  display: flex;
  gap: 20px;
}

#nexasoft-website .nx-footer-bottom .nx-legal a:hover {
  color: var(--nx-white);
}

/* ========== العناصر العائمة ========== */
/* زر واتساب */
#nexasoft-website .nx-whatsapp-fab {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--nx-white);
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease;
}

#nexasoft-website .nx-whatsapp-fab:hover {
  transform: scale(1.1) rotate(6deg);
}

/* زر العودة للأعلى */
#nexasoft-website .nx-backtop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--nx-primary);
  color: var(--nx-white);
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 10px 26px rgba(15, 42, 95, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s ease;
}

#nexasoft-website .nx-backtop.nx-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#nexasoft-website .nx-backtop:hover {
  background: var(--nx-secondary);
}

/* شريط CTA السفلي للهاتف */
#nexasoft-website .nx-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -8px 30px rgba(15, 42, 95, 0.12);
  border-top: 1px solid var(--nx-border);
}

#nexasoft-website .nx-mobile-cta .nx-btn {
  padding: 12px 16px;
}

/* ========== حركات الظهور عند التمرير ========== */
/* يتم تفعيلها فقط عند وجود JS لتجنب إخفاء المحتوى */
#nexasoft-website.nx-js .nx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

#nexasoft-website.nx-js .nx-reveal.nx-visible {
  opacity: 1;
  transform: translateY(0);
}

#nexasoft-website.nx-js .nx-reveal-delay-1 { transition-delay: 0.1s; }
#nexasoft-website.nx-js .nx-reveal-delay-2 { transition-delay: 0.2s; }
#nexasoft-website.nx-js .nx-reveal-delay-3 { transition-delay: 0.3s; }
#nexasoft-website.nx-js .nx-reveal-delay-4 { transition-delay: 0.4s; }

/* ========== الوصولية: التركيز ========== */
#nexasoft-website a:focus-visible,
#nexasoft-website button:focus-visible,
#nexasoft-website input:focus-visible,
#nexasoft-website select:focus-visible,
#nexasoft-website textarea:focus-visible {
  outline: 3px solid var(--nx-accent);
  outline-offset: 2px;
}

/* الأقسام تحت الشريط الثابت عند التمرير السلس */
#nexasoft-website .nx-scroll-anchor {
  scroll-margin-top: calc(var(--nx-nav-h) + 20px);
}

/* ========== احترام تقليل الحركة ========== */
@media (prefers-reduced-motion: reduce) {
  #nexasoft-website *,
  #nexasoft-website *::before,
  #nexasoft-website *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  #nexasoft-website.nx-js .nx-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========== التجاوب مع الشاشات ========== */
@media (max-width: 1200px) {
  /* القائمة تتحول لقائمة هاتف عند 1200 بكسل فأقل */
  #nexasoft-website .nx-menu-toggle {
    display: flex;
  }

  #nexasoft-website .nx-nav-menu {
    position: fixed;
    top: var(--nx-nav-h);
    right: 0;
    left: 0;
    background: var(--nx-white);
    border-bottom: 1px solid var(--nx-border);
    box-shadow: 0 20px 40px rgba(15, 42, 95, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 24px 26px;
    transform: translateY(-130%);
    transition: transform 0.4s ease;
    max-height: calc(100vh - var(--nx-nav-h));
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }

  #nexasoft-website .nx-nav-menu.nx-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  #nexasoft-website .nx-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  #nexasoft-website .nx-nav-links a {
    color: var(--nx-text);
    padding: 13px 16px;
    font-size: 16px;
    border-radius: var(--nx-radius-sm);
  }

  #nexasoft-website .nx-nav-links a:hover,
  #nexasoft-website .nx-nav-links a.nx-active {
    background: rgba(37, 99, 235, 0.08);
    color: var(--nx-secondary);
  }

  #nexasoft-website .nx-nav-actions {
    display: flex;
    border-top: 1px solid var(--nx-border);
    padding-top: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  #nexasoft-website .nx-nav-login {
    color: var(--nx-secondary);
    border-color: var(--nx-secondary);
  }

  #nexasoft-website .nx-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #nexasoft-website .nx-sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #nexasoft-website .nx-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  #nexasoft-website .nx-flow-arrow {
    display: none;
  }

  #nexasoft-website .nx-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  #nexasoft-website .nx-steps-line {
    display: none;
  }

  #nexasoft-website .nx-chip-1 { right: -14px; }
  #nexasoft-website .nx-chip-2 { left: -14px; }
}

@media (max-width: 992px) {
  #nexasoft-website .nx-section {
    padding-block: 72px;
  }

  #nexasoft-website .nx-hero {
    padding-top: calc(var(--nx-nav-h) + 50px);
    padding-bottom: 70px;
  }

  #nexasoft-website .nx-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  #nexasoft-website .nx-hero-desc {
    max-width: 100%;
  }

  #nexasoft-website .nx-trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }

  #nexasoft-website .nx-trust-item:nth-child(3)::after {
    display: none;
  }

  #nexasoft-website .nx-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #nexasoft-website .nx-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #nexasoft-website .nx-showcase-body {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-showcase-side {
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
    gap: 6px;
  }

  #nexasoft-website .nx-side-item {
    border-right: none;
    border-bottom: 3px solid transparent;
    padding: 10px 16px;
    white-space: nowrap;
    font-size: 13px;
  }

  #nexasoft-website .nx-side-item.nx-side-active {
    border-bottom-color: var(--nx-accent);
  }

  #nexasoft-website .nx-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  #nexasoft-website .nx-contact-grid {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  #nexasoft-website .nx-mobile-cta {
    display: grid;
  }

  #nexasoft-website .nx-whatsapp-fab {
    bottom: 84px;
  }

  #nexasoft-website .nx-backtop {
    bottom: 84px;
  }

  #nexasoft-website .nx-footer {
    margin-bottom: 74px;
  }

  #nexasoft-website .nx-trial-card {
    padding: 48px 28px;
  }

  #nexasoft-website .nx-trial-list {
    grid-template-columns: 1fr 1fr;
  }

  #nexasoft-website .nx-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #nexasoft-website .nx-problem-grid {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-steps {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #nexasoft-website .nx-dash-main {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  #nexasoft-website .nx-flow {
    grid-template-columns: 1fr 1fr;
  }

  #nexasoft-website .nx-panel-cards {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-form-row {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-table-wrap {
    overflow-x: auto;
  }

  #nexasoft-website .nx-table {
    min-width: 460px;
  }
}

@media (max-width: 576px) {
  #nexasoft-website .nx-container {
    padding-inline: 18px;
  }

  #nexasoft-website .nx-section {
    padding-block: 60px;
  }

  #nexasoft-website .nx-hero-actions .nx-btn {
    width: 100%;
  }

  #nexasoft-website .nx-features-grid {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-sectors-grid {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-flow {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #nexasoft-website .nx-trust-item::after {
    display: none !important;
  }

  #nexasoft-website .nx-trial-list {
    grid-template-columns: 1fr;
  }

  #nexasoft-website .nx-trial-actions .nx-btn {
    width: 100%;
  }

  #nexasoft-website .nx-testi-card {
    padding: 30px 24px;
  }

  #nexasoft-website .nx-contact-form {
    padding: 26px 20px;
  }

  #nexasoft-website .nx-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #nexasoft-website .nx-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  #nexasoft-website .nx-chip-1 { top: 12px; right: -8px; }
  #nexasoft-website .nx-chip-2 { display: none; }
  #nexasoft-website .nx-chip-3 { top: -14px; left: 6px; }

  #nexasoft-website .nx-solution-banner {
    padding: 36px 24px;
  }
}

@media (max-width: 375px) {
  #nexasoft-website .nx-logo-sub {
    display: none;
  }

  #nexasoft-website .nx-nav-inner {
    padding-inline: 16px;
  }

  #nexasoft-website .nx-dash-stat-value {
    font-size: 16px;
  }
}
