academy/resources/views/abouts.blade.php

176 lines
3.7 KiB
PHP

@extends('layouts.app')
@section('title','About Us')
@section('content')
<style>
:root{
--primary:#5E244E;
--secondary:#8B3A74;
--light:#f8f4f7;
}
.hero-about{
min-height:60vh;
background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('https://images.pexels.com/photos/1595385/pexels-photo-1595385.jpeg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}
.section-title{
text-align:center;
margin-bottom:40px;
}
.about-box{
background:#fff;
border-radius:15px;
padding:25px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}
.about-box:hover{
transform:translateY(-6px);
}
.icon-circle{
width:70px;
height:70px;
background:var(--primary);
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
margin:auto;
}
</style>
<!-- HERO -->
<section class="hero-about">
<div class="container">
<h1 class="fw-bold">About Our Institute</h1>
<p class="mt-3">
We are committed to delivering high-quality automotive education
with practical training and industry-focused learning.
</p>
</div>
</section>
<!-- ABOUT CONTENT -->
<section class="py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<img src="https://images.pexels.com/photos/3862130/pexels-photo-3862130.jpeg"
class="img-fluid rounded shadow"
alt="About Image">
</div>
<div class="col-md-6">
<h2>Who We Are</h2>
<p class="text-muted">
Our institute specializes in automotive engineering education,
offering hands-on training in modern vehicle technologies,
mechanical systems, and electric vehicles.
</p>
<p class="text-muted">
We focus on building skilled professionals who are ready for
the global automotive industry.
</p>
<a href="{{ route('courses') }}" class="btn btn-dark mt-3">
View Courses
</a>
</div>
</div>
</div>
</section>
<!-- FEATURES -->
<section class="py-5 bg-light">
<div class="container">
<div class="section-title">
<h2>Why Choose Us</h2>
<p class="text-muted">We provide the best learning experience</p>
</div>
<div class="row g-4">
<div class="col-md-4">
<div class="about-box text-center">
<div class="icon-circle">
<i class="fa-solid fa-chalkboard-user"></i>
</div>
<h4 class="mt-3">Expert Lecturers</h4>
<p class="text-muted">
Experienced industry professionals guiding your learning journey.
</p>
</div>
</div>
<div class="col-md-4">
<div class="about-box text-center">
<div class="icon-circle">
<i class="fa-solid fa-screwdriver-wrench"></i>
</div>
<h4 class="mt-3">Practical Training</h4>
<p class="text-muted">
Hands-on workshop experience with real vehicles and tools.
</p>
</div>
</div>
<div class="col-md-4">
<div class="about-box text-center">
<div class="icon-circle">
<i class="fa-solid fa-certificate"></i>
</div>
<h4 class="mt-3">Certified Courses</h4>
<p class="text-muted">
Industry-recognized certifications to boost your career.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="py-5 text-center">
<div class="container">
<h2>Start Your Automotive Career Today</h2>
<p class="text-muted">
Join our institute and become a skilled automotive professional.
</p>
<div style="display: flex; justify-content:center; width: 100%; ">
<a href="/apply" class="bg-gray-100 hover:bg-gray-200 text-gray-700 px-4 py-2 rounded-full text-sm font-medium transition" style="color:#5E244E">
Apply Courses
</a>
</div>
</section>
@endsection