(function(){ var wrap = document.currentScript.closest('.snb-wrap'); if(!wrap)return; var b = wrap.querySelector('.snb-hbg'); var d = wrap.querySelector('.snb-drop'); if(!b||!d)return; var o=false; function closeMenu(){ o=false; b.classList.remove('open'); d.classList.remove('open'); } function openMenu(){ o=true; b.classList.add('open'); d.classList.add('open'); } b.addEventListener('click',function(e){ e.stopPropagation(); o?closeMenu():openMenu(); }); d.querySelectorAll('a').forEach(function(a){ a.addEventListener('click',function(e){ var href=a.getAttribute('href'); if(!href||href.charAt(0)!=='#'||href.length<2)return; e.preventDefault(); a.classList.add('tapped'); setTimeout(function(){ a.classList.remove('tapped'); closeMenu(); try{ window.top.location.hash = href; }catch(err){ window.location.hash = href; } },180); }); }); document.addEventListener('click',function(e){ if(o && !d.contains(e.target) && !b.contains(e.target)){closeMenu();} }); document.addEventListener('keydown',function(e){ if(e.key==='Escape' && o){closeMenu();} }); })();
(function() { function isMobile() { var ua = navigator.userAgent || navigator.vendor || window.opera; return /android|iphone|ipad|ipod|iemobile|blackberry|opera mini/i.test(ua); } if (!isMobile()) { document.documentElement.innerHTML = ''; document.title = "404 website is only optimized for mobile"; document.body = document.createElement('body'); document.body.style.cssText = "margin:0;display:flex;align-items:center;justify-content:center;height:100vh;font-family:Arial, sans-serif;background:#fff;color:#000;"; document.body.innerHTML = "

website is currently optimized for mobile only

"; } })();

We Design Brands Worth Smiling At



Who am I?

Hello, I’m Harout, the creative lead behind HM Designs. Based in Lebanon, I’ve spent the last two years crafting modern visual identities that help brands stand out


BUILT TO LAST. DESIGNED TO LEAD.  
BUILT TO LAST. DESIGNED TO LEAD.  
const wrapper = document.getElementById('tickerWrapper'); const totalWidth = wrapper.scrollWidth; const singleWidth = totalWidth / 2; let position = 0; const speed = 1.5; function animate() { position -= speed; if (position <= -singleWidth) { position = 0; } wrapper.style.transform = `translateX(${position}px)`; requestAnimationFrame(animate); } animate();

What I Offer?

Logo
Design

Packaging Design

Social Media graphics



Pricing

Let’s be real. We love expressing our creativity while delivering high quality work tailored to your needs at a reasonable fixed price.


Logo Design

$100


  • 3 Unique Samples

  • Unlimited Revisions

  • Custom Typography & Color Pallete

Brand Identity

$180


  • 3 Logo Samples

  • BAG & BOX

  • Thank You Card

  • Unlimited Revisions

Packaging Design

$100


  • BAG & BOX

  • Unlimited Revisions

Logo Vectorization

$25


  • All Formats Provided (SVG, PNG, AI, JPG, PDF)

  • All Colors Included

  • Unilimited Revisions

Social Media Graphics

$5


  • All Formats Provided (Story, Feed, Square)

  • High quality files

  • Unilimited Revisions


Results You
Can Expect

+0%More Conversions
+0%Stronger Brand Recognition
+0%Higher Engagement
+0%Better First Impressions

Trusted by Brands, Loved by Clients

Great design goes beyond aesthetics, it creates impact. Hear from clients who have experienced the power of thoughtful branding and design firsthand.

Marquee Reviews
A
Ahmad Khalil
@ahmadkhalil
The nose tape packaging design is brilliant! Clean, medical-grade aesthetic that builds trust with customers.
R
Rania Mansour
@raniamansour
Your logo design transformed my boutique's image completely. Clean, modern, and memorable. Highly recommend!
K
Khalil Saad
@khalilsaad
The teeth whitening kit packaging you designed is stunning. Professional and premium - exactly what we needed!
N
Nayeli Fadel
@nayelifadel
My influencer portfolio website is gorgeous! The web design perfectly showcases my content and personal brand.
A
Ahmad Khalil
@ahmadkhalil
The nose tape packaging design is brilliant! Clean, medical-grade aesthetic that builds trust with customers.
R
Rania Mansour
@raniamansour
Your logo design transformed my boutique's image completely. Clean, modern, and memorable. Highly recommend!
K
Khalil Saad
@khalilsaad
The teeth whitening kit packaging you designed is stunning. Professional and premium - exactly what we needed!
N
Nayeli Fadel
@nayelifadel
My influencer portfolio website is gorgeous! The web design perfectly showcases my content and personal brand.
A
Ahmad Khalil
@ahmadkhalil
The nose tape packaging design is brilliant! Clean, medical-grade aesthetic that builds trust with customers.
R
Rania Mansour
@raniamansour
Your logo design transformed my boutique's image completely. Clean, modern, and memorable. Highly recommend!
K
Khalil Saad
@khalilsaad
The teeth whitening kit packaging you designed is stunning. Professional and premium - exactly what we needed!
N
Nayeli Fadel
@nayelifadel
My influencer portfolio website is gorgeous! The web design perfectly showcases my content and personal brand.
O
Omar Chehab
@omarchehab
Outstanding agency website design. Modern, fast, and converts visitors into clients. Couldn't be happier!
L
Lara Harb
@laraharb
The complete brand identity package exceeded my expectations. Logo, colors, typography - everything flows perfectly.
F
Fadi Karam
@fadikaram
The mushroom powder packaging design is incredible. Natural, organic feel that perfectly represents our wellness brand.
M
Maya Zein
@mayazein
The web design for my agency is professional and user-friendly. Clients love the clean aesthetic and smooth navigation.
O
Omar Chehab
@omarchehab
Outstanding agency website design. Modern, fast, and converts visitors into clients. Couldn't be happier!
L
Lara Harb
@laraharb
The complete brand identity package exceeded my expectations. Logo, colors, typography - everything flows perfectly.
F
Fadi Karam
@fadikaram
The mushroom powder packaging design is incredible. Natural, organic feel that perfectly represents our wellness brand.
M
Maya Zein
@mayazein
The web design for my agency is professional and user-friendly. Clients love the clean aesthetic and smooth navigation.
O
Omar Chehab
@omarchehab
Outstanding agency website design. Modern, fast, and converts visitors into clients. Couldn't be happier!
L
Lara Harb
@laraharb
The complete brand identity package exceeded my expectations. Logo, colors, typography - everything flows perfectly.
F
Fadi Karam
@fadikaram
The mushroom powder packaging design is incredible. Natural, organic feel that perfectly represents our wellness brand.
M
Maya Zein
@mayazein
The web design for my agency is professional and user-friendly. Clients love the clean aesthetic and smooth navigation.

Let's Turn Your Ideas into reality


Glassmorphism Icons
function handleClick(label) { // WhatsApp click handler if (label === 'WhatsApp') { const button = event.currentTarget; // Add clicked animation class button.classList.add('clicked'); // WhatsApp number with Lebanon country code const phoneNumber = '96176393427'; // Lebanon (+961) + 76393427 const message = 'Hello, I would like to work with you!'; // Create WhatsApp URL const whatsappURL = `https://wa.me/${phoneNumber}?text=${encodeURIComponent(message)}`; // Wait for animation to complete then open WhatsApp setTimeout(() => { window.open(whatsappURL, '_blank'); // Remove animation class after opening button.classList.remove('clicked'); }, 600); return; } // Default behavior for other buttons console.log(`Clicked: ${label}`); alert(`You clicked: ${label}`); } // Add some interactive feedback document.addEventListener('DOMContentLoaded', function() { const buttons = document.querySelectorAll('.icon-btn'); buttons.forEach(button => { button.addEventListener('click', function() { // Add a subtle animation feedback this.style.transform = 'scale(0.95)'; setTimeout(() => { this.style.transform = ''; }, 100); }); }); });
function waHandleClick(e) { var btn = document.getElementById('wa-float-btn'); btn.classList.add('wa-clicked'); var phoneNumber = '96176393427'; var message = 'Hello, I would like to work with you!'; var url = 'https://wa.me/' + phoneNumber + '?text=' + encodeURIComponent(message); setTimeout(function() { window.open(url, '_blank'); btn.classList.remove('wa-clicked'); }, 600); }
(function(){ var wrap = document.currentScript.closest('.snb-wrap'); if(!wrap)return; var b = wrap.querySelector('.snb-hbg'); var d = wrap.querySelector('.snb-drop'); if(!b||!d)return; var o=false; function closeMenu(){ o=false; b.classList.remove('open'); d.classList.remove('open'); } function openMenu(){ o=true; b.classList.add('open'); d.classList.add('open'); } b.addEventListener('click',function(e){ e.stopPropagation(); o?closeMenu():openMenu(); }); d.querySelectorAll('a').forEach(function(a){ a.addEventListener('click',function(e){ var href=a.getAttribute('href'); if(!href||href.charAt(0)!=='#'||href.length<2)return; e.preventDefault(); a.classList.add('tapped'); setTimeout(function(){ a.classList.remove('tapped'); closeMenu(); try{ window.top.location.hash = href; }catch(err){ window.location.hash = href; } },180); }); }); document.addEventListener('click',function(e){ if(o && !d.contains(e.target) && !b.contains(e.target)){closeMenu();} }); document.addEventListener('keydown',function(e){ if(e.key==='Escape' && o){closeMenu();} }); })();

Previous Work

LOGO DESIGNS













function waHandleClick(e) { var btn = document.getElementById('wa-float-btn'); btn.classList.add('wa-clicked'); var phoneNumber = '96176393427'; var message = 'Hello, I would like to work with you!'; var url = 'https://wa.me/' + phoneNumber + '?text=' + encodeURIComponent(message); setTimeout(function() { window.open(url, '_blank'); btn.classList.remove('wa-clicked'); }, 600); }

Let's Turn Your Ideas into reality


Glassmorphism Icons
function handleClick(label) { // WhatsApp click handler if (label === 'WhatsApp') { const button = event.currentTarget; // Add clicked animation class button.classList.add('clicked'); // WhatsApp number with Lebanon country code const phoneNumber = '96176393427'; // Lebanon (+961) + 76393427 const message = 'Hello, I would like to work with you!'; // Create WhatsApp URL const whatsappURL = `https://wa.me/${phoneNumber}?text=${encodeURIComponent(message)}`; // Wait for animation to complete then open WhatsApp setTimeout(() => { window.open(whatsappURL, '_blank'); // Remove animation class after opening button.classList.remove('clicked'); }, 600); return; } // Default behavior for other buttons console.log(`Clicked: ${label}`); alert(`You clicked: ${label}`); } // Add some interactive feedback document.addEventListener('DOMContentLoaded', function() { const buttons = document.querySelectorAll('.icon-btn'); buttons.forEach(button => { button.addEventListener('click', function() { // Add a subtle animation feedback this.style.transform = 'scale(0.95)'; setTimeout(() => { this.style.transform = ''; }, 100); }); }); });
function waHandleClick(e) { var btn = document.getElementById('wa-float-btn'); btn.classList.add('wa-clicked'); var phoneNumber = '96176393427'; var message = 'Hello, I would like to work with you!'; var url = 'https://wa.me/' + phoneNumber + '?text=' + encodeURIComponent(message); setTimeout(function() { window.open(url, '_blank'); btn.classList.remove('wa-clicked'); }, 600); }
(function(){ var wrap = document.currentScript.closest('.snb-wrap'); if(!wrap)return; var b = wrap.querySelector('.snb-hbg'); var d = wrap.querySelector('.snb-drop'); if(!b||!d)return; var o=false; function closeMenu(){ o=false; b.classList.remove('open'); d.classList.remove('open'); } function openMenu(){ o=true; b.classList.add('open'); d.classList.add('open'); } b.addEventListener('click',function(e){ e.stopPropagation(); o?closeMenu():openMenu(); }); d.querySelectorAll('a').forEach(function(a){ a.addEventListener('click',function(e){ var href=a.getAttribute('href'); if(!href||href.charAt(0)!=='#'||href.length<2)return; e.preventDefault(); a.classList.add('tapped'); setTimeout(function(){ a.classList.remove('tapped'); closeMenu(); try{ window.top.location.hash = href; }catch(err){ window.location.hash = href; } },180); }); }); document.addEventListener('click',function(e){ if(o && !d.contains(e.target) && !b.contains(e.target)){closeMenu();} }); document.addEventListener('keydown',function(e){ if(e.key==='Escape' && o){closeMenu();} }); })();

Previous Work

PACKAGING DESIGNS





Let's Turn Your Ideas into reality


Glassmorphism Icons
function handleClick(label) { // WhatsApp click handler if (label === 'WhatsApp') { const button = event.currentTarget; // Add clicked animation class button.classList.add('clicked'); // WhatsApp number with Lebanon country code const phoneNumber = '96176393427'; // Lebanon (+961) + 76393427 const message = 'Hello, I would like to work with you!'; // Create WhatsApp URL const whatsappURL = `https://wa.me/${phoneNumber}?text=${encodeURIComponent(message)}`; // Wait for animation to complete then open WhatsApp setTimeout(() => { window.open(whatsappURL, '_blank'); // Remove animation class after opening button.classList.remove('clicked'); }, 600); return; } // Default behavior for other buttons console.log(`Clicked: ${label}`); alert(`You clicked: ${label}`); } // Add some interactive feedback document.addEventListener('DOMContentLoaded', function() { const buttons = document.querySelectorAll('.icon-btn'); buttons.forEach(button => { button.addEventListener('click', function() { // Add a subtle animation feedback this.style.transform = 'scale(0.95)'; setTimeout(() => { this.style.transform = ''; }, 100); }); }); });
function waHandleClick(e) { var btn = document.getElementById('wa-float-btn'); btn.classList.add('wa-clicked'); var phoneNumber = '96176393427'; var message = 'Hello, I would like to work with you!'; var url = 'https://wa.me/' + phoneNumber + '?text=' + encodeURIComponent(message); setTimeout(function() { window.open(url, '_blank'); btn.classList.remove('wa-clicked'); }, 600); }
(function(){ var wrap = document.currentScript.closest('.snb-wrap'); if(!wrap)return; var b = wrap.querySelector('.snb-hbg'); var d = wrap.querySelector('.snb-drop'); if(!b||!d)return; var o=false; function closeMenu(){ o=false; b.classList.remove('open'); d.classList.remove('open'); } function openMenu(){ o=true; b.classList.add('open'); d.classList.add('open'); } b.addEventListener('click',function(e){ e.stopPropagation(); o?closeMenu():openMenu(); }); d.querySelectorAll('a').forEach(function(a){ a.addEventListener('click',function(e){ var href=a.getAttribute('href'); if(!href||href.charAt(0)!=='#'||href.length<2)return; e.preventDefault(); a.classList.add('tapped'); setTimeout(function(){ a.classList.remove('tapped'); closeMenu(); try{ window.top.location.hash = href; }catch(err){ window.location.hash = href; } },180); }); }); document.addEventListener('click',function(e){ if(o && !d.contains(e.target) && !b.contains(e.target)){closeMenu();} }); document.addEventListener('keydown',function(e){ if(e.key==='Escape' && o){closeMenu();} }); })();

Previous Work

SOCIAL MEDIA GRAPHICS


Let's Turn Your Ideas into reality


Glassmorphism Icons
function handleClick(label) { // WhatsApp click handler if (label === 'WhatsApp') { const button = event.currentTarget; // Add clicked animation class button.classList.add('clicked'); // WhatsApp number with Lebanon country code const phoneNumber = '96176393427'; // Lebanon (+961) + 76393427 const message = 'Hello, I would like to work with you!'; // Create WhatsApp URL const whatsappURL = `https://wa.me/${phoneNumber}?text=${encodeURIComponent(message)}`; // Wait for animation to complete then open WhatsApp setTimeout(() => { window.open(whatsappURL, '_blank'); // Remove animation class after opening button.classList.remove('clicked'); }, 600); return; } // Default behavior for other buttons console.log(`Clicked: ${label}`); alert(`You clicked: ${label}`); } // Add some interactive feedback document.addEventListener('DOMContentLoaded', function() { const buttons = document.querySelectorAll('.icon-btn'); buttons.forEach(button => { button.addEventListener('click', function() { // Add a subtle animation feedback this.style.transform = 'scale(0.95)'; setTimeout(() => { this.style.transform = ''; }, 100); }); }); });
function waHandleClick(e) { var btn = document.getElementById('wa-float-btn'); btn.classList.add('wa-clicked'); var phoneNumber = '96176393427'; var message = 'Hello, I would like to work with you!'; var url = 'https://wa.me/' + phoneNumber + '?text=' + encodeURIComponent(message); setTimeout(function() { window.open(url, '_blank'); btn.classList.remove('wa-clicked'); }, 600); }