Get In Touch

We run lean UK hubs in London and Essex, and we reply fast. Tell us what you need and we’ll route you to the right lead within one business day.

📧 Email

For general inquiries:

info@hcmarketingsolutions.co.uk

Candidate screening:

zahir@hcmarketingsolutions.co.uk

Leadership:

barry@hcmarketingsolutions.co.uk

📞 Phone

Main: +44 (0)20 4567 8900

Hours: Monday - Friday, 08:30–18:00 UK (GMT/BST)

🌍 Locations

London (City):
1 Poultry, EC2R 8EJ

Essex:
100 High Street, Chelmsford, CM1 1BE

Remote coverage across the UK & EU for partner teams.

🔗 Connect With Us

Follow us on social media for updates, tips, and opportunities:

LinkedIn | Twitter | Facebook | Instagram

Send us a Message

document.getElementById('contactForm').addEventListener('submit', async (e) => { e.preventDefault(); const responseMsg = document.getElementById('responseMessage'); const formData = { name: document.getElementById('name').value, email: document.getElementById('email').value, subject: document.getElementById('subject').value, type: document.getElementById('type').value, message: document.getElementById('message').value }; try { // Replace '/submit-contact' with your actual backend endpoint const response = await fetch('/submit-contact', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(formData) }); if (response.ok) { responseMsg.textContent = '✓ Message sent successfully! We\'ll get back to you soon.'; responseMsg.className = 'response-message success'; responseMsg.style.display = 'block'; document.getElementById('contactForm').reset(); } else { throw new Error('Failed to send'); } } catch (error) { responseMsg.textContent = '✗ Failed to send message. Please try again or email us directly.'; responseMsg.className = 'response-message error'; responseMsg.style.display = 'block'; } });