Our Services

// 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"; }