import React, { useState, useEffect } from 'react'; import { ChevronDown, TrendingUp, Users, Briefcase, Mail, Phone, MapPin } from 'lucide-react'; const AxisHorizonWebsite = () => { const [scrollY, setScrollY] = useState(0); const [activeSection, setActiveSection] = useState('home'); const [showConsultation, setShowConsultation] = useState(false); const [formData, setFormData] = useState({ name: '', email: '', company: '', phone: '', service: '', message: '', preferredDate: '', preferredTime: '' }); useEffect(() => { const handleScroll = () => setScrollY(window.scrollY); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const handleInputChange = (e) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const handleSubmit = (e) => { e.preventDefault(); // Form submission logic would go here alert('Thank you for your consultation request! We will contact you within 24 hours.'); setShowConsultation(false); setFormData({ name: '', email: '', company: '', phone: '', service: '', message: '', preferredDate: '', preferredTime: '' }); }; const scrollToSection = (id) => { document.getElementById(id)?.scrollIntoView({ behavior: 'smooth' }); setActiveSection(id); }; return (
{/* Consultation Modal */} {showConsultation && (
setShowConsultation(false)} >
e.stopPropagation()} >

Schedule a Consultation

Let's discuss how we can help expand your horizons

What happens next?

  • We'll review your request within 24 hours
  • A dedicated consultant will contact you to confirm details
  • We'll schedule a comprehensive consultation at your convenience
)} {/* Navigation */} {/* Hero Section */}

Bridging Borders

Expanding Horizons

Expert solutions in financial management, consultancy, and professional services

scrollToSection('about')} >
{/* About Section */}

About Us

Axis Horizon is a dynamic and forward-thinking professional services firm dedicated to delivering expert solutions across financial management, management consultancy, and specialized professional services.

Our mission is to help businesses and individuals achieve sustainable growth, operational efficiency, and strategic success through innovative, client-centric solutions.

We combine knowledge, experience, and a practical approach to deliver measurable results and long-term value across diverse sectors.

Strategic Growth

Sustainable solutions for long-term success

Client-Centric

Tailored approaches for unique objectives

Expert Solutions

Comprehensive professional services

{/* Services Section */}

Our Services

{[ { title: 'Financial Management', description: 'Tailored financial services providing insightful analysis and strategic advice to optimize performance and ensure sound fiscal decisions.', color: 'from-blue-900 to-blue-700' }, { title: 'Management Consultancy', description: 'Supporting organizations across diverse sectors to navigate complex challenges, improve processes, and implement best practices.', color: 'from-red-600 to-red-500' }, { title: 'Professional Services', description: 'Expertise spanning professional, scientific, and technical activities with innovative solutions aligned to your objectives.', color: 'from-blue-700 to-blue-600' } ].map((service, index) => (

{service.title}

{service.description}

))}
{/* Contact Section */}

Get in Touch

Email

contact@axishorizon.com

Phone

+44 (0) 20 XXXX XXXX

Location

United Kingdom

Ready to expand your horizons?

{/* Footer */}
); }; export default AxisHorizonWebsite;