-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice111s.html
More file actions
575 lines (529 loc) · 25.5 KB
/
service111s.html
File metadata and controls
575 lines (529 loc) · 25.5 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
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Services | TheGreatTech</title>
<meta name="description" content="Comprehensive web development, mobile apps, and cloud solutions at affordable prices.">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="assets/images/logo.svg">
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AOS Animation -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/animations.css">
<style>
.service-hero {
background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
color: white;
padding: 100px 0;
}
.service-card {
border: none;
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
margin-bottom: 30px;
background: white;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.service-card .card-body {
padding: 30px;
}
.service-icon {
font-size: 2.5rem;
color: #3498db;
margin-bottom: 20px;
}
.service-tabs .nav-link {
color: #495057;
font-weight: 600;
border: none;
padding: 12px 20px;
border-radius: 5px;
margin-right: 5px;
}
.service-tabs .nav-link.active {
background: #3498db;
color: white;
}
.pricing-card {
border: 1px solid #eee;
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
transition: all 0.3s ease;
}
.pricing-card:hover {
border-color: #3498db;
box-shadow: 0 10px 30px rgba(52,152,219,0.1);
}
.pricing-card .price {
font-size: 2.5rem;
font-weight: 700;
color: #3498db;
margin: 20px 0;
}
.feature-list li {
margin-bottom: 10px;
padding-left: 25px;
position: relative;
}
.feature-list li:before {
content: "\f00c";
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
left: 0;
color: #3498db;
}
.tech-tag {
display: inline-block;
background: #f8f9fa;
padding: 5px 15px;
border-radius: 20px;
margin-right: 10px;
margin-bottom: 10px;
font-size: 0.9rem;
}
.process-step {
text-align: center;
padding: 30px;
position: relative;
}
.process-step:after {
content: "";
position: absolute;
top: 50%;
right: -50px;
width: 100px;
height: 2px;
background: #3498db;
display: none;
}
@media (min-width: 992px) {
.process-step:after {
display: block;
}
.process-step:last-child:after {
display: none;
}
}
.process-step .step-number {
width: 60px;
height: 60px;
background: #3498db;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
margin: 0 auto 20px;
}
.dark-mode .service-card {
background: #2c3e50;
color: white;
}
.dark-mode .service-tabs .nav-link {
color: #adb5bd;
background: #343a40;
}
.dark-mode .service-tabs .nav-link.active {
background: #3498db;
color: white;
}
.dark-mode .pricing-card {
background: #2c3e50;
border-color: #343a40;
color: white;
}
.dark-mode .tech-tag {
background: #343a40;
color: white;
}
</style>
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="loader">
<img src="assets/images/logo.svg" alt="TheGreatTech Logo">
<div class="loading-bar"></div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo.svg" alt="TheGreatTech Logo" height="40">
<span>TheGreatTech</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle active" href="services.html" id="servicesDropdown">Services</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="services.html#web">Web Development</a>
<a class="dropdown-item" href="services.html#mobile">Mobile Apps</a>
<a class="dropdown-item" href="services.html#cloud">Cloud Solutions</a>
<a class="dropdown-item" href="services.html#ai">AI Integration</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="portfolio.html">Portfolio</a></li>
<li class="nav-item"><a class="nav-link" href="blog.html">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
<li class="nav-item"><a class="nav-link btn btn-primary ms-2" href="contact.html#quote">Get Quote</a></li>
</ul>
</div>
</div>
</nav>
<!-- Services Hero -->
<header class="service-hero">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8 mx-auto text-center" data-aos="fade-up">
<h1 class="display-4 fw-bold mb-4">Our Comprehensive Services</h1>
<p class="lead mb-5">We offer end-to-end digital solutions tailored to your business needs and budget.</p>
<a href="#services" class="btn btn-light btn-lg me-2">Explore Services</a>
<a href="contact.html#quote" class="btn btn-outline-light btn-lg">Get Free Quote</a>
</div>
</div>
</div>
</header>
<!-- Services Section -->
<section id="services" class="py-5">
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center" data-aos="fade-up">
<h2 class="fw-bold">What We Offer</h2>
<p class="text-muted">Professional solutions for your digital needs</p>
</div>
</div>
<div class="row">
<div class="col-md-4" data-aos="fade-up" data-aos-delay="100">
<div class="service-card h-100">
<div class="card-body text-center">
<div class="service-icon">
<i class="fas fa-globe"></i>
</div>
<h3>Web Development</h3>
<p class="text-muted">Custom websites and web applications tailored to your business needs.</p>
<a href="#web" class="btn btn-outline-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-md-4" data-aos="fade-up" data-aos-delay="200">
<div class="service-card h-100">
<div class="card-body text-center">
<div class="service-icon">
<i class="fas fa-mobile-alt"></i>
</div>
<h3>Mobile Apps</h3>
<p class="text-muted">Native and cross-platform mobile apps for iOS and Android devices.</p>
<a href="#mobile" class="btn btn-outline-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-md-4" data-aos="fade-up" data-aos-delay="300">
<div class="service-card h-100">
<div class="card-body text-center">
<div class="service-icon">
<i class="fas fa-cloud"></i>
</div>
<h3>Cloud Solutions</h3>
<p class="text-muted">Scalable cloud infrastructure and SaaS solutions for your business.</p>
<a href="#cloud" class="btn btn-outline-primary">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Service Details -->
<section class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<ul class="nav nav-pills service-tabs mb-5 justify-content-center" id="serviceTabs" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="web-tab" data-bs-toggle="pill" data-bs-target="#web" type="button" role="tab">Web Development</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="mobile-tab" data-bs-toggle="pill" data-bs-target="#mobile" type="button" role="tab">Mobile Apps</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="cloud-tab" data-bs-toggle="pill" data-bs-target="#cloud" type="button" role="tab">Cloud Solutions</button>
</li>
</ul>
<div class="tab-content" id="serviceTabsContent">
<!-- Web Development -->
<div class="tab-pane fade show active" id="web" role="tabpanel">
<div class="row">
<div class="col-lg-6">
<h2 class="fw-bold mb-4">Web Development Services</h2>
<p>We create stunning, high-performance websites that are optimized for search engines and user experience. Our web solutions are responsive, secure, and scalable to grow with your business.</p>
<h4 class="mt-4 mb-3">Key Features</h4>
<div class="row">
<div class="col-md-6">
<ul class="feature-list">
<li>Custom Website Design</li>
<li>E-Commerce Solutions</li>
<li>CMS Integration</li>
</ul>
</div>
<div class="col-md-6">
<ul class="feature-list">
<li>SEO Optimization</li>
<li>Web Application Development</li>
<li>API Integration</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6">
<img src="https://via.placeholder.com/600x400" alt="Web Development" class="img-fluid rounded">
</div>
</div>
<div class="row mt-5">
<div class="col-12">
<h4 class="mb-3">Technologies We Use</h4>
<div>
<span class="tech-tag">HTML5/CSS3</span>
<span class="tech-tag">JavaScript</span>
<span class="tech-tag">React</span>
<span class="tech-tag">Angular</span>
<span class="tech-tag">Vue.js</span>
<span class="tech-tag">Node.js</span>
<span class="tech-tag">PHP</span>
<span class="tech-tag">Python</span>
<span class="tech-tag">Django</span>
<span class="tech-tag">WordPress</span>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-12">
<h4 class="mb-4">Pricing Plans</h4>
<div class="row">
<div class="col-md-4">
<div class="pricing-card h-100">
<h5>Basic Website</h5>
<div class="price">$999</div>
<ul class="feature-list">
<li>Up to 5 pages</li>
<li>Responsive Design</li>
<li>Basic SEO</li>
<li>Contact Form</li>
</ul>
<a href="contact.html#quote" class="btn btn-outline-primary w-100">Get Started</a>
</div>
</div>
<div class="col-md-4">
<div class="pricing-card h-100" style="border: 2px solid #3498db;">
<div class="text-center mb-3">
<span class="badge bg-primary">Most Popular</span>
</div>
<h5>Business Website</h5>
<div class="price">$2,499</div>
<ul class="feature-list">
<li>Up to 15 pages</li>
<li>Custom Design</li>
<li>Advanced SEO</li>
<li>CMS Integration</li>
<li>Blog Setup</li>
</ul>
<a href="contact.html#quote" class="btn btn-primary w-100">Get Started</a>
</div>
</div>
<div class="col-md-4">
<div class="pricing-card h-100">
<h5>E-Commerce</h5>
<div class="price">$4,999+</div>
<ul class="feature-list">
<li>Product Catalog</li>
<li>Payment Gateway</li>
<li>User Accounts</li>
<li>Inventory Management</li>
<li>Custom Features</li>
</ul>
<a href="contact.html#quote" class="btn btn-outline-primary w-100">Get Started</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile Apps -->
<div class="tab-pane fade" id="mobile" role="tabpanel">
<!-- Similar structure as web development -->
</div>
<!-- Cloud Solutions -->
<div class="tab-pane fade" id="cloud" role="tabpanel">
<!-- Similar structure as web development -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section class="py-5">
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center" data-aos="fade-up">
<h2 class="fw-bold">Our Development Process</h2>
<p class="text-muted">Transparent, efficient, and client-focused approach</p>
</div>
</div>
<div class="row">
<div class="col-md-2 col-4">
<div class="process-step" data-aos="fade-up">
<div class="step-number">1</div>
<h3>Discovery</h3>
<p>We analyze your requirements and business goals</p>
</div>
</div>
<div class="col-md-2 col-4">
<div class="process-step" data-aos="fade-up" data-aos-delay="100">
<div class="step-number">2</div>
<h3>Planning</h3>
<p>We create a detailed project plan</p>
</div>
</div>
<div class="col-md-2 col-4">
<div class="process-step" data-aos="fade-up" data-aos-delay="200">
<div class="step-number">3</div>
<h3>Design</h3>
<p>Our designers create mockups and prototypes</p>
</div>
</div>
<div class="col-md-2 col-4">
<div class="process-step" data-aos="fade-up" data-aos-delay="300">
<div class="step-number">4</div>
<h3>Development</h3>
<p>Our team builds your solution</p>
</div>
</div>
<div class="col-md-2 col-4">
<div class="process-step" data-aos="fade-up" data-aos-delay="400">
<div class="step-number">5</div>
<h3>Testing</h3>
<p>Rigorous quality assurance</p>
</div>
</div>
<div class="col-md-2 col-4">
<div class="process-step" data-aos="fade-up" data-aos-delay="500">
<div class="step-number">6</div>
<h3>Launch</h3>
<p>Deployment and post-launch support</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-5 bg-primary text-white">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8" data-aos="fade-right">
<h2 class="fw-bold">Ready to Discuss Your Project?</h2>
<p class="mb-0">Contact us today for a free consultation and quote.</p>
</div>
<div class="col-lg-4 text-lg-end" data-aos="fade-left">
<a href="contact.html" class="btn btn-light btn-lg">Get in Touch</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer bg-dark text-white py-5">
<div class="container">
<div class="row">
<div class="col-lg-4 footer-about mb-4">
<img src="assets/images/logo.svg" alt="TheGreatTech Logo" height="40">
<p class="mt-3">Providing affordable, high-quality digital solutions since 2015. Helping businesses establish and grow their online presence.</p>
<div class="social-links mt-4">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="col-lg-2 footer-links mb-4">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
<div class="col-lg-3 footer-links mb-4">
<h3>Services</h3>
<ul>
<li><a href="services.html#web">Web Development</a></li>
<li><a href="services.html#mobile">Mobile Applications</a></li>
<li><a href="services.html#cloud">Cloud Solutions</a></li>
<li><a href="services.html#ai">AI Integration</a></li>
<li><a href="services.html#support">Support & Maintenance</a></li>
</ul>
</div>
<div class="col-lg-3 footer-contact mb-4">
<h3>Contact Us</h3>
<ul>
<li><i class="fas fa-map-marker-alt"></i> 123 Tech Street, Silicon Valley, CA</li>
<li><i class="fas fa-phone"></i> +1 (555) 123-4567</li>
<li><i class="fas fa-envelope"></i> info@thegreattech.tech</li>
</ul>
<a href="contact.html" class="btn btn-outline-light mt-2">Contact Form</a>
</div>
</div>
<hr class="my-4 bg-secondary">
<div class="footer-bottom">
<div class="row">
<div class="col-md-6">
<p>© 2023 TheGreatTech. All rights reserved.</p>
</div>
<div class="col-md-6 text-md-end">
<a href="privacy.html">Privacy Policy</a> |
<a href="terms.html">Terms of Service</a> |
<a href="cookies.html">Cookie Policy</a>
</div>
</div>
</div>
</div>
</footer>
<!-- Back to Top -->
<a href="#" class="back-to-top"><i class="fas fa-arrow-up"></i></a>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="assets/js/main.js"></script>
<script>
// Initialize AOS animation
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
</script>
</body>
</html>