@extends('layouts.app')
@section('title', 'Home')
@push('styles')
@endpush
@section('content')
{{-- ===================== HERO ===================== --}}
Automobile Engineering Academy
Driving Innovation Through Education, Research & Technology
{{-- ===================== COURSES SECTION ===================== --}}
Academic Programs
Our Top Courses
Explore our professional, industry-recognized automotive engineering curriculums.
@php
$courses = [
[
'id' => 'course-1',
'category' => 'mechanical',
'level' => 'ol',
'image' => 'https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=800&q=80',
'title' => 'Automotive Engineering Course',
'desc' => 'Learn vehicle design, engine technology, diagnostics and manufacturing workflows comprehensively.',
'author' => 'Automotive Engineering Dept.',
'rating' => '4.9',
'students' => '1.2k students',
'badge' => 'Popular'
],
[
'id' => 'course-2',
'category' => 'mechanical',
'level' => 'al',
'image' => 'https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=800&q=80',
'title' => 'Mechanical Systems Course',
'desc' => 'Study power transmission systems, active suspension, breaking dynamics and diagnostics.',
'author' => 'Tech & Service Campus',
'rating' => '4.7',
'students' => '850 students',
'badge' => 'Bestseller'
],
[
'id' => 'course-3',
'category' => 'ev',
'level' => 'al',
'image' => 'https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=800&q=80',
'title' => 'Electric Vehicle Tech Course',
'desc' => 'Master advanced EV battery management, powertrains, smart networks and electric mobility.',
'author' => 'EV Research Institute',
'rating' => '4.8',
'students' => '640 students',
'badge' => 'New'
]
];
@endphp
@foreach($courses as $key => $course)
@endforeach
{{-- ===================== WHY CHOOSE US ===================== --}}
Why Choose Us?
Modern Laboratories
State-of-the-art facilities equipped with latest industrial testing tools.
Qualified Lecturers
Learn directly from veteran automotive engineers and researchers.
Hands-on Training
Gain real-world diagnostics experience inside our dedicated workshop floors.
{{-- ===================== CALL TO ACTION ===================== --}}
Join the Future of Automotive Engineering
Shape your technical career through modern innovation, practical mastery, and expert guidance.
Apply Now
{{-- ===================== COURSE FINDER MODAL ===================== --}}
{{-- Result Area --}}
@endsection