-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
216 lines (198 loc) · 9.52 KB
/
Copy path404.html
File metadata and controls
216 lines (198 loc) · 9.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | IPEC Consulting</title>
<!-- Meta Tags -->
<meta name="robots" content="noindex, follow">
<meta name="theme-color" content="#10b981">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="IPEC Consulting">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/cropped-ipec-logo-32x32.png">
<link rel="apple-touch-icon" href="assets/images/ipec.jpg">
<link rel="manifest" href="manifest.json">
<!-- Tailwind CSS & Config -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: { sans: ['Inter', 'sans-serif'] },
colors: {
ipec: {
red: '#D93025',
green: '#1E8E3E',
dark: '#0F172A'
}
},
animation: {
'fade-in-up': 'fadeInUp 0.5s ease-out forwards',
},
keyframes: {
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
}
}
}
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="js/theme.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
/* Distinct Gradient Background */
.hero-bg {
background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 50%, #fff7ed 100%);
}
.dark .hero-bg {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.error-text-shadow {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.dark .error-text-shadow {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "IPEC Consulting",
"url": "https://i.fouralpha.org",
"logo": "https://i.fouralpha.org/assets/images/cropped-ipec-logo-32x32.png",
"sameAs": [
"https://ipecconsulting.org/",
"https://www.linkedin.com/company/ipec-consulting/",
"https://twitter.com/ipecconsulting"
],
"@id": "https://i.fouralpha.org/#organization"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "IPEC Expense Manager",
"url": "https://i.fouralpha.org",
"publisher": {
"@id": "https://i.fouralpha.org/#organization"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://i.fouralpha.org/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
</head>
<body
class="bg-white dark:bg-slate-900 text-slate-800 dark:text-slate-100 antialiased flex flex-col min-h-screen transition-colors duration-300 hero-bg">
<!-- Navigation -->
<nav
class="border-b border-slate-100 dark:border-slate-800 bg-white/80 dark:bg-slate-900/80 backdrop-blur-md sticky top-0 z-50 transition-colors duration-300">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex items-center gap-3">
<img src="assets/images/ipec.jpg" alt="IPEC Logo" class="h-10 w-auto">
<div class="flex flex-col">
<span class="font-bold text-lg leading-tight text-slate-900 dark:text-white">IPEC
Consulting</span>
<span class="text-[10px] text-slate-500 font-medium uppercase tracking-wider">International
Process Excellence Council</span>
</div>
</div>
<!-- Links -->
<div class="hidden md:flex gap-8 text-sm font-medium text-slate-600 dark:text-slate-400 items-center">
<a href="index.html" class="hover:text-ipec-green dark:hover:text-green-400 transition">Home</a>
<a href="https://ipecconsulting.org" target="_blank"
class="hover:text-ipec-green dark:hover:text-green-400 transition">Official Website</a>
<a href="contact.html"
class="hover:text-ipec-green dark:hover:text-green-400 transition">Contact</a>
<button onclick="toggleTheme()"
class="w-8 h-8 rounded-full bg-slate-100 dark:bg-slate-800 text-slate-500 dark:text-yellow-400 hover:bg-slate-200 dark:hover:bg-slate-700 transition flex items-center justify-center">
<i class="fa-solid fa-moon theme-toggle-icon"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Main Error Content -->
<main class="flex-grow flex items-center justify-center p-4">
<div class="text-center max-w-2xl mx-auto animate-fade-in-up">
<div class="mb-8 relative inline-block">
<h1 class="text-9xl font-extrabold text-slate-200 dark:text-slate-800 select-none error-text-shadow">404
</h1>
<div class="absolute inset-0 flex items-center justify-center pointer-events-none">
<div
class="bg-white dark:bg-slate-900 rounded-full p-4 shadow-lg border border-slate-100 dark:border-slate-700">
<i class="fa-solid fa-triangle-exclamation text-5xl text-ipec-red animate-pulse"></i>
</div>
</div>
</div>
<h2 class="text-3xl md:text-4xl font-bold text-slate-900 dark:text-white mb-4">Page Not Found</h2>
<p class="text-lg text-slate-600 dark:text-slate-400 mb-8 max-w-lg mx-auto">
Oops! The page you are looking for might have been removed, had its name changed, or is temporarily
unavailable.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="index.html"
class="px-8 py-3 rounded-lg bg-ipec-green hover:bg-green-700 text-white font-semibold transition shadow-lg shadow-green-200 dark:shadow-none flex items-center justify-center gap-2 transform hover:scale-105 duration-200">
<i class="fa-solid fa-house"></i> Go Home
</a>
<button onclick="history.back()"
class="px-8 py-3 rounded-lg bg-slate-100 hover:bg-slate-200 dark:bg-slate-800 dark:hover:bg-slate-700 text-slate-700 dark:text-slate-300 font-semibold transition border border-slate-200 dark:border-slate-700 flex items-center justify-center gap-2 transform hover:scale-105 duration-200">
<i class="fa-solid fa-arrow-left"></i> Go Back
</button>
</div>
</div>
</main>
<!-- Footer -->
<footer
class="bg-white dark:bg-slate-900 border-t border-slate-200 dark:border-slate-800 py-12 mt-auto transition-colors duration-300">
<div class="max-w-7xl mx-auto px-4 text-center">
<div class="mb-6">
<p class="font-bold text-slate-700 dark:text-slate-200 mb-1">International Process Excellence Council
</p>
<p class="text-xs text-slate-500">Registered Section 8 Nonprofit</p>
<div class="flex justify-center gap-4 mt-3 text-sm text-slate-600 dark:text-slate-400">
<a href="mailto:info@ipecconsulting.org" class="hover:text-green-600"><i
class="fa-solid fa-envelope mr-1"></i> info@ipecconsulting.org</a>
<a href="tel:+919990071450" class="hover:text-green-600"><i class="fa-solid fa-phone mr-1"></i>
+91-9990071450</a>
</div>
</div>
<p class="text-slate-500 dark:text-slate-400 text-sm mb-6">© 2026 IPEC Council. All rights reserved.
</p>
<div class="flex justify-center gap-8 text-sm text-slate-500 dark:text-slate-400">
<a href="privacy.html" class="hover:text-indigo-600 dark:hover:text-indigo-400 transition">Privacy
Policy</a>
<a href="terms.html" class="hover:text-indigo-600 dark:hover:text-indigo-400 transition">Terms of
Service</a>
<a href="license.html" class="hover:text-indigo-600 dark:hover:text-indigo-400 transition">License</a>
</div>
</div>
</footer>
<!-- AI Support Widget -->
<script type="module">
import { AISupport } from './js/ai-support.js';
window.addEventListener('load', () => {
setTimeout(() => {
new AISupport({
name: 'Visitor',
role: 'Guest',
department: 'Support'
});
}, 5000);
});
</script>
</body>
</html>