Contact Us Easily Online

We would love to speak with you. Feel free to reach out using the below details.

Contact Information

We’re proud to be a space where the community comes together.

Address:

14960 Florence Trail
Apple Valley, MN 55124

Open:

Monday – Sunday,
9am – 7pm EST

Ask a Question

Have questions, feedback, or need assistance? Fill out the form below and our team will get back to you as soon as possible.

document.addEventListener("DOMContentLoaded", function () { const tabButtons = document.querySelectorAll('.tab-calendar .e-n-tab-title'); function forceActiveColor() { tabButtons.forEach(button => { if (button.getAttribute('aria-selected') === 'true') { // ইনলাইন স্টাইল সরাসরি বদলে দেওয়া button.style.setProperty('background', '#F47924', 'important'); button.style.setProperty('background-color', '#F47924', 'important'); button.style.setProperty('color', '#ffffff', 'important'); } else { // ডিঅ্যাক্টিভ বাটনের জন্য ইনলাইন স্টাইল রিমুভ করা (যাতে থিমের কালো কালার পায়) button.style.removeProperty('background'); button.style.removeProperty('background-color'); button.style.removeProperty('color'); } }); } // ১. প্রথমবার পেজ লোড হওয়ার সময় রান হবে setTimeout(forceActiveColor, 300); // ২. বাটনে ক্লিক করার সাথে সাথে রান হবে tabButtons.forEach(button => { button.addEventListener('click', function () { setTimeout(forceActiveColor, 50); }); }); });