document.addEventListener('DOMContentLoaded', function() { // --- Interactive Values Section Logic --- const valuesData = [ { title: "Beauty", description: "We treat all stake holders with politeness, dignity and civility that equals the outward beauty of our environment and the environments we create." }, { title: "Innovation", description: "We challenge the status quo. We seek better, smarter and more beautiful ways to solve problems and deliver value. When ideas fall short, we learn, adapt and try again- never settling, always solving." }, { title: "Loyalty", description: "We are faithful to our mission and vision and that of our stakeholders and the organizations they represent." }, { title: "Diligence", description: "We give our utmost attention to all our projects. We do this in earnest and with precision." }, { title: "Excellence", description: "We are committed to delivering exceptional results in every area of our operations." }, { title: "Resilience", description: "In the face of daunting challenges, setbacks and failures; we learn and document lessons, bounce back and persist in the pursuit of goals, targets, objectives and deadlines. We do this with focused optimism." }, { title: "Studiousness", description: "We are committed to learning and advancing our services, products, and tools to best serve our stakeholders." } ]; const valuesListContainer = document.getElementById('values-list'); const valuesContentContainer = document.getElementById('values-content'); const valuesSection = document.getElementById('values-section'); if (valuesListContainer && valuesContentContainer && valuesSection) { // Populate the list and content blocks valuesListContainer.innerHTML = valuesData.map((value, index) => `
${value.description}