/* * Madushan Aluminium - Main JavaScript */ document.addEventListener('DOMContentLoaded', function() { // Initialize AOS Animation if(typeof AOS !== 'undefined') { AOS.init({ duration: 800, easing: 'ease-in-out', once: true, offset: 100 }); } // Navbar Scroll Effect const navbar = document.getElementById('mainNav'); if(navbar) { window.addEventListener('scroll', () => { if (window.scrollY > 50) { navbar.classList.add('scrolled'); } else { navbar.classList.remove('scrolled'); } }); } // Quotation Form Logic const shapeSelect = document.getElementById('pantryShape'); const shapeInputs = document.getElementById('shapeInputs'); if(shapeSelect && shapeInputs) { shapeSelect.addEventListener('change', function() { const shape = this.value; let html = ''; if(shape === 'Straight') { html = `