<!--Start Service-->
<section class="service-section web-servic pad-tb" id="services">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading">
<span>Services We Provide</span>
<h2 class="mb30">Our Design & Development Services</h2>
</div>
</div>
</div>
<div class="row upset link-hover shape-num justify-content-center">
{% for index , category in categories %}
<div class="col-lg-3 col-sm-6 mt30 shape-loc wow fadeInUp" data-wow-delay="{{ 0.2 * index }}s">
<a href="{{ path('category' , {
slug: category.slug
}) }}" style="overflow: visible;">
<div class="s-block" data-tilt data-tilt-max="5" data-tilt-speed="1000">
{% for block in category.content.blocks %}
{% if block.type == "image" %}
<div class="s-card-icon">
<img src="{{ asset(block.data.file.url) }}" alt="{{ category.slug }}" class="img-fluid"/>
</div>
{% endif %}
{% endfor %}
<h4>{{ category.name }}</h4>
{% for block in category.content.blocks %}
{% if block.type == "paragraph" %}
<p>{{ block.data.text|length > 40 ? block.data.text|slice(0, 40) ~ '...' : block.data.text }}</p>
{% endif %}
{% endfor %}
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</section>
<!--End Service-->