@php $positions = [ ['title' => 'Backend Engineer (Laravel)', 'dept' => 'Engineering', 'location' => 'Kathmandu · Hybrid'], ['title' => 'Embedded Systems Engineer (NFC)', 'dept' => 'Hardware', 'location' => 'Kathmandu · On-site'], ['title' => 'Field Operations Associate', 'dept' => 'Operations', 'location' => 'Kathmandu Valley'], ['title' => 'Customer Support Specialist', 'dept' => 'Support', 'location' => 'Remote · Nepal'], ['title' => 'Product Designer', 'dept' => 'Design', 'location' => 'Kathmandu · Hybrid'], ]; $benefits = [ ['icon' => 'fa-house-laptop', 'title' => 'Hybrid & Remote Friendly', 'desc' => 'Work from the office, home, or a mix — role dependent.'], ['icon' => 'fa-heart-pulse', 'title' => 'Health Insurance', 'desc' => 'Medical coverage for you and your immediate family.'], ['icon' => 'fa-graduation-cap', 'title' => 'Learning Budget', 'desc' => 'Annual budget for courses, books, and conferences.'], ['icon' => 'fa-bus', 'title' => 'Free Yatra Card', 'desc' => 'Every employee rides free on partner routes.'], ]; @endphp @component('layouts.app', [ 'title' => 'Careers', 'metaDescription' => 'Join the team building cashless transit for Nepal. Open roles in engineering, hardware, operations, and support.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Company', 'title' => 'Help Us Move Nepal Forward', 'subtitle' => 'We are a small team solving a very physical problem with software, hardware, and a lot of bus rides.', ])
Life at Yatra Card — the team on-site at a bus terminal

Life at Yatra Card — on the road, at the terminals, where the product actually lives.

@foreach ($benefits as $i => $b)

{{ $b['title'] }}

{{ $b['desc'] }}

@endforeach

Open Positions

Come Build With Us

@foreach ($positions as $position)

{{ $position['title'] }}

{{ $position['dept'] }} · {{ $position['location'] }}

@endforeach

Applying for

@include('partials.home.cta') @endcomponent