Our Impact in Numbers
Every number represents a life changed, a dream realized, and a career built across the globe
@php
$stats = [
['icon' => 'fas fa-user-graduate', 'value' => 8000, 'suffix' => '+', 'label' => 'Graduates Placed', 'sublabel' => 'Worldwide'],
['icon' => 'fas fa-passport', 'value' => 98, 'suffix' => '%', 'label' => 'Visa Success Rate', 'sublabel' => 'Average 2024'],
['icon' => 'fas fa-globe-americas', 'value' => 15, 'suffix' => '+', 'label' => 'Countries', 'sublabel' => 'Active Placement'],
['icon' => 'fas fa-handshake', 'value' => 250, 'suffix' => '+', 'label' => 'Hiring Partners', 'sublabel' => 'Global Network'],
];
@endphp
@foreach($stats as $i => $stat)
{{ $stat['label'] }}
{{ $stat['sublabel'] }}
@endforeach
@php
$microStats = [
['icon' => 'fas fa-star', 'val' => '4.9/5', 'label' => 'Student Rating'],
['icon' => 'fas fa-clock', 'val' => '24 hrs', 'label' => 'Response Time'],
['icon' => 'fas fa-trophy', 'val' => '10+', 'label' => 'Years of Excellence'],
['icon' => 'fas fa-hospital', 'val' => '50+', 'label' => 'Hospital Partners'],
];
@endphp
@foreach($microStats as $ms)
{{ $ms['val'] }}
{{ $ms['label'] }}
@endforeach