This flowchart illustrates the different pathways for working in Serbia and how our services can help.
graph TD
subgraph "Start Here"
A[Foreign National Seeking to Work in Serbia]
end
A --> B{Do you have a Serbian Employer?};
subgraph "Pathway 1: Employment"
B -- Yes --> C(
Standard Employment Pathway(Direct Hire, Intra-Company Transfer));
C --> D["
Learn about the Work Permit Process"];
end
subgraph "Pathway 2: Self-Employment"
B -- No --> E(
Self-Employment Pathway(For Entrepreneurs & Freelancers));
E --> F["
Explore the Self-Employment Guide"];
F --> G{Choose Your Business Structure};
G -- Option A --> H(Register a Limited Liability Company - d.o.o.);
G -- Option B --> I(Register as a Sole Entrepreneur - Preduzetnik);
H --> J["
Learn about Company & Sole Proprietor Registration"];
I --> J;
end
subgraph "Final Steps"
J --> K(Apply for Residence & Work Permit);
D --> K;
K --> L(Family Reunification);
end
%% Styling
classDef start fill:#e6f2ff,stroke:#0066cc,stroke-width:2px;
classDef pathway fill:#fffbe6,stroke:#d4af37,stroke-width:2px;
classDef final fill:#e6ffed,stroke:#28a745,stroke-width:2px;
classDef link fill:#e9ecef,stroke:#6c757d,stroke-width:1px,color:#000;
class A start;
class C,E,G,H,I pathway;
class K,L final;
class D,F,J link;