@props([ 'title' => 'Service Title', 'description' => 'Brief description of the service offered.', 'iconSvg' => null, // Pass full SVG string or path to an icon ])
merge(['class' => 'bg-gray-50 dark:bg-gray-800 p-8 rounded-xl shadow-lg hover:shadow-2xl transition-shadow duration-300 transform hover:-translate-y-1']) }}> @if($iconSvg)
{!! $iconSvg !!} {{-- Make sure $iconSvg is safe if it's dynamic --}}
@endif

{{ $title }}

{{ $description }}

{{-- You could add a "Learn More" link here if services have detail pages --}}