-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
696 lines (624 loc) · 22.4 KB
/
about.html
File metadata and controls
696 lines (624 loc) · 22.4 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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | TheGreatTech</title>
<meta name="description"
content="Learn about TheGreatTech - our mission, values, and the team behind your affordable web solutions.">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="assets/images/greattech_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">
</head>
<style>
/* ======================
About Page Styles
====================== */
/* Hero Section */
.page-hero {
position: relative;
min-height: 60vh;
display: flex;
align-items: center;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('assets/images/hero3.jpg') no-repeat center center/cover;
color: var(--white);
padding: 8rem 0;
margin-top: -80px;
text-align: center;
}
.about-hero {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('assets/images/hero3.jpg');
}
.page-hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
color: var(--white);
}
.page-hero .lead {
font-size: 1.5rem;
opacity: 0.9;
}
/* Timeline */
.timeline {
position: relative;
padding-left: 50px;
margin-top: 2rem;
}
.timeline::before {
content: '';
position: absolute;
left: 15px;
top: 0;
bottom: 0;
width: 2px;
background-color: var(--secondary);
}
.timeline-item {
position: relative;
margin-bottom: 2.5rem;
}
.timeline-year {
position: absolute;
left: -50px;
top: 0;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--secondary);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
z-index: 1;
}
.timeline-content {
background-color: var(--white);
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
position: relative;
}
.timeline-content::before {
content: '';
position: absolute;
left: -15px;
top: 20px;
width: 15px;
height: 15px;
background-color: var(--white);
transform: rotate(45deg);
}
.timeline-content h3 {
color: var(--secondary);
margin-bottom: 0.5rem;
}
/* Values Section */
.value-card {
background-color: var(--white);
border-radius: 8px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
text-align: center;
height: 100%;
transition: all 0.3s ease;
}
.value-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.value-icon {
width: 80px;
height: 80px;
background-color: rgba(52, 152, 219, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
color: var(--secondary);
font-size: 2rem;
}
.value-card h3 {
margin-bottom: 1rem;
}
/* Team Section */
.team-card {
position: relative;
margin-bottom: 2rem;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.team-image {
position: relative;
overflow: hidden;
}
.team-image img {
width: 100%;
height: auto;
transition: all 0.5s ease;
}
.team-card:hover .team-image img {
transform: scale(1.1);
}
.team-social {
position: absolute;
bottom: -50px;
left: 0;
width: 100%;
background: rgba(52, 152, 219, 0.9);
padding: 15px;
display: flex;
justify-content: center;
gap: 15px;
transition: all 0.3s ease;
}
.team-card:hover .team-social {
bottom: 0;
}
.team-social a {
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.team-social a:hover {
background: white;
color: var(--secondary);
transform: translateY(-5px);
}
.team-info {
padding: 1.5rem;
background-color: var(--white);
text-align: center;
}
.team-info h3 {
margin-bottom: 0.5rem;
color: var(--dark);
}
.team-info p {
color: var(--text-light);
margin-bottom: 0;
}
/* Stats Section */
.stats {
padding: 4rem 0;
background-color: var(--dark);
color: var(--white);
}
.stat-item {
text-align: center;
margin-bottom: 2rem;
}
.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--secondary);
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 1.1rem;
color: var(--white);
opacity: 0.8;
}
/* Responsive Adjustments */
@media (max-width: 991.98px) {
.page-hero {
min-height: 50vh;
padding: 6rem 0;
}
.page-hero h1 {
font-size: 2.8rem;
}
.page-hero .lead {
font-size: 1.2rem;
}
.timeline {
margin-top: 3rem;
}
}
@media (max-width: 767.98px) {
.page-hero {
min-height: 40vh;
padding: 5rem 0;
}
.page-hero h1 {
font-size: 2.2rem;
}
.value-card {
margin-bottom: 1.5rem;
}
.stat-item {
margin-bottom: 1.5rem;
}
.stat-number {
font-size: 2.5rem;
}
}
@media (max-width: 575.98px) {
.page-hero {
min-height: 30vh;
padding: 4rem 0;
}
.page-hero h1 {
font-size: 1.8rem;
}
.timeline {
padding-left: 40px;
}
.timeline-year {
left: -40px;
width: 30px;
height: 30px;
font-size: 0.9rem;
}
}
/* Dark Mode Styles */
.dark-mode .timeline-content {
background-color: #1e1e1e;
}
.dark-mode .timeline-content::before {
background-color: #1e1e1e;
}
.dark-mode .value-card {
background-color: #1e1e1e;
}
.dark-mode .team-info {
background-color: #1e1e1e;
}
.dark-mode .team-info h3 {
color: var(--white);
}
.dark-mode .team-info p {
color: rgba(255, 255, 255, 0.7);
}
</style>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="loader">
<img src="assets/images/greattech_logo.svg" alt="TheGreatTech Logo">
<div class="loading-bar"></div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/images/greattech_logo_white.svg" alt="TheGreatTech Logo" height="30">
<!-- <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 active" href="about.html">About</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="servicesDropdown"
data-bs-toggle="dropdown" aria-expanded="false">Services<i
class="fas fa-chevron-down small ms-1 "></i></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="careers.html">Careers</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" href="contact.html#quote">Get Quote</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- About Hero -->
<header class="page-hero about-hero">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8 mx-auto text-center" data-aos="fade-up">
<h1>About TheGreatTech</h1>
<p class="lead">Building affordable digital solutions since 2022</p>
</div>
</div>
</div>
</header>
<!-- Our Story -->
<section class="section our-story">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6" data-aos="fade-right">
<div class="section-header">
<h2>Our Story</h2>
</div>
<p>Founded in 2023 by a team of passionate developers, TheGreatTech started with a simple mission:
to make high-quality web solutions accessible to businesses of all sizes.</p>
<p>What began as a small team working from a shared office space has grown into a respected digital
agency with clients across multiple industries.</p>
<p>Despite our growth, we've maintained our commitment to affordability without compromising on
quality or performance.</p>
</div>
<div class="col-lg-6" data-aos="fade-left">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2023</div>
<div class="timeline-content">
<h3>Company Founded</h3>
<p>Started with 1 developer and no office.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2023</div>
<div class="timeline-content">
<h3>First Major Client</h3>
<p>Landed our first enterprise client, expanding our portfolio</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<h3>Expanded Services</h3>
<p>Added mobile app development</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2023</div>
<div class="timeline-content">
<h3>10+ Clients</h3>
<p>Served over 20+ satisfied clients </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Our Values -->
<section class="section our-values ">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Our Core Values</h2>
<p>The principles that guide everything we do</p>
</div>
<div class="row">
<div class="col-md-4" data-aos="fade-up" data-aos-delay="100">
<div class="value-card">
<div class="value-icon">
<i class="fas fa-hand-holding-usd"></i>
</div>
<h3>Affordability</h3>
<p>We believe quality web solutions shouldn't break the bank. Our pricing is transparent and
competitive.</p>
</div>
</div>
<div class="col-md-4" data-aos="fade-up" data-aos-delay="200">
<div class="value-card">
<div class="value-icon">
<i class="fas fa-star"></i>
</div>
<h3>Quality</h3>
<p>We never compromise on quality. Every project meets our high standards before delivery.</p>
</div>
</div>
<div class="col-md-4" data-aos="fade-up" data-aos-delay="300">
<div class="value-card">
<div class="value-icon">
<i class="fas fa-users"></i>
</div>
<h3>Client Focus</h3>
<p>Your success is our success. We work closely with you to understand your unique needs.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="section our-team">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Meet Our Team</h2>
<p>The talented individuals behind your success</p>
</div>
<div class="row" id="team-container">
<!-- Team members loaded via AJAX from team.json -->
</div>
</div>
</section>
<!-- Stats Section -->
<section class="section stats bg-dark text-white">
<div class="container">
<div class="row">
<div class="col-md-3 col-6" data-aos="fade-up">
<div class="stat-item">
<div class="stat-number" data-count="5">5</div>
<div class="stat-label">Happy Clients</div>
</div>
</div>
<div class="col-md-3 col-6" data-aos="fade-up" data-aos-delay="100">
<div class="stat-item">
<div class="stat-number" data-count="5">5</div>
<div class="stat-label">Projects Completed</div>
</div>
</div>
<div class="col-md-3 col-6" data-aos="fade-up" data-aos-delay="200">
<div class="stat-item">
<div class="stat-number" data-count="10">10+</div>
<div class="stat-label">Team Members</div>
</div>
</div>
<div class="col-md-3 col-6" data-aos="fade-up" data-aos-delay="300">
<div class="stat-item">
<div class="stat-number" data-count="6">6</div>
<div class="stat-label">Years Experience</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="section cta">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8" data-aos="fade-right">
<h2>Ready to Work With Us?</h2>
<p class="mb-0">Get started with a free consultation about your project.</p>
</div>
<div class="col-lg-4 text-lg-end" data-aos="fade-left">
<a href="contact.html" class="btn btn-light btn-lg">Contact Us</a>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-4 footer-about">
<img src="assets/images/greattech_logo_white.svg" alt="TheGreatTech Logo" height="40">
<p>Providing affordable, high-quality digital solutions since 2023. Helping businesses establish and
grow their online presence.</p>
<div class="social-links">
<!-- <a href="https://wa.me/917889528326"><i class="fab fa-facebook-f"></i></a> -->
<a href="https://wa.me/917889528326"><i class="fab fa-whatsapp"></i></a>
<!-- <a href="https://wa.me/917889528326"><i class="fab fa-linkedin-in"></i></a> -->
<!-- <a href="https://wa.me/917889528326"><i class="fab fa-instagram"></i></a> -->
<a href="https://github.com/TheGreatTech"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="col-lg-2 footer-links">
<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>
<li><a href="careers.html">Careers</a></li>
</ul>
</div>
<div class="col-lg-3 footer-links">
<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">
<h3>Contact Us</h3>
<ul>
<li><i class="fas fa-map-marker-alt"></i> BEERWAH BUDGAM J&K</li>
<li><i class="fas fa-phone"></i> +91 7889528326</li>
<li><i class="fas fa-envelope"></i> thegreattechofficial@gmail.com</li>
</ul>
<a href="contact.html" class="btn btn-outline-light">Contact</a>
</div>
</div>
<hr>
<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 src="assets/js/form-handler.js"></script>
<script src="assets/js/blog-loader.js"></script>
<!-- Additional script for team loading -->
<script>
$(document).ready(function () {
// Load team members
$.getJSON('data/team.json', function (data) {
let teamHtml = '';
data.forEach(member => {
teamHtml += `
<div class="col-md-4 col-lg-3" data-aos="fade-up" data-aos-delay="${member.id * 100}">
<div class="team-card">
<div class="team-image">
<img src="${member.photo}" alt="${member.name}" class="img-fluid">
<div class="team-social">
<a href="https://wa.me/+91${member.whatsapp}"><i class="fab fa-whatsapp"></i></a>
<a href="mailto:${member.gmail}"><i class="fab fa-google"></i></a>
<a href="${member.github}"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="team-info">
<h3>${member.name}</h3>
<p>${member.position}</p>
</div>
</div>
</div>
`;
});
$('#team-container').html(teamHtml);
});
// Animate stats
$('.stat-number').each(function () {
const $this = $(this);
const countTo = $this.attr('data-count');
$({ countNum: 0 }).animate({
countNum: countTo
},
{
duration: 2000,
easing: 'swing',
step: function () {
$this.text(Math.floor(this.countNum));
},
complete: function () {
$this.text(this.countNum);
}
});
});
});
// Initialize AOS animation
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
// Load services data
</script>
</body>
</html>