-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
774 lines (680 loc) · 26.8 KB
/
about.html
File metadata and controls
774 lines (680 loc) · 26.8 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
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>من نحن - SeaStar/خدماتك</title>
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--dark-blue: #00204A;
--deep-blue: #0a1930;
--light-blue: #007bff;
--cyber-blue: #00a8ff;
--cyber-green: #0be881;
--cyber-purple: #9c88ff;
--cyber-red: #ff3f34;
--light-gray: #f8f9fa;
--dark-gray: #1e272e;
--cyber-yellow: #ffdd59;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Cairo', 'Tajawal', sans-serif;
background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
color: white;
overflow-x: hidden;
position: relative;
line-height: 1.7;
}
/* شبكة خلفية */
.grid-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 10% 20%, rgba(0, 168, 255, 0.05) 0%, transparent 20%),
radial-gradient(circle at 90% 80%, rgba(155, 136, 255, 0.05) 0%, transparent 20%);
z-index: -1;
opacity: 0.5;
}
.grid-lines {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(0, 168, 255, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 168, 255, 0.1) 1px, transparent 1px);
background-size: 40px 40px;
z-index: -1;
opacity: 0.3;
}
/* عناصر رسومية متحركة */
.cyber-circle {
position: fixed;
border-radius: 50%;
border: 2px solid var(--cyber-blue);
opacity: 0.1;
z-index: -1;
}
.pulse {
position: fixed;
width: 20px;
height: 20px;
background: var(--cyber-green);
border-radius: 50%;
box-shadow: 0 0 0 0 rgba(11, 232, 129, 0.7);
animation: pulse 2s infinite;
z-index: -1;
}
@keyframes pulse {
0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 232, 129, 0.7); }
70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(11, 232, 129, 0); }
100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 232, 129, 0); }
}
/* التنقل */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(10px);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
font-size: 1.8rem;
font-weight: 900;
background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-green));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
gap: 25px;
}
.nav-links a {
color: white;
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
padding: 8px 12px;
border-radius: 5px;
}
.nav-links a:hover, .nav-links a.active {
color: var(--cyber-green);
background: rgba(11, 232, 129, 0.1);
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
right: 0;
background: rgba(0, 0, 0, 0.85);
min-width: 250px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
padding: 15px;
z-index: 1;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
display: block;
padding: 12px 15px;
color: #ddd;
text-decoration: none;
border-radius: 5px;
margin: 5px 0;
transition: all 0.3s ease;
}
.dropdown-content a:hover {
background: rgba(11, 232, 129, 0.2);
color: var(--cyber-green);
transform: translateX(-5px);
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.hamburger .bar {
width: 30px;
height: 3px;
background: white;
margin: 3px 0;
transition: all 0.3s ease;
border-radius: 3px;
}
/* القسم البطولي لصفحة "من نحن" */
.about-hero {
min-height: 70vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 150px 40px 50px;
text-align: center;
position: relative;
overflow: hidden;
}
.about-hero h1 {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 20px;
background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-green));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1.3;
}
.about-hero p {
font-size: 1.5rem;
max-width: 800px;
margin-bottom: 40px;
color: rgba(255, 255, 255, 0.85);
}
/* قسم المحتوى "من نحن" */
.about-us-content {
max-width: 1200px;
margin: 0 auto;
padding: 50px 40px;
}
.content-block {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 40px;
margin-bottom: 50px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s ease;
}
.content-block:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
border-color: var(--cyber-green);
}
.content-block h2 {
font-size: 2.3rem;
margin-bottom: 30px;
color: var(--cyber-green);
position: relative;
padding-bottom: 15px;
}
.content-block h2::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 80px;
height: 4px;
background: var(--cyber-green);
border-radius: 2px;
}
.content-block p {
font-size: 1.2rem;
line-height: 1.9;
margin-bottom: 25px;
color: rgba(255, 255, 255, 0.85);
}
/* قائمة القيم */
.values-list {
list-style: none;
padding: 20px 0;
}
.values-list li {
padding: 15px 20px;
margin: 15px 0;
background: rgba(255, 255, 255, 0.03);
border-left: 4px solid var(--cyber-green);
border-radius: 0 8px 8px 0;
display: flex;
align-items: center;
transition: all 0.3s ease;
}
.values-list li:hover {
transform: translateX(-10px);
background: rgba(11, 232, 129, 0.1);
}
.values-list i {
font-size: 1.8rem;
color: var(--cyber-green);
margin-left: 20px;
min-width: 40px;
text-align: center;
}
.values-list h4 {
font-size: 1.4rem;
color: var(--cyber-blue);
margin-bottom: 5px;
}
.values-list p {
margin: 0;
color: rgba(255, 255, 255, 0.7);
}
/* فريق العمل */
.team-section {
text-align: center;
}
.team-members {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin-top: 40px;
}
.team-member {
flex: 1;
min-width: 280px;
max-width: 350px;
background: rgba(255, 255, 255, 0.03);
border-radius: 15px;
padding: 30px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.team-member:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
border-color: var(--cyber-purple);
}
.team-member img {
width: 180px;
height: 180px;
border-radius: 50%;
object-fit: cover;
border: 5px solid rgba(255, 255, 255, 0.1);
margin: 0 auto 20px;
transition: all 0.3s ease;
}
.team-member:hover img {
transform: scale(1.05);
border-color: var(--cyber-purple);
}
.team-member h3 {
font-size: 1.6rem;
color: var(--cyber-green);
margin-bottom: 10px;
}
.team-member p {
color: rgba(255, 255, 255, 0.8);
font-size: 1.1rem;
}
/* التذييل */
footer {
background: rgba(0, 0, 0, 0.8);
padding: 60px 40px 30px;
margin-top: 100px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 50px;
margin-bottom: 40px;
}
.footer-section {
padding: 20px;
}
.footer-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 25px;
color: var(--cyber-green);
position: relative;
padding-bottom: 10px;
}
.footer-title:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background: var(--cyber-green);
border-radius: 3px;
}
.footer-section p {
margin-bottom: 20px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: white;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.social-links a:hover {
background: var(--cyber-green);
transform: translateY(-5px);
color: var(--dark-blue);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 15px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
}
.footer-links a:hover {
color: var(--cyber-green);
padding-right: 10px;
}
.contact-info p {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}
.contact-info i {
color: var(--cyber-green);
font-size: 1.2rem;
min-width: 25px;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.5);
font-size: 1rem;
max-width: 1400px;
margin: 0 auto;
}
/* Responsive */
@media (max-width: 1100px) {
.about-hero {
padding: 150px 20px 50px;
}
.about-hero h1 {
font-size: 2.8rem;
}
}
@media (max-width: 900px) {
.navbar {
padding: 15px 20px;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.9);
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.nav-links.active {
display: flex;
}
.dropdown-content {
position: static;
background: transparent;
box-shadow: none;
padding: 10px 0 0 20px;
}
.hamburger {
display: flex;
}
.content-block {
padding: 30px 20px;
}
}
@media (max-width: 600px) {
.about-hero h1 {
font-size: 2.2rem;
}
.about-hero p {
font-size: 1.2rem;
}
.content-block h2 {
font-size: 1.8rem;
}
.content-block p {
font-size: 1.1rem;
}
.values-list h4 {
font-size: 1.2rem;
}
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.animate {
animation: fadeIn 0.8s ease-out;
}
</style>
</head>
<body>
<!-- خلفيات متحركة -->
<div class="grid-bg"></div>
<div class="grid-lines"></div>
<!-- عناصر رسومية متحركة -->
<div class="cyber-circle" style="width: 300px; height: 300px; top: 10%; left: 15%;"></div>
<div class="cyber-circle" style="width: 200px; height: 200px; bottom: 15%; right: 10%;"></div>
<div class="pulse" style="top: 20%; left: 20%;"></div>
<div class="pulse" style="bottom: 25%; right: 25%;"></div>
<!-- شريط التنقل -->
<nav class="navbar">
<div class="logo">SeaStar</div>
<ul class="nav-links">
<li><a href="index.html">الرئيسية</a></li>
<li><a href="gallery.html">معرض الصور</a></li>
<li class="dropdown">
<a href="services.html" class="dropbtn">الخدمات <i class="fas fa-caret-down"></i></a>
<div class="dropdown-content">
<a href="services.html#content-writing">كتابة المحتوى والترجمة</a>
<a href="services.html#graphic-design">التصميم الجرافيكي</a>
<a href="services.html#web-dev">تطوير الويب والتطبيقات</a>
<a href="services.html#network-it">الشبكات وتقنية المعلومات</a>
<a href="services.html#digital-marketing">التسويق الرقمي</a>
<a href="services.html#data-entry">إدخال البيانات</a>
<a href="services.html#info-security">أمن المعلومات</a>
<a href="services.html#erp-maint">الأنظمة الإدارية والمحاسبية</a>
</div>
</li>
<li><a href="portfolio.html">أعمالنا</a></li>
<li><a href="about.html" class="active">من نحن</a></li>
<li><a href="contact.html">اتصل بنا</a></li>
<li><a href="blog.html">المدونة</a></li>
</ul>
<div class="hamburger">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</nav>
<!-- القسم البطولي لصفحة "من نحن" -->
<section class="about-hero animate">
<h1>من نحن</h1>
<p>قصتنا، رؤيتنا، وقيمنا التي تدفعنا نحو الابتكار والتميز</p>
</section>
<!-- محتوى صفحة "من نحن" -->
<section class="about-us-content">
<div class="content-block animate">
<h2>قصتنا ورؤيتنا</h2>
<p>تأسست SeaStar برؤية واضحة لتقديم حلول تقنية متكاملة ومبتكرة للشركات والأفراد. منذ بدايتنا، التزمنا بتحقيق أعلى معايير الجودة والاحترافية في جميع خدماتنا. نسعى لأن نكون الشريك التقني المفضل لعملائنا، مساعدين إياهم على تحقيق أهدافهم وتجاوز التحديات الرقمية.</p>
<p>نؤمن بأن التكنولوجيا هي مفتاح المستقبل، ونعمل جاهدين لتمكين عملائنا من استغلالها بأقصى إمكاناتها. رؤيتنا هي أن نكون الوجهة الأولى في المنطقة للحلول التقنية المتكاملة التي تدفع عجلة الابتكار والتطور.</p>
</div>
<div class="content-block animate">
<h2>رسالتنا وقيمنا</h2>
<p>رسالتنا هي تقديم خدمات تقنية عالية الجودة، تلبي احتياجات عملائنا المتغيرة وتساهم في نموهم وازدهارهم. نلتزم بقيم أساسية تشكل أساس كل ما نقوم به:</p>
<ul class="values-list">
<li>
<i class="fas fa-lightbulb"></i>
<div>
<h4>الابتكار</h4>
<p>نسعى دائمًا لتقديم أحدث الحلول والتقنيات التي تواكب التطورات العالمية في مجال التكنولوجيا.</p>
</div>
</li>
<li>
<i class="fas fa-handshake"></i>
<div>
<h4>الاحترافية</h4>
<p>نلتزم بالدقة والموثوقية في جميع تعاملاتنا، مع الحفاظ على أعلى معايير السلوك المهني.</p>
</div>
</li>
<li>
<i class="fas fa-star"></i>
<div>
<h4>الجودة</h4>
<p>نضمن أفضل النتائج من خلال معايير صارمة ومراجعة مستمرة لجميع أعمالنا وخدماتنا.</p>
</div>
</li>
<li>
<i class="fas fa-users"></i>
<div>
<h4>العميل أولاً</h4>
<p>نضع احتياجات عملائنا في صميم أولوياتنا، ونعمل باستمرار لتحقيق توقعاتهم وتجاوزها.</p>
</div>
</li>
<li>
<i class="fas fa-sync-alt"></i>
<div>
<h4>المرونة</h4>
<p>نتكيف مع التغيرات لتقديم حلول مخصصة تلبي الاحتياجات المتطورة للأعمال في بيئة سريعة التغير.</p>
</div>
</li>
</ul>
</div>
<div class="content-block team-section animate">
<h2>فريقنا</h2>
<p>نفخر بامتلاك فريق عمل يضم نخبة من الخبراء والمتخصصين في مختلف مجالات تقنية المعلومات. يمتلك كل عضو في فريقنا شغفًا بالابتكار والتطوير، ويعملون بتناغم لتقديم أفضل الحلول لعملائنا. فريقنا هو قلب شركتنا وسبب نجاحنا المستمر.</p>
<div class="team-members">
<div class="team-member">
<img src="img/abd.jpg" alt="صورة عبدالله عباس يحيى">
<h3>عبدالله عباس يحيى</h3>
<p>ماجستير شبكات وأمن معلومات</p>
</div>
<div class="team-member">
<img src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?q=80&w=1887&auto=format&fit=crop" alt="صورة عضو الفريق">
<h3>سارة أحمد</h3>
<p>مديرة التصميم الجرافيكي</p>
</div>
<div class="team-member">
<img src="img/moh.jpg" alt="صورة عضو الفريق">
<h3>محمد عباس </h3>
<p>خبير تطوير الويب والتطبيقات</p>
</div>
</div>
</div>
</section>
<!-- التذييل -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h3 class="footer-title">عن SeaStar</h3>
<p>نحن نقدم مجموعة شاملة من حلول تقنية المعلومات لتمكين الشركات من تحقيق أهدافها الرقمية.</p>
<div class="social-links">
<a href="https://www.facebook.com/profile.php?id=61569730196174"><i class="fab fa-facebook-f"></i></a>
<a href="https://x.com/Sea_st_ar?s=09"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/sea-star-67a18a372?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.instagram.com/sea_st_ar?igsh=a3VsMnYxdHFvNm50"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-section">
<h3 class="footer-title">روابط سريعة</h3>
<ul class="footer-links">
<li><a href="services.html"><i class="fas fa-arrow-left"></i> الخدمات</a></li>
<li><a href="portfolio.html"><i class="fas fa-arrow-left"></i> أعمالنا</a></li>
<li><a href="about.html"><i class="fas fa-arrow-left"></i> من نحن</a></li>
<li><a href="contact.html"><i class="fas fa-arrow-left"></i> اتصل بنا</a></li>
<li><a href="privacy-policy.html"><i class="fas fa-arrow-left"></i> سياسة الخصوصية</a></li>
</ul>
</div>
<div class="footer-section">
<h3 class="footer-title">معلومات الاتصال</h3>
<p><i class="fas fa-map-marker-alt"></i> صنعاء، دارس، المدينة الخضراء</p>
<p><i class="fas fa-phone"></i> +967 779 168 887</p>
<p><i class="fas fa-envelope"></i> prcmased@gmail.com</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 SeaStar. جميع الحقوق محفوظة.</p>
</div>
</footer>
<script>
// إضافة تأثيرات الظهور عند التمرير
document.addEventListener('DOMContentLoaded', function() {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate');
}
});
}, {
threshold: 0.1
});
document.querySelectorAll('.animate').forEach(element => {
element.classList.remove('animate');
observer.observe(element);
});
// التنقل السلس
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if(targetId === '#') return;
const targetElement = document.querySelector(targetId);
if(targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 100,
behavior: 'smooth'
});
}
});
});
// قائمة الهاتف المحمول
const hamburger = document.querySelector('.hamburger');
const navLinks = document.querySelector('.nav-links');
hamburger.addEventListener('click', () => {
navLinks.classList.toggle('active');
hamburger.classList.toggle('active');
});
});
</script>
</body>
</html>