@php $values = [ [ 'id' => 1, 'title' => 'Integrity', 'description' => 'Upholding the highest standards of ethical conduct in all our engagements.', 'icon' => '', // Represents integrity ], [ 'id' => 2, 'title' => 'Excellence', 'description' => 'Delivering high-quality, strategic insights and practical solutions.', 'icon' => '', // Represents excellence ], [ 'id' => 3, 'title' => 'Innovation', 'description' => 'Developing creative and sustainable strategies to address complex challenges.', 'icon' => '', // Represents innovation ], [ 'id' => 4, 'title' => 'Social Impact', 'description' => 'Ensuring our work contributes positively to society and business sustainability.', 'icon' => '', // Represents social impact ], ]; @endphp Our core values Building Stronger Boards, Responsible Leadership, and Sustainable Organisations @foreach ($values as $value) {!! $value['icon'] !!} {{ $value['title'] }} {{ $value['description'] }} @endforeach