40+ Galleries · Gurgaon

All galleries.

Every gallery is curated by mood — find the one that matches how you feel right now.
/* ── Universal card action helpers ── */ window.cardActFav = function(btn){ btn.classList.toggle('fav-on'); var on = btn.classList.contains('fav-on'); btn.querySelector('svg').style.fill = on ? '#a78bfa' : 'none'; if(window.toast) toast(on ? 'Saved to Favourites ♡' : 'Removed from Favourites','#a78bfa'); }; window.cardActShare = function(btn, url, name){ name = name || document.title; var fullUrl = url.startsWith('http') ? url : (window.location.origin + '/' + url); if(navigator.share){ navigator.share({title:name,url:fullUrl}).catch(function(){}); } else{ navigator.clipboard.writeText(fullUrl).catch(function(){}); if(window.toast) toast('Link copied','#3dba79'); } };