apex-mind-design / index.html
Miles6048's picture
Add pictures of logos in summit apparel - Initial Deployment
7fb4e85 verified
<!DOCTYPE html>
<html llangang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="widthwidth=device-width, initial-scale=1.0">
<title>Apex Mind | Premium Logo & Web Design</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.gradient-text {
background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.gradient-bg {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
}
.portfolio-item {
transition: all 0.3s ease;
}
.portfolio-item: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);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.mobile-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-out;
}
.mobile-menu.open {
max-height: 500px;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white font-bold text-xl">AM</div>
<a href="#" class="ml-3 text-2xl font-bold gradient-text">Apex Mind</a>
</div>
</div>
<!-- Desktop Navigation -->
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link font-medium">Home</a>
<a href="#services" class="nav-link font-medium">Services</a>
<a href="#portfolio" class="nav-link font-medium">Portfolio</a>
<a href="#about" class="nav-link font-medium">About</a>
<a href="#contact" class="nav-link font-medium">Contact</a>
<a href="#contact" class="px-6 py-2 gradient-bg text-white rounded-full font-medium hover:shadow-lg transition duration-300">Get Started</a>
</div>
<!-- Mobile menu button -->
<div class="md:hidden">
<button id="menu-btn" class="text-gray-800 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
<!-- Mobile Navigation -->
<div id="mobile-menu" class="mobile-menu md:hidden mt-4">
<div class="flex flex-col space-y-4">
<a href="#home" class="block px-3 py-2 rounded-md font-medium">Home</a>
<a href="#services" class="block px-3 py-2 rounded-md font-medium">Services</a>
<a href="#portfolio" class="block px-3 py-2 rounded-md font-medium">Portfolio</a>
<a href="#about" class="block px-3 py-2 rounded-md font-medium">About</a>
<a href="#contact" class="block px-3 py-2 rounded-md font-medium">Contact</a>
<a href="#contact" class="block px-3 py-2 gradient-bg text-white rounded-full text-center font-medium">Get Started</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-32 pb-20 px-6">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
Elevate Your Brand With <span class="gradient-text">Stunning</span> Designs
</h1>
<p class="text-lg text-gray-600 mb-8">
Apex Mind crafts premium logos and websites that captivate audiences and elevate brands to new heights.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="px-8 py-3 gradient-bg text-white rounded-full font-medium text-center hover:shadow-lg transition duration-300">
Start Your Project
</a>
<a href="#portfolio" class="px-8 py-3 border-2 border-indigo-500 text-indigo-500 rounded-full font-medium text-center hover:bg-indigo-50 transition duration-300">
View Our Work
</a>
</div>
</div>
<div class="md:w-1/2">
<div class="relative">
<div class="w-full h-96 bg-gradient-to-r from-indigo-100 via-purple-100 to-pink-100 rounded-2xl flex items-center justify-center">
<div class="text-center p-8">
<div class="w-32 h-32 gradient-bg rounded-full mx-auto mb-6 flex items-center justify-center text-white">
<i class="fas fa-crown text-5xl"></i>
</div>
<h3 class="text-2xl font-bold mb-2">Your Brand's Apex</h3>
<p class="text-gray-600">Where design meets excellence</p>
</div>
</div>
<div class="absolute -bottom-6 -left-6 w-32 h-32 bg-purple-200 rounded-2xl -z-10"></div>
<div class="absolute -top-6 -right-6 w-24 h-24 bg-pink-200 rounded-2xl -z-10"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-100 px-6">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="gradient-text">Services</span></h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
We offer comprehensive design solutions to help your brand stand out in the digital landscape.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white mb-6">
<i class="fas fa-pen-fancy text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Logo Design</h3>
<p class="text-gray-600 mb-4">
Crafting unique, memorable logos that perfectly represent your brand's identity and values.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>Custom logo concepts</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>Brand identity development</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>Multiple revisions</span>
</li>
</ul>
</div>
<!-- Service 2 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white mb-6">
<i class="fas fa-laptop-code text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Web Design</h3>
<p class="text-gray-600 mb-4">
Creating beautiful, responsive websites that engage visitors and convert them into customers.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>UI/UX design</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>Mobile-responsive</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>SEO optimized</span>
</li>
</ul>
</div>
<!-- Service 3 -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white mb-6">
<i class="fas fa-palette text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Branding</h3>
<p class="text-gray-600 mb-4">
Comprehensive branding packages that establish a cohesive visual identity across all platforms.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>Color palette</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>Typography system</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-indigo-500 mr-2"></i>
<span>Brand guidelines</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 px-6">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="gradient-text">Portfolio</span></h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
Explore our recent projects that showcase our design expertise and creative approach.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Portfolio Item 1 -->
<div class="portfolio-item bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-64 bg-gradient-to-r from-blue-100 to-indigo-100 flex items-center justify-center p-4">
<div class="flex space-x-4">
<img src="https://i.imgur.com/JK5xQ0D.png" alt="Summit Apparel Logo" class="h-48 object-contain">
<img src="https://i.imgur.com/8G3fL2m.png" alt="Summit Apparel Branding" class="h-48 object-contain">
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Summit Apparel</h3>
<p class="text-gray-600 mb-4">Modern logo and branding for outdoor clothing company</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-indigo-100 text-indigo-800 rounded-full text-sm">Logo</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full text-sm">Branding</span>
</div>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="portfolio-item bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-64 bg-gradient-to-r from-pink-100 to-rose-100 flex items-center justify-center">
<i class="fas fa-coffee text-6xl text-pink-500 opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Brew Haven</h3>
<p class="text-gray-600 mb-4">Website design for specialty coffee shop chain</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-pink-100 text-pink-800 rounded-full text-sm">Web Design</span>
<span class="px-3 py-1 bg-rose-100 text-rose-800 rounded-full text-sm">UI/UX</span>
</div>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="portfolio-item bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-64 bg-gradient-to-r from-green-100 to-teal-100 flex items-center justify-center">
<i class="fas fa-leaf text-6xl text-teal-500 opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Verdant Living</h3>
<p class="text-gray-600 mb-4">Complete branding for sustainable home goods store</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-green-100 text-green-800 rounded-full text-sm">Branding</span>
<span class="px-3 py-1 bg-teal-100 text-teal-800 rounded-full text-sm">Packaging</span>
</div>
</div>
</div>
<!-- Portfolio Item 4 -->
<div class="portfolio-item bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-64 bg-gradient-to-r from-yellow-100 to-amber-100 flex items-center justify-center">
<i class="fas fa-gem text-6xl text-amber-500 opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Luxe Jewelry</h3>
<p class="text-gray-600 mb-4">Elegant logo and website for high-end jewelry brand</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-amber-100 text-amber-800 rounded-full text-sm">Logo</span>
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 rounded-full text-sm">Web Design</span>
</div>
</div>
</div>
<!-- Portfolio Item 5 -->
<div class="portfolio-item bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-64 bg-gradient-to-r from-purple-100 to-violet-100 flex items-center justify-center">
<i class="fas fa-brain text-6xl text-violet-500 opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Mindful Tech</h3>
<p class="text-gray-600 mb-4">Tech startup branding and web application design</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full text-sm">Branding</span>
<span class="px-3 py-1 bg-violet-100 text-violet-800 rounded-full text-sm">UI/UX</span>
</div>
</div>
</div>
<!-- Portfolio Item 6 -->
<div class="portfolio-item bg-white rounded-xl overflow-hidden shadow-md">
<div class="h-64 bg-gradient-to-r from-rose-100 to-fuchsia-100 flex items-center justify-center">
<i class="fas fa-spa text-6xl text-fuchsia-500 opacity-30"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Serene Spa</h3>
<p class="text-gray-600 mb-4">Relaxing branding and website for luxury spa</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-rose-100 text-rose-800 rounded-full text-sm">Logo</span>
<span class="px-3 py-1 bg-fuchsia-100 text-fuchsia-800 rounded-full text-sm">Web Design</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#contact" class="px-8 py-3 gradient-bg text-white rounded-full font-medium hover:shadow-lg transition duration-300">
View More Projects
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-100 px-6">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="text-3xl md:text-4xl font-bold mb-6">About <span class="gradient-text">Apex Mind</span></h2>
<p class="text-lg text-gray-600 mb-6">
Founded in 2018, Apex Mind has been helping businesses elevate their brand presence through thoughtful design and strategic creativity.
</p>
<p class="text-lg text-gray-600 mb-8">
Our team of passionate designers combines artistic vision with business acumen to create designs that not only look stunning but also drive results.
</p>
<div class="flex items-center space-x-4">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white">
<i class="fas fa-trophy text-2xl"></i>
</div>
<div>
<h4 class="font-bold text-xl">50+</h4>
<p class="text-gray-600">Satisfied Clients</p>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="relative">
<div class="bg-white p-8 rounded-xl shadow-lg">
<h3 class="text-2xl font-bold mb-4">Our Design Philosophy</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 gradient-bg rounded-full flex items-center justify-center text-white">
<i class="fas fa-lightbulb"></i>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold">Innovative Thinking</h4>
<p class="text-gray-600">We push boundaries to create unique designs that stand out.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 gradient-bg rounded-full flex items-center justify-center text-white">
<i class="fas fa-bullseye"></i>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold">Strategic Approach</h4>
<p class="text-gray-600">Every design decision serves a purpose in your brand strategy.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 gradient-bg rounded-full flex items-center justify-center text-white">
<i class="fas fa-heart"></i>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold">Passion for Excellence</h4>
<p class="text-gray-600">We're committed to delivering nothing but the best for our clients.</p>
</div>
</div>
</div>
</div>
<div class="absolute -bottom-6 -right-6 w-32 h-32 bg-indigo-200 rounded-2xl -z-10"></div>
<div class="absolute -top-6 -left-6 w-24 h-24 bg-pink-200 rounded-2xl -z-10"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 px-6">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Client <span class="gradient-text">Testimonials</span></h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
Don't just take our word for it. Here's what our clients say about working with Apex Mind.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center text-white font-bold">JD</div>
<div class="ml-4">
<h4 class="font-bold">James Donovan</h4>
<p class="text-gray-600">CEO, Summit Apparel</p>
</div>
</div>
<p class="text-gray-600 mb-4">
"Apex Mind transformed our brand identity with a logo that perfectly captures our adventurous spirit. The design process was collaborative and professional."
</p>
<div class="flex text-yellow-400">
<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>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center text-white font-bold">SM</div>
<div class="ml-4">
<h4 class="font-bold">Sarah Mitchell</h4>
<p class="text-gray-600">Founder, Brew Haven</p>
</div>
</div>
<p class="text-gray-600 mb-4">
"Our website traffic increased by 200% after Apex Mind redesigned our site. Their attention to user experience was exceptional."
</p>
<div class="flex text-yellow-400">
<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>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<div class="w-12 h-12 gradient-bg rounded-full flex items-center justify-center text-white font-bold">RC</div>
<div class="ml-4">
<h4 class="font-bold">Rachel Chen</h4>
<p class="text-gray-600">Marketing Director, Verdant Living</p>
</div>
</div>
<p class="text-gray-600 mb-4">
"The branding package we received was comprehensive and elevated our market position. Apex Mind truly understands how design impacts business."
</p>
<div class="flex text-yellow-400">
<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>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-900 text-white px-6">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Ready to <span class="gradient-text">Elevate</span> Your Brand?</h2>
<p class="text-lg text-gray-300 max-w-2xl mx-auto">
Get in touch to discuss your project and how we can help bring your vision to life.
</p>
</div>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h3 class="text-2xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center text-white">
<i class="fas fa-envelope"></i>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold">Email Us</h4>
<p class="text-gray-300">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center text-white">
<i class="fas fa-phone-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold">Call Us</h4>
<p class="text-gray-300">+233 59 801 2018</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 gradient-bg rounded-full flex items-center justify-center text-white">
<i class="fas fa-map-marker-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="font-bold">Visit Us</h4>
<p class="text-gray-300">Accra, Ghana</p>
</div>
</div>
</div>
<div class="mt-12">
<h3 class="text-2xl font-bold mb-6">Follow Us</h3>
<div class="flex space-x-4">
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center text-white hover:gradient-bg transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center text-white hover:gradient-bg transition duration-300">
<i class="fab fa-behance"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center text-white hover:gradient-bg transition duration-300">
<i class="fab fa-dribbble"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-gray-800 flex items-center justify-center text-white hover:gradient-bg transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-gray-800 p-8 rounded-xl">
<div class="mb-6">
<label for="name" class="block text-gray-300 mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-300 mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
<div class="mb-6">
<label for="project" class="block text-gray-300 mb-2">Project Type</label>
<select id="project" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500">
<option value="">Select a service</option>
<option value="logo">Logo Design</option>
<option value="web">Web Design</option>
<option value="branding">Branding</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-300 mb-2">Tell Us About Your Project</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 gradient-bg text-white rounded-lg font-medium hover:shadow-lg transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-950 text-gray-400 py-12 px-6">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center text-white font-bold text-xl">AM</div>
<a href="#" class="ml-3 text-2xl font-bold gradient-text">Apex Mind</a>
</div>
<p class="mt-4 max-w-md">
Elevating brands through exceptional design since 2018.
</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h4 class="text-white font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="hover:text-white transition duration-300">Home</a></li>
<li><a href="#services" class="hover:text-white transition duration-300">Services</a></li>
<li><a href="#portfolio" class="hover:text-white transition duration-300">Portfolio</a></li>
<li><a href="#about" class="hover:text-white transition duration-300">About</a></li>
<li><a href="#contact" class="hover:text-white transition duration-300">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition duration-300">Logo Design</a></li>
<li><a href="#" class="hover:text-white transition duration-300">Web Design</a></li>
<li><a href="#" class="hover:text-white transition duration-300">Branding</a></li>
<li><a href="#" class="hover:text-white transition duration-300">UI/UX Design</a></li>
<li><a href="#" class="hover:text-white transition duration-300">Packaging</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition duration-300">Privacy Policy</a></li>
<li><a href="#" class="hover:text-white transition duration-300">Terms of Service</a></li>
<li><a href="#" class="hover:text-white transition duration-300">Cookie Policy</a></li>
</ul>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p>© 2023 Apex Mind. All rights reserved.</p>
<div class="mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-white mx-3"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white mx-3"><i class="fab fa-behance"></i></a>
<a href="#" class="text-gray-400 hover:text-white mx-3"><i class="fab fa-dribbble"></i></a>
<a href="#" class="text-gray-400 hover:text-white mx-3"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 gradient-bg rounded-full text-white shadow-lg hidden">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('open');
});
// Close mobile menu when clicking on a link
const navLinks = document.querySelectorAll('#mobile-menu a');
navLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.remove('open');
});
});
// Back to top button
const backToTopBtn = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopBtn.classList.remove('hidden');
} else {
backToTopBtn.classList.add('hidden');
}
});
backToTopBtn.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// 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) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
</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=Miles6048/apex-mind-design" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>