Welcome To FGR Advisory

Website is Coming
Soon!

We are building a world-class advisory platform. Our team is working hard to bring you expert insights, strategic guidance, and tailored solutions for your business.

Mail: info@fgradvisory.com | Phone No: +234 805 220 0004 | Address: 19 Anthony Enahoro Street Utako, Abuja, FCT.

// ── Notify ── document.getElementById('notify-btn').addEventListener('click', function () { const input = document.getElementById('email-input'); if (input.value && input.value.includes('@')) { this.textContent = "✓ You're on the list!"; this.style.background = '#1a78c2'; input.value = ''; setTimeout(() => { this.textContent = 'Notify Me →'; this.style.background = ''; }, 3500); } else { input.style.borderColor = 'rgba(232,104,26,0.8)'; input.placeholder = 'Please enter a valid email'; setTimeout(() => { input.style.borderColor = ''; input.placeholder = 'Enter your email for updates'; }, 2000); } });