Map is not configured. Please paste any Google Maps link in the admin
dashboard.
@endif
Frequently Asked Questions
Answers to
Common Inquiries About Our Services
@php
$fallbackFaqs = [
[
'q' => 'What services do you provide?',
'a' =>
'We offer study abroad counseling, university admission assistance, visa guidance, and complete support throughout the application process.',
],
[
'q' => 'Which countries do you provide study options for?',
'a' =>
'We assist students in applying to various study destinations including Australia, the UK, Canada, New Zealand, the USA, and other countries.',
],
[
'q' => 'Do you provide personalized counseling?',
'a' =>
'Yes, we provide one-on-one counseling tailored to each student’s academic background, interests, and career goals.',
],
[
'q' => 'Do you help with visa processing?',
'a' =>
'Yes, we guide students through documentation, application submission, and interview preparation to ensure a smooth visa process.',
],
[
'q' => 'How long does the application process take?',
'a' =>
'The timeline depends on the chosen country, institution, and intake, but we guide students clearly at every step.',
],
[
'q' => 'Is your guidance genuine and transparent?',
'a' =>
'Absolutely. We are committed to providing honest, accurate, and up-to-date information to protect students from misguidance.',
],
];
$displayFaqs =
$faqs->count() > 0
? $faqs->map(fn($f) => ['q' => $f->question, 'a' => $f->answer])
: $fallbackFaqs;
@endphp
@foreach ($displayFaqs as $index => $faq)