Following products are short listed for Adventure Parks only.

Adventure Park

Adventure Tower

Adventure Park

Zipline

Adventure Park

Sky Walk

Adventure Park

Hanging Hammock

Adventure Park

Slipper

Adventure Park

wibit water park

Adventure Park

Rope Course

Adventure Park

Tree House Tent

Adventure Park

Zip Coaster

Adventure Park

Intex Ball

1800  GST Extra

Adventure Park

Archery

4700  GST Extra

Adventure Park

Baofeng

9900  GST Extra

Adventure Park

Snow Sledge

13500  GST Extra
16900  GST Extra
Sale!
Price range: 16900 ₹ through 44900 ₹ GST Extra
Sale!
Price range: 18500 ₹ through 19900 ₹ GST Extra
Sale!
Price range: 19900 ₹ through 25900 ₹ GST Extra

Adventure Park

Mud Fight

30000  GST Extra

Adventure Park

Photo Booth

35000  GST Extra

Adventure Park

Big Gloves

39000  GST Extra
Sale!
Price range: 39900 ₹ through 44500 ₹ GST Extra
44500  GST Extra

Adventure Park

Kayak

45000  GST Extra
Sale!
Price range: 54000 ₹ through 105000 ₹ GST Extra
Sale!
Price range: 59000 ₹ through 82000 ₹ GST Extra

Adventure Park

Kayak wibit

95000  GST Extra

Adventure Park

Funky Monkey

140000  GST Extra
145000  GST Extra

Adventure Park

Bungee Ladder

145000  GST Extra

Adventure Park

Air Hockey

160000  GST Extra

Adventure Park

Bungee Run Inflatable

175000  GST Extra
175000  GST Extra

Adventure Park

Spinner

190000  GST Extra

Adventure Park

Atv

198000  GST Extra
Sale!
Price range: 231000 ₹ through 430000 ₹ GST Extra
235000  GST Extra

Adventure Park

Robo Keeper

280000  GST Extra
290000  GST Extra

Adventure Park

Free Fall

290000  GST Extra
290000  GST Extra

Adventure Park

King Hammock

390000  GST Extra

Adventure Park

Human Washing Machine

440000  GST Extra

Adventure Park

Rocket Ejector

480000  GST Extra

Adventure Park

Aqua Launcher

490000  GST Extra

Adventure Park

Adrenalator Inflatable

650000  GST Extra

Adventure Park

Aqua Surfer

650000  GST Extra

Adventure Park

Tread Wall

690000  GST Extra

Adventure Park

Vortex Tunnel

785000  GST Extra

Adventure Park

Flight Line

900000  GST Extra

Adventure Park

Human Gyro

980000  GST Extra
1280000  GST Extra

Adventure Park

Swoop Swing

2290000  GST Extra

Adventure Park

Hot Air Balloon

3200000  GST Extra

Adventure Park

Human Gyro VR

3500000  GST Extra

Adventure Park

Bungee Jump

7450000  GST Extra
/* ==================================================== JUMPKING — GLOBAL JAVASCRIPT v2.0 ==================================================== Behaviors: - Header scroll state - Hamburger mobile nav toggle - Scroll reveal (IntersectionObserver) - Number counter animation - Filter tag interactions - Copy prompt utility - Smooth scroll for anchor links ==================================================== */(function () { 'use strict';/* ── PROGRESSIVE ENHANCEMENT: mark JS as active ── All reveal elements are visible by default (opacity:1). Adding .jk-ready to enables the animation system. This means if JS never loads, all content stays fully visible. */ document.documentElement.classList.add('jk-js'); document.body.classList.add('jk-ready');/* ── HEADER SCROLL STATE ── */ const hdr = document.getElementById('hdr'); if (hdr) { window.addEventListener('scroll', () => { hdr.classList.toggle('scrolled', window.scrollY > 20); }, { passive: true }); }/* ── HAMBURGER / MOBILE NAV ── */ const hamburger = document.getElementById('hamburger'); const mobileNav = document.getElementById('mobileNav'); if (hamburger && mobileNav) { hamburger.addEventListener('click', () => { hamburger.classList.toggle('open'); mobileNav.classList.toggle('open'); }); // Close on link click mobileNav.querySelectorAll('a').forEach(link => { link.addEventListener('click', () => { hamburger.classList.remove('open'); mobileNav.classList.remove('open'); }); }); }/* ── SCROLL REVEAL ── */ const revealObs = new IntersectionObserver((entries) => { entries.forEach(e => { if (e.isIntersecting) { e.target.classList.add('visible'); revealObs.unobserve(e.target); } }); }, { threshold: 0.07, rootMargin: '0px 0px -40px 0px' });document.querySelectorAll('.reveal, .reveal-left, .reveal-right').forEach(el => { revealObs.observe(el); });/* ── NUMBER COUNTER ── */ function animateCount(el, target, suffix) { const duration = 1800; const start = performance.now(); const update = (now) => { const elapsed = now - start; const progress = Math.min(elapsed / duration, 1); const ease = 1 - Math.pow(1 - progress, 3); el.textContent = Math.floor(ease * target) + (suffix || ''); if (progress < 1) requestAnimationFrame(update); }; requestAnimationFrame(update); }const countObs = new IntersectionObserver((entries) => { entries.forEach(e => { if (e.isIntersecting) { const el = e.target; const target = parseInt(el.dataset.count); if (!isNaN(target)) animateCount(el, target, el.dataset.suffix || ''); countObs.unobserve(el); } }); }, { threshold: 0.3 });document.querySelectorAll('[data-count]').forEach(el => countObs.observe(el));/* ── DYNAMIC YEAR ── */ const yrEl = document.getElementById('yr'); if (yrEl) yrEl.textContent = new Date().getFullYear();/* ── COPY PROMPT UTILITY ── */ window.copyPrompt = function (btn, text) { navigator.clipboard.writeText(text).then(() => { const orig = btn.textContent; btn.textContent = '✓ Copied!'; btn.classList.add('copied'); setTimeout(() => { btn.textContent = orig; btn.classList.remove('copied'); }, 2000); }).catch(() => { // Fallback for older browsers const ta = document.createElement('textarea'); ta.value = text; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); document.execCommand('copy'); document.body.removeChild(ta); const orig = btn.textContent; btn.textContent = '✓ Copied!'; btn.classList.add('copied'); setTimeout(() => { btn.textContent = orig; btn.classList.remove('copied'); }, 2000); }); };/* ── FILTER TAGS INTERACTION ── */ document.querySelectorAll('.filter-tag').forEach(tag => { tag.addEventListener('click', function () { // Allow multi-select within same group const group = this.closest('.filter-tags'); if (group) { group.querySelectorAll('.filter-tag').forEach(t => t.classList.remove('active')); } this.classList.toggle('active'); }); });/* ── SMOOTH SCROLL FOR ANCHORS ── */ document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { const target = document.querySelector(this.getAttribute('href')); if (target) { e.preventDefault(); const offset = 80; // header height const top = target.getBoundingClientRect().top + window.scrollY - offset; window.scrollTo({ top, behavior: 'smooth' }); } }); });/* ── PARALLAX HERO GRID ── */ const heroGrid = document.getElementById('heroGrid'); if (heroGrid) { window.addEventListener('scroll', () => { const scrollY = window.scrollY; heroGrid.style.transform = `translateY(${scrollY * 0.3}px)`; }, { passive: true }); }/* ── ACTIVE NAV LINK ── */ const sections = document.querySelectorAll('section[id], div[id]'); const navLinks = document.querySelectorAll('.hc-item'); if (sections.length && navLinks.length) { const sectionObs = new IntersectionObserver((entries) => { entries.forEach(e => { if (e.isIntersecting) { navLinks.forEach(link => { link.classList.remove('active'); if (link.getAttribute('href') === '#' + e.target.id) { link.classList.add('active'); } }); } }); }, { threshold: 0.3 }); sections.forEach(s => sectionObs.observe(s)); }})();