Call 988 Call TCN

Email Us

Feel free to contact us by filling out the form below.

 
// JavaScript for click-to-flip functionality on touch devices document.addEventListener('DOMContentLoaded', function() { const flipCards = document.querySelectorAll('.flip-card'); flipCards.forEach(card => { card.addEventListener('click', function() { // Toggle the 'flipped' class on click this.classList.toggle('flipped'); }); }); });