EliteDevs

Template Showcase: Nexus

A Animated, modern design for financial companies.

Professional & Animated Code

components/services.html

<!-- Services Section -->
<section id="services" class="py-20 bg-white">
  <div class="container mx-auto px-6">
    <div class="text-center mb-12 fade-in-up">
      <h2 class="text-4xl font-bold text-primary-dark">Our Core Services</h2>
    </div>
    <div class="grid md:grid-cols-3 gap-8">
      <!-- Service Card 1 -->
      <div class="service-card relative rounded-xl overflow-hidden p-8">
        <h3 class="text-2xl font-bold mb-4">Mergers & Acquisitions</h3>
        <p>Expert guidance through every stage of the M&A process.</p>
        <div class="absolute inset-0 p-8 overlay">
          <h3 class="text-2xl font-bold mb-4 text-accent-gold">
            Mergers & Acquisitions
          </h3>
          <p>Maximize value and minimize risk with our strategic advisory.</p>
        </div>
      </div>
      <!-- More service cards... -->
    </div>
  </div>
</section>