@extends('layouts.public') @section('title', $content['seo']['title'] ?? ('Services - ' . config('app.name'))) @section('meta_description', $content['seo']['description'] ?? 'Explore our complete study abroad services from admission strategy to post-admission support.') @push('styles') @vite('resources/css/services.css') @endpush @section('content')

@php $title = $content['hero']['title'] ?? ''; $highlight = $content['hero']['highlight'] ?? ''; @endphp {!! str_replace($highlight, '' . e($highlight) . '', e($title)) !!}

{{ $content['hero']['text'] ?? '' }}

Services hero

{{ $content['offer']['title'] ?? 'What we' }} {{ $content['offer']['highlight'] ?? '' }}

{{ $content['offer']['text'] ?? '' }}

@foreach(($content['services'] ?? []) as $index => $service)
@php $img = $service['image'] ?? ''; @endphp @if($img)
{{ $service['title'] ?? '' }}
@else
{{ str_pad((string)($index + 1), 2, '0', STR_PAD_LEFT) }}
@endif
{{ str_pad((string)($index + 1), 2, '0', STR_PAD_LEFT) }}

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

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

@endforeach

{{ $content['final_cta']['title'] ?? '' }}

{{ $content['final_cta']['text'] ?? '' }}

Final CTA
@endsection