<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apex Chain Consulting - Driving Supply Chain Excellence</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lexend:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Custom Styles -->
<style>
body {
font-family: 'Inter', sans-serif;
color: #1a202c; /* Equivalent to Tailwind's gray-900 */
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Lexend', sans-serif;
font-weight: 600;
}
.hero-bg {
background-image: url('https://images.pexels.com/photos/4483610/pexels-photo-4483610.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
background-size: cover;
background-position: center;
}
.brand-blue {
color: #0033A0;
}
.bg-brand-blue {
background-color: #0033A0;
}
.btn-primary {
background-color: #0033A0;
color: #ffffff;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.btn-primary:hover {
background-color: #ffffff;
color: #0033A0;
border: 2px solid #0033A0;
}
.btn-secondary {
background-color: transparent;
color: #0033A0;
transition: all 0.3s ease;
border: 2px solid #0033A0;
}
.btn-secondary:hover {
background-color: #0033A0;
color: #ffffff;
}
.section-title-border {
content: '';
display: block;
width: 60px;
height: 3px;
background-color: #0033A0;
margin-top: 0.5rem;
}
</style>
</head>
<body class="bg-gray-50 antialiased">
<!-- Header -->
<header class="bg-white/80 backdrop-blur-lg sticky top-0 z-50 shadow-sm border-b border-gray-200">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<a href="#" class="text-2xl font-bold brand-blue">
ApexChain Consulting
</a>
<div class="hidden md:flex items-center space-x-8 font-medium text-gray-600">
<a href="#about" class="hover:text-blue-600 transition-colors">About</a>
<a href="#services" class="hover:text-blue-600 transition-colors">Services</a>
<a href="#impact" class="hover:text-blue-600 transition-colors">Impact</a>
<a href="#contact" class="hover:text-blue-600 transition-colors">Contact</a>
</div>
<button class="md:hidden">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path></svg>
</button>
</nav>
</header>
<main>
<!-- Hero Section -->
<section class="hero-bg relative text-white">
<div class="absolute inset-0 bg-black/60"></div>
<div class="container mx-auto px-6 py-32 md:py-48 relative z-10">
<div class="max-w-3xl">
<h1 class="text-4xl md:text-6xl font-bold leading-tight mb-4">Transforming Global Supply Chains.</h1>
<p class="text-lg md:text-xl text-gray-200 mb-8">We deliver data-driven insights and strategic solutions to build resilient, agile, and sustainable supply chains for the future.</p>
<a href="#services" class="px-8 py-3 rounded-md font-semibold btn-primary text-lg">Explore Our Expertise</a>
</div>
</div>
</section>
<!-- About Us / Intro Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold text-gray-800">Your Strategic Partner in Supply Chain Optimization</h2>
<div class="section-title-border"></div>
<p class="mt-6 text-gray-600 leading-relaxed">
ApexChain Consulting operates at the intersection of strategy, technology, and execution. In today's volatile market, a robust supply chain is not just a competitive advantage—it's a necessity. Our team of industry veterans leverages advanced analytics and deep domain expertise to solve your most complex logistical challenges, from procurement to final-mile delivery. We are committed to creating tangible value and driving sustainable growth for our clients.
</p>
</div>
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-100 p-6 rounded-lg text-center">
<div class="text-4xl font-bold brand-blue">15%+</div>
<p class="text-gray-600 mt-2">Average Reduction in Operational Costs</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg text-center">
<div class="text-4xl font-bold brand-blue">20%+</div>
<p class="text-gray-600 mt-2">Improvement in Inventory Efficiency</p>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20">
<div class="container mx-auto px-6">
<div class="text-left mb-12 max-w-2xl">
<h2 class="text-3xl font-bold text-gray-800">Core Service Offerings</h2>
<div class="section-title-border -ml-0"></div>
<p class="mt-4 text-gray-600">We provide end-to-end consulting to redesign and fortify your supply chain operations.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Service Card 1 -->
<div class="bg-white p-8 rounded-lg shadow-sm border border-gray-200 hover:shadow-lg hover:-translate-y-1 transition-all duration-300">
<h3 class="text-xl font-semibold mb-3 brand-blue">Strategy & Network Design</h3>
<p class="text-gray-600 leading-relaxed">Optimize your network footprint and strategic objectives for maximum efficiency and resilience.</p>
</div>
<!-- Service Card 2 -->
<div class="bg-white p-8 rounded-lg shadow-sm border border-gray-200 hover:shadow-lg hover:-translate-y-1 transition-all duration-300">
<h3 class="text-xl font-semibold mb-3 brand-blue">Procurement Optimization</h3>
<p class="text-gray-600 leading-relaxed">Enhance sourcing strategies and supplier relationships to reduce costs and mitigate risks.</p>
</div>
<!-- Service Card 3 -->
<div class="bg-white p-8 rounded-lg shadow-sm border border-gray-200 hover:shadow-lg hover:-translate-y-1 transition-all duration-300">
<h3 class="text-xl font-semibold mb-3 brand-blue">Logistics & Distribution</h3>
<p class="text-gray-600 leading-relaxed">Leverage data analytics to streamline transportation, warehousing, and fulfillment.</p>
</div>
<!-- Service Card 4 -->
<div class="bg-white p-8 rounded-lg shadow-sm border border-gray-200 hover:shadow-lg hover:-translate-y-1 transition-all duration-300">
<h3 class="text-xl font-semibold mb-3 brand-blue">Digital Transformation</h3>
<p class="text-gray-600 leading-relaxed">Implement cutting-edge technologies like AI, IoT, and blockchain for a smarter supply chain.</p>
</div>
</div>
</div>
</section>
<!-- Impact / CTA Section -->
<section id="impact" class="py-20 bg-brand-blue text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold">Ready to Build a World-Class Supply Chain?</h2>
<p class="max-w-2xl mx-auto mt-4 text-gray-200">
Let's discuss how ApexChain can help you navigate complexity and unlock new levels of performance and value.
</p>
<a href="#contact" class="mt-8 inline-block px-8 py-3 rounded-md font-semibold bg-white text-blue-800 hover:bg-gray-200 transition-colors text-lg">Schedule a Consultation</a>
</div>
</section>
</main>
<!-- Footer -->
<footer id="contact" class="bg-gray-800 text-gray-300 py-12">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-3 gap-8">
<div>
<h3 class="text-xl font-bold text-white mb-2">ApexChain Consulting</h3>
<p class="text-gray-400">Driving Supply Chain Excellence.</p>
</div>
<div>
<h4 class="text-lg font-semibold text-white mb-2">Contact Us</h4>
<a href="mailto:contact@apexchain.com" class="block hover:text-white transition-colors">contact@apexchain.com</a>
<a href="tel:+1234567890" class="block hover:text-white transition-colors">+1 (234) 567-890</a>
</div>
<div>
<h4 class="text-lg font-semibold text-white mb-2">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="hover:text-white transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle></svg>
</a>
<a href="#" class="hover:text-white transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path></svg>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400">
<p>© 2024 ApexChain Consulting. All Rights Reserved.</p>
</div>
</div>
</footer>
<!-- Zapier Chatbot Embed -->
<script async type='module' src='https://interfaces.zapier.com/assets/web-components/zapier-interfaces/zapier-interfaces.esm.js'></script>
<zapier-interfaces-chatbot-embed is-popup='true' chatbot-id='cmgcec5qx003yyzyps9j2hir6'></zapier-interfaces-chatbot-embed>
</body>
</html>