// Add fade-in animation to all sections document.addEventListener('DOMContentLoaded', () => { const pageSections = document.querySelectorAll('section'); pageSections.forEach(section => { section.classList.add('fade-in'); }); // Smooth scrolling for navigation links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth' }); } }); }); // Get Started button functionality const getStartedBtn = document.querySelector('.btn-primary'); if (getStartedBtn) { getStartedBtn.addEventListener('click', () => { // Create and show modal const modal = document.createElement('div'); modal.className = 'fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 fade-in'; modal.innerHTML = `

Get Started

Choose how you'd like to get started with our services:

`; document.body.appendChild(modal); // Add click event to close modal when clicking outside modal.addEventListener('click', (e) => { if (e.target === modal) { modal.remove(); } }); // Add click events to modal buttons const modalButtons = modal.querySelectorAll('button:not(:last-child)'); modalButtons.forEach(button => { button.addEventListener('click', () => { const action = button.textContent.trim(); switch(action) { case 'Start Free Trial': window.location.href = '#contact'; break; case 'Schedule Demo': alert('Demo scheduling feature coming soon!'); break; case 'Contact Sales': window.location.href = '#contact'; break; } modal.remove(); }); }); }); } // Form submission handling const contactForm = document.querySelector('form'); if (contactForm) { contactForm.addEventListener('submit', (e) => { e.preventDefault(); // Add your form submission logic here alert('Thank you for your message! This is a demo form.'); contactForm.reset(); }); } // Active navigation highlighting const navLinks = document.querySelectorAll('.nav-link'); const sections = document.querySelectorAll('section'); function setActiveLink() { let current = ''; sections.forEach(section => { const sectionTop = section.offsetTop; const sectionHeight = section.clientHeight; if (window.scrollY >= (sectionTop - sectionHeight / 3)) { current = section.getAttribute('id'); } }); navLinks.forEach(link => { link.classList.remove('active'); if (link.getAttribute('href').substring(1) === current) { link.classList.add('active'); } }); } window.addEventListener('scroll', setActiveLink); setActiveLink(); // Initial call // Mobile menu toggle const navbarToggler = document.querySelector('.navbar-toggler'); const navbarCollapse = document.querySelector('.navbar-collapse'); if (navbarToggler && navbarCollapse) { navbarToggler.addEventListener('click', () => { navbarCollapse.classList.toggle('show'); }); // Close mobile menu when clicking outside document.addEventListener('click', (e) => { if (!navbarToggler.contains(e.target) && !navbarCollapse.contains(e.target)) { navbarCollapse.classList.remove('show'); } }); } // Add hover effects to cards const cards = document.querySelectorAll('.card, .bg-white.rounded-lg'); cards.forEach(card => { card.addEventListener('mouseenter', () => { card.style.transform = 'translateY(-5px)'; card.style.boxShadow = '0 10px 15px -3px rgba(0,0,0,0.1)'; }); card.addEventListener('mouseleave', () => { card.style.transform = 'translateY(0)'; card.style.boxShadow = '0 2px 4px rgba(0,0,0,0.1)'; }); }); // Learn More button functionality const learnMoreBtn = document.querySelector('.btn-outline-secondary'); if (learnMoreBtn) { learnMoreBtn.addEventListener('click', () => { // Create and show modal const modal = document.createElement('div'); modal.className = 'fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 fade-in'; modal.innerHTML = `

About Our Services

Lightning Fast Performance

Our platform is optimized for speed and efficiency, ensuring your business operations run smoothly without any delays.

Enterprise-Grade Security

Your data is protected with state-of-the-art encryption and security measures, ensuring complete privacy and compliance.

Cloud Integration

Seamlessly connect with your existing cloud infrastructure and scale your operations as needed.

`; document.body.appendChild(modal); // Add click event to close modal when clicking outside modal.addEventListener('click', (e) => { if (e.target === modal) { modal.remove(); } }); }); } });