@php
$h3animations = ['fadeInDown', 'lightSpeedIn', 'slideInUp'];
$divanimations = ['fadeInUp', 'slideInUp', 'fadeInRight'];
$buttonNames = ['Find out More', 'View Our Success Stories', 'Find out More', 'Read our Blogs'];
$buttonLinks = [route('contact'), route('success_stories'), route('courses'), route('blogs')];
@endphp
@foreach ($highlights as $key => $highlight)
@php
$h3animation = $h3animations[$key % count($h3animations)];
$divanimation = $divanimations[$key % count($divanimations)];
$buttonName = $buttonNames[$key % count($buttonNames)];
$buttonLink = $buttonLinks[$key % count($buttonLinks)];
@endphp
{{$highlight->title}}
{{$highlight->description}}
@endforeach