
    :root {
      /* === Vibrant accent palette === */
      --teal:        #00C9A7;
      --teal-dark:   #009E84;
      --teal-pale:   #E0FAF5;
      --indigo:      #4361EE;
      --indigo-dark: #2941CC;
      --indigo-pale: #EBF0FF;
      --amber:       #F5A623;
      --amber-dark:  #C8810A;
      --amber-pale:  #FFF5E0;
      --coral:       #FF6B6B;
      --coral-dark:  #D94444;
      --coral-pale:  #FFF0F0;
      --violet:      #8B5CF6;
      --violet-pale: #F3EEFF;
      --sky:         #0EA5E9;
      --sky-pale:    #E8F6FE;

      /* === Light surfaces === */
      --bg:       #F8FAFC;       
      --surface-2:#F4F7FF;

      /* === Text === */
      --text:     #0F172A;
      --text-2:   #334155;
      --muted:    #64748B;

      /* === Borders === */
      --border:   rgba(15,23,42,0.08);
      --border-2: rgba(15,23,42,0.14);

      --radius:    18px;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── CUSTOM UTILITIES & OVERRIDES ─── */
    /*.font-amiri { font-family: 'Amiri', serif; }*/
    
    /* Navbar Custom Styles */
    .navbar {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(15,23,42,0.07);
    }
    .nav-link-custom {
      color: var(--text-2);
      font-size: 13px;
      font-weight: 600;
      padding: 7px 12px !important;
      border-radius: 8px;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .nav-link-custom:hover {
      color: var(--indigo);
      background: var(--indigo-pale);
    }
    
    .btn-header {
      background: linear-gradient(135deg, var(--teal) 0%, var(--indigo) 100%);
      color: #fff !important;
      border-radius: 10px;
      font-weight: 800;
      padding: 9px 20px;
      box-shadow: 0 4px 16px rgba(67,97,238,0.25);
      transition: all 0.25s;
    }
    .btn-header:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(67,97,238,0.4);
      background: linear-gradient(135deg, var(--teal-dark), var(--indigo-dark));
    }

    /* Hero Mesh Canvas Canvas Backgrounds */
    .hero {
      background: #F5F9FF;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url(../img/intro.jpg) fixed center/cover;
      pointer-events: none;
      opacity: 0.2;
    }
    .hero-canvas { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .hz-1 { position: absolute; top: -140px; right: -120px; width: 680px; height: 580px; background: radial-gradient(ellipse at 60% 40%, rgba(0,201,167,0.22) 0%, rgba(0,201,167,0.10) 40%, transparent 72%); transform: rotate(-12deg); }
    .hz-2 { position: absolute; bottom: -160px; left: -100px; width: 700px; height: 600px; background: radial-gradient(ellipse at 40% 60%, rgba(67,97,238,0.20) 0%, rgba(139,92,246,0.10) 45%, transparent 72%); transform: rotate(10deg); }
    .hz-3 { position: absolute; top: 15%; left: 5%; width: 480px; height: 380px; background: radial-gradient(ellipse at 50% 50%, rgba(245,166,35,0.16) 0%, rgba(245,166,35,0.06) 50%, transparent 74%); }
    .hz-4 { position: absolute; bottom: -60px; right: 8%; width: 380px; height: 320px; background: radial-gradient(ellipse at 50% 60%, rgba(255,107,107,0.14) 0%, rgba(255,107,107,0.05) 55%, transparent 75%); }
    .hz-5 { position: absolute; top: 42%; left: 30%; width: 520px; height: 260px; background: radial-gradient(ellipse at 50% 50%, rgba(14,165,233,0.10) 0%, transparent 68%); }
    .hg-circle-1 { position: absolute; top: -100px; left: -100px; width: 440px; height: 440px; border-radius: 50%; border: 1.5px solid rgba(0,201,167,0.18); }
    .hg-circle-2 { position: absolute; bottom: -120px; right: -80px; width: 380px; height: 380px; border-radius: 50%; border: 1.5px solid rgba(67,97,238,0.15); }
    .hg-circle-3 { position: absolute; top: 20%; right: 12%; width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(245,166,35,0.25); }
    .hg-dot { position: absolute; border-radius: 50%; }
    .hd-1 { top: 14%; right: 18%; width: 14px; height: 14px; background: var(--teal); opacity: 0.55; }
    .hd-2 { top: 60%; left: 14%; width: 10px; height: 10px; background: var(--indigo); opacity: 0.45; }
    .hd-3 { bottom: 22%; right: 28%; width: 8px; height: 8px; background: var(--amber); opacity: 0.55; }
    .hg-line { position: absolute; background: linear-gradient(90deg, transparent, rgba(0,201,167,0.2), transparent); height: 1px; width: 340px; top: 30%; right: -40px; transform: rotate(-28deg); }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,201,167,0.1);
      border: 1.5px solid rgba(0,201,167,0.3);
      color: var(--teal-dark);
      font-size: 13px;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 30px;
      animation: fadeDown 0.6s ease both;
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(90deg, var(--teal-dark) 0%, var(--indigo) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Buttons */
    .btn-custom-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      padding: 15px 34px;
      border-radius: 14px;
      transition: all 0.25s;
      box-shadow: 0 6px 28px rgba(0,201,167,0.4);
      border: none;
    }
    .btn-custom-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,201,167,0.55);
      color: #fff;
    }
    .btn-custom-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1.5px solid var(--border-2);
      color: var(--text-2);
      font-size: 16px;
      font-weight: 700;
      padding: 15px 30px;
      border-radius: 14px;
      transition: all 0.25s;
      background: #fff;
    }
    .btn-custom-outline:hover {
      border-color: var(--indigo);
      color: var(--indigo);
      background: var(--indigo-pale);
      box-shadow: 0 4px 16px rgba(67,97,238,0.15);
    }
    .btn-indigo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%);
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      padding: 15px 34px;
      border-radius: 14px;
      transition: all 0.25s;
      box-shadow: 0 6px 28px rgba(67,97,238,0.35);
      border: none;
    }
    .btn-indigo:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(67,97,238,0.5);
      color: #fff;
    }

    /* Stats Wrapper Override */
    .hero-stats {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 28px rgba(15,23,42,0.1);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .stat { padding: 28px 20px; position: relative; }
    @media (min-width: 768px) {
      .stat:not(:last-child)::before {
        content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border);
      }
    }
    .s1 .stat-num { color: var(--teal); }
    .s2 .stat-num { color: var(--indigo); }
    .s3 .stat-num { color: var(--amber-dark); }
    .s4 .stat-num { color: var(--coral-dark); }

    /* Section Components */
    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      padding: 5px 18px;
      border-radius: 30px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .sl-teal  { background: var(--teal-pale);   border: 1px solid rgba(0,201,167,0.3);  color: var(--teal-dark); }
    .sl-indigo{ background: var(--indigo-pale);  border: 1px solid rgba(67,97,238,0.3);  color: var(--indigo-dark); }
    .sl-amber { background: var(--amber-pale);   border: 1px solid rgba(245,166,35,0.35); color: var(--amber-dark); }
    .sl-violet{ background: var(--violet-pale);  border: 1px solid rgba(139,92,246,0.3); color: #6D3FD8; }

    /* Service Cards */
    .service-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: all 0.28s ease;
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3.5px; border-radius: 0 0 4px 4px; transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease;
    }
    .sc-1::before { background: linear-gradient(90deg, var(--teal), #5EF0DB); }
    .sc-2::before { background: linear-gradient(90deg, var(--indigo), #7B96FF); }
    .sc-3::before { background: linear-gradient(90deg, var(--amber), var(--amber-pale)); }
    .sc-4::before { background: linear-gradient(90deg, var(--coral), #FF9898); }
    .sc-5::before { background: linear-gradient(90deg, var(--violet), #C4A0FF); }
    .sc-6::before { background: linear-gradient(90deg, var(--sky), #7DD3FA); }

    .service-card:hover { transform: translateY(-7px); box-shadow: 0 16px 56px rgba(15,23,42,0.14); }
    .service-card:hover::before { transform: scaleX(1); }
    .sc-1:hover { border-color: rgba(0,201,167,0.35); }
    .sc-2:hover { border-color: rgba(67,97,238,0.35); }
    .sc-3:hover { border-color: rgba(245,166,35,0.4); }
    .sc-4:hover { border-color: rgba(255,107,107,0.35); }
    .sc-5:hover { border-color: rgba(139,92,246,0.35); }
    .sc-6:hover { border-color: rgba(14,165,233,0.35); }

    .service-icon-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
    .ic-1 { background: var(--teal-pale); } .ic-1 i { color: var(--teal-dark); font-size: 22px; }
    .ic-2 { background: var(--indigo-pale); } .ic-2 i { color: var(--indigo); font-size: 22px; }
    .ic-3 { background: var(--amber-pale); } .ic-3 i { color: var(--amber-dark); font-size: 22px; }
    .ic-4 { background: var(--coral-pale); } .ic-4 i { color: var(--coral-dark); font-size: 22px; }
    .ic-5 { background: var(--violet-pale); } .ic-5 i { color: var(--violet); font-size: 22px; }
    .ic-6 { background: var(--sky-pale); } .ic-6 i { color: var(--sky); font-size: 22px; }

    .service-arrow { width: 30px; height: 30px; border-radius: 50%; font-size: 15px; font-weight: 700; transition: all 0.25s; display: inline-flex; align-items: center; justify-content: center; }
    .sc-1 .service-arrow { background: var(--teal-pale); color: var(--teal-dark); }
    .sc-2 .service-arrow { background: var(--indigo-pale); color: var(--indigo-dark); }
    .sc-3 .service-arrow { background: var(--amber-pale); color: var(--amber-dark); }
    .sc-4 .service-arrow { background: var(--coral-pale); color: var(--coral-dark); }
    .sc-5 .service-arrow { background: var(--violet-pale); color: #6D3FD8; }
    .sc-6 .service-arrow { background: var(--sky-pale); color: #0075B8; }
    .service-card:hover .service-arrow { transform: translateX(-5px); }

    /* Accordion Bootstrap Modification */
    .why { background: var(--surface-2); position: relative; }
    .accordion-item { background: #fff; border: 1.5px solid var(--border) !important; border-radius: var(--radius) !important; overflow: hidden; margin-bottom: 12px; }
    .accordion-button { padding: 20px 24px; font-weight: 800; color: var(--text); background-color: transparent !important; box-shadow: none !important; }
    .accordion-button:not(.collapsed) { color: var(--text); }
    .accordion-button::after { display: none; } /* Remove native arrow */
    
    .acc-icon-wrap { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
    .awi-1 { background: var(--teal-pale); } .awi-1 i { color: var(--teal-dark); font-size: 20px; }
    .awi-2 { background: var(--amber-pale); } .awi-2 i { color: var(--amber-dark); font-size: 20px; }
    .awi-3 { background: var(--coral-pale); } .awi-3 i { color: var(--coral-dark); font-size: 20px; }
    .awi-4 { background: var(--indigo-pale); } .awi-4 i { color: var(--indigo); font-size: 20px; }
    
    .acc-chevron { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg); transition: transform 0.3s; }
    .accordion-button:not(.collapsed) .acc-chevron { transform: rotate(180deg); }
    
    /* Timeline / Steps */
    .step-num { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; color: #fff; }
    .sn-1 { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
    .sn-2 { background: linear-gradient(135deg, var(--indigo), var(--indigo-dark)); }
    .sn-3 { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
    .sn-4 { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
    .step-line { width: 2px; flex: 1; min-height: 50px; border-left: 2px dashed; }
    .sl-1 { border-color: rgba(0,201,167); }
    .sl-2 { border-color: rgba(67,97,238); }
    .sl-3 { border-color: rgba(255,107,107); }

    /* Reviewers */
    .reviewer-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 24px; transition: all 0.3s; position: relative; overflow: hidden; }
    .reviewer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 90px; }
    .rv-1::before { background: var(--indigo-pale); } .rv-2::before { background: var(--teal-pale); } .rv-3::before { background: var(--amber-pale); }
    .rv-1:hover { border-color: rgba(67,97,238,0.3); box-shadow: 0 6px 28px rgba(15,23,42,0.1); }
    .rv-2:hover { border-color: rgba(0,201,167,0.3); box-shadow: 0 6px 28px rgba(15,23,42,0.1); }
    .rv-3:hover { border-color: rgba(245,166,35,0.35); box-shadow: 0 6px 28px rgba(15,23,42,0.1); }
    .reviewer-card:hover { transform: translateY(-6px); }
    .reviewer-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 3px solid #fff; position: relative; z-index: 1; box-shadow: 0 2px 12px rgba(15,23,42,0.07); }
    .ra-1 { background: var(--indigo-pale); } .ra-2 { background: var(--teal-pale); } .ra-3 { background: var(--amber-pale); }
    .rr-1 { color: var(--indigo); font-weight: 700; } .rr-2 { color: var(--teal-dark); font-weight: 700; } .rr-3 { color: var(--amber-dark); font-weight: 700; }

    /* CTA Section */
    .cta-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #EBF0FF 0%, #E0FAF5 100%); }
    .user-sidebar{

    }
    .user-sidebar nav a{
      color: #222;
      font-family: 'Cairo', sans-serif !important;
      text-decoration: none;
      padding: 8px;
      border-radius: 8px;
      border: 1px solid #eee;
    }
    .user-sidebar nav a:hover{
      background: var(--indigo-pale);
      color: var(--indigo-dark);
      border-color: rgba(67,97,238,0.3);
    }
    button.sidebar-link{
      background: #222 !important;
      border: none;
      color:#fff !important;
      font-family: 'Cairo', sans-serif !important;
      text-decoration: none;
      padding: 8px;
      border-radius: 8px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }
    .user-sidebar nav a i{
      width: 22px;
    }
    .dropdown-item{
      text-align: right;
    }
 .whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px; /* أو right: 20px لو عاوزها ناحية اليمين */
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
}

.whatsapp-fixed:hover {
    color: #fff;
    transform: scale(1.1);
    background: #20ba5a;
}
#typing-text {
    border-left: 2px solid currentColor;
    padding-left: 4px;
    animation: blink 0.8s infinite;
  display: inline-block;
}
.modal-header .btn-close{
  margin-left: 0 !important;
}
.modal-header{
  border-bottom: 1px solid #eee !important;
}
@keyframes blink {
    50% {
        border-color: transparent;
    }
}
    /* Animations */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    
    
    
    /* الدوائر الكبيرة - حركة عوم بطيئة */
.hg-circle-1, .hg-circle-2, .hg-circle-3 {
  animation: float 8s ease-in-out infinite;
}
.hg-circle-2 { animation-duration: 10s; animation-delay: -2s; }
.hg-circle-3 { animation-duration: 12s; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

/* الخطوط الأفقية - حركة انزلاق خفيفة */
.hz-1, .hz-2, .hz-3, .hz-4, .hz-5 {
  animation: slideLine 6s ease-in-out infinite;
}
.hz-2 { animation-delay: -1s; }
.hz-3 { animation-delay: -2s; }
.hz-4 { animation-delay: -3s; }
.hz-5 { animation-delay: -4s; }

@keyframes slideLine {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(20px); opacity: 1; }
}

/* النقط - نبضة/توهج */
.hg-dot {
  animation: pulse 3s ease-in-out infinite;
}
.hd-2 { animation-delay: -1s; }
.hd-3 { animation-delay: -2s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* الخط المائل - رسم تدريجي */
.hg-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 3s ease-in-out forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

    .btn-toggle-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px; /* لأن الصفحة RTL، العين تبقى على الشمال داخل الحقل */
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0;
    font-size: 15px;
}

.btn-toggle-password:hover {
    color: #333;
}

/* إخفاء أيقونة العين الافتراضية في Edge/IE */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

/* إخفاء أيقونة العين الافتراضية في Chrome الحديث */
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-textfield-decoration-container {
    visibility: hidden;
    display: none !important;
}
