Home Pro

🎄 Virtual RealTour — Your Everyday 5% Discount Store
🎄
🎁
🎅

Explore Virtual Spaces with Virtual RealTour

Discover Hotels, Airbnb, Real Estate, Furniture & More — all in one immersive experience. Browse verified properties, open virtual tours, and book with confidence.

Enjoy 5% OFF on all purchases - Your everyday discount store!

Our Categories 5% OFF Everything

HOTELS Verified 5% OFF

HOTELS — Premium & Boutique

Global • Curated stays & instant bookings

Explore a wide range of hotels — from boutique city stays to luxury resorts. Each listing includes virtual 360° tours, room details, and real-time availability.

Enjoy 5% OFF on all hotel bookings!

Top deals from ৳2,500/night
REAL ESTATE Agents 5% OFF

REAL ESTATE — Residential & Commercial

Properties • Virtual walkthroughs & extreme floorplans

Find homes, apartments, and commercial properties with immersive virtual tours, neighborhood data, and direct agent contact.

Get 5% OFF on all real estate services!

Avg. prices shown
FITNESS & GYM Facilities 5% OFF

FITNESS & GYM — Virtual Tours of Facilities

Gyms • Equipment lists & trainer profiles

Inspect gym layouts, classes, and facilities before you visit. Perfect for members, trainers, and gym owners to showcase spaces.

Save 5% on all fitness memberships!

State-of-the-art facilities
SHORT-LET/AIRBNB Unique Stays 5% OFF

SHORT-LET/AIRBNB — Unique Short Stays

Short-term • Local experiences

Book curated short-term rentals with virtual previews, host info, and extreme booking options right from the listing page.

Enjoy 5% OFF on all Airbnb bookings!

Hosts verified
HOSPITALS Verified 5% OFF

HOSPITALS — Clinics & Healthcare Centers

Healthcare • Facility tours & departments

Explore hospital layouts, emergency access, and department locations so patients and families can plan visits confidently.

Get 5% OFF on healthcare services!

24/7 emergency listings
UNIVERSITIES Institutions 5% OFF

UNIVERSITIES — Campus Tours

Education • Virtual campus walkthroughs

Inspect classrooms, sports facilities and campus grounds remotely — useful for parents, students and admission teams.

Save 5% on educational services!

Admissions info
MUSEUMS Heritage 5% OFF

MUSEUMS & MONUMENTS — Cultural Spaces

Culture • Exhibits & virtual galleries

Take virtual walks through museums and monuments. Great for tourism promos, school trips and cultural outreach programs.

Enjoy 5% OFF on museum tickets!

Curated collections
ART GALLERIES Creative 5% OFF

ART GALLERIES — Exhibitions & Studios

Art • Virtual showrooms & artist profiles

Showcase current exhibitions, artist retrospectives and virtual showrooms to collectors and art lovers worldwide.

Get 5% OFF on art purchases!

Latest exhibitions
SUPERMARKETS Shops 5% OFF

SUPERMARKETS — Retail & Browse

Shopping • Store previews & maps

Preview supermarkets and retail spaces to plan purchases and locate stores before visiting.

Save 5% on all supermarket purchases!

Pickup & delivery options
EVENT CENTERS Events 5% OFF

EVENT CENTERS — Events & Venues

Events • Capacity, layout & AV specs

Find and inspect conference halls with seating layouts, AV listings and booking options — ideal for event planners and corporates.

Enjoy 5% OFF on event bookings!

Seating from 50 — 2000

Loading tour...

'; // Set the iframe src to load the content const originalSrc = iframe.getAttribute('src'); iframe.src = originalSrc; // Add autoplay parameter if it's a music tour if (originalSrc.includes('music') || originalSrc.includes('audio')) { iframe.src = originalSrc + (originalSrc.includes('?') ? '&' : '?') + 'autoplay=1'; } // Hide placeholder when iframe loads iframe.onload = function() { placeholder.style.display = 'none'; // Set this as active iframe activeIframe = iframe; // Try to autoplay if it's a music tour if (originalSrc.includes('music') || originalSrc.includes('audio')) { try { const iframeWindow = iframe.contentWindow; if (iframeWindow) { iframeWindow.postMessage('playMedia', '*'); } } catch (e) { console.log('Cannot autoplay iframe content'); } } }; }); // Also allow clicking on the iframe container const container = iframe.parentElement; container.addEventListener('click', function(e) { if (e.target === container) { placeholder.click(); } }); } // Initialize all iframes iframes.forEach((iframe, index) => { // Set up click-to-load functionality setupIframeClickLoad(iframe, iframePlaceholders[index], index); // Handle iframe visibility changes const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (!entry.isIntersecting && activeIframe === iframe) { // If iframe goes out of view, stop the media stopAllIframeMedia(); } }); }, { threshold: 0.1 }); observer.observe(iframe); }); // Stop media when switching slides featuredPrevBtn.addEventListener('click', stopAllIframeMedia); featuredNextBtn.addEventListener('click', stopAllIframeMedia); // Stop media when clicking on dots const featuredDots = document.querySelectorAll('.featured-dot'); featuredDots.forEach(dot => { dot.addEventListener('click', stopAllIframeMedia); }); // Stop media when page loses focus document.addEventListener('visibilitychange', function() { if (document.hidden) { stopAllIframeMedia(); } }); // Stop media when user leaves the page window.addEventListener('beforeunload', stopAllIframeMedia); // Listen for messages from iframes (if they support it) window.addEventListener('message', function(event) { if (event.data === 'iframeUnloaded' || event.data === 'mediaStopped') { activeIframe = null; } }); });