-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1319 lines (1079 loc) · 60.5 KB
/
index.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
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
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project L.I.N.A</title>
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="./res_styl.css">
<link rel="stylesheet" href="./dependency/icomoon/icomoon.css">
<link href="./dependency/aos.css" rel="stylesheet">
<link id="jos-stylesheet" rel="stylesheet" href="./dependency/jos.css" crossorigin="anonymous" />
<link rel="stylesheet" href="./dependency/owl.carousel.min.css"
integrity="sha512-tS3S5qG0BlhnQROyJXvNjeEM4UpMXHrQfTGmbQ1gKmelCxlSEBUaxhRBj/EFTzpbP4RVSrpEikbmdJobCvhE3g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./dependency/owl.theme.default.min.css"
integrity="sha512-sMXtMNL1zRzolHYKEujM2AqCLUR9F2C4/05cdbxjjLSRvMQIciEPCQZo++nk7go3BtSuK9kfa/s+a4f4i5pLkw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<section class="blur_bg" id="blur_bg" onclick="blurScreen()"></section>
<!-- <section class="blur_bg" id="blur_bg" style="display: block;"></section> -->
<header class="top-header">
<div class="logo">
<img src="./images/logo.png" alt="Logo">
</div>
<nav class="navbar">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-items">
<li><a href="#home" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#works">Works</a></li>
<li><a href="#sponsors">Stakeholder</a></li>
<li><a href="#team">Team</a></li>
<li><a href="https://blog.projectlina.org/" target="_blank">Blog</a></li>
<li><a href="https://shop.projectlina.org/" target="_blank">Shop</a></li>
</ul>
</nav>
<div class="contact-button">
<a href="#contact">Donate</a>
</div>
</header>
<section id="OurWorkSoFar">
<div class="boir" id="boir">
<div class="cls" id="x" onClick="blurScreen()"><a>x</a></div>
<div class="even_name" id="reg_ti">A.T.H.E.N.A</div>
<div class="even_slog" id="reg_slog">Advanced Technology for Holistic (Legal) Education and Navigation
Assistance</div>
<div class="popc">
<div class="hi">
<img src="./images/athena.png" id="imgsrc" alt="" srcset="">
<!-- <div class="even_d_t"><u>Description</u></div> -->
<!-- <div class="even_desc" id="reg_cont">--Auto Description Here--</div> -->
</div>
<div class="cenli"></div>
<div class="hi about_hi">
<div class="even_d_t ccc"><u>About</u></div>
<ul class="even_desc_r" id="reg_rules" style="list-style-type: square;">
<p>The A.T.H.E.N.A. initiative represents a groundbreaking approach to redefining the legal
landscape through advanced AI applications. By harnessing the prowess of natural language
processing, machine learning, and an extensive knowledge graph, A.T.H.E.N.A. aims to be a
pivotal resource for law students, academics, lawyers, and judges. This holistic platform
will
provide sophisticated features including intelligent search algorithms, streamlined document
drafting capabilities, insights generation, and personalised recommendations tailored to
individual user needs and preferences.</p>
</ul>
</div>
<div class="botbut">
<a class="b3" id="reg_waitlist" href="https://forms.gle/P5QD5mHaePd5HtMZ7" target="_blank">Waitlist</a>
<a class="b3" id="devPaper" href="./athenaDP.pdf" target="_blank">Whitepaper</a>
</div>
</div>
</div>
</section>
<section id="OfficeBearers">
<div class="boir" id="boir b2">
<div class="cls" id="x" onClick="blurScreen()"><a>x</a></div>
<div class="even_name" id="reg_ti">Joy Kumaz</div>
<div class="even_slog" id="reg_slog">Founder, Chairman & Chief Executive Officer</div>
<div class="popc">
<div class="hi">
<img src="./images/2.jpg" id="imgsrc" alt="" srcset="">
<!-- <div class="even_d_t"><u>Description</u></div> -->
<!-- <div class="even_desc" id="reg_cont">--Auto Description Here--</div> -->
</div>
<div class="cenli"></div>
<div class="hi about_hi">
<div class="even_d_t ccc"><u>About</u></div>
<ul class="even_desc_r" id="reg_rules" style="list-style-type: square;">
</ul>
</div>
<div class="botbut">
<div class="socials" id="logoi">
<li id="social-in-menu" class="button_social_group"> <a href="connect@projectlina.org"
target="_blank" id="mailurl">
<span class="screen-reader-text">Email</span>
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a target="_blank" id="linkedinurl" href="#">
<span class="screen-reader-text">LinkedIn</span>
<i class="fa fa-linkedin " aria-hidden="true"></i>
</a>
<a target="_blank" id="phoneurl" href="tel:+918778997952">
<span class="screen-reader-text">Phone </span>
<i class="fa fa-twitter" aria-hidden="true"></i>
</a> <a target="_blank" id="instaurl" href="https://www.instagram.com/projectlinaofficial/">
<span class="screen-reader-text">Instagram</span>
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<div id="spann"></div>
</li>
</div>
</div>
</div>
</div>
</section>
<section id="WorkWithUs">
<div class="boir" id="boir bi3">
<div class="cls" id="x" onClick="blurScreen()"><a>x</a></div>
<div class="even_name" id="reg_ti">Tech</div>
<div class="even_slog" id="reg_slog">Advanced AI/ML</div>
<div class="popc">
<div class="hi">
<img src="./images/p1.png" id="imgsrc" alt="" srcset="">
<!-- <div class="even_d_t"><u>Description</u></div> -->
<!-- <div class="even_desc" id="reg_cont">--Auto Description Here--</div> -->
</div>
<div class="cenli"></div>
<div class="hi about_hi">
<div class="even_d_t ccc"><u>About</u></div>
<ul class="even_desc_r" id="reg_rules" style="list-style-type: square;">
--Auto Rules Here--
</ul>
</div>
<div class="botbut">
<a class="b3" id="reg_reg" href="#" target="_blank">Register for Waitlist</a>
</div>
</div>
</div>
</section>
<section id="home">
<h1 class="home-title jos">
Project L.I.N.A
</h1>
<div class="baff">
<p class="bafte" id="quote" data-aos="fade" data-aos-duration="2000" data-aos-delay="1500"
data-aos-once="true">Towards Singularity
</p>
</div>
<div class="about-bl" data-aos="fade-left" data-aos-duration="2000" data-aos-once="true">
<a href="./whitepaper/">Read Whitepaper</a>
</div>
</section>
<section id="about">
<div class="bg">
<div class="bg-wrap none" id="bg-wrap">
<svg class="svgcol" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid slice">
<defs>
<radialGradient id="Gradient1" cx="50%" cy="50%" fx="0.441602%" fy="50%" r=".5">
<animate attributeName="fx" dur="34s" values="0%;3%;0%" repeatCount="indefinite"></animate>
<stop offset="0%" stop-color="rgba(255, 0, 255, 1)"></stop>
<stop offset="100%" stop-color="rgba(255, 0, 255, 0)"></stop>
</radialGradient>
<radialGradient id="Gradient2" cx="50%" cy="50%" fx="2.68147%" fy="50%" r=".5">
<animate attributeName="fx" dur="23.5s" values="0%;3%;0%" repeatCount="indefinite">
</animate>
<stop offset="0%" stop-color="rgba(255, 255, 0, 1)"></stop>
<stop offset="100%" stop-color="rgba(255, 255, 0, 0)"></stop>
</radialGradient>
<radialGradient id="Gradient3" cx="50%" cy="50%" fx="0.836536%" fy="50%" r=".5">
<animate attributeName="fx" dur="21.5s" values="0%;3%;0%" repeatCount="indefinite">
</animate>
<stop offset="0%" stop-color="rgba(0, 255, 255, 1)"></stop>
<stop offset="100%" stop-color="rgba(0, 255, 255, 0)"></stop>
</radialGradient>
<radialGradient id="Gradient4" cx="50%" cy="50%" fx="4.56417%" fy="50%" r=".5">
<animate attributeName="fx" dur="23s" values="0%;5%;0%" repeatCount="indefinite"></animate>
<stop offset="0%" stop-color="rgba(0, 255, 0, 1)"></stop>
<stop offset="100%" stop-color="rgba(0, 255, 0, 0)"></stop>
</radialGradient>
<radialGradient id="Gradient5" cx="50%" cy="50%" fx="2.65405%" fy="50%" r=".5">
<animate attributeName="fx" dur="24.5s" values="0%;5%;0%" repeatCount="indefinite">
</animate>
<stop offset="0%" stop-color="rgba(0,0,255, 1)"></stop>
<stop offset="100%" stop-color="rgba(0,0,255, 0)"></stop>
</radialGradient>
<radialGradient id="Gradient6" cx="50%" cy="50%" fx="0.981338%" fy="50%" r=".5">
<animate attributeName="fx" dur="25.5s" values="0%;5%;0%" repeatCount="indefinite">
</animate>
<stop offset="0%" stop-color="rgba(255,0,0, 1)"></stop>
<stop offset="100%" stop-color="rgba(255,0,0, 0)"></stop>
</radialGradient>
</defs>
<rect x="13.744%" y="1.18473%" width="100%" height="100%" fill="url(#Gradient1)"
transform="rotate(334.41 50 50)">
<animate attributeName="x" dur="20s" values="25%;0%;25%" repeatCount="indefinite"></animate>
<animate attributeName="y" dur="21s" values="0%;25%;0%" repeatCount="indefinite"></animate>
<animateTransform attributeName="transform" type="rotate" from="0 50 50" to="360 50 50" dur="7s"
repeatCount="indefinite"></animateTransform>
</rect>
<rect x="-2.17916%" y="35.4267%" width="100%" height="100%" fill="url(#Gradient2)"
transform="rotate(255.072 50 50)">
<animate attributeName="x" dur="23s" values="-25%;0%;-25%" repeatCount="indefinite"></animate>
<animate attributeName="y" dur="24s" values="0%;50%;0%" repeatCount="indefinite"></animate>
<animateTransform attributeName="transform" type="rotate" from="0 50 50" to="360 50 50"
dur="12s" repeatCount="indefinite"></animateTransform>
</rect>
<rect x="9.00483%" y="14.5733%" width="100%" height="100%" fill="url(#Gradient3)"
transform="rotate(139.903 50 50)">
<animate attributeName="x" dur="25s" values="0%;25%;0%" repeatCount="indefinite"></animate>
<animate attributeName="y" dur="12s" values="0%;25%;0%" repeatCount="indefinite"></animate>
<animateTransform attributeName="transform" type="rotate" from="360 50 50" to="0 50 50" dur="9s"
repeatCount="indefinite"></animateTransform>
</rect>
</svg>
</div>
</div>
<!-- <section class="s0">
<div class="container">
<div class="text-wrapper">
<div class="text-1 text"> Brought to you by department of </div>
<br>
<div class="text-2 text dh">Electronics and Communication</div>
</div>
</div>
</section> -->
<section class="section s1" id="about">
<div class="about" style="overflow-x: hidden;">
<div class="topic-head" data-aos="zoom-in" data-aos-duration="400">About</div>
<div class="topic">
<div class="topi t0">
<div class="topic-img-con " data-aos="fade-right" data-aos-duration="700">
<div class="topic-img-con tic1">
<div class="top-pic p1"></div>
</div>
</div>
<div class="topic-desc" data-aos="fade-in" data-aos-duration="900">
<b>Project L.I.N.A</b> ( <b>L</b>aterally <b>I</b>ntegrated <b>N</b>eural
<b>A</b>rchitecture ) is a nonprofit R&D organization working on ethical advancements in
artificial intelligence technology and it's use cases within various cross industry domains
of practice.
</div>
</div>
<div class="topi t1">
<div class="topic-img-con" data-aos="fade-left" data-aos-duration="700">
<div class="topic-img-con tic1 tic2"></div>
<div class="top-pic p2"></div>
</div>
<div class="topic-desc" data-aos="fade-in" data-aos-duration="900">Advocating for progressive
and reasonable regulations within the AI space.
Developing, deploying, operating and maintaining custom AI models, while simultaneously
publishing relevant theoretical esearch within the space.
Furthering other holistic and social welfare oriented ventures and initiatives to increase
efficiency of value production and quality of human life</div>
</div>
</div>
</div>
</section>
</section>
<section id="about-2">
<div class="about-header" data-aos="fade-up" data-aos-once="true">
<h3 class="about-us">About Us</h3>
<h1 class="about-title">Where Innovation Meets Artificial Intelligence</h1>
<p class="about-description">
Welcome to Project L.I.N.A the home of new gen revolution in AI Technology. Our journey began with a
dream to make sure that AI implementation is executed in an ethical & unbiased manner and that it does
more good than harm, resulting in, hopefully an overwhelming net positive, instead of the matrix-like
dystopia that we're currently portrayed to be headed towards.
</p>
</div>
<div class="about-items">
<div class="about-item" data-aos="fade-right" data-aos-once="true" data-aos-duration="1000">
<div class="item-card">
<div class="item-border">
<div class="item-image">
<img src="./images/p1.png" alt="L.I.N.A Tech">
</div>
<div class="item-details">
<p>L.I.N.A Tech - Functioning as the primary R&D wing, LT focuses on progressive and
integrative research and implementation of augmentative AI. <br> <br> <br>LT works
according to a
set of proprietary principles, championing an ethics-first and user-oriented approach
that prioritizes user privacy and private data security.</p>
</div>
</div>
<p class="item-title">L.I.N.A Tech</p>
</div>
</div>
<div class="about-item" data-aos="fade-up" data-aos-once="true" data-aos-duration="1000">
<div class="item-card">
<div class="item-border">
<div class="item-image">
<img src="./images/p2.png" alt="L.I.N.A Corp">
</div>
<div class="item-details">
<p>LINA Corp - Functioning as the main corporate wing, It aims to foster a collaborative
spirit within the AI development space within India, and extend it further abroad. LC
also provides Business Development Services and Assistance to other startups and
innovative teams working on related domains. <br> <br> <br>
LC further champions the ethical implentation of AI in other industry niches, and works
towards furthering publishing and promotion of ground breaking innovations in AI
technology and their practical development and en masse deployment for public benefit.
</p>
</div>
</div>
<p class="item-title">L.I.N.A Corp</p>
</div>
</div>
<div class="about-item" data-aos="fade-left" data-aos-once="true" data-aos-duration="1000">
<div class="item-card">
<div class="item-border">
<div class="item-image">
<img src="./images/p3.png" alt="L.I.N.A Foundation">
</div>
<div class="item-details">
<p>
LINA Foundation - Functioning as the central welfare wing, It aims to foster an
inclusive and mutually collaborative spirit within stakeholders in the AI space. <br>
<br> <br>
LF further operates various targeted welfare initiatives aimed at promoting ethical and
beneficial integration of AI into society alongside other causes aimed at creating a
welfare state of affairs in the tech economy and society at large.
</p>
</div>
</div>
<p class="item-title">L.I.N.A Foundation</p>
</div>
</div>
</div>
<!-- Repeat for other items -->
</div>
</section>
<section id="works">
<div class="row">
<div class="col-md-12 col-md-offset-0">
<ul class="timeline">
<li class="timeline-heading text-center animate-box" style="text-align: center;" data-aos="fade-up"
data-aos-once="true" data-aos-duration="1000">
<div>
<h3>Lab</h3>
</div>
</li>
<br><br><br><br><br>
<li class="animate-box timeline-unverted" id="athena" onclick="worksofar(this.id)">
<div class="timeline-badge"><i class="icon-key"></i></div>
<div class="timeline-panel" data-aos="fade-right" data-aos-once="true" data-aos-duration="1000">
<div class="timeline-heading">
<h3 class="timeline-title animm">The Athena Initiative...</h3>
<!-- <span class="company">Destro Sec - 2018 - Current</span> -->
</div>
</li>
<br><br><br><br><br>
<li class="timeline-inverted animate-box" id="genesisx" onclick="worksofar(this.id)">
<div class="timeline-badge"><i class="icon-key"></i></div>
<div class="timeline-panel" data-aos="fade-left" data-aos-once="true" data-aos-duration="1000">
<div class="timeline-heading">
<h3 class="timeline-title" > The
Operation Genesis X
</h3>
<!-- <span class="company">Ayshwarya technologies - 2022 - 2023</span> -->
</div>
<!-- <div class="timeline-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div> -->
</div>
</li>
<br><br><br><br><br>
<li class="animate-box timeline-unverted" id="s8" onclick="worksofar(this.id)">
<div class="timeline-badge"><i class="icon-key"></i></div>
<div class="timeline-panel" data-aos="fade-right" data-aos-once="true" data-aos-duration="1000">
<div class="timeline-heading">
<h3 class="timeline-title" > Operation S8-Lang
</h3>
<!-- <span class="company">Arun Computers - 2020 - 2022</span> -->
</div>
<!-- <div class="timeline-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div> -->
</div>
</li>
<br><br><br><br><br>
<li class="timeline-inverted animate-box">
<div class="timeline-badge"><i class="icon-lock"></i></div>
<div class="timeline-panel" data-aos="fade-left" data-aos-once="true" data-aos-duration="1000">
<div class="timeline-heading">
<h3 class="timeline-title" style="text-decoration: line-through;"> Operation
Charles </h3>
<!-- <span class="company">P.S.R.Engineering College - 2021 - 2025</span> -->
</div>
<!-- <div class="timeline-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div> -->
</div>
</li>
<br><br><br><br><br>
<li class="timeline-unverted animate-box">
<div class="timeline-badge"><i class="icon-lock"></i></div>
<div class="timeline-panel" data-aos="fade-right" data-aos-once="true" data-aos-duration="1000">
<div class="timeline-heading">
<h3 class="timeline-title" style="text-decoration: line-through;"> Operation
Jobs </h3>
<!-- <span class="company">Ayshwarya technologies - 2022 - 2023</span> -->
</div>
<!-- <div class="timeline-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div> -->
</div>
</li>
<br><br><br><br><br>
<li class="animate-box timeline-inverted">
<div class="timeline-badge"><i class="icon-lock"></i></div>
<div class="timeline-panel" data-aos="fade-left" data-aos-once="true" data-aos-duration="1000">
<div class="timeline-heading">
<h3 class="timeline-title" style="text-decoration: line-through;"> The
Joyphone X </h3>
<!-- <span class="company">Arun Computers - 2020 - 2022</span> -->
</div>
<!-- <div class="timeline-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div> -->
</div>
</li>
<br><br><br><br><br>
<li class="animate-box timeline-unverted">
<div class="timeline-badge"><i class="icon-lock"></i></div>
<div class="timeline-panel" data-aos="fade-right" data-aos-once="true" data-aos-duration="1000">
<div class="timeline-heading">
<h3 class="timeline-title" style="text-decoration: line-through;"> The Kalam
Venture </h3>
<!-- <span class="company">Destro Sec - 2018 - Current</span> -->
</div>
<!-- <div class="timeline-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div> -->
</div>
</li>
</ul>
</div>
</div>
</section>
<section id="sponsors">
<div class="sponsor-marquee-carousel owl-carousel">
<div class="sponsor-marquee-carousel-item" onclick="window.open('./stakeholder')">
<img src="./images/thunder.png" alt="Stakeholders Logo">
<h2 style="color: black;">Stakeholders</h2>
</div>
<div class="sponsor-marquee-carousel-item" onclick="window.open('./stakeholder')">
<img src="./images/thunder.png" alt="Stakeholders Logo">
<h2 style="color: black;">Stakeholders</h2>
</div>
<div class="sponsor-marquee-carousel-item" onclick="window.open('./stakeholder')">
<img src="./images/thunder.png" alt="Stakeholders Logo">
<h2 style="color: black;">Stakeholders</h2>
</div>
<div class="sponsor-marquee-carousel-item" onclick="window.open('./stakeholder')">
<img src="./images/thunder.png" alt="Stakeholders Logo">
<h2 style="color: black;">Stakeholders</h2>
</div>
</div>
<!-- <div class="sponsor-carousel">
<div class="carousel-item">
<img src="./images/ds_logo.png" alt="Sponsor Logo">
</div>
<div class="carousel-item">
<img src="./images/ds_logo.png" alt="Sponsor Logo">
</div>
<div class="carousel-item">
<img src="./images/ds_logo.png" alt="Sponsor Logo">
</div>
<div class="carousel-item">
<img src="./images/ds_logo.png" alt="Sponsor Logo">
</div>
</div> -->
<section id="sponsors">
<div class="sponsor-carousel owl-carousel">
<div class="carousel-item">
<h1>Mr. Karuppasamy K</h1>
</div>
<div class="carousel-item">
<h1>Adv. Sudipto Mazumdar</h1>
</div>
<div class="carousel-item">
<h1>Mr. Pratyush Acharya</h1>
</div>
<div class="carousel-item">
<h1>Mr. M. Hrithiknathan</h1>
</div>
<div class="carousel-item">
<h1>Mr. Laxman Bansal</h1>
</div>
<div class="carousel-item">
<h1>Mr. Rajen Bansal</h1>
</div>
<div class="carousel-item">
<h1>Mr. Sourasish Pahari</h1>
</div>
<div class="carousel-item">
<h1>Ms. Amrapali Baral</h1>
</div>
<div class="carousel-item">
<h1>Mr. Purab Bhuwalka</h1>
</div>
<div class="carousel-item">
<h1>Mr. Adarsh Dayal</h1>
</div>
</div>
</section>
</section>
<section id="team">
<div class="team-heading text-center animate-box" style="text-align: center; padding:70px;" data-aos="fade-up"
data-aos-once="true" data-aos-duration="1000">
<h3>Office Bearers</h3>
</div>
<div class="container">
<div class="panel active" id="ceo" onclick="OfficeBearers(this.id)"
style="background-image: url('./images/2.jpg');">
<h3>Joy Kumaz</h3>
<h3>Founder, Chairman & CEO</h3>
</div>
<div class="panel " id="clo" onclick="OfficeBearers(this.id)"
style="background-image: url('./images/U4.jpeg');">
<h3>V. Vairagurusastha</h3>
<h3>Co-founder & Chief Legal Officer</h3>
</div>
<div class="panel " id="clro" onclick="OfficeBearers(this.id)"
style="background-image: url('./images/u3.jpeg');">
<h3>Shaikh Mohd. Fawad</h3>
<h3>Co-founder & Chief Liaisons and Research Officer</h3>
</div>
<div class="panel " id="ceco" onclick="OfficeBearers(this.id)"
style="background-image: url('./images/u1.jpg');">
<h3>Ruthvika Reddy</h3>
<h3>Co-founder & Chief Ethics & Compliance Officer</h3>
</div>
<div class="panel " id="deco" onclick="OfficeBearers(this.id)"
style="background-image: url('./images/u5.jpeg');">
<h3>Khushi Malu</h3>
<h3>Deputy Chief Executive Officer</h3>
</div>
</div>
<br><br><br><br><br><br><br>
<div class="team-heading text-center animate-box" style="text-align: center; padding:30px;" data-aos="fade-up"
data-aos-once="true" data-aos-duration="1000">
<h3>Work with Us</h3>
<h4>Starting an R&D non-profit in the tech
space is more harder than how cool it sounds; hence we really appreciate all the help we can get:</h4>
</div>
<section class="card-contt">
<div class="card-container">
<div class="card" id="ctp" onclick="WorkWithUs(this.id)">
<div class="card-top">
<a><img src="./images/c1.png" alt="Unsplash Photo"></a>
</div>
<div class="card-content">
<!-- <h6 class="tag tag-travel"> for Orange</h6> -->
<a>
<h3 class="title">Contribute to Projects</h3>
</a>
<!-- <p>Advance Advocate Management Ai</p> -->
</div>
</div>
<div class="card" id="ctc" onclick="WorkWithUs(this.id)">
<div class="card-top">
<a><img src="./images/c2.png" alt="Unsplash Photo"></a>
</div>
<div class="card-content">
<!-- <h6 class="tag tag-travel"> for Green -->
</h6>
<a>
<h3 class="title">Contribute to Causes</h3>
</a>
<!-- <p>Advance Advocate Management Ai</p> -->
</div>
</div>
<div class="card" id="ctn" onclick="WorkWithUs(this.id)">
<div class="card-top">
<a><img src="./images/c3.png" alt="Unsplash Photo"></a>
</div>
<div class="card-content">
<!-- <h6 class="tag tag-travel"> for Blue</h6> -->
<a>
<h3 class="title">Contribute to Networks</h3>
</a>
<!-- <p>Advance Advocate Management Ai</p> -->
</div>
</div>
</div>
</section>
</section>
<section class="section s2" id="contact">
<div class="topic-head ano" id="Loconn" style="padding-top: 10vh;" data-aos="zoom-in" data-aos-duration="400">
Location</div>
<div class="buttnex" style="display: none;">
<a class="prev" href="javascript:plusSlides(-1)">❮</a>
<a class="next" href="javascript:plusSlides(1)">❯</a>
</div>
<div class="locao" data-aos="zoom-out-down" data-aos-duration="300">
<div class="locac fade" data-aos="zoom-out-down" data-aos-duration="600">
<div>
<div class="loca ">
<img class="locam" id="carouselImage" src="./images/hq.jpeg"></img>
<div class="locamm">
<h3>The Cube,</h3>
<div class="locmi">
Project L.I.N.A HQ,
<br>Nexus City,
<br>Linaverse.
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<br> <br> <br>
</section>
<!-- <section class="thunder">
Coming Soon
</section> -->
<section class="section s5" id="s55">
<div class="con_lm">
<div class="csc_l">Project L.I.N.A </div>
<div class="con_l">
<div class="socials" id="logoi">
<li id="social-in-menu" class="button_social_group">
<a href="connect@projectlina.org" target="_blank">
<span class="screen-reader-text">Email</span>
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a target="_blank" href="#">
<span class="screen-reader-text">Twitter</span>
<i class="fa fa-twitter " aria-hidden="true"></i>
</a>
<a target="_blank" href="#">
<span class="screen-reader-text">Youtube </span>
<i class="fa fa-youtube" aria-hidden="true"></i>
</a>
<a target="_blank" href="https://blog.projectlina.org/">
<span class="screen-reader-text">Blog</span>
<i class="fa fa-medium" aria-hidden="true"></i>
</a>
<a target="_blank" href="https://www.instagram.com/projectlinaofficial/">
<span class="screen-reader-text">Instagram</span>
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<div id="spann"></div>
</li>
</div>
</div>
<div class="con_m">
<div class="bl">
<a href="#Locon">Contact</a>
</div>
<li class="links_b">
<!-- <a href="#" target="_blank">Read Whitepaper</a> -->
<a href="https://karuppan-the-pentester.github.io/" target="_blank">Developer Contact</a>
</li>
</div>
</div>
<div class="last_pa">
<div class="divilin">
<div class="jwat">All Rights Reserved | Copyright © 2024 |<a class="meee"
href="https://karuppan-the-pentester.github.io" target="_blank"> Website By <div
class="glow">Destro-Sec</div></a></div>
</div>
</div>
</section>
</div>
<script src="./dependency/aos.js"></script>
<script src="./dependency/jquery.min.js"></script>
<script src="./dependency/jos.min.js"> </script>
<script src="./dependency/owl.carousel.min.js"
integrity="sha512-bPs7Ae6pVvhOSiIcyUClR7/q2OAsRiovw4vAkX+zJbw3ShAeeqezq50RIIcIURq7Oa20rW2n2q+fyXBNcU9lrw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
// This is for navbar swiping animation
document.addEventListener('DOMContentLoaded', function () {
const navLinks = document.querySelectorAll('.navbar ul li a');
const activeBg = document.createElement('div');
activeBg.classList.add('active-bg');
document.querySelector('.navbar ul').appendChild(activeBg);
navLinks.forEach(link => {
link.addEventListener('click', function (e) {
// Check if the link is an external link (has target="_blank" or is an absolute URL)
if (link.target === "_blank" || link.href.startsWith('http')) {
return; // Allow default behavior (don't prevent link from opening)
}
e.preventDefault(); // Prevent the default for internal links
const targetSectionId = link.getAttribute('href');
const targetSection = document.querySelector(targetSectionId);
if (targetSection) {
targetSection.scrollIntoView({
behavior: 'smooth'
});
}
const clickedLinkRect = link.getBoundingClientRect();
const navbarRect = link.closest('ul').getBoundingClientRect();
const offsetLeft = clickedLinkRect.left - navbarRect.left;
activeBg.style.width = `${clickedLinkRect.width}px`;
activeBg.style.transform = `translateX(${offsetLeft}px)`;
navLinks.forEach(link => link.classList.remove('active'));
link.classList.add('active');
window.history.pushState({}, '', link.getAttribute('href'));
});
});
const activeLink = document.querySelector('.navbar ul li a.active');
if (activeLink) {
const activeLinkRect = activeLink.getBoundingClientRect();
const navbarRect = activeLink.closest('ul').getBoundingClientRect();
activeBg.style.width = `${activeLinkRect.width}px`;
activeBg.style.transform = `translateX(${activeLinkRect.left - navbarRect.left}px)`;
}
});
//document.querySelector('.hamburger').addEventListener('click', function () {
// document.querySelector('.navbar').classList.toggle('active');
//});
</script>
<script>
// Title animation
AOS.init();
JOS.init({
animation: "zoom-out",
duration: 2.4,
rootMargin: "10% 0% 40% 0%",
});
</script>
<script src="./baffle.min.js"></script>
<script>
// Quote animation
var text = ["Towards Singularity"];
var counter = 0;
var elem = document.getElementById("quote");
var inst = setInterval(change, 3000);
function change() {
if (counter == 2) {
elem.innerHTML = ctt;
}
else {
elem.innerHTML = text[counter];
}
counter++;
const b = baffle('.bafte');
b.set({
character: '>▓▒ /█▒</ >▒░>▒ █<░ ░█▒░> ▓░/▒ ▒>░ █<▒▓ ▓▒>░',
speed: 120
});
b.reveal(3000);
if (counter >= text.length) {
counter = 0;
// clearInterval(inst); // uncomment this if you want to stop refreshing after one cycle
}
}
</script>
<script>
// Scrolling animation on about - 1
$(document).scroll(function () {
var scroll = $(window).scrollTop();
var a = ((scroll * 0.8));
var amount = -280 + a;
var amn = a + 90;
if (amount > -200) {
}
else {
$('.none').css({ opacity: "0" });
}
if (amn > 320) {
$('.none').css({ opacity: "0.4" });
}
else {
}
if (amn > 640) {
$('.none').css({ opacity: "0.4" });
}
if (amn > 2000) {
$('.none').css({ opacity: "0" });
}
});
</script>
<script>
// StakeHolder Title scrolling animation
$(document).ready(function () {
$('.sponsor-marquee-carousel').owlCarousel({
rtl: true,
loop: true,
margin: 10,
nav: false,
center: true,
autoplay: true,
autoPlayTimeout: 500,
autoplaySpeed: 5500,
autoHeight: true,
autoplayHoverPause: false,
dots: false,
responsive: {
0: {
items: 1
},
600: {
items: 3
},
1000: {
items: 5
}
}
});
});
$(document).ready(function () {
$('.sponsor-carousel').owlCarousel({
loop: true,
margin: 50,
nav: false,
center: true,
autoplay: true,
autoPlayTimeout: 500,
autoplaySpeed: 5500,
autoHeight: true,
autoplayHoverPause: true,
dots: false,
responsive: {
0: {
items: 1
},
600: {
items: 3
},
1000: {