-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
688 lines (599 loc) · 21.7 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital vibe</title>
<link rel="icon" type="image/x-icon" href="images/logo/logo svg transparent.svg">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/d36d507b4c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/master.css">
<style>
body {
background:#000; /* Gradient from dark red to gold */
background-blend-mode: overlay; /* Blend mode to add an overlay effect */
}
:root{
--main-color: #19c8fa;
--transparent-color: rgba(15, 115, 143, 0.377);
--text-color:#bbbbbb;
--section-padding: 100px;
}
.services{
padding-top: 250px ;
padding-bottom: var(--section-padding);
}
.main-heading p{
margin-bottom: 30px;
}
.main-heading h2{
color: #000;
text-shadow: 1px 8px 20px var(--main-color);
}
.main-heading h2::before{
background-color: #000;
box-shadow: 0 0 30px #fff;
}
.main-heading h2::after{
background-color: #000;
box-shadow: 0 0 20px var(--main-color);
border-color: var(--main-color);
}
.main-heading p{
color: var(--text-color);
}
/* Add your global CSS styles here */
.section-head-text {
font-size: 35px;
font-weight: 700;
color: rgb(0, 135, 177);
margin: 0 0 10px 0;
}
.section-subhead-text {
font-size: 25px;
color: rgb(153, 153, 153);
line-height: 35px;
max-width: 470px;
text-align: center;
margin: 0 0 60px 0;
}
.img-wrapper {
width: 250px;
overflow: hidden;
border-radius: 50%;
}
.team-card {
display: flex;
flex-direction: column;
align-items: center;
user-select: none;
padding-bottom: 20px;
}
.social-media-links {
width: 125px;
display: flex;
justify-content: space-between;
}
.name,
.position {
font-size: 25px;
font-weight: 700;
margin: 0 0 5px 0;
}
.name {
color: rgb(102, 102, 102);
}
.position {
color: rgb(0, 135, 177);
text-align: center;
}
.team-img {
width: 250px;
border-radius: 50%;
filter: blur(1px);
transition: .5s;
}
.team-img:hover{
transform: scale(1.1);
filter: blur(0);
}
.team-container {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.team-card {
width: 280px;
margin: 0 0 40px 0;
}
i{
padding-top: 10px;
color: #777;
transition: .5s;
font-size: larger;
margin-bottom: 10px;
}
i:hover{
color: #333;
margin-bottom: 5px;
transform: translateY(-5px);
}
.inner-container {
max-width: 1320px;
margin: 50px auto;
}
@media (max-width: 500px) {
.outer-container {
padding: 10px 20px;
}
}
footer{
margin-top: 10px;
}
#btn{
padding: 10px 20px;
text-transform: uppercase;
border-radius: 8px;
font-size: 17px;
font-weight: 500;
color: #ffffff80;
text-shadow: none;
background: transparent;
cursor: pointer;
box-shadow: transparent;
border: 1px solid #ffffff80;
transition: 0.5s ease;
user-select: none;
position: absolute;
left: 50%;
transform: translateX(-50%);
margin-top: -90px;
text-decoration: none;
}
#btn:hover,
#btn:focus {
color: #ffffff;
background: #008cff;
border: 1px solid #008cff;
text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
box-shadow: 0 0 5px #008cff, 0 0 20px #008cff, 0 0 50px #008cff,
0 0 100px #008cff;
}
.scroll-progress {
position: absolute;
top: 300px;
left: 170px;
height: 0; /* Adjust the height of the progress bar */
width: 10px; /* Initially set the width to 0 */
background: linear-gradient( #022d8a,#022d8a,#022d8a,#022d8a,#022d8a,#022d8a, #cc00ff , #cc00ff , #ae419c); /* Set the color of the progress bar */
z-index: 995; /* Ensure the progress bar is above other content */
border-radius: 20px;
transition: height 0.3s; /* Add transition effect for smoother appearance */
}
.scroll-line {
position: absolute;
top: 300px; /* Adjust the position of the line */
left: 170px; /* Adjust the position of the line */
width: 10px; /* Adjust the width of the line */
height: 2190px; /* Adjust the height of the line */
background-color: #333;
z-index: 994;
border-radius: 20px;
}
.icon {
position: absolute;
left: 160px;
width: 30px; /* Adjust the size of the icons */
height: 30px; /* Adjust the size of the icons */
background-color: #000;
border-radius: 50%; /* Make the icons circular */
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: box-shadow 1.5s;
}
@media (max-width: 1460px) {
.scroll-progress {
position: absolute;
left: 60px;
}
.scroll-line {
position: absolute;
left: 60px; /* Adjust the position of the line */
}
.icon {
position: absolute;
left: 50px;
}
}
@media (max-width: 670px) {
.scroll-progress {
display: none;
}
.scroll-line {
display: none;
}
.icon {
display: none;
}
}
/* Animation styles */
/* Animation styles for About section */
#about .main-heading.animate h2 {
opacity: 0;
}
#about .main-heading.animate.active h2 {
animation: fadeIn 1s forwards;
}
#about .main-heading.animate.inactive h2 {
animation: fadeOut 1s forwards;
}
#about .main-heading.animate p {
opacity: 0;
transform: translateY(50%);
}
#about .main-heading.animate.active p {
animation: slideInLeft 1s forwards;
}
#about .main-heading.animate.inactive p {
animation: slideOutDown 1s forwards;
}
.main-heading.animate h2 {
opacity: 0;
}
.main-heading.animate.active h2 {
animation: fadeIn 1s forwards;
}
.main-heading.animate.inactive h2 {
animation: fadeOut 1s forwards;
}
.main-heading.animate p {
opacity: 0;
transform: translateY(50%);
}
.main-heading.animate.active p {
animation: slideInLeft 1s forwards;
}
.main-heading.animate.inactive p {
animation: slideOutDown 1s forwards;
}
.team-card.animate {
opacity: 0;
transform: scale(0);
}
.team-card.animate.active {
animation: zoomIn 1s forwards;
}
.team-card.animate.inactive {
animation: zoomOut 1s forwards;
}
#btn.animate {
opacity: 0;
}
#btn.animate.active {
animation: flash 1s forwards;
}
#btn.animate.inactive {
animation: zoomOut 1s forwards;
color: #ffffff;
background: #008cff;
border: 1px solid #008cff;
text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
box-shadow: 0 0 5px #008cff, 0 0 20px #008cff, 0 0 50px #008cff,
0 0 100px #008cff;
}
</style>
</head>
<body>
<header>
<div class="container">
<a href="index.html" class="logo soundButton fileLink" data-sound="clickSoundGroup3"><img src="images/logo/dv.png" style="width: 50px; border-radius: 50%;" alt=""></a>
<nav>
<i class="fas fa-bars " id="toggle-menu"></i>
<ul id="myList" class="">
<li><a href="service.html" class="soundButton fileLink" data-sound="clickSoundGroup3">Services</a></li>
<li><a href="portfolio.html" class="soundButton fileLink" data-sound="clickSoundGroup3">portfolio</a></li>
<li><a href="pricing.html" >Pricing</a></li>
<li><a href="" class="soundButton fileLink" data-sound="clickSoundGroup3">community <span class="soon" style="left: -15px; top: -15px;">soon</span></a></li>
<li><a href="contact.html" >Contact</a></li>
</ul>
<button class="loginBtn">
<div class="sign"><svg viewBox="0 0 512 512"><path d="M217.9 105.9L340.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L217.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1L32 320c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM352 416l64 0c17.7 0 32-14.3 32-32l0-256c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c53 0 96 43 96 96l0 256c0 53-43 96-96 96l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z"></path></svg></div>
<div class="text">Login</div>
</button>
<span class="soon ed" style="height: 19.2px; top: 6px; left: -5px; ">soon</span>
</nav>
</div>
</header>
<!--START loader -->
<div id="loader">
<div class="loader-content">
<svg height="0" width="0" viewBox="0 0 100 100" class="absolute">
<defs class="s-xJBuHA073rTt" xmlns="http://www.w3.org/2000/svg">
<linearGradient
class="s-xJBuHA073rTt"
gradientUnits="userSpaceOnUse"
y2="2"
x2="0"
y1="62"
x1="0"
id="b"
>
<stop class="s-xJBuHA073rTt" stop-color="#0369a1"></stop>
<stop class="s-xJBuHA073rTt" stop-color="#67e8f9" offset="1.5"></stop>
</linearGradient>
<linearGradient
class="s-xJBuHA073rTt"
gradientUnits="userSpaceOnUse"
y2="0"
x2="0"
y1="64"
x1="0"
id="c"
>
<stop class="s-xJBuHA073rTt" stop-color="#0369a1"></stop>
<stop class="s-xJBuHA073rTt" stop-color="#22d3ee" offset="1"></stop>
<animateTransform
repeatCount="indefinite"
keySplines=".42,0,.58,1;.42,0,.58,1;.42,0,.58,1;.42,0,.58,1;.42,0,.58,1;.42,0,.58,1;.42,0,.58,1;.42,0,.58,1"
keyTimes="0; 0.125; 0.25; 0.375; 0.5; 0.625; 0.75; 0.875; 1"
dur="8s"
values="0 32 32;-270 32 32;-270 32 32;-540 32 32;-540 32 32;-810 32 32;-810 32 32;-1080 32 32;-1080 32 32"
type="rotate"
attributeName="gradientTransform"
></animateTransform>
</linearGradient>
<linearGradient
class="s-xJBuHA073rTt"
gradientUnits="userSpaceOnUse"
y2="2"
x2="0"
y1="62"
x1="0"
id="d"
>
<stop class="s-xJBuHA073rTt" stop-color="#38bdf8"></stop>
<stop class="s-xJBuHA073rTt" stop-color="#075985" offset="1.5"></stop>
</linearGradient>
</defs>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 100 100"
width="100"
height="100"
class="inline-block"
>
<path
stroke-linejoin="round"
stroke-linecap="round"
stroke-width="11"
stroke="url(#c)"
d="M 50,15
A 35,35 0 0 1 85,50
A 35,35 0 0 1 50,85
A 35,35 0 0 1 15,50
A 35,35 0 0 1 50,15 Z"
class="spin"
id="o"
pathLength="360"
></path>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 100 100"
width="100"
height="100"
class="inline-block l"
>
<path
stroke-linejoin="round"
stroke-linecap="round"
stroke-width="11"
stroke="url(#c)"
d="M 50,15
L 50,85"
class="dash2"
id="l"
pathLength="70"
></path>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
style="--rotation-duration:0ms; --rotation-direction:normal;"
viewBox="0 0 100 100"
width="100"
height="100"
class="inline-block"
>
<path
stroke-linejoin="round"
stroke-linecap="round"
stroke-width="12"
stroke="url(#d)"
d="M 20,20 L 50,80 L 80,20"
class="dash"
id="v"
pathLength="360"
></path>
</svg>
</div>
</div>
<!--END loader -->
<div class="scroll-progress" id="scrollProgress"></div>
<div class="scroll-line"></div>
<div class="icon" style="top: 300px; box-shadow: 0 0 15px red; border: 1px solid red;"><i class="fa-solid fa-question" style="color: red;"><a href=""></a></i></div>
<div class="icon" id="mission-icon" style="top: 1250px; border: 1px solid green;"><i class="fas fa-bullseye" style="color: green;"></i></div>
<div class="icon" id="team-icon" style="top: 1890px; border: 1px solid ;"><i class="fas fa-users" style="color: yellow;"></i></div>
<div class="services" id="about">
<div class="container">
<div class="main-heading animate">
<h2>About Digital Vibe</h2>
<p>Welcome to Digital Vibe, where innovation meets excellence. Founded in 2019, Digital Vibe has emerged as a leading provider of digital solutions, catering to clients worldwide. Our journey began with a vision to transform businesses through cutting-edge technology and creative brilliance.</p>
<p>At Digital Vibe, we believe in the power of digital transformation to drive growth, enhance efficiency, and unlock new opportunities. With a diverse team of experts and a passion for innovation, we deliver custom solutions tailored to the unique needs of each client.</p>
<p>Our commitment to quality, integrity, and customer satisfaction sets us apart in the competitive landscape. We take pride in our ability to exceed expectations, delivering results that resonate with our clients and their audiences.</p>
</div>
</div>
</div>
<div class="services" id="mission">
<div class="container">
<div class="main-heading animate">
<h2>Our Mission</h2>
<p>Our mission at Digital Vibe is to empower businesses with transformative digital solutions that drive success in the digital age. We strive to harness the latest technologies and creative strategies to deliver measurable results and create lasting value for our clients.</p>
</div>
</div>
</div>
<div class="services" id="team">
<div class="container">
<div class="main-heading animate">
<h2>Our Team</h2>
<p>Meet the passionate individuals behind Digital Vibe's success. Our team brings together a diverse range of talents, including developers, designers, marketers, and strategists, united by a shared commitment to excellence.</p>
</div>
<div class="container team-container animate">
<div class="team-card animate">
<div class="img-wrapper">
<img class="team-img" src="images/team/hamdy.jpg" style="height: 232px;">
</div>
<p class="name">Hamdy El-menshawi</p>
<p class="position">Front-end Developer</p>
<div class="social-media-links">
<a target="_blank" href="https://www.facebook.com/noopsaibot"><i class="fab fa-facebook-f"></i></a>
<a href="https://discordapp.com/users/noopsaibot909" target="_blank" class="contact-icon"><i class="fa-brands fa-discord"></i></a>
<a class="footer-call-to-action-link" href="tel:+201080876548" target="_self"><i class="fa-solid fa-phone"></i></a>
<a target="_blank" href="https://www.linkedin.com/in/noopsaibot"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="team-card animate">
<div class="img-wrapper">
<img class="team-img" src="images/team/ammar.jpg" style="height: 232px;">
</div>
<p class="name">somebody</p>
<p class="position">Back-end Developer</p>
<div class="social-media-links">
<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-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="team-card animate">
<div class="img-wrapper">
<img class="team-img" src="images/team/pexels-croft-alexander-747385-1624229.jpg" style="height: 232px;">
</div>
<p class="name">lily Doe</p>
<p class="position">It instructor</p>
<div class="social-media-links">
<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-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<!-- More team cards here -->
</div>
</div>
</div>
<a id="btn" href="contact.html" class="animate">Contact Us</a>
<footer class="footer">
<div class="container">
<div class="row" style="gap: 0;">
<div class="footer-col">
<h4>company</h4>
<ul>
<li><a href="about.html">about us</a></li>
<li><a href="service.html">our services</a></li>
<li><a href="privacy.html">privacy policy</a></li>
</ul>
</div>
<div class="footer-col">
<h4>get help</h4>
<ul>
<li><a href="FaQs.html">FAQ</a></li>
<li><a href="contact.html">contact</a></li>
<li><a href="pricing.html">buy</a></li>
</ul>
</div>
<div class="footer-col">
<h4>location</h4>
<ul>
<li><a class="footer-location-address" href="https://maps.app.goo.gl/raEN6Lg3KiL8k5sa9" target="_blank">
53 Main Street,<br>
The 5th Settlement, Industrial Area, 11835
</a></li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<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-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© <span id="current-year"></span> Digital vibe. All rights reserved.</p>
</div>
</div>
</footer>
<button id="scrollTopBtn" onclick="scrollToTop()" class="soundButton" data-sound="clickSoundGroup1"><i class="fa-solid fa-jet-fighter-up"></i></button>
<!-- sounds -->
<audio id="clickSoundGroup1" src="sounds/mixkit-cool-interface-click-tone-2568.wav"></audio>
<audio id="clickSoundGroup2" src="sounds/mixkit-negative-tone-interface-tap-2569.wav"></audio>
<audio id="clickSoundGroup3" src="sounds/mixkit-modern-technology-select-3124.wav"></audio>
<audio id="clickSoundGroup4" src="sounds/mixkit-getting-ready-46.mp3"></audio>
<script>
document.addEventListener('DOMContentLoaded', function() {
const scrollProgress = document.getElementById('scrollProgress');
const missionIcon = document.getElementById('mission-icon');
const teamIcon = document.getElementById('team-icon');
const scrollLine = document.getElementById('scrollLine');
// Event listener for scroll events
window.addEventListener('scroll', function() {
// Calculate the progress of the scroll
const windowHeight = window.innerHeight;
const scrollHeight = document.body.clientHeight;
const scrollTop = window.scrollY;
const progress = (scrollTop / (scrollHeight - windowHeight)) * 300;
// Update the height of the progress bar
scrollProgress.style.height = progress + '%';
// Check if the mission icon is in view
const missionIconRect = missionIcon.getBoundingClientRect();
if (
missionIconRect.top >= 0 &&
missionIconRect.bottom <= windowHeight
) {
// If the mission icon is in view, apply the shadow effect
missionIcon.style.boxShadow = '0 0 20px green';
console.log('Mission icon reached');
} else {
// If not, remove the shadow effect
missionIcon.style.boxShadow = 'none';
}
// Check if the team icon is in view
const teamIconRect = teamIcon.getBoundingClientRect();
if (
teamIconRect.top >= 0 &&
teamIconRect.bottom <= windowHeight
) {
// If the team icon is in view, apply the shadow effect
teamIcon.style.boxShadow = '0 0 20px yellow';
console.log('Team icon reached');
} else {
// If not, remove the shadow effect
teamIcon.style.boxShadow = 'none';
}
});
});
</script>
<!-- sounds -->
<script src="js/main.js"></script>
</body>
</html>