quantum-ai-v2/templates/homepage.html
Claude 3fc5f01309 Initial Django project setup with working homepage
- Complete Django project structure with apps/ organization
- Working homepage with exact Next.js recreation (1039 lines)
- User authentication system with wallet balance
- Agent system with processors and models
- Stripe payment integration setup
- All Django migrations and URL routing
- Comprehensive .gitignore file
- Homepage loads successfully (HTTP 200)

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-08 16:30:56 +05:30

1039 lines
53 KiB
HTML

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NetCop AI Hub - AI & Cybersecurity Solutions</title>
<link rel="icon" type="image/png" href="{% static 'favicon.png' %}">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-gradient: linear-gradient(135deg, #40E0D0 0%, #1E40AF 100%);
--secondary-gradient: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
--dark-blue: #1E40AF;
--light-blue: #40E0D0;
--text-dark: #1f2937;
--text-light: #6b7280;
--text-white: #ffffff;
--bg-light: #f8fafc;
--white: #ffffff;
--shadow-light: 0 4px 6px rgba(0, 0, 0, 0.07);
--shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.15);
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
color: var(--text-dark);
overflow-x: hidden;
}
/* Page-level fade-in animation */
.page-container {
opacity: 1;
transition: opacity 0.5s ease-in-out;
}
/* Header & Navigation */
.header {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
z-index: 1000;
transition: all 0.3s ease;
}
.header.scrolled {
background: rgba(255, 255, 255, 0.98);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
color: var(--dark-blue);
}
.logo-text {
font-size: 1.8rem;
font-weight: 700;
margin-left: 0.5rem;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-menu a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: color 0.3s ease;
}
.nav-menu a:hover {
color: var(--dark-blue);
}
.nav-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}
.nav-toggle span {
width: 25px;
height: 3px;
background: var(--text-dark);
margin: 3px 0;
transition: 0.3s;
}
/* Animations */
@keyframes float {
0% { transform: translate(0px, 0px) scale(1); }
33% { transform: translate(30px, -50px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.9); }
100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.animate-float {
animation: float 8s ease-in-out infinite;
}
.gradient-text {
background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 40%, #6366f1 80%, #8b5cf6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
background-size: 300% 300%;
animation: gradientShift 6s ease-in-out infinite;
}
/* Service card hover effects */
.service-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/* Button hover effects */
.btn-hover {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hover:hover {
transform: translateY(-3px) scale(1.02);
}
/* Form styles */
input:focus, textarea:focus {
border-color: #40E0D0 !important;
outline: none !important;
box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1) !important;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background-color: var(--white);
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: var(--shadow-light);
padding: 2rem 0;
}
.nav-menu.active {
left: 0;
}
.nav-toggle {
display: flex;
}
.float-element {
display: none !important;
}
}
</style>
</head>
<body>
<div class="page-container">
<!-- Navigation -->
<header class="header">
<nav class="nav-container">
<a href="{% url 'homepage' %}" class="logo">
<span class="logo-text">NetCop AI Hub</span>
</a>
<ul class="nav-menu">
<li><a href="{% url 'marketplace' %}">AI Marketplace</a></li>
<li><a href="{% url 'pricing' %}">Pricing</a></li>
{% if user.is_authenticated %}
<li><a href="{% url 'profile' %}">Profile</a></li>
<li><a href="{% url 'logout' %}">Logout</a></li>
{% else %}
<li><a href="{% url 'login' %}">Login</a></li>
<li><a href="{% url 'register' %}">Register</a></li>
{% endif %}
</ul>
<div class="nav-toggle">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<!-- Enhanced Hero Section with Light Background -->
<section style="
position: relative;
padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px) clamp(60px, 15vw, 100px);
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #f1f5f9 70%, #f8fafc 100%);
overflow: hidden;
min-height: clamp(70vh, 85vh, 85vh);
display: flex;
align-items: center;
margin-top: 70px;
">
<!-- Subtle Background Elements -->
<div style="
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
pointer-events: none;
"></div>
<div style="max-width: 1280px; margin: 0 auto; text-align: center; position: relative; z-index: 1; width: 100%; padding: 0 clamp(8px, 2vw, 16px);">
<!-- Floating Elements with Better Positioning -->
<div class="float-element" style="
position: absolute;
top: clamp(30px, 8vw, 60px);
left: clamp(5%, 10%, 15%);
width: clamp(60px, 15vw, 100px);
height: clamp(60px, 15vw, 100px);
background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(147, 51, 234, 0.05) 100%);
border-radius: 50%;
animation: float 8s ease-in-out infinite;
filter: blur(1px);
"></div>
<div class="float-element" style="
position: absolute;
top: clamp(60px, 12vw, 120px);
right: clamp(5%, 15%, 20%);
width: clamp(50px, 12vw, 80px);
height: clamp(50px, 12vw, 80px);
background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
border-radius: 50%;
animation: float 6s ease-in-out infinite;
animation-delay: 2s;
filter: blur(1px);
"></div>
<div class="float-element" style="
position: absolute;
bottom: clamp(60px, 12vw, 120px);
left: clamp(20%, 30%, 40%);
width: clamp(40px, 10vw, 60px);
height: clamp(40px, 10vw, 60px);
background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.05) 100%);
border-radius: 50%;
animation: float 7s ease-in-out infinite;
animation-delay: 4s;
filter: blur(1px);
"></div>
<!-- Trust Badge -->
<div style="
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(59, 130, 246, 0.08);
padding: 8px 20px;
border-radius: 50px;
margin-bottom: 40px;
font-size: 14px;
font-weight: 600;
color: #3b82f6;
border: 1px solid rgba(59, 130, 246, 0.15);
backdrop-filter: blur(10px);
">
<span style="font-size: 12px;"></span>
<span>Trusted by Industry Leaders</span>
</div>
<h1 style="
font-size: clamp(36px, 8vw, 110px);
font-weight: 800;
margin-bottom: clamp(24px, 6vw, 40px);
line-height: 1.1;
letter-spacing: -0.02em;
">
<span class="gradient-text">AI & Cybersecurity</span>
<br>
<span style="color: #1e293b; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);">Solutions</span>
</h1>
<p style="
font-size: clamp(1.1rem, 3vw, 1.4rem);
color: #475569;
margin-bottom: clamp(32px, 8vw, 56px);
max-width: 720px;
margin: 0 auto clamp(32px, 8vw, 56px) auto;
line-height: 1.7;
font-weight: 400;
padding: 0 clamp(8px, 2vw, 16px);
">
Secure your digital future with state-of-the-art AI solutions and expert cybersecurity strategies tailored for your business needs.
</p>
<!-- Enhanced CTA Buttons -->
<div style="
display: flex;
justify-content: center;
gap: clamp(12px, 3vw, 20px);
flex-wrap: wrap;
margin-bottom: clamp(40px, 10vw, 80px);
padding: 0 clamp(8px, 2vw, 16px);
">
<a href="#contact" class="btn-hover" style="
background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
color: white;
padding: clamp(14px, 4vw, 18px) clamp(24px, 6vw, 36px);
border-radius: 14px;
font-weight: 700;
font-size: clamp(14px, 3.5vw, 18px);
text-decoration: none;
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25), 0 4px 12px rgba(0, 0, 0, 0.05);
letter-spacing: 0.01em;
min-height: 48px;
min-width: clamp(140px, 40vw, 180px);
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
">
Get Protected Now
</a>
<a href="{% url 'marketplace' %}" class="btn-hover" style="
background: white;
color: #3b82f6;
padding: clamp(14px, 4vw, 18px) clamp(24px, 6vw, 36px);
border-radius: 14px;
font-weight: 600;
font-size: clamp(14px, 3.5vw, 18px);
border: 2px solid #e2e8f0;
text-decoration: none;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(59, 130, 246, 0.08);
display: inline-flex;
align-items: center;
justify-content: center;
letter-spacing: 0.01em;
min-height: 48px;
min-width: clamp(140px, 40vw, 180px);
text-align: center;
">
Explore AI Hub
</a>
</div>
<!-- Enhanced Trust Indicators -->
<div style="
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
gap: clamp(16px, 4vw, 48px);
max-width: 600px;
margin: 0 auto;
padding: 0 clamp(8px, 2vw, 16px);
">
<div style="
text-align: center;
padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 16px);
background: rgba(255, 255, 255, 0.5);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
">
<div style="
font-size: clamp(1.8rem, 5vw, 2.5rem);
font-weight: 800;
margin-bottom: 8px;
background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
">{{ total_agents }}+</div>
<div style="
font-size: clamp(12px, 3vw, 15px);
color: #64748b;
font-weight: 500;
letter-spacing: 0.01em;
">Active AI Agents</div>
</div>
<div style="
text-align: center;
padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 16px);
background: rgba(255, 255, 255, 0.5);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
">
<div style="
font-size: clamp(1.8rem, 5vw, 2.5rem);
font-weight: 800;
margin-bottom: 8px;
background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
">24/7</div>
<div style="
font-size: clamp(12px, 3vw, 15px);
color: #64748b;
font-weight: 500;
letter-spacing: 0.01em;
">Rapid Response</div>
</div>
<div style="
text-align: center;
padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 16px);
background: rgba(255, 255, 255, 0.5);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
">
<div style="
font-size: clamp(1.8rem, 5vw, 2.5rem);
font-weight: 800;
margin-bottom: 8px;
background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
">{{ total_users }}+</div>
<div style="
font-size: clamp(12px, 3vw, 15px);
color: #64748b;
font-weight: 500;
letter-spacing: 0.01em;
">Registered Users</div>
</div>
</div>
</div>
</section>
<!-- Enhanced Company Profile Section -->
<section style="
padding: clamp(60px, 15vw, 120px) clamp(16px, 4vw, 24px);
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
position: relative;
overflow: hidden;
">
<!-- Background decorative elements -->
<div style="
position: absolute;
top: 10%;
right: 5%;
width: 200px;
height: 200px;
background: rgba(30, 64, 175, 0.03);
border-radius: 50%;
filter: blur(40px);
"></div>
<div style="
position: absolute;
bottom: 10%;
left: 5%;
width: 150px;
height: 150px;
background: rgba(64, 224, 208, 0.05);
border-radius: 50%;
filter: blur(30px);
"></div>
<div style="max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;">
<!-- Section Header -->
<div style="text-align: center; margin-bottom: clamp(40px, 10vw, 80px);">
<div style="
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(30, 64, 175, 0.1);
padding: 8px 20px;
border-radius: 50px;
margin-bottom: 24px;
border: 1px solid rgba(30, 64, 175, 0.2);
">
<span style="font-size: 16px;">🏢</span>
<span style="font-size: 14px; font-weight: 600; color: #1E40AF;">About Netcop Consultancy</span>
</div>
<h2 style="
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
color: #1E40AF;
margin-bottom: 16px;
text-align: center;
">Your Trusted Digital Guardian</h2>
<p style="
font-size: 1.2rem;
color: #6b7280;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
">Pioneering the future of cybersecurity with AI-powered solutions</p>
</div>
<div style="
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
gap: clamp(40px, 10vw, 80px);
align-items: center;
">
<!-- Content Side -->
<div>
<div style="
background: white;
padding: clamp(24px, 6vw, 48px);
border-radius: 24px;
box-shadow: 0 20px 60px rgba(30, 64, 175, 0.08);
border: 1px solid rgba(255, 255, 255, 0.8);
position: relative;
">
<!-- Decorative corner -->
<div style="
position: absolute;
top: 0;
right: 0;
width: 80px;
height: 80px;
background: linear-gradient(135deg, #40E0D0 0%, #1E40AF 100%);
border-top-right-radius: 24px;
border-bottom-left-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
">🛡️</div>
<h3 style="
font-size: clamp(1.3rem, 4vw, 1.8rem);
font-weight: 700;
color: #1E40AF;
margin-bottom: clamp(16px, 4vw, 24px);
margin-top: clamp(12px, 3vw, 20px);
">Defending Digital Frontiers</h3>
<p style="
color: #4b5563;
font-size: clamp(14px, 3.5vw, 18px);
line-height: 1.8;
margin-bottom: clamp(20px, 5vw, 32px);
">
At Netcop Consultancy, we provide <strong>state-of-the-art AI & Cybersecurity solutions</strong> tailored to safeguard your business. From advanced AI Agents to robust defense strategies, we empower you to navigate the digital world with confidence.
</p>
<!-- Enhanced badges -->
<div style="
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
gap: clamp(12px, 3vw, 16px);
margin-bottom: clamp(20px, 5vw, 32px);
">
<div style="
background: linear-gradient(135deg, #40E0D0 0%, #1E40AF 100%);
color: white;
padding: clamp(12px, 3vw, 16px);
border-radius: 12px;
font-size: clamp(12px, 3vw, 14px);
font-weight: 600;
text-align: center;
box-shadow: 0 4px 16px rgba(64, 224, 208, 0.3);
">
<div style="font-size: clamp(18px, 4vw, 24px); margin-bottom: 8px;">📅</div>
{{ total_agents }}+ AI Agents Available
</div>
<div style="
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: clamp(12px, 3vw, 16px);
border-radius: 12px;
font-size: clamp(12px, 3vw, 14px);
font-weight: 600;
text-align: center;
box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
">
<div style="font-size: clamp(18px, 4vw, 24px); margin-bottom: 8px;">🏆</div>
Top Certifications
</div>
</div>
<div style="
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
color: white;
padding: clamp(12px, 3vw, 16px);
border-radius: 12px;
font-size: clamp(12px, 3vw, 14px);
font-weight: 600;
text-align: center;
box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
">
<div style="font-size: clamp(18px, 4vw, 24px); margin-bottom: 8px;"></div>
Lean Six Sigma Black Belt
</div>
</div>
</div>
<!-- Visual Side -->
<div style="position: relative;">
<!-- Main visual container -->
<div style="
width: 100%;
max-width: 500px;
height: clamp(250px, 50vw, 400px);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: clamp(16px, 4vw, 32px);
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(3rem, 8vw, 5rem);
box-shadow: 0 32px 80px rgba(30, 64, 175, 0.2);
position: relative;
margin: 0 auto;
overflow: hidden;
">
<!-- Animated background pattern -->
<div class="animate-float" style="
position: absolute;
top: 20%;
left: 20%;
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
"></div>
<div class="animate-float" style="
position: absolute;
bottom: 20%;
right: 20%;
width: 40px;
height: 40px;
background: rgba(64, 224, 208, 0.3);
border-radius: 50%;
animation-delay: 2s;
"></div>
<!-- Main icon -->
<div style="
color: white;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
z-index: 1;
position: relative;
">🛡️</div>
</div>
<!-- Floating elements around the main visual -->
<div class="float-element animate-float" style="
position: absolute;
top: 10%;
right: clamp(-20%, -10%, -5%);
width: clamp(50px, 12vw, 80px);
height: clamp(50px, 12vw, 80px);
background: white;
border-radius: clamp(8px, 2vw, 16px);
box-shadow: 0 8px 32px rgba(30, 64, 175, 0.15);
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(1.2rem, 3vw, 2rem);
">🔒</div>
<div class="float-element animate-float" style="
position: absolute;
bottom: 15%;
left: clamp(-10%, -5%, 0%);
width: clamp(40px, 10vw, 60px);
height: clamp(40px, 10vw, 60px);
background: white;
border-radius: 50%;
box-shadow: 0 8px 32px rgba(64, 224, 208, 0.15);
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(1rem, 2.5vw, 1.5rem);
animation-delay: 1s;
">🤖</div>
</div>
</div>
<!-- Bottom achievement strip -->
<div style="
margin-top: clamp(40px, 10vw, 80px);
background: white;
border-radius: clamp(12px, 3vw, 20px);
padding: clamp(20px, 5vw, 32px);
box-shadow: 0 16px 48px rgba(30, 64, 175, 0.08);
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
gap: clamp(16px, 4vw, 32px);
align-items: center;
">
<div style="text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;">🎯</div>
<div style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF;">Mission Critical</div>
<div style="font-size: clamp(12px, 3vw, 14px); color: #6b7280;">Zero Compromise</div>
</div>
<div style="text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;"></div>
<div style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF;">Rapid Response</div>
<div style="font-size: clamp(12px, 3vw, 14px); color: #6b7280;">24/7 Protection</div>
</div>
<div style="text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;">🔬</div>
<div style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF;">Innovation</div>
<div style="font-size: clamp(12px, 3vw, 14px); color: #6b7280;">Cutting Edge Tech</div>
</div>
<div style="text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;">🤝</div>
<div style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF;">Trusted Partner</div>
<div style="font-size: clamp(12px, 3vw, 14px); color: #6b7280;">Industry Leaders</div>
</div>
</div>
</div>
</section>
<!-- Services Section - Modern Cards -->
<section style="padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px); background: linear-gradient(135deg, #f6f8ff 0%, #e8f0fe 100%);">
<div style="max-width: 1200px; margin: 0 auto;">
<h2 style="font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: 16px; color: #1E40AF;">
Our Services
</h2>
<p style="text-align: center; color: #6b7280; font-size: clamp(16px, 4vw, 20px); margin-bottom: clamp(24px, 6vw, 48px);">
Tailored strategies for your business
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(16px, 4vw, 32px);">
<div class="service-card" style="background: white; border-radius: clamp(12px, 3vw, 20px); padding: clamp(20px, 5vw, 40px); box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08); text-align: center;">
<div style="font-size: clamp(2rem, 6vw, 3rem); margin-bottom: clamp(12px, 3vw, 20px);">🛡️</div>
<h3 style="font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 700; color: #1E40AF; margin-bottom: clamp(12px, 3vw, 16px);">Cybersecurity Consultation</h3>
<p style="color: #6b7280; font-size: clamp(14px, 3.5vw, 18px); line-height: 1.6;">
Tailored strategies, advanced threat detection, and comprehensive security frameworks to protect your digital assets and business operations.
</p>
</div>
<div class="service-card" style="background: white; border-radius: clamp(12px, 3vw, 20px); padding: clamp(20px, 5vw, 40px); box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08); text-align: center;">
<div style="font-size: clamp(2rem, 6vw, 3rem); margin-bottom: clamp(12px, 3vw, 20px);">🤖</div>
<h3 style="font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 700; color: #1E40AF; margin-bottom: clamp(12px, 3vw, 16px);">AI Based Automation</h3>
<p style="color: #6b7280; font-size: clamp(14px, 3.5vw, 18px); line-height: 1.6;">
Empower your Business with AI. Strategic AI adoption, machine learning solutions, and intelligent automation to transform your processes.
</p>
</div>
<div class="service-card" style="background: white; border-radius: clamp(12px, 3vw, 20px); padding: clamp(20px, 5vw, 40px); box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08); text-align: center;">
<div style="font-size: clamp(2rem, 6vw, 3rem); margin-bottom: clamp(12px, 3vw, 20px);"></div>
<h3 style="font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 700; color: #1E40AF; margin-bottom: clamp(12px, 3vw, 16px);">Rapid Response Solutions</h3>
<p style="color: #6b7280; font-size: clamp(14px, 3.5vw, 18px); line-height: 1.6;">
Rapid response to minimize damage. Emergency incident response and real-time threat mitigation to protect your business.
</p>
</div>
</div>
</div>
</section>
<!-- Clients Section - Modern Cards -->
<section style="padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px); background: linear-gradient(135deg, #e0f7fa 0%, #f0f9ff 100%);">
<div style="max-width: 1200px; margin: 0 auto;">
<h2 style="font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: clamp(24px, 6vw, 48px); color: #1E40AF;">
Our Clients
</h2>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: clamp(16px, 4vw, 32px);">
<div style="background: white; border-radius: clamp(12px, 3vw, 16px); padding: clamp(20px, 5vw, 32px); box-shadow: 0 4px 16px rgba(30, 64, 175, 0.07); text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;">🏭</div>
<h3 style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF; margin-bottom: 6px;">MTSV Foods Industries Pvt Ltd</h3>
<p style="color: #6b7280; font-size: clamp(12px, 3vw, 16px);">Food & Beverage Industry</p>
</div>
<div style="background: white; border-radius: clamp(12px, 3vw, 16px); padding: clamp(20px, 5vw, 32px); box-shadow: 0 4px 16px rgba(30, 64, 175, 0.07); text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;">🏗️</div>
<h3 style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF; margin-bottom: 6px;">Apple Tree Industries</h3>
<p style="color: #6b7280; font-size: clamp(12px, 3vw, 16px);">Manufacturing & Processing</p>
</div>
<div style="background: white; border-radius: clamp(12px, 3vw, 16px); padding: clamp(20px, 5vw, 32px); box-shadow: 0 4px 16px rgba(30, 64, 175, 0.07); text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;">💻</div>
<h3 style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF; margin-bottom: 6px;">TechStart Solutions</h3>
<p style="color: #6b7280; font-size: clamp(12px, 3vw, 16px);">Technology Consulting</p>
</div>
<div style="background: white; border-radius: clamp(12px, 3vw, 16px); padding: clamp(20px, 5vw, 32px); box-shadow: 0 4px 16px rgba(30, 64, 175, 0.07); text-align: center;">
<div style="font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 8px;">🚚</div>
<h3 style="font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; color: #1E40AF; margin-bottom: 6px;">Global Logistics Corp</h3>
<p style="color: #6b7280; font-size: clamp(12px, 3vw, 16px);">Supply Chain Management</p>
</div>
</div>
</div>
</section>
<!-- Our Founder Section -->
<section style="padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px); background: white;">
<div style="max-width: 1200px; margin: 0 auto;">
<h2 style="font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: clamp(24px, 6vw, 48px); color: #1E40AF;">
Our Founder
</h2>
<div style="
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
gap: clamp(30px, 8vw, 60px);
align-items: center;
">
<div style="order: 2;">
<div style="
width: 100%;
max-width: 400px;
margin: 0 auto;
background: linear-gradient(135deg, #40E0D0 0%, #1E40AF 100%);
border-radius: clamp(16px, 4vw, 24px);
padding: clamp(24px, 6vw, 40px);
text-align: center;
color: white;
box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
">
<div style="font-size: clamp(2.5rem, 8vw, 4rem); margin-bottom: clamp(12px, 3vw, 20px);">👨‍💼</div>
<h3 style="font-size: clamp(1.3rem, 4vw, 1.8rem); font-weight: 700; margin-bottom: 8px;">Abhay Pal Chauhan</h3>
<p style="font-size: clamp(14px, 3.5vw, 18px); opacity: 0.9; margin-bottom: 16px;">
Founder & Principal Consultant
</p>
<div style="display: flex; gap: clamp(8px, 2vw, 12px); flex-wrap: wrap; justify-content: center;">
<div style="background: rgba(255, 255, 255, 0.2); padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px); border-radius: clamp(16px, 4vw, 20px); font-size: clamp(10px, 2.5vw, 12px); font-weight: 600;">
{{ total_agents }}+ AI Agents Available
</div>
<div style="background: rgba(255, 255, 255, 0.2); padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px); border-radius: clamp(16px, 4vw, 20px); font-size: clamp(10px, 2.5vw, 12px); font-weight: 600;">
Cybersecurity Expert
</div>
<div style="background: rgba(255, 255, 255, 0.2); padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px); border-radius: clamp(16px, 4vw, 20px); font-size: clamp(10px, 2.5vw, 12px); font-weight: 600;">
Six Sigma Black Belt
</div>
</div>
</div>
</div>
<div style="order: 1;">
<p style="color: #6b7280; font-size: clamp(16px, 4vw, 19px); line-height: 1.8; margin-bottom: clamp(16px, 4vw, 24px);">
Our Founder leverages over <strong style="color: #1E40AF;">18 years of expertise</strong> in cybersecurity and process automation and optimization, backed by top certifications in Cybersecurity and <strong style="color: #1E40AF;">Black Belt in Lean Six Sigma</strong>.
</p>
<p style="color: #6b7280; font-size: clamp(16px, 4vw, 19px); line-height: 1.8; margin-bottom: clamp(20px, 5vw, 32px);">
His unique blend of technical knowledge and operational excellence ensures <strong style="color: #1E40AF;">tailored, secure, and efficient solutions</strong> for our clients, driving business resilience and maximizing value in every engagement.
</p>
<div style="background: linear-gradient(135deg, #f6f8ff 0%, #e8f0fe 100%); padding: clamp(16px, 4vw, 24px); border-radius: clamp(12px, 3vw, 16px); border-left: 4px solid #1E40AF;">
<p style="color: #1E40AF; font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; font-style: italic;">
"Delivering top-tier solutions that combine cutting-edge technology with proven operational methodologies to secure and optimize your business operations."
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section - Modern Form -->
<section id="contact" style="padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px); background: linear-gradient(135deg, #f0f9ff 0%, #e0f7fa 100%);">
<div style="max-width: 1200px; margin: 0 auto;">
<h2 style="font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: clamp(24px, 6vw, 48px); color: #1E40AF;">
Get In Touch
</h2>
<div style="
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
gap: clamp(30px, 8vw, 60px);
align-items: start;
">
<!-- Contact Form -->
<form method="post" action="{% url 'homepage' %}" style="background: white; border-radius: clamp(16px, 4vw, 20px); padding: clamp(24px, 6vw, 40px); box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);">
{% csrf_token %}
<h3 style="font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 700; color: #1E40AF; margin-bottom: clamp(16px, 4vw, 24px);">Send us a Message</h3>
<div style="margin-bottom: 24px;">
<label for="name" style="display: block; margin-bottom: 8px; color: #1E40AF; font-weight: 600;">Full Name</label>
<input
type="text"
id="name"
name="name"
required
style="width: 100%; padding: clamp(12px, 3vw, 14px); border-radius: clamp(8px, 2vw, 12px); border: 2px solid #e5e7eb; font-size: clamp(14px, 3.5vw, 16px); transition: border-color 0.2s ease;"
/>
</div>
<div style="margin-bottom: 24px;">
<label for="email" style="display: block; margin-bottom: 8px; color: #1E40AF; font-weight: 600;">Email Address</label>
<input
type="email"
id="email"
name="email"
required
style="width: 100%; padding: clamp(12px, 3vw, 14px); border-radius: clamp(8px, 2vw, 12px); border: 2px solid #e5e7eb; font-size: clamp(14px, 3.5vw, 16px); transition: border-color 0.2s ease;"
/>
</div>
<div style="margin-bottom: 24px;">
<label for="company" style="display: block; margin-bottom: 8px; color: #1E40AF; font-weight: 600;">Company</label>
<input
type="text"
id="company"
name="company"
style="width: 100%; padding: clamp(12px, 3vw, 14px); border-radius: clamp(8px, 2vw, 12px); border: 2px solid #e5e7eb; font-size: clamp(14px, 3.5vw, 16px); transition: border-color 0.2s ease;"
/>
</div>
<div style="margin-bottom: 32px;">
<label for="message" style="display: block; margin-bottom: 8px; color: #1E40AF; font-weight: 600;">Message</label>
<textarea
id="message"
name="message"
rows="5"
required
style="width: 100%; padding: clamp(12px, 3vw, 14px); border-radius: clamp(8px, 2vw, 12px); border: 2px solid #e5e7eb; font-size: clamp(14px, 3.5vw, 16px); resize: vertical; transition: border-color 0.2s ease;"
></textarea>
</div>
<button type="submit" class="btn-hover" style="width: 100%; background: linear-gradient(135deg, #40E0D0 0%, #1E40AF 100%); color: white; padding: clamp(14px, 4vw, 16px); border-radius: clamp(8px, 2vw, 12px); font-weight: 600; font-size: clamp(14px, 3.5vw, 18px); border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(30, 64, 175, 0.20); min-height: 48px;">
Send Message
</button>
</form>
<!-- Contact Information -->
<div style="background: white; border-radius: clamp(16px, 4vw, 20px); padding: clamp(24px, 6vw, 40px); box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);">
<h3 style="font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 700; color: #1E40AF; margin-bottom: clamp(16px, 4vw, 24px);">Contact Information</h3>
<!-- Mailing Address -->
<div style="margin-bottom: clamp(20px, 5vw, 32px); display: flex; align-items: flex-start; gap: clamp(12px, 3vw, 16px);">
<div style="
width: clamp(40px, 10vw, 50px);
height: clamp(40px, 10vw, 50px);
background: linear-gradient(135deg, #40E0D0 0%, #1E40AF 100%);
border-radius: clamp(8px, 2vw, 12px);
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(16px, 4vw, 20px);
flex-shrink: 0;
">📍</div>
<div>
<h4 style="font-size: clamp(16px, 4vw, 19px); font-weight: 600; color: #1E40AF; margin-bottom: 8px;">Mailing Address</h4>
<p style="color: #6b7280; line-height: 1.6; font-size: clamp(14px, 3.5vw, 16px);">
Meydan Grandstand, 6th floor<br>
Meydan Road, Nad Al Sheba<br>
Dubai, U.A.E.
</p>
</div>
</div>
<!-- Email Address -->
<div style="margin-bottom: clamp(20px, 5vw, 32px); display: flex; align-items: flex-start; gap: clamp(12px, 3vw, 16px);">
<div style="
width: clamp(40px, 10vw, 50px);
height: clamp(40px, 10vw, 50px);
background: linear-gradient(135deg, #40E0D0 0%, #1E40AF 100%);
border-radius: clamp(8px, 2vw, 12px);
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(16px, 4vw, 20px);
flex-shrink: 0;
">✉️</div>
<div>
<h4 style="font-size: clamp(16px, 4vw, 19px); font-weight: 600; color: #1E40AF; margin-bottom: 8px;">Email Address</h4>
<p style="color: #6b7280; line-height: 1.6; font-size: clamp(14px, 3.5vw, 16px);">
<a href="mailto:abhay@netcopconsultancy.com" style="color: #6366f1; text-decoration: none;">
abhay@netcopconsultancy.com
</a>
</p>
</div>
</div>
<!-- Commitment Statement -->
<div style="
background: linear-gradient(135deg, #f6f8ff 0%, #e8f0fe 100%);
padding: clamp(16px, 4vw, 24px);
border-radius: clamp(12px, 3vw, 16px);
border-left: 4px solid #1E40AF;
margin-top: clamp(20px, 5vw, 32px);
">
<p style="color: #1E40AF; font-size: clamp(14px, 3.5vw, 18px); font-weight: 600; text-align: center;">
We are committed to deliver top-tier AI & Cybersecurity solutions for businesses of all sizes.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer style="background: #1f2937; color: white; padding: 3rem 2rem 1rem; text-align: center;">
<div style="max-width: 1200px; margin: 0 auto; margin-bottom: 2rem;">
<h3 style="color: #40E0D0; margin-bottom: 1rem;">NetCop AI Hub</h3>
<p style="color: #9ca3af;">AI & Cybersecurity Solutions</p>
</div>
<div style="border-top: 1px solid #374151; padding-top: 1rem; color: #9ca3af;">
© 2025 NetCop AI Hub. All rights reserved.
</div>
</footer>
</div>
<script>
// Header scroll effect
window.addEventListener('scroll', () => {
const header = document.querySelector('.header');
if (header) {
header.classList.toggle('scrolled', window.scrollY > 100);
}
});
// Mobile menu toggle
document.querySelector('.nav-toggle').addEventListener('click', () => {
document.querySelector('.nav-menu').classList.toggle('active');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>