FHC Groupe Sarl

Nos Clients Nous Font Confiance

Découvrez les entreprises et organisations qui ont choisi FHC pour accompagner leur développement et leur croissance professionnelle.

15+
Clients Actifs
8
Secteurs d'Activité
6
Régions du Bénin

Portfolio Clients

IHCP-CF
📍 Doutou
💼 Stylisme
Mode & Design
RIM SERVICES
📍 Cotonou
💼 Prestation de service
Services B2B
BANI GANSE FC
📍 Banikoara
💼 Activité sportive
Sport
AMEK
📍 Glokpossouhoue
💼 Éducation
Éducation
AMOUR OPH CETI
📍 Tota Dogbo, Couffo
💼 Importation de fourniture de bureau
Commerce
SOUMANA ABDOULBACR
📍 Gbégamey Ahito
💼 Achat et vente de matériels électriques
Électricité
BIOLIFE TECH SAS
📍 Abomey Calavi
💼 Conception d'application EPINE-A
Technologie
COMPLEXE SCOLAIRE AZALO
📍 Godomey
💼 Éducation
Éducation
COOL SERVICES
📍 Dogbo Zaphi
💼 Vente de fourniture
Commerce
GN COMMUNICATION ET MULTY SERVICES
📍 Dahoue, Tota
💼 Services vendus aux entités
Communication
GREEN HORSE Hôtel
📍 Akpakpa Sacré Coeur
💼 Hôtellerie, Restauration
Hôtellerie
La Saveur
📍 Dogbo-Dahoue
💼 Bar-Restauration, Service Traiteur
Restauration
Ste MICHEL DUDEDJIMI
📍 Abomey Calavi
💼 Éducation
Éducation
Le meilleur jus services
📍 Zogbadje
💼 Fabrication et vente de jus d'ananas
Agroalimentaire
function filterClients(category) { const cards = document.querySelectorAll('.client-card'); const buttons = document.querySelectorAll('.filter-btn'); // Update active button buttons.forEach(btn => btn.classList.remove('active')); event.target.classList.add('active'); // Filter cards with animation cards.forEach((card, index) => { if (category === 'all') { setTimeout(() => { card.style.display = 'block'; setTimeout(() => card.style.opacity = '1', 10); }, index * 50); } else { const cardCategory = card.getAttribute('data-category'); if (cardCategory === category) { setTimeout(() => { card.style.display = 'block'; setTimeout(() => card.style.opacity = '1', 10); }, index * 50); } else { card.style.opacity = '0'; setTimeout(() => card.style.display = 'none', 300); } } }); } // Add fade-in animation on scroll const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.style.opacity = '1'; entry.target.style.transform = 'translateY(0)'; } }); }, { threshold: 0.1 }); document.querySelectorAll('.client-card').forEach(card => { card.style.opacity = '0'; card.style.transform = 'translateY(20px)'; card.style.transition = 'opacity 0.5s ease, transform 0.5s ease'; observer.observe(card); });