<?php
$page_title = "Workforce Outsourcing";
include 'includes/header.php';
?>

<section class="bg-brand-blue py-20 text-white relative overflow-hidden">
    <div class="absolute inset-0 opacity-10 bg-[url('https://www.transparenttextures.com/patterns/cubes.png')]"></div>
    <div class="container mx-auto px-6 text-center relative z-10">
        <h1 class="text-4xl md:text-5xl font-bold mb-4">Workforce Outsourcing</h1>
        <p class="text-xl text-blue-200 max-w-2xl mx-auto">Flexible staffing solutions to scale your business without the liability.</p>
    </div>
</section>

<section class="py-16 bg-white">
    <div class="container mx-auto px-6 grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
        <div>
            <h4 class="text-blue-600 font-bold uppercase text-sm mb-2">Contract Staffing & Payroll</h4>
            <h2 class="text-3xl font-bold text-gray-900 mb-6">Agility for Modern Business</h2>
            <p class="text-gray-600 leading-relaxed mb-6">
                Business needs fluctuate. Whether you need temporary staff for a peak season, a specific project, or to cover employee leave, our Workforce Outsourcing solution gives you instant access to talent without increasing your permanent headcount.
            </p>
            <p class="text-gray-600 leading-relaxed mb-6">
                Calligraph takes the employership liability. We handle the <strong>Payroll, PF, ESIC, Insurance, and Compliance</strong>, while the employee works under your supervision.
            </p>
            
            <div class="grid grid-cols-2 gap-4 mt-8">
                <div class="bg-gray-50 p-4 rounded border-l-4 border-green-500">
                    <span class="block font-bold text-gray-900">Zero Liability</span>
                    <span class="text-xs text-gray-500">We manage legal risks</span>
                </div>
                <div class="bg-gray-50 p-4 rounded border-l-4 border-blue-500">
                    <span class="block font-bold text-gray-900">Instant Scale</span>
                    <span class="text-xs text-gray-500">Deploy staff in days</span>
                </div>
            </div>
        </div>
        <div>
            <img src="https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Team Collaboration" class="rounded-xl shadow-lg">
        </div>
    </div>
</section>

<section class="py-16 bg-gray-50">
    <div class="container mx-auto px-6">
        <div class="text-center mb-12">
            <h2 class="text-3xl font-bold text-gray-900">Ideal For</h2>
        </div>
        <div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
            <div class="bg-white p-8 rounded-lg shadow-sm">
                <i class="fas fa-industry text-4xl text-blue-900 mb-4"></i>
                <h3 class="font-bold text-lg">Manufacturing</h3>
                <p class="text-gray-600 text-sm mt-2">Shop floor supervisors, quality inspectors, and technical operators.</p>
            </div>
            <div class="bg-white p-8 rounded-lg shadow-sm">
                <i class="fas fa-truck-loading text-4xl text-blue-900 mb-4"></i>
                <h3 class="font-bold text-lg">Logistics & Retail</h3>
                <p class="text-gray-600 text-sm mt-2">Field sales, delivery executives, and warehouse staff.</p>
            </div>
            <div class="bg-white p-8 rounded-lg shadow-sm">
                <i class="fas fa-headset text-4xl text-blue-900 mb-4"></i>
                <h3 class="font-bold text-lg">IT & Support</h3>
                <p class="text-gray-600 text-sm mt-2">L1 Support engineers, helpdesk staff, and project consultants.</p>
            </div>
        </div>
    </div>
</section>

<section class="py-12 bg-blue-900 text-white text-center">
    <div class="container mx-auto px-6">
        <h2 class="text-2xl font-bold mb-4">Get a Staffing Quote</h2>
        <p class="mb-8 text-blue-200">Tell us your volume and role requirements.</p>
        <a href="index.php#contact" class="bg-white text-blue-900 px-8 py-3 rounded-lg font-bold hover:bg-gray-100 transition">Contact Us</a>
    </div>
</section>

<?php include 'includes/footer.php'; ?>