testwebdite / index.html
bzouiri's picture
le style du site n est pas tres wowo . fait des inmprvement dans ce sense - Follow Up Deployment
98dc97c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexusAI | AI-Powered Software & Financial Analytics</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gradient-text {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.tech-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: scale(1.05);
}
.chart-container {
height: 300px;
position: relative;
}
.animated-bar {
animation: growBar 1.5s ease-out forwards;
transform-origin: bottom;
}
@keyframes growBar {
0% { transform: scaleY(0); }
100% { transform: scaleY(1); }
}
#mobile-menu {
transition: all 0.3s ease;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Scroll Progress -->
<div class="h-1 bg-blue-500 fixed top-0 left-0 z-50" style="width: 0%" id="progressBar"></div>
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-40 mt-1">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-brain text-blue-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">Nexus<span class="text-blue-600">AI</span></span>
</div>
<div class="hidden md:ml-10 md:flex md:space-x-8">
<a href="#home" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a>
<a href="#about" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">About</a>
<a href="#services" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Services</a>
<a href="#technology" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Technology</a>
<a href="#portfolio" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Portfolio</a>
<a href="#contact" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Contact</a>
</div>
</div>
<div class="hidden md:flex items-center">
<a href="#contact" class="ml-8 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white gradient-bg hover:bg-blue-700 shadow-sm">Get Started</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button id="menu-toggle" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden">
<div class="pt-2 pb-3 space-y-1">
<a href="#home" class="bg-blue-50 border-blue-500 text-blue-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a>
<a href="#about" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">About</a>
<a href="#services" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Services</a>
<a href="#technology" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Technology</a>
<a href="#portfolio" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Portfolio</a>
<a href="#contact" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Contact</a>
</div>
<div class="pt-4 pb-3 border-t border-gray-200">
<div class="mt-3 space-y-1">
<a href="#contact" class="block w-full px-4 py-2 text-center border border-transparent rounded-md shadow-sm text-base font-medium text-white gradient-bg hover:bg-blue-700">Get Started</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="gradient-bg text-white relative overflow-hidden">
<div class="absolute inset-0 opacity-20">
<div class="absolute top-0 left-0 w-full h-full bg-[url('https://grainy-gradients.vercel.app/noise.svg')] opacity-30"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4">Transforming Business with AI-Powered Software and Financial Analytics</h1>
<p class="text-xl mb-8 opacity-90">Harness cutting-edge AI and complex algorithms to drive innovation and insights for your business.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#services" class="px-6 py-3 bg-white text-blue-600 font-medium rounded-md shadow-md hover:bg-gray-100 transition-all duration-300 hover:shadow-lg active:scale-95 text-center">Discover Our Solutions</a>
<a href="#contact" class="px-6 py-3 border-2 border-white text-white font-medium rounded-md hover:bg-white hover:text-blue-600 transition-all duration-300 hover:shadow-lg active:scale-95 text-center">Get a Free Consultation</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-full max-w-md">
<div class="chart-container bg-white bg-opacity-20 rounded-xl p-6 backdrop-filter backdrop-blur-sm">
<div class="flex justify-between items-end h-full space-x-2">
<div class="w-1/5">
<div class="animated-bar bg-white bg-opacity-80 rounded-t-md" style="height: 40%;"></div>
</div>
<div class="w-1/5">
<div class="animated-bar bg-white bg-opacity-80 rounded-t-md" style="height: 70%; animation-delay: 0.2s;"></div>
</div>
<div class="w-1/5">
<div class="animated-bar bg-white bg-opacity-80 rounded-t-md" style="height: 90%; animation-delay: 0.4s;"></div>
</div>
<div class="w-1/5">
<div class="animated-bar bg-white bg-opacity-80 rounded-t-md" style="height: 60%; animation-delay: 0.6s;"></div>
</div>
<div class="w-1/5">
<div class="animated-bar bg-white bg-opacity-80 rounded-t-md" style="height: 30%; animation-delay: 0.8s;"></div>
</div>
</div>
<div class="absolute top-0 left-0 w-full h-full flex items-center justify-center">
<div class="text-center p-4">
<i class="fas fa-chart-line text-5xl mb-4 opacity-30"></i>
<p class="text-sm opacity-70">AI-Powered Analytics in Action</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Us -->
<section id="about" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">About NexusAI</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Our Mission</h3>
<p class="text-gray-600 mb-6">We empower businesses to make smarter decisions through AI-driven software solutions and advanced financial analytics. Our mission is to bridge the gap between cutting-edge technology and practical business applications.</p>
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Our Story</h3>
<p class="text-gray-600 mb-6">Founded in 2018 by a team of AI researchers and financial experts, NexusAI was born from the realization that most businesses struggle to harness the full potential of artificial intelligence. We set out to change that by creating accessible, powerful tools that deliver real results.</p>
<div class="grid grid-cols-2 gap-4 mt-8">
<div class="bg-white p-4 rounded-lg shadow-sm text-center">
<div class="text-blue-600 text-3xl font-bold mb-2">5+</div>
<div class="text-gray-600">Years in Business</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm text-center">
<div class="text-blue-600 text-3xl font-bold mb-2">120+</div>
<div class="text-gray-600">Projects Delivered</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-2xl font-semibold text-gray-800 mb-6">Our Expertise</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-2 rounded-full">
<i class="fas fa-robot text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Machine Learning Specialists</h4>
<p class="text-gray-600 mt-1">Our team includes PhD-level researchers with experience developing advanced algorithms for Fortune 500 companies.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-2 rounded-full">
<i class="fas fa-chart-pie text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Financial Analytics Experts</h4>
<p class="text-gray-600 mt-1">We combine deep financial knowledge with AI to create predictive models that outperform traditional analysis.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-2 rounded-full">
<i class="fas fa-server text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Cloud Technology Leaders</h4>
<p class="text-gray-600 mt-1">We architect scalable solutions on AWS, Azure, and GCP to ensure your AI systems grow with your business.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services -->
<div class="relative h-16 -mt-16 overflow-hidden">
<svg viewBox="0 0 1200 120" preserveAspectRatio="none" class="absolute top-0 left-0 w-full h-full">
<path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" class="fill-current text-white"></path>
<path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" class="fill-current text-white"></path>
<path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" class="fill-current text-white"></path>
</svg>
</div>
<section id="services" class="py-16 bg-white relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Services</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Custom AI solutions designed to solve your most challenging business problems</p>
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div>
</div>
<div class="grid md:grid-cols-2 gap-8">
<!-- AI Software Development -->
<div class="bg-white rounded-xl p-8 shadow-lg hover:shadow-xl transition-all duration-300 border border-gray-100 hover:border-blue-100 hover:scale-[1.02]">
<div class="flex items-center mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-code text-blue-600 text-xl"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-800">AI Software Development</h3>
</div>
<p class="text-gray-600 mb-6">We build custom AI-powered applications tailored to your specific business needs, leveraging the latest in machine learning and natural language processing.</p>
<div class="mb-6">
<h4 class="font-medium text-gray-800 mb-3">Key Offerings:</h4>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Custom machine learning models</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Natural language processing systems</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Computer vision applications</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Predictive analytics platforms</span>
</li>
</ul>
</div>
<div class="bg-white p-4 rounded-lg border border-gray-200">
<p class="text-sm italic text-gray-600">"NexusAI developed a custom recommendation engine that increased our e-commerce conversion rate by 28%." — Retail Industry Client</p>
</div>
</div>
<!-- Financial Analytics -->
<div class="bg-gray-50 rounded-xl p-8 shadow-sm hover:shadow-md transition duration-300">
<div class="flex items-center mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-chart-line text-blue-600 text-xl"></i>
</div>
<h3 class="text-2xl font-semibold text-gray-800">Financial Analytics</h3>
</div>
<p class="text-gray-600 mb-6">Our AI-powered financial tools provide deeper insights, better risk assessment, and more accurate forecasting than traditional methods.</p>
<div class="mb-6">
<h4 class="font-medium text-gray-800 mb-3">Key Offerings:</h4>
<ul class="space-y-2 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Predictive financial modeling</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Portfolio optimization</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Fraud detection systems</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mt-1 mr-2"></i>
<span>Real-time market analysis</span>
</li>
</ul>
</div>
<div class="bg-white p-4 rounded-lg border border-gray-200">
<p class="text-sm italic text-gray-600">"Their risk analysis AI reduced our false positives by 40% while catching 15% more actual fraud cases." — Financial Services Client</p>
</div>
</div>
</div>
<!-- Additional Services -->
<div class="mt-8 grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-xl border border-gray-200 hover:shadow-md transition duration-300">
<div class="bg-blue-100 p-3 rounded-full inline-block mb-4">
<i class="fas fa-users-cog text-blue-600"></i>
</div>
<h4 class="text-lg font-medium text-gray-800 mb-3">AI Consulting</h4>
<p class="text-gray-600">Strategic guidance to help you identify the best AI opportunities for your business and develop an implementation roadmap.</p>
</div>
<div class="bg-white p-6 rounded-xl border border-gray-200 hover:shadow-md transition duration-300">
<div class="bg-blue-100 p-3 rounded-full inline-block mb-4">
<i class="fas fa-random text-blue-600"></i>
</div>
<h4 class="text-lg font-medium text-gray-800 mb-3">System Integration</h4>
<p class="text-gray-600">Seamless integration of AI solutions with your existing systems and workflows for maximum impact.</p>
</div>
<div class="bg-white p-6 rounded-xl border border-gray-200 hover:shadow-md transition duration-300">
<div class="bg-blue-100 p-3 rounded-full inline-block mb-4">
<i class="fas fa-graduation-cap text-blue-600"></i>
</div>
<h4 class="text-lg font-medium text-gray-800 mb-3">Training & Support</h4>
<p class="text-gray-600">Comprehensive training programs to ensure your team can effectively use and maintain your new AI tools.</p>
</div>
</div>
</div>
</section>
<!-- Technology -->
<section id="technology" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Technology Stack</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">We leverage the most advanced tools and frameworks to deliver exceptional results</p>
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Tech Card 1 -->
<div class="bg-white/80 backdrop-blur-lg rounded-xl p-6 shadow-lg tech-card transition-all duration-300 hover:scale-[1.02] border border-white/30 hover:border-white/50">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-brain text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Machine Learning</h3>
</div>
<p class="text-gray-600 mb-4">We use advanced ML techniques to extract patterns and insights from your data that would be impossible to find manually.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">TensorFlow</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">PyTorch</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Scikit-learn</span>
</div>
</div>
<!-- Tech Card 2 -->
<div class="bg-white rounded-xl p-6 shadow-sm tech-card transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-cloud text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Cloud Platforms</h3>
</div>
<p class="text-gray-600 mb-4">We deploy scalable solutions on the world's leading cloud platforms to ensure reliability and performance.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">AWS</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Azure</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Google Cloud</span>
</div>
</div>
<!-- Tech Card 3 -->
<div class="bg-white rounded-xl p-6 shadow-sm tech-card transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-database text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Data Processing</h3>
</div>
<p class="text-gray-600 mb-4">We handle massive datasets efficiently with modern data processing frameworks and databases.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Spark</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Hadoop</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">MongoDB</span>
</div>
</div>
<!-- Tech Card 4 -->
<div class="bg-white rounded-xl p-6 shadow-sm tech-card transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-chart-bar text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Financial Analytics</h3>
</div>
<p class="text-gray-600 mb-4">Specialized tools for quantitative analysis, risk modeling, and financial forecasting.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">QuantLib</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">RiskMetrics</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Pandas</span>
</div>
</div>
<!-- Tech Card 5 -->
<div class="bg-white rounded-xl p-6 shadow-sm tech-card transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-lock text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Security</h3>
</div>
<p class="text-gray-600 mb-4">Enterprise-grade security measures to protect your sensitive data and intellectual property.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">OAuth</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">JWT</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">TLS 1.3</span>
</div>
</div>
<!-- Tech Card 6 -->
<div class="bg-white rounded-xl p-6 shadow-sm tech-card transition duration-300">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Deployment</h3>
</div>
<p class="text-gray-600 mb-4">Flexible deployment options to meet your infrastructure requirements and user needs.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Docker</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Kubernetes</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm text-gray-700">Serverless</span>
</div>
</div>
</div>
<!-- Algorithm Explanation -->
<div class="mt-16 bg-white rounded-xl p-8 shadow-sm">
<h3 class="text-2xl font-semibold text-gray-800 mb-6">Making Complex Algorithms Accessible</h3>
<div class="grid md:grid-cols-2 gap-8">
<div>
<p class="text-gray-600 mb-6">We specialize in implementing sophisticated AI techniques that deliver real business value. Here's how we simplify complex concepts:</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-2 rounded-full">
<i class="fas fa-project-diagram text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Deep Learning</h4>
<p class="text-gray-600 mt-1">Neural networks that automatically learn from your data to make increasingly accurate predictions over time.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-2 rounded-full">
<i class="fas fa-chess text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Reinforcement Learning</h4>
<p class="text-gray-600 mt-1">AI systems that learn optimal strategies through trial and error, perfect for dynamic environments.</p>
</div>
</div>
</div>
</div>
<div>
<div class="bg-gray-50 p-6 rounded-lg border border-gray-200">
<div class="flex items-center mb-4">
<div class="bg-blue-600 text-white p-2 rounded-full mr-3">
<i class="fas fa-lightbulb"></i>
</div>
<h4 class="text-lg font-medium text-gray-800">Industry-Specific Customization</h4>
</div>
<p class="text-gray-600">We adapt our algorithms to your specific industry needs:</p>
<ul class="mt-4 space-y-3 text-gray-600">
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span>Financial services: fraud detection, portfolio optimization</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span>Healthcare: predictive diagnostics, treatment optimization</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span>Retail: demand forecasting, personalized recommendations</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
<span>Manufacturing: predictive maintenance, quality control</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio -->
<section id="portfolio" class="py-16 bg-white overflow-hidden">
<div class="parallax-bg absolute inset-0 bg-[url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80')] bg-cover bg-center opacity-5"></div>
<style>
.parallax-bg {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
transform: translateZ(0);
}
</style>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Portfolio</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Success stories from our work with clients across industries</p>
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-chart-bar text-blue-600 text-6xl opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Financial Forecasting System</h3>
<p class="text-gray-600 text-sm mb-4">Financial Services Industry</p>
<p class="text-gray-600 mb-4">Built an AI-driven forecasting tool that improved financial accuracy by 30% compared to traditional methods.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs">Machine Learning</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs">Time Series Analysis</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-robot text-blue-600 text-6xl opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Intelligent Customer Support</h3>
<p class="text-gray-600 text-sm mb-4">E-commerce Industry</p>
<p class="text-gray-600 mb-4">Developed an NLP-powered chatbot that handles 65% of customer inquiries without human intervention.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs">NLP</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs">Chatbot</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-shield-alt text-blue-600 text-6xl opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Fraud Detection Platform</h3>
<p class="text-gray-600 text-sm mb-4">Banking Industry</p>
<p class="text-gray-600 mb-4">Created a real-time fraud detection system that reduced false positives by 40% while catching more actual fraud.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs">Anomaly Detection</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs">Real-time Analytics</span>
</div>
</div>
</div>
</div>
<!-- Case Study -->
<div class="mt-16 bg-gradient-to-r from-blue-500 to-blue-700 rounded-xl p-8 text-white">
<div class="md:flex items-center">
<div class="md:w-2/3 mb-8 md:mb-0">
<h3 class="text-2xl font-semibold mb-4">Want to see more detailed case studies?</h3>
<p class="opacity-90 mb-6">Explore how we've helped clients achieve measurable results with AI solutions tailored to their specific challenges.</p>
<a href="#contact" class="inline-flex items-center px-6 py-3 bg-white text-blue-600 font-medium rounded-md shadow-md hover:bg-gray-100 transition duration-300">
Request Case Studies
<i class="fas fa-arrow-right ml-2 transition-transform group-hover:translate-x-1"></i>
</a>
</div>
<div class="md:w-1/3 flex justify-center">
<div class="bg-white bg-opacity-20 p-6 rounded-lg backdrop-filter backdrop-blur-sm">
<i class="fas fa-file-alt text-4xl block text-center mb-4"></i>
<p class="text-center text-sm opacity-90">Detailed project breakdowns with measurable outcomes</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Clients Say</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-all duration-300 transform hover:-translate-y-1">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">"NexusAI's financial analytics platform transformed our forecasting accuracy. We now make data-driven decisions with confidence, resulting in a 22% improvement in our investment returns."</p>
<div class="flex items-center">
<div class="bg-blue-100 text-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-user-tie"></i>
</div>
<div>
<h4 class="font-medium text-gray-800">CFO</h4>
<p class="text-sm text-gray-600">Investment Firm</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">"The custom recommendation engine NexusAI developed for our e-commerce platform increased our average order value by 18% and customer retention by 35%."</p>
<div class="flex items-center">
<div class="bg-blue-100 text-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-user-tie"></i>
</div>
<div>
<h4 class="font-medium text-gray-800">CTO</h4>
<p class="text-sm text-gray-600">Online Retailer</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">"Their AI-powered diagnostic tool helped us identify high-risk patients earlier, improving outcomes while reducing unnecessary tests by 25%."</p>
<div class="flex items-center">
<div class="bg-blue-100 text-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-user-md"></i>
</div>
<div>
<h4 class="font-medium text-gray-800">Medical Director</h4>
<p class="text-sm text-gray-600">Healthcare Provider</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Blog/Resources -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Insights & Resources</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Latest thinking on AI and financial analytics</p>
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Article 1 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-coins text-blue-600 text-6xl opacity-30"></i>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-3">
<span>May 15, 2023</span>
<span class="mx-2"></span>
<span>8 min read</span>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">How AI Transforms Financial Forecasting</h3>
<p class="text-gray-600 mb-4">Explore how machine learning models are outperforming traditional forecasting methods in accuracy and adaptability.</p>
<a href="#" class="text-blue-600 font-medium inline-flex items-center">
Read More
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Article 2 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-lock text-blue-600 text-6xl opacity-30"></i>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-3">
<span>April 28, 2023</span>
<span class="mx-2"></span>
<span>6 min read</span>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Ensuring Security in AI Financial Systems</h3>
<p class="text-gray-600 mb-4">Best practices for maintaining robust security while leveraging AI in sensitive financial applications.</p>
<a href="#" class="text-blue-600 font-medium inline-flex items-center">
Read More
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Article 3 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-project-diagram text-blue-600 text-6xl opacity-30"></i>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-3">
<span>March 10, 2023</span>
<span class="mx-2"></span>
<span>10 min read</span>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">The Power of Modern Algorithms</h3>
<p class="text-gray-600 mb-4">Understanding how contemporary algorithms differ from traditional approaches and why it matters for your business.</p>
<a href="#" class="text-blue-600 font-medium inline-flex items-center">
Read More
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 border border-blue-600 text-blue-600 font-medium rounded-md hover:bg-blue-50 transition duration-300">
View All Articles
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- FAQs -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2>
<div class="w-20 h-1 bg-blue-600 mx-auto"></div>
</div>
<div class="max-w-3xl mx-auto">
<div class="bg-white shadow-sm rounded-xl overflow-hidden">
<!-- FAQ 1 -->
<div class="border-b border-gray-200">
<button class="faq-toggle w-full px-6 py-5 text-left hover:bg-gray-50 focus:outline-none">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-800">What industries do you serve?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-5 hidden">
<p class="text-gray-600">We work with clients across multiple industries including financial services, healthcare, e-commerce, manufacturing, and more. Our AI solutions are customized to address the specific challenges of each sector.</p>
</div>
</div>
<!-- FAQ 2 -->
<div class="border-b border-gray-200">
<button class="faq-toggle w-full px-6 py-5 text-left hover:bg-gray-50 focus:outline-none">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-800">How secure are your AI solutions?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-5 hidden">
<p class="text-gray-600">Security is our top priority. We implement enterprise-grade encryption, access controls, and compliance measures tailored to your industry standards. All solutions undergo rigorous security testing before deployment.</p>
</div>
</div>
<!-- FAQ 3 -->
<div class="border-b border-gray-200">
<button class="faq-toggle w-full px-6 py-5 text-left hover:bg-gray-50 focus:outline-none">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-800">How long does it take to implement an AI solution?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-5 hidden">
<p class="text-gray-600">Implementation timelines vary based on project complexity. Simple solutions can be deployed in 4-6 weeks, while more comprehensive systems may take 3-6 months. We'll provide a detailed timeline after assessing your requirements.</p>
</div>
</div>
<!-- FAQ 4 -->
<div class="border-b border-gray-200">
<button class="faq-toggle w-full px-6 py-5 text-left hover:bg-gray-50 focus:outline-none">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-800">Do you provide ongoing support and maintenance?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-5 hidden">
<p class="text-gray-600">Yes, we offer comprehensive support packages that include system monitoring, regular updates, performance optimization, and staff training. Our AI models also improve over time as they learn from new data.</p>
</div>
</div>
<!-- FAQ 5 -->
<div class="">
<button class="faq-toggle w-full px-6 py-5 text-left hover:bg-gray-50 focus:outline-none">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-800">How do you measure the success of an AI implementation?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</div>
</button>
<div class="faq-content px-6 pb-5 hidden">
<p class="text-gray-600">We establish clear KPIs before implementation based on your business goals. These typically include accuracy improvements, time savings, revenue impact, or other measurable outcomes. We provide regular performance reports post-deployment.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Us -->
<section id="contact" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Contact Us</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Let's discuss how we can help you harness the power of AI</p>
<div class="w-20 h-1 bg-blue-600 mx-auto mt-4"></div>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div>
<h3 class="text-2xl font-semibold text-gray-800 mb-6">Get in Touch</h3>
<p class="text-gray-600 mb-8">Ready to explore how AI can transform your business? Fill out the form or contact us directly. We typically respond within 24 hours.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-full">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Email Us</h4>
<p class="text-gray-600 mt-1">info@nexusai.com</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-full">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Call Us</h4>
<p class="text-gray-600 mt-1">(555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-full">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Visit Us</h4>
<p class="text-gray-600 mt-1">123 AI Boulevard, Tech City, CA 94107</p>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="text-lg font-medium text-gray-800 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-100 p-3 rounded-full text-gray-600 hover:text-blue-600 hover:bg-blue-50 transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-100 p-3 rounded-full text-gray-600 hover:text-blue-600 hover:bg-blue-50 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-100 p-3 rounded-full text-gray-600 hover:text-blue-600 hover:bg-blue-50 transition duration-300">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<div>
<form id="contactForm" class="bg-white/80 backdrop-blur-sm p-8 rounded-xl shadow-lg border border-gray-100">
<div class="mb-6">
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label>
<input type="text" id="name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" required>
<p id="nameError" class="mt-1 text-sm text-red-600 hidden">Please enter your name</p>
</div>
<div class="mb-6">
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
<input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" required>
<p id="emailError" class="mt-1 text-sm text-red-600 hidden">Please enter a valid email address</p>
</div>
<div class="mb-6">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<select id="subject" name="subject" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<option value="">Select a subject</option>
<option value="ai-development">AI Software Development</option>
<option value="financial-analytics">Financial Analytics</option>
<option value="consulting">AI Consulting</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" name="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" required></textarea>
<p id="messageError" class="mt-1 text-sm text-red-600 hidden">Please enter your message</p>
</div>
<div class="mb-6">
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="privacy" name="privacy" type="checkbox" class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 rounded" required>
</div>
<div class="ml-3 text-sm">
<label for="privacy" class="font-medium text-gray-700">I agree to the <a href="#" class="text-blue-600 hover:text-blue-500">Privacy Policy</a></label>
</div>
</div>
<p id="privacyError" class="mt-1 text-sm text-red-600 hidden">Please agree to our privacy policy</p>
</div>
<div>
<button type="submit" class="w-full px-6 py-3 border border-transparent rounded-md shadow-sm text-sm font-medium text-white gradient-bg hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Send Message
</button>
</div>
</form>
<div id="successMessage" class="mt-4 p-4 bg-green-50 text-green-700 rounded-md hidden">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-check-circle"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium">
Thank you! Your message has been sent. We'll get back to you soon.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Business with AI?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto opacity-90">Schedule a free consultation with our AI experts to discuss your specific needs and how we can help.</p>
<a href="#contact" class="inline-flex items-center px-8 py-3 bg-white text-blue-600 font-medium rounded-md shadow-md hover:bg-gray-100 transition duration-300 text-lg">
Get Started Today
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8 relative overflow-hidden">
<div class="absolute inset-0 opacity-10">
<div class="absolute top-0 left-0 w-full h-full bg-[url('https://grainy-gradients.vercel.app/noise.svg')]"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div class="md:col-span-2">
<div class="flex items-center mb-4">
<i class="fas fa-brain text-blue-400 text-2xl mr-2"></i>
<span class="text-xl font-bold">Nexus<span class="text-blue-400">AI</span></span>
</div>
<p class="text-gray-400 mb-6">Transforming businesses through AI-powered software solutions and advanced financial analytics.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">Services</a></li>
<li><a href="#technology" class="text-gray-400 hover:text-white transition duration-300">Technology</a></li>
<li><a href="#portfolio" class="text-gray-400 hover:text-white transition duration-300">Portfolio</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact Info</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-blue-400"></i>
<span>123 AI Boulevard, Tech City, CA 94107</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-3 text-blue-400"></i>
<span>(555) 123-4567</span>
</li>
<li class="flex items-start">
<i class="fas fa-envelope mt-1 mr-3 text-blue-400"></i>
<span>info@nexusai.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 NexusAI. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// FAQ toggle functionality
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
// Toggle content
content.classList.toggle('hidden');
// Rotate icon
if (content.classList.contains('hidden')) {
icon.style.transform = 'rotate(0deg)';
} else {
icon.style.transform = 'rotate(180deg)';
}
});
});
// Form validation
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
let isValid = true;
// Reset errors
document.querySelectorAll('[id$="Error"]').forEach(el => {
el.classList.add('hidden');
});
// Validate name
const name = document.getElementById('name');
if (!name.value.trim()) {
document.getElementById('nameError').classList.remove('hidden');
isValid = false;
}
// Validate email
const email = document.getElementById('email');
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!emailRegex.test(email.value)) {
document.getElementById('emailError').classList.remove('hidden');
isValid = false;
}
// Validate message
const message = document.getElementById('message');
if (!message.value.trim()) {
document.getElementById('messageError').classList.remove('hidden');
isValid = false;
}
// Validate privacy checkbox
const privacy = document.getElementById('privacy');
if (!privacy.checked) {
document.getElementById('privacyError').classList.remove('hidden');
isValid = false;
}
// If form is valid, show success message
if (isValid) {
this.reset();
document.getElementById('successMessage').classList.remove('hidden');
setTimeout(() => {
document.getElementById('successMessage').classList.add('hidden');
}, 5000);
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
// Scroll to target
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Scroll progress indicator
window.addEventListener('scroll', function() {
const winScroll = document.body.scrollTop || document.documentElement.scrollTop;
const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
const scrolled = (winScroll / height) * 100;
document.getElementById('progressBar').style.width = scrolled + '%';
});
// Animate elements when they come into view
const animateOnScroll = () => {
const elements = document.querySelectorAll('.animated-bar');
elements.forEach(el => {
const rect = el.getBoundingClientRect();
if (rect.top < window.innerHeight - 100) {
el.style.animationPlayState = 'running';
}
});
};
// Run once on load and then on scroll
animateOnScroll();
window.addEventListener('scroll', animateOnScroll);
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=bzouiri/testwebdite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>