-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
312 lines (271 loc) · 15.1 KB
/
landing.html
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<!-- ... [Meta tags and styles remain mostly unchanged] ... -->
<!-- Include AOS Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
</head>
<body class="font-sans antialiased">
<!-- Preloader -->
<div id="preloader" class="fixed inset-0 z-50 flex items-center justify-center bg-white">
<div class="loading-spinner w-16 h-16 border-4 border-gray-200 rounded-full"></div>
</div>
<!-- Cookie Consent -->
<div id="cookie-consent" class="fixed bottom-0 left-0 w-full bg-gray-900 text-white py-4 px-6 transform translate-y-full transition-transform duration-300 z-50">
<!-- ... [Cookie consent content remains unchanged] ... -->
</div>
<!-- Announcement Bar -->
<div class="bg-gradient-to-r from-blue-600 to-blue-800 text-white py-3 px-4 text-center relative overflow-hidden">
<!-- ... [Announcement bar content remains unchanged] ... -->
</div>
<!-- Header -->
<header class="fixed w-full z-40 transition-all duration-300" id="header">
<nav class="bg-white shadow-md">
<div class="container mx-auto px-6 py-4">
<!-- ... [Logo and desktop navigation remain unchanged] ... -->
<!-- Mobile Menu Button -->
<button class="lg:hidden text-gray-600 hover:text-blue-600 focus:outline-none" id="mobile-menu-button">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<!-- ... -->
</svg>
</button>
</div>
<!-- Mobile Navigation -->
<div class="lg:hidden hidden mobile-menu" id="mobile-menu">
<div class="pt-4 pb-3 space-y-1">
<a href="#services" class="block px-4 py-2 text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-md">Services</a>
<a href="#solutions" class="block px-4 py-2 text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-md">Solutions</a>
<a href="#process" class="block px-4 py-2 text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-md">Process</a>
<a href="#testimonials" class="block px-4 py-2 text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-md">Testimonials</a>
<a href="#about" class="block px-4 py-2 text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-md">About</a>
<!-- Mobile Resources Dropdown -->
<div class="relative">
<button class="w-full text-left px-4 py-2 text-base font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-md flex items-center justify-between" onclick="toggleMobileResources()">
Resources
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<!-- ... -->
</svg>
</button>
<div class="hidden pl-4" id="mobile-resources">
<a href="#" class="block px-4 py-2 text-sm text-gray-600 hover:text-blue-600">Blog</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-600 hover:text-blue-600">Case Studies</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-600 hover:text-blue-600">Whitepapers</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-600 hover:text-blue-600">Documentation</a>
</div>
</div>
<div class="pt-4">
<a href="#contact" class="block w-full text-center px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition-colors">
Get Started
</a>
</div>
</div>
</div>
</nav>
</header>
<!-- Live Chat Widget -->
<div id="live-chat" class="fixed bottom-6 right-6 z-40">
<!-- ... [Live chat widget remains unchanged] ... -->
</div>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-6 right-24 z-40 bg-gray-800 text-white w-10 h-10 rounded-full shadow-lg flex items-center justify-center hover:bg-gray-700 transition-colors opacity-0 invisible">
<i class="fas fa-arrow-up"></i>
</button>
<!-- Progress Bar -->
<div class="fixed top-0 left-0 w-full h-1 z-50">
<div id="progress-bar" class="h-full bg-blue-600"></div>
</div>
<main>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center gradient-primary text-white pt-20">
<!-- ... [Hero section content remains unchanged] ... -->
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-white">
<!-- ... [Services section content remains unchanged] ... -->
</section>
<!-- Solutions Section -->
<section id="solutions" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<!-- ... [Solutions section intro remains unchanged] ... -->
<!-- Solutions Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Solution Card 1 -->
<div class="bg-white rounded-lg shadow-lg overflow-hidden hover-scale" data-aos="fade-up" data-aos-delay="300">
<!-- ... [Content remains unchanged] ... -->
</div>
<!-- Solution Card 2 -->
<div class="bg-white rounded-lg shadow-lg overflow-hidden hover-scale" data-aos="fade-up" data-aos-delay="400">
<div class="aspect-w-16 aspect-h-9">
<img src="https://via.placeholder.com/600x400" alt="Cloud Solutions" class="object-cover w-full h-48">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">Cloud Solutions</h3>
<p class="text-gray-600 mb-4">
Scalable cloud services to enhance flexibility and reduce operational costs.
</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-center">
<!-- ... [List items remain unchanged] ... -->
</li>
<!-- ... [Additional list items] ... -->
</ul>
<a href="#contact" class="text-blue-600 font-semibold hover:text-blue-700 transition-colors flex items-center">
Learn More
<!-- ... -->
</a>
</div>
</div>
<!-- Solution Card 3 -->
<div class="bg-white rounded-lg shadow-lg overflow-hidden hover-scale" data-aos="fade-up" data-aos-delay="500">
<div class="aspect-w-16 aspect-h-9">
<img src="https://via.placeholder.com/600x400" alt="Data Analytics" class="object-cover w-full h-48">
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">Data Analytics</h3>
<p class="text-gray-600 mb-4">
Insightful analytics to drive informed decision-making and strategic planning.
</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-center">
<!-- ... [List items remain unchanged] ... -->
</li>
<!-- ... [Additional list items] ... -->
</ul>
<a href="#contact" class="text-blue-600 font-semibold hover:text-blue-700 transition-colors flex items-center">
Learn More
<!-- ... -->
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section id="process" class="py-20 bg-white">
<div class="container mx-auto px-6">
<!-- ... [Process section intro remains unchanged] ... -->
<!-- Process Steps -->
<div class="relative">
<!-- Connection Line -->
<div class="hidden md:block absolute top-1/2 left-0 w-full h-0.5 bg-gray-200 -translate-y-1/2"></div>
<!-- Process Steps Grid -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<!-- Step 1 -->
<div class="relative" data-aos="fade-up" data-aos-delay="300">
<!-- ... [Content remains unchanged] ... -->
</div>
<!-- Step 2 -->
<div class="relative" data-aos="fade-up" data-aos-delay="400">
<div class="bg-white rounded-lg shadow-lg p-6 relative z-10">
<div class="w-12 h-12 bg-blue-600 text-white rounded-full flex items-center justify-center mb-4 mx-auto">
2
</div>
<h3 class="text-xl font-semibold mb-3 text-center">Planning</h3>
<p class="text-gray-600 text-center">
Crafting a tailored strategy and roadmap to achieve your objectives effectively.
</p>
</div>
</div>
<!-- Step 3 -->
<div class="relative" data-aos="fade-up" data-aos-delay="500">
<div class="bg-white rounded-lg shadow-lg p-6 relative z-10">
<div class="w-12 h-12 bg-blue-600 text-white rounded-full flex items-center justify-center mb-4 mx-auto">
3
</div>
<h3 class="text-xl font-semibold mb-3 text-center">Execution</h3>
<p class="text-gray-600 text-center">
Implementing the plan with precision and agility to deliver optimal results.
</p>
</div>
</div>
<!-- Step 4 -->
<div class="relative" data-aos="fade-up" data-aos-delay="600">
<div class="bg-white rounded-lg shadow-lg p-6 relative z-10">
<div class="w-12 h-12 bg-blue-600 text-white rounded-full flex items-center justify-center mb-4 mx-auto">
4
</div>
<h3 class="text-xl font-semibold mb-3 text-center">Support</h3>
<p class="text-gray-600 text-center">
Providing ongoing support and optimization to ensure sustained success.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<!-- ... [Testimonials section intro remains unchanged] ... -->
<!-- Testimonials Slider -->
<div class="relative" id="testimonials-slider">
<div class="overflow-hidden">
<div class="flex transition-transform duration-300" id="testimonials-track">
<!-- Testimonial Card 1 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 px-4">
<!-- ... [Content remains unchanged] ... -->
</div>
<!-- Testimonial Card 2 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 px-4">
<!-- ... [Add content for additional testimonial] ... -->
</div>
<!-- Testimonial Card 3 -->
<div class="w-full md:w-1/2 lg:w-1/3 flex-shrink-0 px-4">
<!-- ... [Add content for additional testimonial] ... -->
</div>
</div>
</div>
<!-- Slider Controls -->
<!-- ... [Slider controls remain unchanged] ... -->
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<!-- ... [About section content remains unchanged] ... -->
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<!-- ... [Contact section content remains unchanged] ... -->
</section>
<!-- Newsletter Section -->
<section class="py-20 bg-gradient-to-r from-blue-600 to-blue-800 text-white">
<!-- ... [Newsletter section content remains unchanged] ... -->
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white">
<!-- ... [Footer content remains unchanged] ... -->
</footer>
</main>
<!-- JavaScript -->
<script>
// Initialize AOS
AOS.init({
duration: 800,
once: true,
offset: 50
});
// Preloader
window.addEventListener('load', function() {
document.getElementById('preloader').style.display = 'none';
});
// Mobile Menu Toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Toggle Mobile Resources
function toggleMobileResources() {
const mobileResources = document.getElementById('mobile-resources');
mobileResources.classList.toggle('hidden');
}
// Header Scroll Effect
// ... [JavaScript code remains unchanged] ...
// Include AOS Library at the end of the body
</script>
<!-- Include AOS Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
</body>
</html>