Categories
Tailwind css services or features section
This services / features tailwind CSS snippet design employs a clean and modern layout, utilizing grid structures for organizing content. The section begins with a clear heading hierarchy, ensuring easy readability and navigation for users. The use of contrasting colors, such as indigo for headings and slate for body text, enhances visual interest and readability. Each feature is represented within a card-like container, distinguished by a shadow effect on hover for added interactivity. The cards are evenly spaced using Tailwind CSS utility classes, ensuring a balanced and visually pleasing presentation across different screen sizes.
<!-- Start Section-->
<section class="relative overflow-hidden">
<div class="sm:p-4 lg:p-11 xl:p-20 2xl:p-52 relative">
<div class="grid grid-cols-1 pb-8 text-center">
<h6 class="text-indigo-600 text-sm font-bold uppercase mb-2">
Features
</h6>
<h3
class="mb-4 md:text-3xl md:leading-normal text-2xl leading-normal font-semibold"
>
What We Offer
</h3>
<p class="text-slate-400 max-w-xl mx-auto">
Start exploring Creative Toolbox, the ultimate online suite that
equips you with everything you need to unleash your creativity,
collaborate seamlessly, and bring your ideas to life.
</p>
</div>
<!--end grid-->
<div class="grid grid-cols-1 xl:grid-cols-3 mt-8 gap-[30px]">
<div
class="group p-6 md:px-4 rounded-lg shadow hover:shadow-md bg-white text-center duration-500"
>
<div
class="w-16 h-16 bg-indigo-600/5 text-indigo-600 rounded-lg text-2xl flex align-middle justify-center items-center shadow-sm mx-auto"
>
<i class="fas fa-paint-brush"></i>
</div>
<div class="mt-7">
<a
href="page-services.html"
class="title h5 text-lg font-medium hover:text-indigo-600"
>Design & Branding</a
>
<p class="text-slate-400 mt-3">
Utilize our powerful design tools to craft stunning visuals and
build a memorable brand identity.
</p>
<div class="mt-5">
<a
href=""
class="relative inline-block font-semibold tracking-wide align-middle text-base text-center border-none after:content-[''] after:absolute after:h-px after:w-0 hover:after:w-full after:end-0 hover:after:end-auto after:bottom-0 after:start-0 after:duration-500 text-indigo-600 hover:text-indigo-600 after:bg-indigo-600 duration-500 ease-in-out"
>Learn More <i class="fas fa-arrow-right"></i
></a>
</div>
</div>
</div>
<!--end feature content-->
<div
class="group p-6 md:px-4 rounded-lg shadow hover:shadow-md bg-white text-center duration-500"
>
<div
class="w-16 h-16 bg-indigo-600/5 text-indigo-600 rounded-lg text-2xl flex align-middle justify-center items-center shadow-sm mx-auto"
>
<i class="fas fa-code"></i>
</div>
<div class="mt-7">
<a
href="page-services.html"
class="title h5 text-lg font-medium hover:text-indigo-600"
>Development Tools</a
>
<p class="text-slate-400 mt-3">
Empower your development process with our comprehensive set of
coding and debugging utilities.
</p>
<div class="mt-5">
<a
href=""
class="relative inline-block font-semibold tracking-wide align-middle text-base text-center border-none after:content-[''] after:absolute after:h-px after:w-0 hover:after:w-full after:end-0 hover:after:end-auto after:bottom-0 after:start-0 after:duration-500 text-indigo-600 hover:text-indigo-600 after:bg-indigo-600 duration-500 ease-in-out"
>Learn More <i class="fas fa-arrow-right"></i
></a>
</div>
</div>
</div>
<!--end feature content-->
<div
class="group p-6 md:px-4 rounded-lg shadow hover:shadow-md bg-white text-center duration-500"
>
<div
class="w-16 h-16 bg-indigo-600/5 text-indigo-600 rounded-lg text-2xl flex align-middle justify-center items-center shadow-sm mx-auto"
>
<i class="fas fa-users"></i>
</div>
<div class="mt-7">
<a
href="page-services.html"
class="title h5 text-lg font-medium hover:text-indigo-600"
>Collaboration Suite</a
>
<p class="text-slate-400 mt-3">
Foster teamwork and creativity with our collaborative tools
designed for seamless communication and project management.
</p>
<div class="mt-5">
<a
href=""
class="relative inline-block font-semibold tracking-wide align-middle text-base text-center border-none after:content-[''] after:absolute after:h-px after:w-0 hover:after:w-full after:end-0 hover:after:end-auto after:bottom-0 after:start-0 after:duration-500 text-indigo-600 hover:text-indigo-600 after:bg-indigo-600 duration-500 ease-in-out"
>Learn More <i class="fas fa-arrow-right"></i
></a>
</div>
</div>
</div>
<!--end feature content-->
</div>
</div>
<!--end container-->
</section>