</style>
</head>
<body>
    <section class="py-16 bg-gray-50"> {/* Tailwind: bg-gray-50 is var(--light-gray-bg) */}
        <div class="container mx-auto px-6">
            {/* Added 'section-title-custom' for potential custom styling via CSS */}
            <h2 class="text-3xl font-bold text-center text-socma-secondary mb-12 section-title-custom">Versatile Solutions for Every Industry</h2>
            <p class="text-center text-gray-700 max-w-2xl mx-auto mb-10">
                SOCMA forklifts, ranging from compact 3-ton to heavy-duty 25-ton models, are designed for a wide array of applications across various sectors in the UAE.
            </p>
            <div class="grid sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6 text-center">
                {/* Added 'industry-card-custom' class to each card for custom hover effects and styling */}
                <div class="p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 industry-card-custom"> {/* Tailwind: bg-white is var(--card-bg) */}
                    <h4 class="font-semibold text-socma-secondary mb-2">Warehouses</h4>
                </div>
                <div class="p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 industry-card-custom">
                    <h4 class="font-semibold text-socma-secondary mb-2">Loading & Unloading Trucks</h4>
                </div>
                <div class="p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 industry-card-custom">
                    <h4 class="font-semibold text-socma-secondary mb-2">Construction Sites</h4>
                </div>
                <div class="p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 industry-card-custom">
                    <h4 class="font-semibold text-socma-secondary mb-2">Dockyards & Ports</h4>
                </div>
                <div class="p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 industry-card-custom">
                    <h4 class="font-semibold text-socma-secondary mb-2">Manufacturing Lines</h4>
                </div>
            </div>
        </div>
    </section>
</body>