




						
<?php
require_once __DIR__ . '/../app/Core/Session.php';
require_once __DIR__ . '/../app/Core/Security.php';
require_once __DIR__ . '/../app/Core/Database.php';
require_once __DIR__ . '/../app/Core/Router.php';
Session::start();
$pdo = Database::tryConnection();
function e($v){ return Security::e($v); }
function appBase(){
    $dir = str_replace('\\', '/', dirname($_SERVER['SCRIPT_NAME'] ?? ''));
    if ($dir === '/' || $dir === '\\') $dir = '';
    if (str_ends_with($dir, '/public')) $dir = dirname($dir);
    return rtrim($dir, '/');
}
function appUrl($path){ return appBase() . '/' . ltrim($path, '/'); }
function asset($path){ return appUrl('assets/' . ltrim($path, '/')); }
function ajaxUrl($path){ return appUrl('ajax/' . ltrim($path, '/')); }
function url($page='home', $extra=[]){ $q = array_merge(['page'=>$page], $extra); return 'index.php?' . http_build_query($q); }
function rows($sql, $params=[]){ global $pdo; if(!$pdo) return []; try{$stmt=$pdo->prepare($sql);$stmt->execute($params);return $stmt->fetchAll();}catch(Throwable $e){return [];} }
function one($sql,$params=[]){ global $pdo; if(!$pdo) return null; try{$stmt=$pdo->prepare($sql);$stmt->execute($params);$r=$stmt->fetch();return $r?:null;}catch(Throwable $e){return null;} }
function setting($key,$default=''){ $row=one('SELECT setting_value FROM website_settings WHERE setting_key=?',[$key]); return $row['setting_value'] ?? $default; }
$services = rows('SELECT * FROM services WHERE status="active" ORDER BY sort_order, id');
$countries = rows('SELECT * FROM countries WHERE status="active" ORDER BY sort_order, name');
$jobs = rows('SELECT j.*, c.name AS category_name FROM jobs j LEFT JOIN job_categories c ON c.id=j.category_id WHERE j.status="active" ORDER BY j.created_at DESC LIMIT 9');
$testimonials = rows('SELECT * FROM testimonials WHERE status="active" ORDER BY id DESC LIMIT 6');
if (!$services) $services = [
 ['title'=>'Overseas Employment','short_description'=>'End-to-end recruitment assistance for international job seekers.','icon'=>'bi-briefcase'],
 ['title'=>'Study Abroad','short_description'=>'University guidance, admission support and student visa assistance.','icon'=>'bi-mortarboard'],
 ['title'=>'Work Visa','short_description'=>'Documentation, application tracking and visa process coordination.','icon'=>'bi-passport'],
 ['title'=>'Immigration Assistance','short_description'=>'Professional support for country-specific migration pathways.','icon'=>'bi-globe2'],
 ['title'=>'Documentation Support','short_description'=>'Resume, certificates, PCC, medical and visa-file readiness.','icon'=>'bi-folder-check'],
];
if (!$countries) $countries = [
 ['name'=>'Russia','summary'=>'High-demand overseas employment opportunities.'],['name'=>'UAE','summary'=>'Hospitality, facility, logistics and skilled trade roles.'],['name'=>'Qatar','summary'=>'Fast-growing Gulf career market.'],['name'=>'Saudi Arabia','summary'=>'Work visa and recruitment support.'],['name'=>'Canada','summary'=>'Study, work and settlement guidance.'],['name'=>'UK','summary'=>'Study abroad and visa assistance.'],['name'=>'Australia','summary'=>'Study and skilled career pathways.']
];
if (!$jobs) $jobs = [
 ['title'=>'Hospitality Staff','country'=>'UAE','salary'=>'AED 1800 - 2500','experience'=>'1+ years','benefits'=>'Accommodation, transport, visa support','category_name'=>'Hospitality'],
 ['title'=>'Warehouse Assistant','country'=>'Qatar','salary'=>'QAR 1600 - 2200','experience'=>'Freshers accepted','benefits'=>'Food allowance, overtime','category_name'=>'Logistics'],
 ['title'=>'Welder / Fabricator','country'=>'Saudi Arabia','salary'=>'SAR 2200 - 3000','experience'=>'2+ years','benefits'=>'Medical, accommodation','category_name'=>'Skilled Trade']
];
if (!$testimonials) $testimonials = [
 ['client_name'=>'Rahul M.','country'=>'UAE','message'=>'The team guided me from documents to final departure. Smooth and professional service.'],
 ['client_name'=>'Anjali P.','country'=>'Canada','message'=>'I received clear counselling for study options and visa documentation. Highly recommended.'],
 ['client_name'=>'Sameer K.','country'=>'Qatar','message'=>'Their lead and visa tracking support kept me updated at every stage.']
];
$page = Router::currentPage('home');
$jobId = isset($_GET['job']) ? (int)$_GET['job'] : 0;
$selectedJob = $jobId ? one('SELECT j.*, c.name AS category_name FROM jobs j LEFT JOIN job_categories c ON c.id=j.category_id WHERE j.id=?', [$jobId]) : null;
function headerView($title){ ?>
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title><?=e($title)?> - Global Overseas Visa Services</title><meta name="description" content="Overseas recruitment, work visa assistance, study abroad consultancy and immigration support."><link rel="preconnect" href="https://cdn.jsdelivr.net"><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"><link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet"><link href="<?=asset('css/style.css')?>" rel="stylesheet"></head><body>
<nav class="navbar navbar-expand-lg fixed-top bg-white"><div class="container"><a class="navbar-brand" href="index.php"><img class="brand-logo" src="<?=asset('images/logo.svg')?>" alt="Global Overseas Visa Services"></a><button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#nav"><span class="navbar-toggler-icon"></span></button><div id="nav" class="collapse navbar-collapse"><ul class="navbar-nav ms-auto align-items-lg-center gap-lg-2"><li class="nav-item"><a class="nav-link fw-semibold" href="<?=url('home')?>">Home</a></li><li class="nav-item"><a class="nav-link fw-semibold" href="<?=url('about')?>">About</a></li><li class="nav-item"><a class="nav-link fw-semibold" href="<?=url('services')?>">Services</a></li><li class="nav-item"><a class="nav-link fw-semibold" href="<?=url('countries')?>">Countries</a></li><li class="nav-item"><a class="nav-link fw-semibold" href="<?=url('jobs')?>">Jobs</a></li><li class="nav-item"><a class="nav-link fw-semibold" href="<?=url('study')?>">Study Abroad</a></li><li class="nav-item"><a class="nav-link fw-semibold" href="<?=url('contact')?>">Contact</a></li><li class="nav-item ms-lg-2"><a class="btn btn-gold btn-sm" href="<?=url('apply')?>">Apply Now</a></li></ul></div></div></nav>
<?php }
function footerView(){ ?>
<a href="https://wa.me/919999999999" class="whatsapp-float" aria-label="WhatsApp"><i class="bi bi-whatsapp"></i></a>
<footer class="footer pt-5 pb-4"><div class="container"><div class="row g-4"><div class="col-lg-4"><img class="brand-logo mb-3" src="<?=asset('images/logo.svg')?>" alt="Global Overseas"><p>Professional overseas recruitment, visa consultancy, documentation support and study abroad guidance for global career pathways.</p></div><div class="col-6 col-lg-2"><h6 class="text-white fw-bold">Quick Links</h6><a class="d-block py-1" href="<?=url('services')?>">Services</a><a class="d-block py-1" href="<?=url('jobs')?>">Jobs</a><a class="d-block py-1" href="<?=url('countries')?>">Countries</a><a class="d-block py-1" href="<?=url('contact')?>">Contact</a></div><div class="col-6 col-lg-3"><h6 class="text-white fw-bold">Services</h6><p class="mb-1">Overseas Employment</p><p class="mb-1">Study Abroad</p><p class="mb-1">Work Visa</p><p class="mb-1">Documentation</p></div><div class="col-lg-3"><h6 class="text-white fw-bold">Contact</h6><p class="mb-1"><i class="bi bi-telephone me-2 text-warning"></i><?=e(setting('phone','+91 99999 99999'))?></p><p class="mb-1"><i class="bi bi-envelope me-2 text-warning"></i><?=e(setting('email','info@globaloverseas.com'))?></p><p><i class="bi bi-geo-alt me-2 text-warning"></i><?=e(setting('address','India'))?></p></div></div><hr class="border-secondary"><div class="d-flex flex-column flex-md-row justify-content-between gap-2"><small>© <?=date('Y')?> Global Overseas Visa Services. All rights reserved.</small><small>Built for cPanel PHP/MySQL deployment.</small></div></div></footer><script src="https://code.jquery.com/jquery-3.7.1.min.js"></script><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script><script src="<?=asset('js/main.js')?>"></script></body></html>
<?php }
function heroForm(){ ?>
<form class="glass-form ajax-contact-form" action="<?=ajaxUrl('contact.php')?>" method="post"><input type="hidden" name="csrf" value="<?=e(Security::csrfToken())?>"><div class="d-flex align-items-center mb-3"><div class="icon-badge me-3"><i class="bi bi-headset"></i></div><div><h5 class="fw-black mb-0">Free Consultation</h5><small class="text-muted">Get a callback from our counselor</small></div></div><div class="row g-2"><div class="col-12"><input name="name" class="form-control" placeholder="Full name" required></div><div class="col-md-6"><input name="phone" class="form-control" placeholder="Phone" required></div><div class="col-md-6"><input name="email" type="email" class="form-control" placeholder="Email"></div><div class="col-md-6"><input name="country" class="form-control" placeholder="Preferred country"></div><div class="col-md-6"><select name="service" class="form-select"><option value="Overseas Employment">Overseas Employment</option><option value="Study Abroad">Study Abroad</option><option value="Work Visa">Work Visa</option><option value="Immigration Assistance">Immigration Assistance</option></select></div><div class="col-12"><textarea name="message" class="form-control" rows="3" placeholder="Tell us your requirement"></textarea></div><div class="col-12"><button class="btn btn-gold w-100" type="submit">Request Callback</button></div></div></form>
<?php }

if ($selectedJob) { headerView($selectedJob['title']); ?>
<section class="page-hero"><div class="container"><div class="row align-items-center g-4"><div class="col-lg-8"><span class="section-kicker">Job Opportunity</span><h1 class="display-4 fw-black"><?=e($selectedJob['title'])?></h1><p class="lead text-white-50"><?=e($selectedJob['country'])?> | <?=e($selectedJob['category_name'] ?? 'Recruitment')?></p></div><div class="col-lg-4"><a href="<?=url('apply',['job'=>$selectedJob['id']])?>" class="btn btn-gold w-100">Apply For This Job</a></div></div></div></section><section class="py-5"><div class="container"><div class="row g-4"><div class="col-lg-8"><div class="job-card p-4"><h3 class="section-title">Job Details</h3><p><?=nl2br(e($selectedJob['description'] ?? ''))?></p><h5 class="fw-bold mt-4">Requirements</h5><p><?=nl2br(e($selectedJob['requirements'] ?? ''))?></p><h5 class="fw-bold mt-4">Benefits</h5><p><?=nl2br(e($selectedJob['benefits'] ?? ''))?></p></div></div><div class="col-lg-4"><div class="feature-card p-4 sticky-top" style="top:100px"><h5 class="fw-bold">Summary</h5><p><strong>Country:</strong> <?=e($selectedJob['country'])?></p><p><strong>Salary:</strong> <?=e($selectedJob['salary'])?></p><p><strong>Experience:</strong> <?=e($selectedJob['experience'])?></p><a href="<?=url('apply',['job'=>$selectedJob['id']])?>" class="btn btn-gold w-100">Apply Online</a></div></div></div></div></section><?php footerView(); exit; }

if ($page === 'home') { headerView('Home'); ?>
<section class="hero"><div class="container"><div class="row align-items-center g-5"><div class="col-lg-7"><span class="section-kicker">Recruitment | Visa | Study Abroad</span><h1 class="mt-3 mb-4">Your Gateway To Global Careers</h1><p class="mb-4">Global Overseas Visa Services helps candidates move from enquiry to documentation, application, visa approval and departure with a structured, transparent workflow.</p><div class="d-flex flex-column flex-sm-row gap-3 mb-4"><a href="<?=url('apply')?>" class="btn btn-gold btn-lg"><i class="bi bi-send-check me-2"></i>Apply Now</a><a href="#consult" class="btn btn-outline-gold btn-lg smooth-link"><i class="bi bi-chat-dots me-2"></i>Free Consultation</a></div><div class="row g-3"><div class="col-6 col-md-3"><div class="stat-pill"><strong>7+</strong><br><small>Countries</small></div></div><div class="col-6 col-md-3"><div class="stat-pill"><strong>360°</strong><br><small>Visa Support</small></div></div><div class="col-6 col-md-3"><div class="stat-pill"><strong>24/7</strong><br><small>Updates</small></div></div><div class="col-6 col-md-3"><div class="stat-pill"><strong>CRM</strong><br><small>Tracking</small></div></div></div></div><div class="col-lg-5"><div id="consult" class="hero-card floating-card"><?php heroForm(); ?></div></div></div></div></section>
<section class="py-5 section-soft"><div class="container"><div class="row align-items-end mb-4"><div class="col-lg-8"><span class="section-kicker">What We Do</span><h2 class="section-title display-6">Complete overseas journey under one roof</h2></div><div class="col-lg-4 text-lg-end"><a href="<?=url('services')?>" class="btn btn-outline-primary rounded-pill">View all services</a></div></div><div class="row g-4"><?php foreach(array_slice($services,0,5) as $s): ?><div class="col-md-6 col-lg"><div class="service-card p-4 h-100"><div class="icon-badge mb-3"><i class="bi <?=e($s['icon'] ?? 'bi-globe')?>"></i></div><h5 class="fw-bold"><?=e($s['title'])?></h5><p class="text-muted mb-0"><?=e($s['short_description'] ?? '')?></p></div></div><?php endforeach; ?></div></div></section>
<section class="py-5"><div class="container"><div class="text-center mb-4"><span class="section-kicker">Destinations</span><h2 class="section-title display-6">Popular countries we support</h2></div><div class="row g-4"><?php foreach(array_slice($countries,0,6) as $c): ?><div class="col-md-6 col-lg-4"><div class="country-card overflow-hidden h-100"><div class="country-flag d-flex align-items-end p-4"><h3 class="text-white fw-black mb-0"><?=e($c['name'])?></h3></div><div class="p-4"><p class="text-muted"><?=e($c['summary'] ?? 'Visa, recruitment and documentation assistance.')?></p><a href="<?=url('countries')?>" class="fw-bold text-primary">Explore <i class="bi bi-arrow-right"></i></a></div></div></div><?php endforeach; ?></div></div></section>
<section class="py-5 section-soft"><div class="container"><div class="row align-items-end mb-4"><div class="col-lg-8"><span class="section-kicker">Open Positions</span><h2 class="section-title display-6">Latest overseas jobs</h2></div><div class="col-lg-4 text-lg-end"><a href="<?=url('jobs')?>" class="btn btn-gold">Browse Jobs</a></div></div><div class="row g-4"><?php foreach(array_slice($jobs,0,3) as $j): ?><div class="col-lg-4"><div class="job-card p-4 h-100"><span class="badge badge-gold mb-3"><?=e($j['category_name'] ?? 'Recruitment')?></span><h4 class="fw-black"><?=e($j['title'])?></h4><div class="job-meta mb-3"><span><i class="bi bi-geo-alt"></i><?=e($j['country'])?></span><span><i class="bi bi-cash"></i><?=e($j['salary'])?></span></div><p class="text-muted"><?=e(substr($j['benefits'] ?? '',0,120))?></p><a class="btn btn-outline-primary rounded-pill" href="<?=url('jobs',['job'=>$j['id'] ?? 0])?>">View Details</a></div></div><?php endforeach; ?></div></div></section>
<section class="py-5"><div class="container"><div class="cta-band p-4 p-lg-5"><div class="row align-items-center g-4 position-relative"><div class="col-lg-8"><span class="section-kicker">Start Today</span><h2 class="display-6 fw-black">Ready to build your global career?</h2><p class="text-white-50 mb-0">Submit your details and our counselor will guide your next step.</p></div><div class="col-lg-4"><a class="btn btn-gold btn-lg w-100" href="<?=url('apply')?>">Apply Online</a></div></div></div></div></section>
<?php footerView(); exit; }

if ($page === 'about') { headerView('About Us'); ?>
<section class="page-hero"><div class="container"><span class="section-kicker">About Us</span><h1 class="display-4 fw-black">A structured visa consultancy for global opportunities</h1><p class="lead text-white-50 col-lg-8">We support candidates with overseas recruitment, student visa guidance, documentation and visa tracking from first enquiry to final departure.</p></div></section><section class="py-5"><div class="container"><div class="row g-4"><div class="col-lg-4"><div class="feature-card p-4 h-100"><h3 class="fw-black text-primary">Mission</h3><p>To make overseas career and education pathways clearer, safer and more organized for every applicant.</p></div></div><div class="col-lg-4"><div class="feature-card p-4 h-100"><h3 class="fw-black text-primary">Vision</h3><p>To become a trusted immigration and recruitment partner known for transparent process management.</p></div></div><div class="col-lg-4"><div class="feature-card p-4 h-100"><h3 class="fw-black text-primary">Experience</h3><p>Candidate handling, document verification, employer coordination, visa stages and payment tracking.</p></div></div></div><div class="row g-5 align-items-center mt-4"><div class="col-lg-6"><h2 class="section-title">Our workflow keeps every case trackable</h2><p class="text-muted">Visitor becomes lead, lead becomes applicant, documents move to verification, application progresses through employer and visa stages, then payment and completion are recorded.</p></div><div class="col-lg-6"><div class="timeline"><div class="timeline-item"><span class="timeline-dot"></span><h5>Lead Capture</h5><p class="text-muted">Website, WhatsApp and consultation form entries.</p></div><div class="timeline-item"><span class="timeline-dot"></span><h5>Applicant Profile</h5><p class="text-muted">Candidate, passport, job and country details.</p></div><div class="timeline-item"><span class="timeline-dot"></span><h5>Visa Tracking</h5><p class="text-muted">Application received to visa approval and departure.</p></div></div></div></div></div></section><?php footerView(); exit; }

if ($page === 'services') { headerView('Services'); ?>
<section class="page-hero"><div class="container"><span class="section-kicker">Services</span><h1 class="display-4 fw-black">Recruitment, visa and documentation support</h1></div></section><section class="py-5"><div class="container"><div class="row g-4"><?php foreach($services as $s): ?><div class="col-md-6 col-lg-4"><div class="service-card p-4 h-100"><div class="icon-badge mb-3"><i class="bi <?=e($s['icon'] ?? 'bi-check2-circle')?>"></i></div><h4 class="fw-black"><?=e($s['title'])?></h4><p class="text-muted"><?=e($s['short_description'] ?? '')?></p><p><?=e($s['description'] ?? '')?></p><a href="<?=url('apply')?>" class="btn btn-outline-primary rounded-pill">Enquire Now</a></div></div><?php endforeach; ?></div></div></section><?php footerView(); exit; }

if ($page === 'countries') { headerView('Countries'); ?>
<section class="page-hero"><div class="container"><span class="section-kicker">Countries</span><h1 class="display-4 fw-black">Explore international destinations</h1></div></section><section class="py-5"><div class="container"><div class="row g-4"><?php foreach($countries as $c): ?><div class="col-md-6 col-xl-4"><div class="country-card overflow-hidden h-100"><div class="country-flag d-flex align-items-end p-4"><h3 class="text-white fw-black"><?=e($c['name'])?></h3></div><div class="p-4"><p class="text-muted"><?=e($c['summary'] ?? '')?></p><p><?=e($c['description'] ?? 'Work visa, study, documentation and immigration assistance available.')?></p><a href="<?=url('apply')?>" class="btn btn-gold">Apply for <?=e($c['name'])?></a></div></div></div><?php endforeach; ?></div></div></section><?php footerView(); exit; }

if ($page === 'jobs') { headerView('Jobs Portal'); ?>
<section class="page-hero"><div class="container"><span class="section-kicker">Jobs Portal</span><h1 class="display-4 fw-black">Find overseas employment opportunities</h1></div></section><section class="py-5"><div class="container"><form class="row g-3 mb-4"><input type="hidden" name="page" value="jobs"><div class="col-md-5"><input class="form-control" name="q" value="<?=e($_GET['q'] ?? '')?>" placeholder="Search job title"></div><div class="col-md-4"><input class="form-control" name="country" value="<?=e($_GET['country'] ?? '')?>" placeholder="Country"></div><div class="col-md-3"><button class="btn btn-gold w-100">Search</button></div></form><div class="row g-4"><?php $q=$_GET['q']??'';$country=$_GET['country']??''; $list=$jobs; if($pdo && ($q || $country)){ $list=rows('SELECT j.*, c.name AS category_name FROM jobs j LEFT JOIN job_categories c ON c.id=j.category_id WHERE j.status="active" AND (?="" OR j.title LIKE CONCAT("%",?,"%")) AND (?="" OR j.country LIKE CONCAT("%",?,"%")) ORDER BY j.created_at DESC',[$q,$q,$country,$country]); } foreach($list as $j): ?><div class="col-lg-4"><div class="job-card p-4 h-100"><span class="badge badge-gold mb-3"><?=e($j['category_name'] ?? 'Recruitment')?></span><h4 class="fw-black"><?=e($j['title'])?></h4><div class="job-meta mb-3"><span><i class="bi bi-geo-alt"></i><?=e($j['country'])?></span><span><i class="bi bi-cash"></i><?=e($j['salary'])?></span><span><i class="bi bi-clock"></i><?=e($j['experience'])?></span></div><p class="text-muted"><?=e(substr($j['benefits'] ?? '',0,120))?></p><a class="btn btn-outline-primary rounded-pill" href="<?=url('jobs',['job'=>$j['id'] ?? 0])?>">View Details</a></div></div><?php endforeach; ?></div></div></section><?php footerView(); exit; }

if ($page === 'study') { headerView('Study Abroad'); ?>
<section class="page-hero"><div class="container"><span class="section-kicker">Study Abroad</span><h1 class="display-4 fw-black">Study in USA, Canada, UK, Australia and Germany</h1><p class="lead text-white-50 col-lg-8">Admission counselling, course guidance, document preparation and student visa assistance.</p></div></section><section class="py-5"><div class="container"><div class="row g-4"><?php foreach(['USA','Canada','UK','Australia','Germany'] as $country): ?><div class="col-md-6 col-lg"><div class="feature-card p-4 h-100 text-center"><div class="icon-badge mx-auto mb-3"><i class="bi bi-mortarboard"></i></div><h4 class="fw-black"><?=e($country)?></h4><p class="text-muted">University guidance, admission support and student visa documentation.</p><a class="btn btn-outline-primary rounded-pill" href="<?=url('apply')?>">Apply</a></div></div><?php endforeach; ?></div></div></section><?php footerView(); exit; }

if ($page === 'contact' || $page === 'apply') { headerView($page === 'apply' ? 'Application Form' : 'Contact'); $prefJob = isset($_GET['job']) ? (int)$_GET['job'] : 0; ?>
<section class="page-hero"><div class="container"><span class="section-kicker"><?= $page === 'apply' ? 'Application Form' : 'Contact Us' ?></span><h1 class="display-4 fw-black"><?= $page === 'apply' ? 'Apply online for jobs and visa services' : 'Talk to our counselor' ?></h1></div></section><section class="py-5"><div class="container"><div class="row g-5"><div class="col-lg-7"><form class="feature-card p-4 ajax-application-form" action="<?=ajaxUrl('application.php')?>" method="post" enctype="multipart/form-data"><input type="hidden" name="csrf" value="<?=e(Security::csrfToken())?>"><input type="hidden" name="job_id" value="<?=e($prefJob)?>"><h3 class="section-title mb-3">Submit your details</h3><div class="row g-3"><div class="col-md-6"><label class="form-label">Name</label><input name="name" class="form-control" required></div><div class="col-md-6"><label class="form-label">Phone</label><input name="phone" class="form-control" required></div><div class="col-md-6"><label class="form-label">Email</label><input type="email" name="email" class="form-control"></div><div class="col-md-6"><label class="form-label">Country</label><input name="country" class="form-control"></div><div class="col-md-6"><label class="form-label">Service</label><select name="service" class="form-select"><option>Overseas Employment</option><option>Study Abroad</option><option>Work Visa</option><option>Immigration Assistance</option></select></div><div class="col-md-6"><label class="form-label">Resume Upload</label><input type="file" name="resume" class="form-control" accept=".pdf,.docx,.jpg,.jpeg,.png"></div><div class="col-12"><label class="form-label">Message</label><textarea name="message" class="form-control" rows="4"></textarea></div><div class="col-12"><button class="btn btn-gold btn-lg" type="submit">Submit Application</button></div></div></form></div><div class="col-lg-5"><div class="feature-card p-4 mb-4"><h4 class="fw-black text-primary">Contact Details</h4><p><i class="bi bi-telephone me-2 text-warning"></i><?=e(setting('phone','+91 99999 99999'))?></p><p><i class="bi bi-envelope me-2 text-warning"></i><?=e(setting('email','info@globaloverseas.com'))?></p><p><i class="bi bi-geo-alt me-2 text-warning"></i><?=e(setting('address','India'))?></p><a href="https://wa.me/919999999999" class="btn btn-success rounded-pill"><i class="bi bi-whatsapp me-2"></i>WhatsApp</a></div><div class="ratio ratio-4x3 rounded-4 overflow-hidden"><iframe src="<?=e(setting('google_map','https://maps.google.com/maps?q=India&t=&z=5&ie=UTF8&iwloc=&output=embed'))?>" loading="lazy"></iframe></div></div></div></div></section><?php footerView(); exit; }
header('Location: index.p