`;
testimonialGrid.appendChild(testimonialBox);
});
// Animate elements on scroll
const animateOnScroll = () => {
const elements = document.querySelectorAll('.section-title, .content-left, .testimonial-grid');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.4;
if (elementPosition < screenPosition && !element.classList.contains('reveal')) {
element.classList.add('reveal');
}
});
};
// Run on load and scroll
window.addEventListener('load', () => {
setTimeout(() => {
animateOnScroll();
}, 300);
});
window.addEventListener('scroll', animateOnScroll);
// Form submission
const contactForm = document.getElementById('contactForm');
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const mobile = document.getElementById('mobile').value;
const message = document.getElementById('message').value;
if (!name || !email || !mobile || !message) {
alert('Please fill in all fields.');
return;
}
const mailtoLink = `mailto:susantasuakati@gmail.com?subject=Contact from Website&body=Name: ${encodeURIComponent(name)}%0AEmail: ${encodeURIComponent(email)}%0AMobile: ${encodeURIComponent(mobile)}%0AMessage: ${encodeURIComponent(message)}`;
window.location.href = mailtoLink;
});
```