Our Project Gallery

45+
Years Experience
1000+
Projects Completed
152
Gallery Photos
7
Emirates Covered

Need a Tent, Shade or Labour Rest Area Solution?

Contact Al Mumtaz Tents for a free consultation and competitive quote. Rental and sale available across all 7 Emirates and GCC.

/* ── Lightbox ── */ baguetteBox.run('.tz-gallery', { animation: 'fadeIn', captions: function(element) { return element.querySelector('img').alt; } }); /* ── Filter ── */ var filterBtns = document.querySelectorAll('.gal-filter-btn'); var galleryItems = document.querySelectorAll('#galGrid .gal-item'); var countEl = document.getElementById('visibleCount'); var noResults = document.getElementById('galNoResults'); filterBtns.forEach(function(btn) { btn.addEventListener('click', function() { /* Active state */ filterBtns.forEach(function(b) { b.classList.remove('active'); }); this.classList.add('active'); var filter = this.getAttribute('data-filter'); var visible = 0; var delay = 0; galleryItems.forEach(function(item) { var match = (filter === 'all' || item.getAttribute('data-category') === filter); if (match) { item.classList.remove('hidden'); item.style.animationDelay = (delay * 30) + 'ms'; delay++; visible++; } else { item.classList.add('hidden'); item.style.animationDelay = '0ms'; } }); countEl.textContent = visible; noResults.style.display = (visible === 0) ? 'block' : 'none'; }); }); /* ── Scroll to top ── */ document.querySelector('.scroll-to-top') && document.querySelector('.scroll-to-top').addEventListener('click', function() { window.scrollTo({ top: 0, behavior: 'smooth' }); });