Logo Design
We create unique, memorable logos that represent your brand identity effectively.
Photo 2
Brand Identity
Complete branding solutions, including business cards, letterheads, and more.
Photo 3
Web Design
Stunning website layouts with user-friendly interfaces to elevate your online presence.
Photo 4
Social Media Graphics
Creative visuals to increase engagement and build a strong social media presence.
Photo 5
Marketing Collateral
Brochures, flyers, banners, and more to communicate your message effectively.
Photo 6
Custom Illustrations
Original artwork tailored to your specific needs for a truly unique touch.
// Define the galleries for each menu
const galleries = {
'logo-gallery': [
'logo1.jpg',
'logo2.jpg',
'logo3.jpg',
'logo4.jpg',
],
'brand-gallery': [
'brand1.jpg',
'brand2.jpg',
'brand3.jpg',
'brand4.jpg',
],
'web-gallery': [
'web1.jpg',
'web2.jpg',
'web3.jpg',
'web4.jpg',
],
};
// Function to open a specific gallery
function openGallery(galleryId) {
const popup = document.getElementById("image-popup");
const popupGallery = document.getElementById("popup-gallery");
// Clear any previous images in the popup
popupGallery.innerHTML = "";
// Add new images to the popup based on the clicked gallery
galleries[galleryId].forEach((src) => {
const img = document.createElement("img");
img.src = src;
img.alt = "Gallery Image";
popupGallery.appendChild(img);
});
// Show the popup
popup.style.display = "block";
}
// Function to close the popup
function closePopup() {
const popup = document.getElementById("image-popup");
popup.style.display = "none";
}