@extends('layouts.app') @section('title', 'Home') @push('styles') @endpush @section('content') {{-- ===================== HERO ===================== --}} {{-- ===================== OUR COURSES ===================== --}}

Our Courses

Explore our professional automotive engineering courses.

@php $courses = [ [ '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.', ], [ 'image' => 'https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=800&q=80', 'title' => 'Mechanical Systems course', 'desc' => 'Study transmission systems, suspension, braking and vehicle maintenance.', ], [ 'image' => 'https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=800&q=80', 'title' => 'Electric Vehicle Technology course', 'desc' => 'Master EV batteries, powertrains, charging systems and smart mobility.', ], ]; @endphp
@foreach($courses as $course)
{{ $course['title'] }}

{{ $course['title'] }}

{{ $course['desc'] }}

View Course
@endforeach
View all courses
{{-- ===================== WHY CHOOSE US ===================== --}}
Automotive Engineering Lab

Why Choose Us?

  • Modern Laboratories
  • Industry Qualified Lecturers
  • Hands-on Vehicle Training
  • Hybrid & Electric Vehicle Research Center
  • Internship Opportunities
{{-- ===================== CALL TO ACTION ===================== --}}

Join the Future of Automotive Engineering

Shape the future with innovation, technology and practical learning.

Apply Now
@endsection