The Dig Site Experience - RC Construction Engineering

The Dig Site Experience

Professional all-metal radio-controlled diggers and construction machines for parties, STEM, weddings & corporate events in Kent.

Book Now

Our Fleet

Serious 1:14 scale all-metal machines with realistic sound and smoke.

Pricing

Site Induction

£125

Up to 5 operators • 1 hour

Book Now

Major Works

£200

6–8 operators • 2 hours

Book Now

STEM Masterclass

£375

Up to 6 engineers • 2 hours

Book Now

The Major Dig

£675

5–6 hours • Unlimited guests

Book Now

The Big Dig

Five hours of continuous hands-on fun for weddings, corporate events and big celebrations.

Set it up and let guests enjoy it throughout the day.

Book The Big Dig – £675

STEM Sessions

Hands-on engineering challenges using real-scale RC machines.

Participants learn about balance, weight shift and control while having fun digging and loading.

“My son came home talking about centre of gravity.” — Parent, Tonbridge

Ready to Dig?

Professional RC construction experiences delivered in Kent.

Get In Touch & Book

📍 Based in Tonbridge, Kent
Serving surrounding areas within 45 minutes

© 2026 The Dig Site Experience — RC Construction Engineering
Tonbridge, Kent
// Mobile Menu const menuBtn = document.getElementById('menuBtn'); const mobileMenu = document.getElementById('mobileMenu'); const overlay = document.getElementById('overlay'); function toggleMenu() { mobileMenu.classList.toggle('active'); overlay.classList.toggle('active'); } menuBtn.addEventListener('click', toggleMenu); overlay.addEventListener('click', toggleMenu); document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('click', () => { mobileMenu.classList.remove('active'); overlay.classList.remove('active'); }); }); // Carousel let currentSlide = 0; const carousel = document.getElementById('carousel'); const totalSlides = carousel.children.length; const dots = document.querySelectorAll('.dot'); function showSlide(n) { currentSlide = (n + totalSlides) % totalSlides; carousel.style.transform = `translateX(-${currentSlide * 100}%)`; dots.forEach((dot, i) => dot.classList.toggle('active', i === currentSlide)); } document.getElementById('nextBtn').addEventListener('click', () => showSlide(currentSlide + 1)); document.getElementById('prevBtn').addEventListener('click', () => showSlide(currentSlide - 1)); dots.forEach((dot, index) => { dot.addEventListener('click', () => showSlide(index)); }); // Initialize carousel showSlide(0);