@extends('layout.front.master') @section('title', config('site.about.page_title', __('About Us')) . ' | ' . config('site.name')) @section('description', config('site.seo.description')) @section('keywords', config('site.seo.keywords')) @section('og_title', config('site.about.page_title', __('About Us')) . ' | ' . config('site.name')) @section('og_description', config('site.og.description')) @section('og_image', brand_og_image()) @section('og_type', 'website') @section('og_url', url()->current()) @section('content') {{-- Hero --}}

{{ config('site.about.page_title', __('About Us')) }}

{!! config('site.about.hero_heading', config('site.name')) !!}

{{ config('site.about.hero_subtitle', config('site.description', '')) }}

{{-- Intro --}}
@if(config('site.about.description_1'))

{!! config('site.about.description_1') !!}

@endif @if(config('site.about.description_2'))

{{ config('site.about.description_2') }}

@endif @if(config('site.about.description_3'))

{{ config('site.about.description_3') }}

@endif
{{ config('site.name') }}
{{-- Pillars --}} @php $pillars = config('site.about.pillars', []); if (is_string($pillars)) { $pillars = json_decode($pillars, true) ?? []; } @endphp @if(!empty($pillars))

{{ config('site.about.pillars_badge', __('Our Pillars')) }}

{{ config('site.about.pillars_heading', __('Why Choose Us')) }}

@foreach($pillars as $index => $pillar)
@if(!empty($pillar['image'])) @else @endif

{{ $pillar['title'] ?? '' }}

{{ $pillar['text'] ?? '' }}

@endforeach
@endif {{-- Mission / Vision / Values + Skills --}}

{{ config('site.about.essence_badge', __('Our Essence')) }}

@if(config('site.about.mission'))

{{ config('site.about.mission_label', __('Our Mission')) }}

{{ config('site.about.mission') }}

@endif @if(config('site.about.vision'))

{{ config('site.about.vision_label', __('Our Vision')) }}

{{ config('site.about.vision') }}

@endif @if(config('site.about.values_text'))

{{ config('site.about.values_label', __('Our Values')) }}

{{ config('site.about.values_text') }}

@endif
@php $skills = config('site.about.skills', []); if (is_string($skills)) { $skills = json_decode($skills, true) ?? []; } @endphp @if(!empty($skills))

{{ config('site.about.skills_badge', __('Experience')) }}

{{ config('site.about.skills_heading', __('Our Capabilities')) }}

@foreach($skills as $skill)
{{ $skill['name'] ?? '' }} {{ $skill['value'] ?? '0' }}%
@endforeach
@endif
{{-- Counters --}} @php $counters = config('site.about.counters', []); if (is_string($counters)) { $counters = json_decode($counters, true) ?? []; } @endphp @if(!empty($counters))

{{ config('site.name') }}

{{ config('site.tagline', '') }}

{{ config('site.description', '') }}

@foreach($counters as $counter)
0 {{ $counter['label'] ?? '' }}
@endforeach
@endif {{-- Team --}} @if(isset($aboutTeam) && $aboutTeam->count() > 0)

{{ config('site.about.team_badge', __('Meet the Team')) }}

{{ config('site.about.team_heading', __('Our Team')) }}

@foreach($aboutTeam->take(3) as $member)
@if($member->photo)
{{ $member->name }}
@endif

{{ $member->name }}

{{ $member->position ?? '' }}
@if($member->bio)

{{ Str::limit(strip_tags($member->bio), 150) }}

@endif
@endforeach
@endif {{-- Contact split block --}}

{{ config('site.about.cta_eyebrow', __('Request a callback')) }}

{{ config('site.about.cta_heading', __('We will call you')) }}

{{ config('site.about.cta_subtitle', config('site.description', '')) }}

@csrf
{{ __('Success!') }} {{ __('Your message was sent successfully.') }}
{{ __('Error.') }} {{ __('Could not send the message.') }}

{{ config('site.about.contact_eyebrow', __('Talk to us')) }}

{{ config('site.about.contact_heading', __('Get in Touch')) }}

{{ config('site.about.contact_subtitle', config('site.description', '')) }}

@if(config('site.contact.phone')) @endif @if(config('site.contact.email')) @endif @if(config('site.contact.address'))

{{ config('site.contact.address') }}

@endif {{ config('site.about.contact_cta', __('Contact')) }}
@endsection