CONTACT ME

I am a dedicated developer and UI/UX designer committed to designing, developing, and maintaining modern web and mobile applications. I am passionate about solving complex business problems and bring a unique blend of technical expertise and creative flair to every project.

Lets connect today to discuss your venture and potential collaborations.


Contact Me Page
document.addEventListener('DOMContentLoaded', function() { const svgPath = document.querySelector('#scrollLine'); if (svgPath) { const pathLength = svgPath.getTotalLength(); svgPath.style.strokeDasharray = pathLength; svgPath.style.strokeDashoffset = pathLength; window.addEventListener('scroll', function() { const scrollTop = window.pageYOffset; const windowHeight = window.innerHeight; const documentHeight = document.documentElement.scrollHeight - windowHeight; const scrollPercent = scrollTop / documentHeight; svgPath.style.strokeDashoffset = pathLength * (1 - scrollPercent); }); } else { console.error("SVG path with ID 'scrollLine' not found."); } });