dqsdsq / index.html
Youssefmahboub's picture
Make the hero section as a background image and remove the the image on the right - Initial Deployment
747419e verified
Raw
History Blame Contribute Delete
61.1 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus | Creative Marketing Solutions</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>
/* Custom animations */
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
/* Gradient text */
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(#3b82f6, #8b5cf6);
border-radius: 10px;
}
/* Glass morphism effect */
.glass {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
</style>
</head>
<body class="font-sans bg-gray-50 text-gray-800 overflow-x-hidden">
<!-- Preloader -->
<div id="preloader" class="fixed inset-0 bg-white z-50 flex items-center justify-center">
<div class="w-16 h-16 border-4 border-blue-500 border-t-transparent rounded-full animate-spin"></div>
</div>
<!-- Navigation -->
<nav class="fixed w-full z-40 glass py-4 px-6 lg:px-16 transition-all duration-300">
<div class="flex justify-between items-center">
<a href="#" class="text-2xl font-bold gradient-text">NEXUS</a>
<div class="hidden lg:flex space-x-10 items-center">
<a href="#home" class="hover:text-blue-500 transition">Home</a>
<a href="#services" class="hover:text-blue-500 transition">Services</a>
<a href="#portfolio" class="hover:text-blue-500 transition">Portfolio</a>
<a href="#about" class="hover:text-blue-500 transition">About</a>
<a href="#testimonials" class="hover:text-blue-500 transition">Testimonials</a>
<a href="#contact" class="hover:text-blue-500 transition">Contact</a>
<button class="bg-gradient-to-r from-blue-500 to-purple-500 text-white px-6 py-2 rounded-full hover:shadow-lg transition">Get Started</button>
</div>
<button id="mobile-menu-button" class="lg:hidden text-gray-800">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden lg:hidden bg-white mt-4 p-6 rounded-lg shadow-xl">
<div class="flex flex-col space-y-4">
<a href="#home" class="hover:text-blue-500 transition">Home</a>
<a href="#services" class="hover:text-blue-500 transition">Services</a>
<a href="#portfolio" class="hover:text-blue-500 transition">Portfolio</a>
<a href="#about" class="hover:text-blue-500 transition">About</a>
<a href="#testimonials" class="hover:text-blue-500 transition">Testimonials</a>
<a href="#contact" class="hover:text-blue-500 transition">Contact</a>
<button class="bg-gradient-to-r from-blue-500 to-purple-500 text-white px-6 py-2 rounded-full hover:shadow-lg transition">Get Started</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center pt-20 pb-10 px-6 lg:px-16 bg-gradient-to-br from-gray-50 to-blue-50">
<div class="container mx-auto flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-10 lg:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
Transform Your <span class="gradient-text">Brand</span> With Our Marketing Magic
</h1>
<p class="text-lg text-gray-600 mb-8">
We create stunning digital experiences that drive results. Our team of experts will help you stand out in the crowded digital landscape.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-6">
<button class="relative overflow-hidden bg-gradient-to-r from-blue-600 to-purple-600 text-white px-10 py-4 rounded-full hover:shadow-xl transition-all duration-300 transform hover:-translate-y-1 group">
<span class="relative z-10">Get Started</span>
<span class="absolute inset-0 bg-gradient-to-r from-purple-600 to-pink-600 opacity-0 group-hover:opacity-100 transition-opacity duration-300"></span>
</button>
<button class="border-2 border-blue-600 text-blue-600 px-10 py-4 rounded-full hover:bg-blue-50/50 transition-all duration-300 transform hover:-translate-y-1 flex items-center">
<span>Watch Demo</span>
<i class="fas fa-play-circle ml-2 text-xl"></i>
</button>
</div>
<div class="mt-10 flex items-center space-x-6">
<div class="flex -space-x-3">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Client">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Client">
<img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-10 h-10 rounded-full border-2 border-white" alt="Client">
</div>
<div>
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span class="ml-2 font-medium">5.0</span>
</div>
<p class="text-sm text-gray-500">Trusted by 500+ clients</p>
</div>
</div>
</div>
<div class="lg:w-1/2 relative">
<div class="relative floating">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Marketing Team" class="rounded-2xl shadow-2xl w-full max-w-lg mx-auto">
</div>
<div class="absolute -bottom-10 -left-10 bg-white p-6 rounded-xl shadow-lg hidden lg:block">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-chart-line text-blue-500 text-xl"></i>
</div>
<div>
<h3 class="font-bold">+85% ROI</h3>
<p class="text-sm text-gray-500">Average client results</p>
</div>
</div>
</div>
<div class="absolute -top-10 -right-10 bg-white p-6 rounded-xl shadow-lg hidden lg:block">
<div class="flex items-center">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-trophy text-purple-500 text-xl"></i>
</div>
<div>
<h3 class="font-bold">25 Awards</h3>
<p class="text-sm text-gray-500">Industry recognition</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-6">
<p class="text-center text-gray-500 mb-8">TRUSTED BY INDUSTRY LEADERS</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16 opacity-70">
<img src="https://logo.clearbit.com/google.com" alt="Google" class="h-8 md:h-10 grayscale hover:grayscale-0 transition">
<img src="https://logo.clearbit.com/spotify.com" alt="Spotify" class="h-8 md:h-10 grayscale hover:grayscale-0 transition">
<img src="https://logo.clearbit.com/airbnb.com" alt="Airbnb" class="h-8 md:h-10 grayscale hover:grayscale-0 transition">
<img src="https://logo.clearbit.com/slack.com" alt="Slack" class="h-8 md:h-10 grayscale hover:grayscale-0 transition">
<img src="https://logo.clearbit.com/uber.com" alt="Uber" class="h-8 md:h-10 grayscale hover:grayscale-0 transition">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<span class="text-blue-500 font-semibold">OUR SERVICES</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Comprehensive Marketing Solutions</h2>
<p class="max-w-2xl mx-auto text-gray-600">We offer a full spectrum of digital marketing services to help your business grow and thrive in the digital age.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition group">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-blue-500 transition">
<i class="fas fa-bullseye text-blue-500 text-2xl group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold mb-3">Brand Strategy</h3>
<p class="text-gray-600 mb-4">We develop powerful brand strategies that resonate with your target audience and differentiate you from competitors.</p>
<a href="#" class="text-blue-500 font-medium flex items-center group-hover:text-blue-700 transition">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 2 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition group">
<div class="w-16 h-16 bg-purple-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-purple-500 transition">
<i class="fas fa-chart-line text-purple-500 text-2xl group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold mb-3">Digital Marketing</h3>
<p class="text-gray-600 mb-4">Our data-driven digital marketing campaigns deliver measurable results and maximize your return on investment.</p>
<a href="#" class="text-purple-500 font-medium flex items-center group-hover:text-purple-700 transition">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 3 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition group">
<div class="w-16 h-16 bg-pink-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-pink-500 transition">
<i class="fas fa-paint-brush text-pink-500 text-2xl group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold mb-3">Creative Design</h3>
<p class="text-gray-600 mb-4">Stunning visuals that capture attention and communicate your brand message effectively across all platforms.</p>
<a href="#" class="text-pink-500 font-medium flex items-center group-hover:text-pink-700 transition">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 4 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition group">
<div class="w-16 h-16 bg-green-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-green-500 transition">
<i class="fas fa-code text-green-500 text-2xl group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold mb-3">Web Development</h3>
<p class="text-gray-600 mb-4">Custom websites that are fast, secure, and optimized for conversions with seamless user experiences.</p>
<a href="#" class="text-green-500 font-medium flex items-center group-hover:text-green-700 transition">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 5 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition group">
<div class="w-16 h-16 bg-yellow-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-yellow-500 transition">
<i class="fas fa-search text-yellow-500 text-2xl group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold mb-3">SEO Optimization</h3>
<p class="text-gray-600 mb-4">Increase your organic visibility and drive qualified traffic to your website with our proven SEO strategies.</p>
<a href="#" class="text-yellow-500 font-medium flex items-center group-hover:text-yellow-700 transition">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 6 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition group">
<div class="w-16 h-16 bg-red-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-red-500 transition">
<i class="fas fa-video text-red-500 text-2xl group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold mb-3">Video Production</h3>
<p class="text-gray-600 mb-4">Engaging video content that tells your brand story and connects with your audience on an emotional level.</p>
<a href="#" class="text-red-500 font-medium flex items-center group-hover:text-red-700 transition">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-gradient-to-r from-blue-600 to-purple-600 text-white">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<h3 class="text-4xl font-bold mb-2">250+</h3>
<p class="text-blue-100">Projects Completed</p>
</div>
<div class="p-6">
<h3 class="text-4xl font-bold mb-2">98%</h3>
<p class="text-blue-100">Client Satisfaction</p>
</div>
<div class="p-6">
<h3 class="text-4xl font-bold mb-2">15+</h3>
<p class="text-blue-100">Years Experience</p>
</div>
<div class="p-6">
<h3 class="text-4xl font-bold mb-2">50+</h3>
<p class="text-blue-100">Team Members</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<span class="text-blue-500 font-semibold">OUR WORK</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Featured Projects</h2>
<p class="max-w-2xl mx-auto text-gray-600">Explore our portfolio of successful marketing campaigns and creative projects.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12">
<!-- Project 1 -->
<div class="group relative overflow-hidden rounded-xl shadow-md hover:shadow-xl transition">
<img src="https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 1" class="w-full h-64 object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity">
<div>
<h3 class="text-white text-xl font-bold mb-1">EcoLife Branding</h3>
<p class="text-gray-200">Brand Strategy, Visual Identity</p>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="group relative overflow-hidden rounded-xl shadow-md hover:shadow-xl transition">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 2" class="w-full h-64 object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity">
<div>
<h3 class="text-white text-xl font-bold mb-1">TechFlow Website</h3>
<p class="text-gray-200">Web Design, Development</p>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="group relative overflow-hidden rounded-xl shadow-md hover:shadow-xl transition">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Project 3" class="w-full h-64 object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity">
<div>
<h3 class="text-white text-xl font-bold mb-1">UrbanFit Campaign</h3>
<p class="text-gray-200">Digital Marketing, Social Media</p>
</div>
</div>
</div>
</div>
<div class="text-center">
<button class="border-2 border-blue-500 text-blue-500 px-8 py-3 rounded-full hover:bg-blue-50 transition transform hover:-translate-y-1">
View All Projects
</button>
</div>
</div>
</section>
<!-- Process Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<span class="text-blue-500 font-semibold">OUR PROCESS</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">How We Work</h2>
<p class="max-w-2xl mx-auto text-gray-600">Our proven process ensures we deliver exceptional results for every client.</p>
</div>
<div class="relative">
<!-- Timeline -->
<div class="hidden lg:block absolute left-1/2 top-0 h-full w-1 bg-gradient-to-b from-blue-500 to-purple-500 transform -translate-x-1/2"></div>
<!-- Process Steps -->
<div class="space-y-16 lg:space-y-0">
<!-- Step 1 -->
<div class="lg:flex lg:items-center lg:justify-between lg:odd:flex-row-reverse">
<div class="lg:w-5/12 mb-8 lg:mb-0">
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
<span class="text-blue-500 font-bold">01</span>
</div>
<h3 class="text-xl font-bold mb-3">Discovery</h3>
<p class="text-gray-600">We start by deeply understanding your business, goals, and challenges through research and workshops.</p>
</div>
</div>
<div class="lg:w-5/12 flex justify-center">
<div class="w-20 h-20 bg-white rounded-full flex items-center justify-center shadow-lg border-4 border-blue-500">
<i class="fas fa-search text-blue-500 text-2xl"></i>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="lg:flex lg:items-center lg:justify-between lg:odd:flex-row-reverse">
<div class="lg:w-5/12 mb-8 lg:mb-0">
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4">
<span class="text-purple-500 font-bold">02</span>
</div>
<h3 class="text-xl font-bold mb-3">Strategy</h3>
<p class="text-gray-600">We develop a customized marketing strategy tailored to your specific needs and objectives.</p>
</div>
</div>
<div class="lg:w-5/12 flex justify-center">
<div class="w-20 h-20 bg-white rounded-full flex items-center justify-center shadow-lg border-4 border-purple-500">
<i class="fas fa-chess text-purple-500 text-2xl"></i>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="lg:flex lg:items-center lg:justify-between lg:odd:flex-row-reverse">
<div class="lg:w-5/12 mb-8 lg:mb-0">
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="w-12 h-12 bg-pink-100 rounded-lg flex items-center justify-center mb-4">
<span class="text-pink-500 font-bold">03</span>
</div>
<h3 class="text-xl font-bold mb-3">Execution</h3>
<p class="text-gray-600">Our team implements the strategy with precision, creativity, and attention to detail.</p>
</div>
</div>
<div class="lg:w-5/12 flex justify-center">
<div class="w-20 h-20 bg-white rounded-full flex items-center justify-center shadow-lg border-4 border-pink-500">
<i class="fas fa-rocket text-pink-500 text-2xl"></i>
</div>
</div>
</div>
<!-- Step 4 -->
<div class="lg:flex lg:items-center lg:justify-between lg:odd:flex-row-reverse">
<div class="lg:w-5/12 mb-8 lg:mb-0">
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="w-12 h-12 bg-green-100 rounded-lg flex items-center justify-center mb-4">
<span class="text-green-500 font-bold">04</span>
</div>
<h3 class="text-xl font-bold mb-3">Optimization</h3>
<p class="text-gray-600">We continuously analyze results and refine our approach to maximize performance.</p>
</div>
</div>
<div class="lg:w-5/12 flex justify-center">
<div class="w-20 h-20 bg-white rounded-full flex items-center justify-center shadow-lg border-4 border-green-500">
<i class="fas fa-chart-line text-green-500 text-2xl"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<span class="text-blue-500 font-semibold">ABOUT US</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-6">We're More Than Just a Marketing Agency</h2>
<p class="text-gray-600 mb-6">Founded in 2008, Nexus has grown from a small creative studio to a full-service digital marketing agency with a global client base. Our mission is to help businesses thrive in the digital world through innovative strategies and exceptional execution.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-check text-blue-500"></i>
</div>
<p class="text-gray-600">Award-winning team of strategists, designers, and developers</p>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-check text-blue-500"></i>
</div>
<p class="text-gray-600">Data-driven approach with measurable results</p>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-check text-blue-500"></i>
</div>
<p class="text-gray-600">Client-focused service with transparent communication</p>
</div>
</div>
<button class="mt-8 bg-gradient-to-r from-blue-500 to-purple-500 text-white px-8 py-3 rounded-full hover:shadow-lg transition transform hover:-translate-y-1">
Learn More About Us
</button>
</div>
<div class="lg:w-1/2 relative">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our Team" class="rounded-2xl shadow-xl w-full">
<div class="absolute -bottom-8 -right-8 bg-white p-6 rounded-xl shadow-lg hidden lg:block">
<div class="flex items-center">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-award text-purple-500 text-xl"></i>
</div>
<div>
<h3 class="font-bold">Top 5 Agency</h3>
<p class="text-sm text-gray-500">Marketing Week Awards 2023</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<span class="text-blue-500 font-semibold">TESTIMONIALS</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">What Our Clients Say</h2>
<p class="max-w-2xl mx-auto text-gray-600">Don't just take our word for it - hear from some of our satisfied clients.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
<div class="flex items-center mb-6">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">"Nexus transformed our digital presence completely. Our website traffic increased by 300% and our conversion rates doubled within six months of working with them."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-sm text-gray-500">CEO, GreenLife Organics</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
<div class="flex items-center mb-6">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">"The team at Nexus understood our brand perfectly and delivered a campaign that exceeded all our expectations. Their creative approach and attention to detail are unmatched."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-sm text-gray-500">Marketing Director, TechFlow</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
<div class="flex items-center mb-6">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">"Working with Nexus has been a game-changer for our business. Their strategic insights and execution have helped us expand into three new markets this year alone."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma Rodriguez" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Emma Rodriguez</h4>
<p class="text-sm text-gray-500">Founder, UrbanFit</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-r from-blue-600 to-purple-600 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Marketing?</h2>
<p class="max-w-2xl mx-auto text-blue-100 mb-8">Let's discuss how we can help you achieve your business goals with our tailored marketing solutions.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-blue-600 px-8 py-3 rounded-full font-medium hover:bg-gray-100 transition transform hover:-translate-y-1">
Get Started
</button>
<button class="border-2 border-white text-white px-8 py-3 rounded-full hover:bg-white/10 transition transform hover:-translate-y-1">
Book a Consultation
</button>
</div>
</div>
</section>
<!-- Team Section -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<span class="text-blue-500 font-semibold">OUR TEAM</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Meet The Experts</h2>
<p class="max-w-2xl mx-auto text-gray-600">Our talented team brings diverse skills and perspectives to deliver exceptional results.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Team Member 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition">
<div class="h-64 bg-gray-200 overflow-hidden">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Alex Johnson" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">Alex Johnson</h3>
<p class="text-blue-500 mb-4">CEO & Founder</p>
<p class="text-gray-600 text-sm">With 20 years in the industry, Alex leads our strategic vision and client relationships.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<!-- Team Member 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition">
<div class="h-64 bg-gray-200 overflow-hidden">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Sarah Miller" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">Sarah Miller</h3>
<p class="text-blue-500 mb-4">Creative Director</p>
<p class="text-gray-600 text-sm">Sarah oversees all creative work, ensuring brand consistency and innovative design.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<!-- Team Member 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition">
<div class="h-64 bg-gray-200 overflow-hidden">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="David Chen" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">David Chen</h3>
<p class="text-blue-500 mb-4">Digital Strategist</p>
<p class="text-gray-600 text-sm">David develops data-driven marketing strategies that deliver measurable results.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<!-- Team Member 4 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition">
<div class="h-64 bg-gray-200 overflow-hidden">
<img src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Maria Garcia" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">Maria Garcia</h3>
<p class="text-blue-500 mb-4">Head of Development</p>
<p class="text-gray-600 text-sm">Maria leads our technical team in building high-performance digital experiences.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-500 transition"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Blog Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<span class="text-blue-500 font-semibold">OUR BLOG</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Latest Insights</h2>
<p class="max-w-2xl mx-auto text-gray-600">Stay updated with the latest trends and strategies in digital marketing.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Blog Post 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition">
<div class="h-48 bg-gray-200 overflow-hidden">
<img src="https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Blog Post 1" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-3">
<span>June 15, 2023</span>
<span class="mx-2"></span>
<span>5 min read</span>
</div>
<h3 class="text-xl font-bold mb-3">The Future of AI in Digital Marketing</h3>
<p class="text-gray-600 mb-4">Explore how artificial intelligence is revolutionizing marketing strategies and customer experiences.</p>
<a href="#" class="text-blue-500 font-medium flex items-center hover:text-blue-700 transition">
Read more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Blog Post 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition">
<div class="h-48 bg-gray-200 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Blog Post 2" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-3">
<span>May 28, 2023</span>
<span class="mx-2"></span>
<span>7 min read</span>
</div>
<h3 class="text-xl font-bold mb-3">Branding in the Age of Social Media</h3>
<p class="text-gray-600 mb-4">Learn how to build a powerful brand identity that resonates with today's social media audiences.</p>
<a href="#" class="text-blue-500 font-medium flex items-center hover:text-blue-700 transition">
Read more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Blog Post 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition">
<div class="h-48 bg-gray-200 overflow-hidden">
<img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80" alt="Blog Post 3" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-3">
<span>May 10, 2023</span>
<span class="mx-2"></span>
<span>4 min read</span>
</div>
<h3 class="text-xl font-bold mb-3">Data-Driven Marketing: Turning Insights into Action</h3>
<p class="text-gray-600 mb-4">Discover how to leverage analytics to make informed marketing decisions that drive growth.</p>
<a href="#" class="text-blue-500 font-medium flex items-center hover:text-blue-700 transition">
Read more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-blue-500 text-blue-500 px-8 py-3 rounded-full hover:bg-blue-50 transition transform hover:-translate-y-1">
View All Articles
</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="flex flex-col lg:flex-row">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<span class="text-blue-500 font-semibold">CONTACT US</span>
<h2 class="text-3xl md:text-4xl font-bold mt-2 mb-6">Let's Work Together</h2>
<p class="text-gray-600 mb-8">Have a project in mind or want to learn more about our services? Get in touch with our team—we'd love to hear from you.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-500"></i>
</div>
<div>
<h3 class="font-bold mb-1">Our Office</h3>
<p class="text-gray-600">123 Marketing Ave, Suite 400<br>San Francisco, CA 94107</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-500"></i>
</div>
<div>
<h3 class="font-bold mb-1">Email Us</h3>
<p class="text-gray-600">hello@nexusmarketing.com<br>support@nexusmarketing.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-500"></i>
</div>
<div>
<h3 class="font-bold mb-1">Call Us</h3>
<p class="text-gray-600">+1 (555) 123-4567<br>Mon-Fri, 9am-6pm PST</p>
</div>
</div>
</div>
<div class="mt-8 flex space-x-4">
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-500 hover:bg-blue-500 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-500 hover:bg-blue-500 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-500 hover:bg-blue-500 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-500 hover:bg-blue-500 hover:text-white transition">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div class="lg:w-1/2">
<form class="bg-gray-50 p-8 rounded-xl shadow-md">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your name">
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your email">
</div>
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Subject">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your message"></textarea>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-blue-500 to-purple-500 text-white px-6 py-3 rounded-full hover:shadow-lg transition">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Map Section -->
<div class="h-96 w-full bg-gray-200 overflow-hidden">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3153.035073058992!2d-122.40366492453818!3d37.7867554719809!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8085807d10af6e51%3A0x1122879b36a2e8a3!2s123%20Marketing%20Ave%2C%20San%20Francisco%2C%20CA%2094107%2C%20USA!5e0!3m2!1sen!2s!4v1689876543210!5m2!1sen!2s" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-16">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12">
<div>
<a href="#" class="text-2xl font-bold gradient-text mb-4 inline-block">NEXUS</a>
<p class="text-gray-400 mb-6">We help businesses grow through innovative marketing strategies and creative solutions.</p>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-300 hover:bg-blue-500 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-300 hover:bg-blue-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-300 hover:bg-pink-500 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center text-gray-300 hover:bg-blue-600 hover:text-white transition">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Quick Links</h3>
<ul class="space-y-3">
<li><a href="#home" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li>
<li><a href="#portfolio" class="text-gray-400 hover:text-white transition">Portfolio</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Services</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Brand Strategy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Digital Marketing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Creative Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">SEO Optimization</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Video Production</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest updates and marketing insights.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-3 rounded-l-lg w-full focus:outline-none text-gray-900">
<button type="submit" class="bg-gradient-to-r from-blue-500 to-purple-500 px-4 py-3 rounded-r-lg hover:shadow-lg transition">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</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 mb-4 md:mb-0">© 2023 Nexus Marketing. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Preloader
window.addEventListener('load', function() {
const preloader = document.getElementById('preloader');
preloader.style.transition = 'opacity 0.5s ease';
preloader.style.opacity = '0';
setTimeout(() => {
preloader.style.display = 'none';
}, 500);
});
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Navbar scroll effect
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 50) {
nav.classList.add('shadow-lg');
nav.classList.add('bg-white/90');
nav.classList.remove('glass');
} else {
nav.classList.remove('shadow-lg');
nav.classList.remove('bg-white/90');
nav.classList.add('glass');
}
});
// Animation on scroll
function animateOnScroll() {
const elements = document.querySelectorAll('.animate-on-scroll');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementPosition < windowHeight - 100) {
element.classList.add('opacity-100', 'translate-y-0');
}
});
}
// Initialize elements with animation classes
document.addEventListener('DOMContentLoaded', function() {
const sections = document.querySelectorAll('section');
sections.forEach(section => {
section.classList.add('animate-on-scroll', 'opacity-0', 'translate-y-10', 'transition', 'duration-500', 'ease-out');
});
// Initial check
animateOnScroll();
});
// Check on scroll
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=Youssefmahboub/dqsdsq" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>