undefined / services.html
Matheuscano's picture
crie um site de pastelaria com html css e js
972b891 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Services | Cosmic Canvas</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: #f8fafc;
}
.hero-gradient {
background: radial-gradient(circle at 50% 0%, rgba(56, 182, 255, 0.15) 0%, transparent 70%);
}
.card-gradient {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
}
.text-gradient {
background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 50%, #0ea5e9 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.glow {
filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.5));
}
.animated-border {
position: relative;
}
.animated-border::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 50%, #0ea5e9 100%);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}
.animated-border:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.service-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);
}
.tab-active {
color: #38bdf8;
border-color: #38bdf8;
}
</style>
</head>
<body id="vanta-bg" class="min-h-screen">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-opacity-90 backdrop-blur-md bg-slate-900/80 border-b border-slate-800">
<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">
<a href="index.html" class="text-2xl font-bold text-gradient">CosmicCanvas</a>
</div>
<div class="hidden md:ml-10 md:flex md:space-x-8">
<a href="index.html" class="animated-border inline-flex items-center px-1 pt-1 text-sm font-medium text-slate-400 hover:text-sky-400">Home</a>
<a href="services.html" class="animated-border inline-flex items-center px-1 pt-1 text-sm font-medium text-slate-100 hover:text-sky-400">Services</a>
<a href="work.html" class="animated-border inline-flex items-center px-1 pt-1 text-sm font-medium text-slate-400 hover:text-sky-400">Work</a>
<a href="about.html" class="animated-border inline-flex items-center px-1 pt-1 text-sm font-medium text-slate-400 hover:text-sky-400">About</a>
<a href="blog.html" class="animated-border inline-flex items-center px-1 pt-1 text-sm font-medium text-slate-400 hover:text-sky-400">Blog</a>
<a href="contact.html" class="animated-border inline-flex items-center px-1 pt-1 text-sm font-medium text-slate-400 hover:text-sky-400">Contact</a>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center">
<a href="contact.html" class="ml-8 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-gradient-to-r from-sky-500 to-blue-600 hover:from-sky-600 hover:to-blue-700 shadow-lg transform transition-all hover:scale-105 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-sky-500">
Get Started
</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-slate-400 hover:text-white hover:bg-slate-700 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="index.html" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-slate-300 hover:bg-slate-800 hover:border-slate-600">Home</a>
<a href="services.html" class="block pl-3 pr-4 py-2 border-l-4 border-sky-500 text-base font-medium text-white bg-slate-800">Services</a>
<a href="work.html" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-slate-300 hover:bg-slate-800 hover:border-slate-600">Work</a>
<a href="about.html" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-slate-300 hover:bg-slate-800 hover:border-slate-600">About</a>
<a href="blog.html" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-slate-300 hover:bg-slate-800 hover:border-slate-600">Blog</a>
<a href="contact.html" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-slate-300 hover:bg-slate-800 hover:border-slate-600">Contact</a>
<div class="pt-4 pb-3 border-t border-slate-700">
<div class="mt-3 space-y-1">
<a href="contact.html" class="block w-full text-center px-4 py-2 text-base font-medium rounded-md text-white bg-gradient-to-r from-sky-500 to-blue-600 hover:from-sky-600 hover:to-blue-700">Get Started</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-gradient pt-32 pb-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl">
<span class="block">Our Comprehensive</span>
<span class="block text-gradient">Service Offerings</span>
</h1>
<p class="mt-3 max-w-md mx-auto text-base text-slate-300 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl">
We provide end-to-end digital solutions tailored to your unique business needs. Explore our specialized services below.
</p>
<div class="mt-8 flex justify-center">
<a href="#services" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-sky-100 bg-slate-800 hover:bg-slate-700 shadow-lg transform transition-all hover:scale-105">
Explore Services
<i data-feather="arrow-down" class="ml-2"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Services Tabs -->
<div class="py-12 bg-slate-900/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-base text-sky-400 font-semibold tracking-wide uppercase" id="services">Specialized Solutions</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl">
Tailored services for every need
</p>
</div>
<div class="mt-12">
<div class="border-b border-slate-800">
<nav class="-mb-px flex flex-wrap justify-center" aria-label="Tabs">
<a href="#" class="tab-active mx-4 py-4 px-1 text-center border-b-2 font-medium text-sm md:text-base border-transparent text-slate-400 hover:text-sky-400 hover:border-sky-400">
All Services
</a>
<a href="#" class="mx-4 py-4 px-1 text-center border-b-2 font-medium text-sm md:text-base border-transparent text-slate-400 hover:text-sky-400 hover:border-sky-400">
Development
</a>
<a href="#" class="mx-4 py-4 px-1 text-center border-b-2 font-medium text-sm md:text-base border-transparent text-slate-400 hover:text-sky-400 hover:border-sky-400">
Design
</a>
<a href="#" class="mx-4 py-4 px-1 text-center border-b-2 font-medium text-sm md:text-base border-transparent text-slate-400 hover:text-sky-400 hover:border-sky-400">
Marketing
</a>
<a href="#" class="mx-4 py-4 px-1 text-center border-b-2 font-medium text-sm md:text-base border-transparent text-slate-400 hover:text-sky-400 hover:border-sky-400">
Consulting
</a>
</nav>
</div>
</div>
</div>
</div>
<!-- Services Grid -->
<div class="py-12 bg-slate-900/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
<!-- Service 1 -->
<div class="card-gradient rounded-xl border border-slate-800 overflow-hidden service-card transition-all duration-300">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<i data-feather="code"></i>
</div>
<h3 class="text-xl font-bold text-white mb-2">Custom Web Development</h3>
<p class="text-slate-400 text-sm mb-4">
Bespoke websites built with modern frameworks like React, Vue, and Next.js, optimized for performance and scalability.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">React</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Next.js</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Node.js</span>
</div>
<a href="#" class="text-sm font-medium text-sky-400 hover:text-sky-300 inline-flex items-center">
Learn more
<i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Service 2 -->
<div class="card-gradient rounded-xl border border-slate-800 overflow-hidden service-card transition-all duration-300">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<i data-feather="smartphone"></i>
</div>
<h3 class="text-xl font-bold text-white mb-2">Mobile App Development</h3>
<p class="text-slate-400 text-sm mb-4">
Cross-platform mobile applications using Flutter and React Native that deliver native-like performance.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Flutter</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">React Native</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Swift</span>
</div>
<a href="#" class="text-sm font-medium text-sky-400 hover:text-sky-300 inline-flex items-center">
Learn more
<i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Service 3 -->
<div class="card-gradient rounded-xl border border-slate-800 overflow-hidden service-card transition-all duration-300">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<i data-feather="shopping-cart"></i>
</div>
<h3 class="text-xl font-bold text-white mb-2">E-commerce Solutions</h3>
<p class="text-slate-400 text-sm mb-4">
Complete online store setups with Shopify, WooCommerce, and custom platforms to maximize conversions.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Shopify</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">WooCommerce</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Magento</span>
</div>
<a href="#" class="text-sm font-medium text-sky-400 hover:text-sky-300 inline-flex items-center">
Learn more
<i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Service 4 -->
<div class="card-gradient rounded-xl border border-slate-800 overflow-hidden service-card transition-all duration-300">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<i data-feather="pen-tool"></i>
</div>
<h3 class="text-xl font-bold text-white mb-2">UI/UX Design</h3>
<p class="text-slate-400 text-sm mb-4">
Human-centered design process that creates intuitive, beautiful interfaces optimized for engagement.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Figma</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Adobe XD</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Sketch</span>
</div>
<a href="#" class="text-sm font-medium text-sky-400 hover:text-sky-300 inline-flex items-center">
Learn more
<i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Service 5 -->
<div class="card-gradient rounded-xl border border-slate-800 overflow-hidden service-card transition-all duration-300">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<i data-feather="bar-chart-2"></i>
</div>
<h3 class="text-xl font-bold text-white mb-2">Digital Marketing</h3>
<p class="text-slate-400 text-sm mb-4">
Comprehensive strategies including SEO, PPC, and social media to increase visibility and drive traffic.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">SEO</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">PPC</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">SMM</span>
</div>
<a href="#" class="text-sm font-medium text-sky-400 hover:text-sky-300 inline-flex items-center">
Learn more
<i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Service 6 -->
<div class="card-gradient rounded-xl border border-slate-800 overflow-hidden service-card transition-all duration-300">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<i data-feather="cpu"></i>
</div>
<h3 class="text-xl font-bold text-white mb-2">Emerging Technologies</h3>
<p class="text-slate-400 text-sm mb-4">
Innovative solutions incorporating AI, AR/VR, blockchain and other cutting-edge technologies.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">AI/ML</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">AR/VR</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-slate-800 text-sky-300">Blockchain</span>
</div>
<a href="#" class="text-sm font-medium text-sky-400 hover:text-sky-300 inline-flex items-center">
Learn more
<i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Process Section -->
<div class="py-20 bg-slate-900/50 border-t border-slate-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-sky-400 font-semibold tracking-wide uppercase">Our Approach</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl">
How we deliver exceptional results
</p>
<p class="mt-4 max-w-2xl text-xl text-slate-300 lg:mx-auto">
Our proven methodology ensures quality, efficiency, and client satisfaction at every stage.
</p>
</div>
<div class="mt-16">
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-4">
<!-- Step 1 -->
<div class="card-gradient p-6 rounded-xl border border-slate-800">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<span class="text-lg font-bold">1</span>
</div>
<h3 class="text-lg font-bold text-white mb-2">Discovery</h3>
<p class="text-slate-400 text-sm">
We begin by deeply understanding your business, goals, and audience through research and workshops.
</p>
</div>
<!-- Step 2 -->
<div class="card-gradient p-6 rounded-xl border border-slate-800">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<span class="text-lg font-bold">2</span>
</div>
<h3 class="text-lg font-bold text-white mb-2">Strategy</h3>
<p class="text-slate-400 text-sm">
Crafting a tailored digital strategy that aligns with your objectives and delivers measurable results.
</p>
</div>
<!-- Step 3 -->
<div class="card-gradient p-6 rounded-xl border border-slate-800">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<span class="text-lg font-bold">3</span>
</div>
<h3 class="text-lg font-bold text-white mb-2">Execution</h3>
<p class="text-slate-400 text-sm">
Agile development and iterative design process with regular updates and feedback cycles.
</p>
</div>
<!-- Step 4 -->
<div class="card-gradient p-6 rounded-xl border border-slate-800">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-sky-500 to-blue-600 text-white mb-4 glow">
<span class="text-lg font-bold">4</span>
</div>
<h3 class="text-lg font-bold text-white mb-2">Optimization</h3>
<p class="text-slate-400 text-sm">
Continuous monitoring, testing, and refinement to ensure peak performance and results.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Pricing Section -->
<div class="py-20 bg-slate-900/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-sky-400 font-semibold tracking-wide uppercase">Pricing Plans</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl">
Flexible options for every budget
</p>
<p class="mt-4 max-w-2xl text-xl text-slate-300 lg:mx-auto">
Choose the package that fits your needs or request a custom quote for tailored solutions.
</p>
</div>
<div class="mt-16 space-y-12 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-x-8">
<!-- Basic Plan -->
<div class="card-gradient p-8 rounded-xl border border-slate-800 hover:border-sky-500/30 transition-all duration-300">
<div class="flex items-center justify-between">
<h3 class="text-xl font-bold text-white">Starter</h3>
<span class="inline-flex items-center px-3 py-1 rounded-full text-xs font-medium bg-slate-800 text-sky-300">
Popular
</span>
</div>
<p class="mt-4 text-slate-400">
Perfect for small businesses and startups looking to establish their digital presence.
</p>
<div class="mt-8 flex items-baseline">
<span class="text-4xl font-extrabold text-white">$2,499</span>
<span class="ml-1 text-lg font-medium text-slate-400">/project</span>
</div>
<ul class="mt-8 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Custom Website Design</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Responsive Development</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Basic SEO Setup</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-slate-400">
<i data-feather="x" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Custom Functionality</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-slate-400">
<i data-feather="x" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Ongoing Maintenance</p>
</li>
</ul>
<div class="mt-8">
<a href="#" class="block w-full text-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-gradient-to-r from-sky-500 to-blue-600 hover:from-sky-600 hover:to-blue-700 shadow-lg transform transition-all hover:scale-105">
Get Started
</a>
</div>
</div>
<!-- Professional Plan -->
<div class="card-gradient p-8 rounded-xl border-2 border-sky-500/30 transform scale-105 z-10 relative">
<div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-1/2">
<span class="inline-flex items-center px-3 py-1 rounded-full text-xs font-medium bg-sky-900 text-sky-300">
Recommended
</span>
</div>
<h3 class="text-xl font-bold text-white">Professional</h3>
<p class="mt-4 text-slate-400">
Comprehensive solution for growing businesses needing advanced features and support.
</p>
<div class="mt-8 flex items-baseline">
<span class="text-4xl font-extrabold text-white">$7,999</span>
<span class="ml-1 text-lg font-medium text-slate-400">/project</span>
</div>
<ul class="mt-8 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Custom Website Design</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Responsive Development</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Advanced SEO</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Custom Functionality</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-slate-400">
<i data-feather="x" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Ongoing Maintenance</p>
</li>
</ul>
<div class="mt-8">
<a href="#" class="block w-full text-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-gradient-to-r from-sky-500 to-blue-600 hover:from-sky-600 hover:to-blue-700 shadow-lg transform transition-all hover:scale-105">
Get Started
</a>
</div>
</div>
<!-- Enterprise Plan -->
<div class="card-gradient p-8 rounded-xl border border-slate-800 hover:border-sky-500/30 transition-all duration-300">
<h3 class="text-xl font-bold text-white">Enterprise</h3>
<p class="mt-4 text-slate-400">
Tailored solutions for large organizations with complex requirements and scale.
</p>
<div class="mt-8 flex items-baseline">
<span class="text-4xl font-extrabold text-white">Custom</span>
</div>
<ul class="mt-8 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Custom Website Design</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Responsive Development</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Advanced SEO</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Custom Functionality</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-sky-400">
<i data-feather="check" class="w-5 h-5"></i>
</div>
<p class="ml-3 text-base text-slate-400">Ongoing Maintenance</p>
</li>
</ul>
<div class="mt-8">
<a href="#" class="block w-full text-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-gradient-to-r from-sky-500 to-blue-600 hover:from-sky-600 hover:to-blue-700 shadow-lg transform transition-all hover:scale-105">
Contact Us
</a>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="bg-slate-900/70">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="card-gradient rounded-xl px-6 py-16 sm:p-16">
<div class="max-w-xl mx-auto text-center">
<h2 class="text-3xl font-extrabold text-white sm:text-4xl">
<span class="block">Ready to discuss your project?</span>
</h2>
<p class="mt-4 max-w-lg text-xl text-slate-300 mx-auto">
Schedule a free consultation with our team to explore how we can bring your vision to life.
</p>
<div class="mt-8">
<a href="#" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-gradient-to-r from-sky-500 to-blue-600 hover:from-sky-600 hover:to-blue-700 shadow-lg transform transition-all hover:scale-105">
Book a Consultation
<i data-feather="calendar" class="ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-slate-900/80 border-t border-slate-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="xl:grid xl:grid-cols-3 xl:gap-8">
<div class="space-y-8 xl:col-span-1">
<a href="index.html" class="text-2xl font-bold text-gradient">CosmicCanvas</a>
<p class="text-slate-400 text-sm">
We create digital experiences that captivate, engage, and convert. Our innovative solutions help businesses thrive in the digital landscape.
</p>
<div class="flex space-x-6">
<a href="#" class="text-slate-400 hover:text-sky-400">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-slate-400 hover:text-sky-400">
<i data-feather="facebook"></i>
</a>
<a href="#" class="text-slate-400 hover:text-sky-400">
<i data-feather="instagram"></i>
</a>
<a href="#" class="text-slate-400 hover:text-sky-400">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="text-slate-400 hover:text-sky-400">
<i data-feather="github"></i>
</a>
</div>
</div>
<div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2">
<div class="md:grid md:grid-cols-2 md:gap-8">
<div>
<h3 class="text-sm font-semibold text-slate-200 tracking-wider uppercase">Solutions</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="services.html" class="text-base text-slate-400 hover:text-sky-400">Web Development</a>
</li>
<li>
<a href="services.html" class="text-base text-slate-400 hover:text-sky-400">Mobile Apps</a>
</li>
<li>
<a href="services.html" class="text-base text-slate-400 hover:text-sky-400">UI/UX Design</a>
</li>
<li>
<a href="services.html" class="text-base text-slate-400 hover:text-sky-400">E-commerce</a>
</li>
<li>
<a href="services.html" class="text-base text-slate-400 hover:text-sky-400">Digital Marketing</a>
</li>
</ul>
</div>
<div class="mt-12 md:mt-0">
<h3 class="text-sm font-semibold text-slate-200 tracking-wider uppercase">Company</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="about.html" class="text-base text-slate-400 hover:text-sky-400">About Us</a>
</li>
<li>
<a href="about.html" class="text-base text-slate-400 hover:text-sky-400">Our Team</a>
</li>
<li>
<a href="careers.html" class="text-base text-slate-400 hover:text-sky-400">Careers</a>
</li>
<li>
<a href="blog.html" class="text-base text-slate-400 hover:text-sky-400">Blog</a>
</li>
<li>
<a href="contact.html" class="text-base text-slate-400 hover:text-sky-400">Contact</a>
</li>
</ul>
</div>
</div>
<div class="md:grid md:grid-cols-2 md:gap-8">
<div>
<h3 class="text-sm font-semibold text-slate-200 tracking-wider uppercase">Resources</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">Case Studies</a>
</li>
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">Whitepapers</a>
</li>
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">Webinars</a>
</li>
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">FAQ</a>
</li>
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">Support</a>
</li>
</ul>
</div>
<div class="mt-12 md:mt-0">
<h3 class="text-sm font-semibold text-slate-200 tracking-wider uppercase">Legal</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">Privacy Policy</a>
</li>
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">Terms of Service</a>
</li>
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">Cookie Policy</a>
</li>
<li>
<a href="#" class="text-base text-slate-400 hover:text-sky-400">GDPR</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="mt-12 border-t border-slate-800 pt-8">
<p class="text-base text-slate-400 text-center">
&copy; 2023 Cosmic Canvas. All rights reserved.
</p>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js background
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x0f172a,
points: 12.00,
maxDistance: 22.00,
spacing: 18.00
});
// Initialize Feather Icons
feather.replace();
// Mobile menu toggle
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', function() {
const expanded = this.getAttribute('aria-expanded') === 'true' || false;
this.setAttribute('aria-expanded', !expanded);
mobileMenu.classList.toggle('hidden');
});
});
// Tab functionality
document.querySelectorAll('[aria-label="Tabs"] a').forEach(tab => {
tab.addEventListener('click', function(e) {
e.preventDefault();
// Remove active class from all tabs
document.querySelectorAll('[aria-label="Tabs"] a').forEach(t => {
t.classList.remove('tab-active');
t.classList.add('text-slate-400');
t.classList.remove('text-sky-400', 'border-sky-400');
});
// Add active class to clicked tab
this.classList.add('tab-active');
this.classList.remove('text-slate-400');
this.classList.add('text-sky-400', 'border-sky-400');
});
});
// Animation on scroll
const animateOnScroll = function() {
const elements = document.querySelectorAll('.service-card, .card-gradient, .animated-border');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if(elementPosition < screenPosition) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Set initial state for animations
window.addEventListener('load', function() {
const animatedElements = document.querySelectorAll('.service-card, .card-gradient, .animated-border');
animatedElements.forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
});
setTimeout(() => {
animateOnScroll();
}, 300);
});
// Run animation check on scroll
window.addEventListener('scroll', animateOnScroll);
</script>
</body>
</html>