Back to blog
Industry5 min read

Why HR Tech Built for MENA Looks Different From Western Software

The unique requirements of Egyptian and MENA HR — from Arabic RTL layouts to social insurance calculations — and why generic international software often falls short.

A
Alpha HR Team·5 March 2026

Most HR software on the market was built in the US or Europe, then translated. That's not the same as being built for the MENA region. Here's why the distinction matters.

The Language Problem Goes Beyond Translation

Arabic isn't just another language — it's a different direction. RTL (right-to-left) text fundamentally changes how a user interface should be laid out. Every flex row reverses. Every margin and padding that was on the left is now on the right. Alignment flips. Icons that indicate "forward" point in the opposite direction.

Most international HR tools add Arabic as an afterthought: they translate the strings but leave the layout LTR. The result is a page that reads right-to-left but lays out left-to-right — confusing and unprofessional.

Building for Arabic from the start means using CSS logical properties (margin-inline-start instead of margin-left), and testing every screen in RTL mode before shipping.

Egyptian Payroll Is Not Generic Payroll

Generic payroll engines treat tax as a simple percentage. Egyptian income tax is a 7-bracket progressive system with:

  • A personal exemption that must be applied before brackets
  • Social insurance calculated on a capped insured salary, not gross
  • Employer contributions (18.75%) that are separate from employee deductions (11%)
  • Brackets and rates that change — meaning they must be configurable, not hardcoded

An international HR tool that applies a flat tax rate or a simplified 2-bracket system will produce incorrect net salaries. That's a payroll compliance failure.

Labour Law Is Local

Egyptian Labour Law No. 12/2003 specifies leave types, durations, and conditions that are unique to Egypt:

  • Annual leave increases from 21 to 30 days after 10 years
  • Emergency leave is deducted from the annual balance
  • Maternity leave is capped at 3 instances per career
  • Hajj leave is unpaid and available once per career
  • Sick leave has tiered pay rates (75% → 85% → 100%) across 6 months

Western HR tools typically model a simple annual leave bucket. MENA-specific law requires separate, configurable leave types with their own rules.

The National ID Problem

Egypt's National ID (بطاقة الرقم القومي) is a 14-digit number that encodes:

  • Date of birth (digits 2–7)
  • Gender (digit 13, odd = male, even = female)
  • Governorate of birth (digits 8–9)

A properly built HR system for Egypt should:

  • Validate the 14-digit format
  • Auto-populate date of birth from the ID
  • Auto-set the gender field from the ID

No international HR platform does this. Building it requires understanding the Egyptian ID format specification.

What "Built for MENA" Actually Means

When we say Alpha HR is built for MENA, we mean:

  1. Arabic and English from day one — not translation as an afterthought
  2. Full RTL layout — tested on every screen, not just the text
  3. Egyptian payroll engine — all 7 brackets, SI caps, personal exemption, configurable rates
  4. Egyptian Labour Law leave types — pre-seeded, correctly configured
  5. National ID parsing — validate and extract data from the Egyptian ID
  6. EGP currency — not a USD/EUR afterthought

The goal isn't to build a generic HR tool that works everywhere. It's to build the best HR tool for this specific region — one that feels like it was designed for the people using it, because it was.