<?php
$page_title = 'Study Abroad Consulting | Expert Overseas Education Guidance | Visa Solution Plus';
$page_description = 'Expert study abroad consulting at Visa Solution Plus. Get guidance for studying in Australia, Canada, UK, USA, New Zealand, Europe. 750+ university partners across 31 countries.';
$page_keywords = 'study abroad consulting, overseas education, study in Canada, study in Australia, study in UK, study in USA, student visa consultant Delhi';
$active_page = 'courses';
include 'header.php';
?>

<!-- ========= HERO ========= -->
<section class="py-5 text-white position-relative" style="background:linear-gradient(135deg, rgba(24,66,90,0.95), rgba(18,51,70,0.95)), url('https://images.unsplash.com/photo-1523050854058-8df90110c476?q=80&w=1200');background-size:cover;background-position:center;min-height:350px;">
    <div class="container py-5">
        <div class="row"><div class="col-lg-8">
            <div class="mb-3"><span class="badge bg-danger px-3 py-2 rounded-pill fw-bold">Your Dream Destination Awaits</span></div>
            <h1 class="display-3 fw-800 mb-3">Study <span class="text-danger">Abroad</span></h1>
            <p class="lead opacity-75 mb-4">Expert overseas education counselling with access to 750+ universities across 31 countries. From university selection to visa approval — we've got you covered.</p>
            <div class="d-flex flex-wrap gap-3">
                <span class="badge bg-white text-navy px-3 py-2 rounded-pill"><i class="fas fa-university me-1"></i> 750+ Universities</span>
                <span class="badge bg-white text-navy px-3 py-2 rounded-pill"><i class="fas fa-globe me-1"></i> 31 Countries</span>
                <span class="badge bg-white text-navy px-3 py-2 rounded-pill"><i class="fas fa-check-circle me-1"></i> 97% Visa Success</span>
            </div>
            <nav class="mt-4" aria-label="breadcrumb"><ol class="breadcrumb"><li class="breadcrumb-item"><a href="index.php" class="text-danger text-decoration-none">Home</a></li><li class="breadcrumb-item"><a href="#" class="text-danger text-decoration-none">Courses</a></li><li class="breadcrumb-item active text-white">Study Abroad</li></ol></nav>
        </div></div>
    </div>
</section>

<!-- ========= CONTENT ========= -->
<section class="py-5">
    <div class="container py-4">
        <div class="row g-5">
            <div class="col-lg-8">
                <h2 class="display-5 fw-800 text-navy mb-4">Your Complete <span class="text-danger">Study Abroad</span> Guide</h2>
                <p class="lead text-muted">Studying abroad is one of the most transformative experiences in a student's life. It opens doors to world-class education, global career opportunities, cultural enrichment, and personal growth. At <strong>Visa Solution Plus</strong>, we have been helping students realize their international education dreams since <strong>2012</strong>, with over <strong>3,70,000+ students successfully placed</strong> across the globe.</p>

                <p class="text-muted">Our partnerships with <strong>750+ universities across 31 countries</strong> — including Australia, Canada, United Kingdom, United States, New Zealand, Germany, Ireland, France, Singapore, and many more — ensure that we can find the perfect university and program match for every student, regardless of their academic background, budget, or career goals.</p>

                <p class="text-muted">Whether you're a high school graduate looking for undergraduate programs, a bachelor's degree holder seeking master's opportunities, or a professional aiming for MBA or PhD programs abroad, our team of experienced counsellors provides end-to-end guidance through every step of your study abroad journey.</p>

                <div class="mt-5">
                    <h3 class="fw-800 text-navy mb-4"><i class="fas fa-globe-americas text-danger me-2"></i>Top Study Destinations</h3>
                    <div class="row g-4">
                        <?php
$destinations = [
    ['flag' => '🇨🇦', 'country' => 'Canada', 'bg' => '#e94d4e', 'points' => ['Post-study work permit up to 3 years', '3-year pathway to Permanent Residency', 'Affordable tuition compared to US/UK', 'Part-time work: 20hrs/week during study', 'Top universities: U of T, UBC, McGill, Waterloo']],
    ['flag' => '🇦🇺', 'country' => 'Australia', 'bg' => '#18425a', 'points' => ['Post-study work visa (2-6 years)', 'Top 8 universities in world top 100', 'Part-time work: 48hrs per fortnight', 'Pathway to PR through skilled migration', 'Top universities: UniMelb, ANU, UNSW, Sydney']],
    ['flag' => '🇬🇧', 'country' => 'United Kingdom', 'bg' => '#e94d4e', 'points' => ['Graduate Route visa (2 years post-study)', '1-year Masters — cost and time efficient', 'World-renowned institutions and prestige', 'Part-time work: 20hrs/week during term', 'Top universities: Oxford, Cambridge, Imperial, UCL']],
    ['flag' => '🇺🇸', 'country' => 'United States', 'bg' => '#18425a', 'points' => ['OPT work authorization (1-3 years)', 'Largest number of top-ranked universities', 'Flexible education system with majors/minors', 'On-campus employment opportunities', 'Top universities: MIT, Stanford, Harvard, Caltech']],
    ['flag' => '🇳🇿', 'country' => 'New Zealand', 'bg' => '#e94d4e', 'points' => ['Post-study work visa (1-3 years)', 'Safe, welcoming, and beautiful country', 'Affordable living and tuition costs', 'Part-time work: 20hrs/week during study', 'Top universities: Auckland, Otago, Victoria']],
    ['flag' => '🇩🇪', 'country' => 'Germany', 'bg' => '#18425a', 'points' => ['Free or very low tuition at public universities', '18-month job seeker visa post-study', 'Strong engineering and tech programs', 'Growing number of English-taught programs', 'Top universities: TU Munich, LMU, Heidelberg']],
];
foreach ($destinations as $d): ?>
                        <div class="col-md-6">
                            <div class="card border-0 shadow-sm rounded-4 h-100 overflow-hidden">
                                <div class="card-header text-white py-3 px-4" style="background:<?php echo $d['bg']; ?>;">
                                    <h4 class="fw-800 mb-0"><?php echo $d['flag']; ?> <?php echo $d['country']; ?></h4>
                                </div>
                                <div class="card-body p-4">
                                    <ul class="list-unstyled mb-0">
                                        <?php foreach ($d['points'] as $p): ?>
                                        <li class="mb-2 d-flex gap-2"><i class="fas fa-check-circle text-danger mt-1 flex-shrink-0"></i><span class="text-muted small"><?php echo $p; ?></span></li>
                                        <?php
    endforeach; ?>
                                    </ul>
                                </div>
                            </div>
                        </div>
                        <?php
endforeach; ?>
                    </div>
                </div>

                <div class="mt-5">
                    <h3 class="fw-800 text-navy mb-4"><i class="fas fa-road text-danger me-2"></i>Our Study Abroad Process</h3>
                    <p class="text-muted mb-4">At Visa Solution Plus, we follow a structured, step-by-step approach to ensure your study abroad journey is smooth and stress-free. Here's our proven 8-step process:</p>
                    <div class="row g-3">
                        <?php
$steps = [
    ['step' => '01', 'title' => 'Free Counselling Session', 'desc' => 'Meet our expert counsellors for a detailed discussion about your academic background, career goals, budget, and preferred destinations. We assess your profile comprehensively.'],
    ['step' => '02', 'title' => 'Country & University Selection', 'desc' => 'Based on your profile, we recommend the best countries and universities that align with your academic goals, career aspirations, and budget. We leverage our 750+ university network.'],
    ['step' => '03', 'title' => 'Test Preparation', 'desc' => 'If required, we provide in-house coaching for IELTS, TOEFL, PTE, OET, GRE, GMAT, SAT, ACT, and Duolingo. Our expert faculty ensures you achieve your target scores.'],
    ['step' => '04', 'title' => 'Application & Documentation', 'desc' => 'We prepare and review all application documents — SOP (Statement of Purpose), LOR (Letters of Recommendation), CV, essays, and academic transcripts — ensuring they meet university standards.'],
    ['step' => '05', 'title' => 'Admission & Offer Letter', 'desc' => 'We submit applications to shortlisted universities, follow up proactively, negotiate scholarships where possible, and secure admission offer letters.'],
    ['step' => '06', 'title' => 'Education Loan Assistance', 'desc' => 'We assist with education loan applications, documentation, and bank liaison. Our partnerships with leading banks ensure competitive interest rates and hassle-free processing.'],
    ['step' => '07', 'title' => 'Visa Processing', 'desc' => 'Meticulous visa documentation, mock visa interviews, financial documentation guidance, and strategic application submission. Our 97% visa success rate speaks for itself.'],
    ['step' => '08', 'title' => 'Pre-Departure & Beyond', 'desc' => 'Airport pickup coordination, accommodation assistance, travel insurance, forex exchange, SIM card, student GIC, and ongoing support even after you arrive at your destination.'],
];
foreach ($steps as $s): ?>
                        <div class="col-md-6">
                            <div class="d-flex gap-3 p-4 rounded-4 h-100 shadow-sm bg-white">
                                <div class="flex-shrink-0"><span class="badge rounded-pill px-3 py-2 fw-bold" style="background:linear-gradient(135deg,#e94d4e,#c0392b);font-size:1.1rem;"><?php echo $s['step']; ?></span></div>
                                <div><h5 class="fw-800 text-navy mb-2"><?php echo $s['title']; ?></h5><p class="text-muted small mb-0"><?php echo $s['desc']; ?></p></div>
                            </div>
                        </div>
                        <?php
endforeach; ?>
                    </div>
                </div>

                <div class="mt-5">
                    <h3 class="fw-800 text-navy mb-3"><i class="fas fa-graduation-cap text-danger me-2"></i>Programs We Cover</h3>
                    <div class="row g-3">
                        <div class="col-6 col-md-4"><div class="p-3 rounded-3 text-center" style="background:#f8f9ff;"><i class="fas fa-book text-danger mb-2"></i><p class="small fw-bold text-navy mb-0">Undergraduate (Bachelor's)</p></div></div>
                        <div class="col-6 col-md-4"><div class="p-3 rounded-3 text-center" style="background:#f8f9ff;"><i class="fas fa-user-graduate text-danger mb-2"></i><p class="small fw-bold text-navy mb-0">Postgraduate (Master's)</p></div></div>
                        <div class="col-6 col-md-4"><div class="p-3 rounded-3 text-center" style="background:#f8f9ff;"><i class="fas fa-briefcase text-danger mb-2"></i><p class="small fw-bold text-navy mb-0">MBA Programs</p></div></div>
                        <div class="col-6 col-md-4"><div class="p-3 rounded-3 text-center" style="background:#f8f9ff;"><i class="fas fa-microscope text-danger mb-2"></i><p class="small fw-bold text-navy mb-0">PhD & Research</p></div></div>
                        <div class="col-6 col-md-4"><div class="p-3 rounded-3 text-center" style="background:#f8f9ff;"><i class="fas fa-certificate text-danger mb-2"></i><p class="small fw-bold text-navy mb-0">Diploma & Certificate</p></div></div>
                        <div class="col-6 col-md-4"><div class="p-3 rounded-3 text-center" style="background:#f8f9ff;"><i class="fas fa-stethoscope text-danger mb-2"></i><p class="small fw-bold text-navy mb-0">Medical & Healthcare</p></div></div>
                    </div>
                </div>

                <div class="mt-5">
                    <h3 class="fw-800 text-navy mb-3"><i class="fas fa-hand-holding-usd text-danger me-2"></i>Scholarships & Financial Aid</h3>
                    <p class="text-muted">Understanding the financial aspects of studying abroad is crucial. At Visa Solution Plus, we help you explore every available option to make your education affordable:</p>
                    <ul class="text-muted">
                        <li class="mb-2"><strong>Merit-Based Scholarships:</strong> We identify and apply for scholarships based on your academic achievements, often covering 10-100% of tuition fees.</li>
                        <li class="mb-2"><strong>University Bursaries:</strong> Many universities offer need-based financial support that can significantly reduce your costs.</li>
                        <li class="mb-2"><strong>Government Scholarships:</strong> We guide you through government-funded programs like Chevening (UK), Endeavour (Australia), DAAD (Germany), and Fulbright (USA).</li>
                        <li class="mb-2"><strong>Education Loans:</strong> Our partnerships with leading nationalized and private banks ensure competitive interest rates, moratorium periods, and flexible repayment options.</li>
                        <li class="mb-2"><strong>Part-Time Work:</strong> Most study destinations allow international students to work part-time during studies (typically 20 hours/week) to support their living expenses.</li>
                    </ul>
                </div>

                <div class="mt-5">
                    <h3 class="fw-800 text-navy mb-3"><i class="fas fa-question-circle text-danger me-2"></i>Frequently Asked Questions</h3>
                    <div class="accordion" id="saFaq">
                        <div class="accordion-item border-0 shadow-sm mb-2 rounded-3 overflow-hidden"><h2 class="accordion-header"><button class="accordion-button fw-bold" type="button" data-bs-toggle="collapse" data-bs-target="#sf1">When should I start my study abroad application?</button></h2><div id="sf1" class="accordion-collapse collapse show" data-bs-parent="#saFaq"><div class="accordion-body text-muted">Ideally, you should start <strong>12-18 months before your intended intake</strong>. This gives you enough time for test preparation, university shortlisting, application preparation, and visa processing. Most countries have two main intakes — September/October (Fall) and January/February (Spring). Some countries like Australia also have mid-year intakes in July.</div></div></div>
                        <div class="accordion-item border-0 shadow-sm mb-2 rounded-3 overflow-hidden"><h2 class="accordion-header"><button class="accordion-button collapsed fw-bold" type="button" data-bs-toggle="collapse" data-bs-target="#sf2">How much does studying abroad cost?</button></h2><div id="sf2" class="accordion-collapse collapse" data-bs-parent="#saFaq"><div class="accordion-body text-muted">Costs vary significantly by country and program. Approximate annual tuition fees: <strong>Canada: CAD 15,000-35,000</strong>, <strong>Australia: AUD 20,000-45,000</strong>, <strong>UK: GBP 10,000-38,000</strong>, <strong>USA: USD 20,000-55,000</strong>, <strong>Germany: EUR 0-3,000</strong> (public universities). Living costs range from <strong>INR 6-15 lakh/year</strong> depending on the city and lifestyle.</div></div></div>
                        <div class="accordion-item border-0 shadow-sm mb-2 rounded-3 overflow-hidden"><h2 class="accordion-header"><button class="accordion-button collapsed fw-bold" type="button" data-bs-toggle="collapse" data-bs-target="#sf3">Do I need IELTS/TOEFL to study abroad?</button></h2><div id="sf3" class="accordion-collapse collapse" data-bs-parent="#saFaq"><div class="accordion-body text-muted">Most countries require proof of English proficiency through tests like IELTS, TOEFL, or PTE. However, some exceptions exist: <strong>Students who completed their previous education in English</strong> may be exempt. <strong>Some universities accept Duolingo</strong> as an alternative. A few programs offer <strong>conditional admission without English scores</strong>, allowing you to take a language course first. Our counsellors can guide you on specific requirements for your target universities.</div></div></div>
                        <div class="accordion-item border-0 shadow-sm mb-2 rounded-3 overflow-hidden"><h2 class="accordion-header"><button class="accordion-button collapsed fw-bold" type="button" data-bs-toggle="collapse" data-bs-target="#sf4">Can I work while studying abroad?</button></h2><div id="sf4" class="accordion-collapse collapse" data-bs-parent="#saFaq"><div class="accordion-body text-muted">Yes! Most popular study destinations allow international students to work part-time: <strong>Canada:</strong> 20 hrs/week during term, full-time during breaks. <strong>Australia:</strong> 48 hours per fortnight. <strong>UK:</strong> 20 hrs/week during term, full-time during breaks. <strong>USA:</strong> On-campus employment (20 hrs/week), CPT/OPT programs. <strong>Germany:</strong> 120 full days or 240 half days per year.</div></div></div>
                        <div class="accordion-item border-0 shadow-sm mb-2 rounded-3 overflow-hidden"><h2 class="accordion-header"><button class="accordion-button collapsed fw-bold" type="button" data-bs-toggle="collapse" data-bs-target="#sf5">What is the visa success rate at Visa Solution Plus?</button></h2><div id="sf5" class="accordion-collapse collapse" data-bs-parent="#saFaq"><div class="accordion-body text-muted">We are proud to maintain a <strong>97% visa success rate</strong> across all countries. Our experienced visa documentation team ensures that every application is thoroughly prepared, all supporting documents are in order, and students are well-prepared for visa interviews (where applicable). Our team's combined experience of 25+ years in the immigration industry is our greatest strength.</div></div></div>
                    </div>
                </div>
            </div>

            <!-- SIDEBAR -->
            <div class="col-lg-4">
                <div class="position-sticky" style="top:100px;">
                    <div class="card border-0 shadow-lg rounded-4 overflow-hidden mb-4">
                        <div class="card-header text-white text-center py-4" style="background:linear-gradient(135deg,#18425a,#123346);"><h4 class="fw-800 mb-1">Free Counselling</h4><p class="small opacity-75 mb-0">Start Your Journey Today</p></div>
                        <div class="card-body p-4">
                            <form class="d-flex flex-column gap-3">
                                <input type="text" name="name" class="form-control vsp-input" placeholder="Your Full Name" required>
                                <input type="tel" name="phone" class="form-control vsp-input" placeholder="Phone Number" required>
                                <input type="email" name="email" class="form-control vsp-input" placeholder="Email Address" required>
                                <select name="service" class="form-select vsp-input"><option value="Study in Canada">🇨🇦 Canada</option><option value="Study in Australia">🇦🇺 Australia</option><option value="Study in UK">🇬🇧 United Kingdom</option><option value="Study in USA">🇺🇸 United States</option><option value="Study in New Zealand">🇳🇿 New Zealand</option><option value="Study in Germany">🇩🇪 Germany</option><option value="Study Abroad Other">Other Country</option></select>
                                <input type="hidden" name="source_page" value="study-abroad">
                                <button type="submit" class="btn btn-vsp-submit w-100 py-3 fw-bold">GET FREE GUIDANCE <i class="fas fa-arrow-right ms-2"></i></button>
                            </form>
                        </div>
                    </div>
                    <div class="card border-0 shadow-sm rounded-4 p-4 mb-4" style="background:#f8f9ff;">
                        <h5 class="fw-800 text-navy mb-3">Our Test Prep Courses</h5>
                        <ul class="list-unstyled mb-0">
                            <li class="mb-2"><a href="ielts.php" class="text-decoration-none text-muted fw-bold"><i class="fas fa-chevron-right text-danger me-2 small"></i>IELTS Coaching</a></li>
                            <li class="mb-2"><a href="toefl.php" class="text-decoration-none text-muted fw-bold"><i class="fas fa-chevron-right text-danger me-2 small"></i>TOEFL Coaching</a></li>
                            <li class="mb-2"><a href="pte.php" class="text-decoration-none text-muted fw-bold"><i class="fas fa-chevron-right text-danger me-2 small"></i>PTE Academic</a></li>
                            <li class="mb-2"><a href="oet.php" class="text-decoration-none text-muted fw-bold"><i class="fas fa-chevron-right text-danger me-2 small"></i>OET Coaching</a></li>
                            <li class="mb-0"><a href="cambridge-english.php" class="text-decoration-none text-muted fw-bold"><i class="fas fa-chevron-right text-danger me-2 small"></i>Cambridge English</a></li>
                        </ul>
                    </div>
                    <div class="card border-0 shadow-sm rounded-4 p-4 mb-4 bg-white">
                        <h5 class="fw-800 text-navy mb-3"><i class="fas fa-chart-pie text-danger me-2"></i>Quick Stats</h5>
                        <div class="d-flex justify-content-between mb-3 pb-3 border-bottom"><span class="text-muted small fw-bold">Universities</span><span class="fw-800 text-danger">750+</span></div>
                        <div class="d-flex justify-content-between mb-3 pb-3 border-bottom"><span class="text-muted small fw-bold">Countries</span><span class="fw-800 text-danger">31</span></div>
                        <div class="d-flex justify-content-between mb-3 pb-3 border-bottom"><span class="text-muted small fw-bold">Students Assisted</span><span class="fw-800 text-danger">3,70,000+</span></div>
                        <div class="d-flex justify-content-between mb-3 pb-3 border-bottom"><span class="text-muted small fw-bold">Visa Success Rate</span><span class="fw-800 text-danger">97%</span></div>
                        <div class="d-flex justify-content-between"><span class="text-muted small fw-bold">Years of Service</span><span class="fw-800 text-danger">12+</span></div>
                    </div>
                    <div class="card border-0 rounded-4 text-white p-4 text-center" style="background:linear-gradient(135deg,#e94d4e,#c0392b);">
                        <i class="fas fa-phone-alt fa-2x mb-3"></i><h5 class="fw-800">Need Guidance?</h5><p class="small opacity-90">Talk to our counsellors!</p>
                        <a href="tel:+918448897931" class="btn btn-light fw-bold rounded-pill px-4">+91 8448897931</a>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>

<!-- ========= CTA ========= -->
<section class="py-5 bg-white">
    <div class="container py-4 text-center">
        <h2 class="display-5 fw-800 text-navy mb-3">Your Global Education Starts Here</h2>
        <p class="lead text-muted mb-4">750+ universities, 31 countries, 3,70,000+ success stories. Join the Visa Solution Plus family today.</p>
        <a href="contact.php" class="vsp-btn-modern me-3">GET FREE COUNSELLING <i class="fas fa-arrow-right ms-2"></i></a>
        <a href="tel:+918448897931" class="btn btn-outline-danger btn-lg px-4 fw-bold">CALL NOW <i class="fas fa-phone-alt ms-2"></i></a>
    </div>
</section>

<?php include 'footer.php'; ?>
