Awards Awards Awards Awards Awards

Awards

  • Professional awards and trophies to recognize achievements and excellence
  • Available in various materials including crystal, acrylic, wood, and metal
  • Customizable with company logos, names, and achievement details
  • Perfect for corporate events, employee recognition, and milestone celebrations
  • High-quality engraving and printing services available
  • Multiple sizes and designs to suit different occasions and budgets
  • Professional packaging and presentation options available

Contact Us

Related Images

Awards
Awards
Awards
Awards
Awards
let slideIndex = 0; showSlides(); function showSlides() { let slides = document.querySelectorAll(".slides img"); for (let i = 0; i < slides.length; i++) { slides[i].style.display = "none"; } slideIndex++; if (slideIndex > slides.length) { slideIndex = 1; } slides[slideIndex - 1].style.display = "block"; setTimeout(showSlides, 2000); // Change image every 2 seconds } function plusSlides(n) { let slides = document.querySelectorAll(".slides img"); slideIndex += n; if (slideIndex > slides.length) { slideIndex = 1; } if (slideIndex < 1) { slideIndex = slides.length; } for (let i = 0; i < slides.length; i++) { slides[i].style.display = "none"; } slides[slideIndex - 1].style.display = "block"; } document.querySelector(".prev").addEventListener("click", function () { plusSlides(-1); }); document.querySelector(".next").addEventListener("click", function () { plusSlides(1); }); // const products = { "visiting cards": "Visitingcard.html", "letter heads": "Letterheads.html", "envelopes": "Envelopes.html", "books": "Books.html", "booklet": "Booklet.html", "brochure": "Brochure.html", "certificates": "Certificates.html", "pocket folders": "PocketFolders.html", "thank you cards": "ThankYouCards.html", "label & sticker": "LabelSticker.html", "pvc sticker": "PVCSticker.html", "vinyl sticker": "VinylSticker.html", "flyers": "Flyers.html", "menu card": "MenuCard.html", "poster a3": "PosterA3.html", "tent card": "TentCard.html", "calendar": "Calendar.html", "table calendar": "TableCalendar.html", "packaging box": "PackagingBox.html", "wedding invitations": "WeddingInvitations.html", "bill books": "BillBooks.html", "cash vouchers": "CashVouchers.html", "challan book": "ChallanBook.html", "pamphlet b/w": "PamphletBW.html", "notebooks": "Notebooks.html", "pen": "Pen.html", "diary": "Diary.html", "t-shirt": "TShirt.html", "caps": "Caps.html", "corporate gifts": "CorporateGifts.html", "key rings": "KeyRings.html", "shippers": "Shippers.html", "mugs": "Mugs.html", "lanyards": "Lanyards.html", "id cards": "IDCards.html", "carry bags": "CarryBags.html", "awards": "Awards.html", "stamps": "Stamps.html", "tag": "Tag.html", "flex/banner": "FlexBanner.html", "canopy": "Canopy.html", "glass frosted film": "GlassFrostedFilm.html", "glow sign board": "GlowSignBoard.html", "one way vision": "OneWayVision.html", "standy": "Standy.html", "branding vinyl": "BrandingVinyl.html", "backdrop": "Backdrop.html", "sunboard": "Sunboard.html", "acrylic vinyl board": "AcrylicVinylBoard.html", "canvas": "Canvas.html", "name plate": "Nameplate.html", "clipon": "Clipon.html" }; document.getElementById('search-icon').addEventListener('click', function () { document.querySelector('.search-container').classList.toggle('expanded'); document.getElementById('search-input').focus(); }); document.getElementById('search-input').addEventListener('input', function () { const query = this.value.toLowerCase(); const suggestions = document.getElementById('suggestions'); suggestions.innerHTML = ''; if (query) { Object.keys(products).forEach(product => { if (product.includes(query)) { const suggestion = document.createElement('div'); suggestion.textContent = product; suggestion.addEventListener('click', function () { window.location.href = products[product]; }); suggestions.appendChild(suggestion); } }); suggestions.style.display = 'block'; } else { suggestions.style.display = 'none'; } }); document.getElementById('search-input').addEventListener('keypress', function (e) { if (e.key === 'Enter') { const query = this.value.toLowerCase(); const url = products[query]; if (url) { window.location.href = url; } else { alert('Product not found'); } } });