-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
1702 lines (1504 loc) · 74.1 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
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="images/icon.png" type="image/gif" sizes="16x16" />
<title>Vihaan007</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<!-- CSS Files
================================================== -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" id="bootstrap" />
<link href="css/bootstrap-grid.min.css" rel="stylesheet" type="text/css" id="bootstrap-grid" />
<link href="css/bootstrap-reboot.min.css" rel="stylesheet" type="text/css" id="bootstrap-reboot" />
<link href="css/plugins.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/style2.css" rel="stylesheet" type="text/css" />
<link href="css/rev-settings.css" rel="stylesheet" type="text/css" />
<link href="css/color.css" rel="stylesheet" type="text/css" />
<link href="css/jaishriram.css" rel="stylesheet" type="text/css" />
<!-- color scheme -->
<link rel="stylesheet" href="css/colors/magenta.css" type="text/css" id="colors" />
<!-- RS5.0 Stylesheet -->
<link rel="stylesheet" href="revolution/css/settings.css" type="text/css" />
<link rel="stylesheet" href="revolution/css/layers.css" type="text/css" />
<link rel="stylesheet" href="revolution/css/navigation.css" type="text/css" />
<link rel="stylesheet" href="css/rev-settings.css" type="text/css" />
<link rel="stylesheet" href="css/star.css" type="text/css" />
<!-- custom font -->
<link rel="stylesheet" href="css/font-style.css" type="text/css" />
</head>
<body id="homepage">
<a id="mlh-trust-badge"
href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2024-season&utm_content=white"
target="_blank">
<img src="https://s3.amazonaws.com/logged-assets/trust-badge/2024/mlh-trust-badge-2024-white.svg"
alt="Major League Hacking 2024 Hackathon Season" style="width:100%"></a>
<!-- <canvas id="bg-animation"> -->
<div id="wrapper">
<!-- header begin -->
<header class="transparent">
<div class="container">
<div class="row">
<div class="col-md-12" style="margin-left:22px;">
<!-- logo begin -->
<div id="logo">
<a href="index.html">
<img class="logo" src="images/logo.png" alt="" height="80px" />
</a>
</div>
<!-- logo close -->
<!-- small button begin -->
<span id="menu-btn"></span>
<!-- small button close -->
<div class="header-extra" style="position:relative; left:-100px">
<div class="v-center">
<span id="b-menu">
<span></span>
<span></span>
<span></span>
</span>
</div>
</div>
<!-- mainmenu begin -->
<ul id="mainmenu" class="ms-2" style="left:-50px; position:relative">
<li>
<a href="#section-hero">Home<span></span></a>
</li>
<li>
<a href="#section-about">About<span></span></a>
</li>
<li>
<a href="#section-schedule">Schedule<span></span></a>
</li>
<li>
<a href="#section-ticket">Tracks<span></span></a>
</li>
<li>
<a href="#section-speakers">Judges<span></span></a>
</li>
<li>
<a href="#section-sponsors">Sponsors<span></span></a>
</li>
<li>
<a href="team.html">Team<span></span></a>
</li>
<li>
<a href="#section-register">FAQ's<span></span></a>
</li>
</ul>
<!-- mainmenu close -->
</div>
</div>
</div>
</header>
<!-- header close -->
<!-- content begin -->
<div id="content" class="no-bottom no-top">
<!-- revolution slider begin -->
<section id="section-hero" class="fullwidthbanner-container" aria-label="section-slider" data-bgcolor="#101010">
<div id="slider-revolution">
<ul>
<li data-transition="random-premium" data-slotamount="10" data-masterspeed="200" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img alt="" class="rev-slidebg" data-bgparallax="0" src="images/slider/wide1.jpg" />
</li>
<li data-transition="random-premium" data-slotamount="10" data-masterspeed="200" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img alt="" class="rev-slidebg" data-bgparallax="0" src="images/slider/wide2b.webp" />
</li>
</ul>
<div class="tp-static-layers">
<div class="text-center tp-caption size-28 font-weight-bold text-white tp-static-layer"
data-x="['center','center','center','center']" data-hoffset="['0']" data-y="['top','top','top','top']"
data-voffset="['185']" data-lineheight="['90','90','90','90']" data-width="none" data-height="none"
data-whitespace="nowrap" data-type="text" data-responsive_offset="on" data-startslide="0"
data-endslide="3"
data-frames='[{"from":"opacity:0;","speed":300,"to":"o:1;","delay":500,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['center','center','center','center']" data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]">
<!-- <span class="id-color-2">April 8, 2023</span> -->
</div>
<div class="text-center tp-caption size-84 font-weight-bold text-white tp-static-layer"
data-x="['center','center','center','center']" data-hoffset="['0']"
data-y="['center','center','center','center']" data-lineheight="['90','90','90','90']" data-width="none"
data-height="none" data-whitespace="nowrap" data-type="text" data-responsive_offset="on"
data-startslide="0" data-endslide="3"
data-frames='[{"from":"opacity:0;","speed":300,"to":"o:1;","delay":500,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['center','center','center','center']" data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]">
<br />
</div>
<div id="type-animation" class="text-center tp-caption size-20 text-white tp-static-layer"
data-x="['center','center','center','center']" data-hoffset="['0']" data-y="['top','top','top','top']"
data-voffset="['430']" data-lineheight="['90','90','90','90']" data-width="none" data-height="none"
data-whitespace="nowrap" data-type="text" data-responsive_offset="on" data-startslide="0"
data-endslide="3"
data-frames='[{"from":"opacity:0;","speed":300,"to":"o:1;","delay":500,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['center','center','center','center']" data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]" data-paddingbottom="[0,0,0,0]" data-paddingleft="[0,0,0,0]"
style="padding-top: 59px; position: relative;">
<!-- <div class="spacer20"></div> -->
<div class="bar2">
<!-- <div class="searchbar2">eat code repeat -->
<!-- <div class="bar">
-->
<!-- <div class="spacer20"></div> -->
<!-- Eat -->
<!-- eat code repeat</div> -->
<div class="type-wrap">
<span id="typed" style="white-space: pre; text-align: center;" class="typed">
</span>
</div>
<!-- <div class="spacer20"></div> -->
<!-- <a href="#"> <img class="voice2" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Google_mic.svg/716px-Google_mic.svg.png" title="Search by Voice"></a> -->
</div>
<div style="height:35px"></div>
<div class="myclass222">
<div class="apply-button " data-hackathon-slug="vihaan" data-button-theme="light"
style="height: 44px; width: 312px"></div>
</div>
<div style="height:10px"></div>
<div class="d-lg-flex justify-content-center sm-hide">
<div class="h6 padding10 pt0 pb0">
<i class="i_h3 fa fa-calendar-check-o id-color"></i>April
12th to 13th
</div>
<div class="h6 padding10 pt0 pb0">
<a href="#section-ticket"><i class="i_h3 fa fa-user id-color"></i>9 Tracks</a>
</div>
<a href="https://maps.app.goo.gl/LMCpyTddvXEYsCok9">
<div class="h6 padding10 pt0 pb0">
<i class="i_h3 fa fa-map-marker id-color"></i> <a
href="https://maps.app.goo.gl/EkhZc19TsDGWZufs6">Delhi
Technological University</a>
</div>
</a>
</div>
</div>
<br />
</section>
<!-- particles.js container
<div id="particles-js"></div> <!-- stats - count particles -->
<!-- <div class="count-particles"> <span class="js-count-particles"></span>
</div> -->
<!-- revolution slider close -->
<section id="section-countdown" aria-label="section" class="gradient-to-right pt40 pb40">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<div class="spacer-single"></div>
<div id="defaultCountdown"></div>
</div>
</div>
</div>
</section>
<!-- </canvas> -->
<!-- section begin -->
<section id="section-about" data-bgimage="url(images/bg/webp/1.webp) fixed no-repeat">
<!-- <a href="https://vihaan.devfolio.co/"> -->
<div id="register-button" style="justify-content: center; ">
<button type="button" onclick="window.open('https://vihaan.devfolio.co/')"
style="display: flex; justify-content:center; z-index:10; align-items:center;background-color: #3770ff; border-radius: 4px; border: 2px solid transparent; color: #fff;font-size:3.2vw; font-weight: 600;height: 44px;width:40vw;outline: none;transition: all .1s ease-in 0s;white-space: nowrap; margin-bottom: 30px; margin-top:-50px;">
<!-- <a href="https://vihaan.devfolio.co/"> -->
Register With Devfolio
<!-- </a> -->
</button>
</div>
<!-- </a> -->
<div class="wm wm-border dark wow fadeInDown">welcome</div>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 wow fadeInLeft" data-wow-delay="0s">
<h2>VIHAAN 007<br />presented by IEEE DTU</h2>
<p>
VIHAAN is 24-hour long hackathon which provides a platform to
budding programmers to come up with a solution to an existing
problem using technology. Students participate in a team size
of up to 4 members.To add to the experience and learning
quotient, each team that makes it past the hackathon are
awarded various cash prizes and goodies.
</p>
<div class="spacer10"></div>
<a id="aboutieee" ; class="btn-custom font-weight-bold text-white sm-mb-30">About IEEE DTU</a>
</div>
<div class="col-lg-6 mb-sm-30 text-center wow fadeInRight">
<div class="de-images">
<img class="di-small wow fadeIn" src="images/misc/5.jpg" alt="" />
<img class="di-small-2 wow fadeIn" src="images/misc/6.jpg" alt="" />
<img class="di-big img-fluid wow fadeInRight" data-wow-delay=".25s" src="images/misc/4.jpg" alt="" />
</div>
</div>
</div>
</div>
</section>
<!-- section begin -->
<section id="section-features">
<div class="wm wm-border dark wow fadeInDown ">features</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Why VIHAAN ?</h1>
<div class="separator">
<span><i class="fa fa-square"></i></span>
</div>
<div class="spacer-single"></div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="0s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-lightbulb-o text-light"></i>
<div class="text">
<h3><span>Build Innovative Solutions</span></h3>
<p>
One of the primary reasons for participating in a coding
hackathon is the opportunity to build innovative
solutions. By working with a team of like-minded
individuals, you can brainstorm new ideas, develop
creative solutions to problems, and push the boundaries of
what is possible.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".25s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-building text-light"></i>
<div class="text">
<h3><span>Improve Coding Skills</span></h3>
<p>
Hackathons provide an excellent opportunity to improve
your coding skills. By working on challenging projects
with tight deadlines, you can hone your coding and
problem-solving abilities, learn new programming
languages, and gain experience working with different
tools and technologies.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-sitemap text-light"></i>
<div class="text">
<h3><span>Networking</span></h3>
<p>
Participating in a hackathon can help you build your
network. You'll have the chance to meet other developers,
designers, and entrepreneurs who are passionate about
technology and innovation. This can lead to new
opportunities, partnerships, and collaborations down the
road.
</p>
</div>
</div>
</div>
<div class="spacer-single sm-hide"></div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".75s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-trophy text-light"></i>
<div class="text">
<h3><span>Win Prizes</span></h3>
<p>
Many hackathons offer prizes to the winning teams, which
can be a great motivator. These prizes can range from cash
to tech gadgets and even job offers. If you're looking to
jumpstart your career in tech, winning a hackathon can be
a great way to get noticed.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-users text-light"></i>
<div class="text">
<h3><span>Collaboration</span></h3>
<p>
Hackathons foster collaboration among participants. You'll
have the chance to work with people from different
backgrounds and skillsets, which can lead to new insights
and ideas. Additionally, working on a team can help you
develop your communication and teamwork skills, which are
valuable in any industry.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1.25s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-gamepad text-light"></i>
<div class="text">
<h3><span>Fun</span></h3>
<p>
Finally, participating in a hackathon can be a lot of fun!
You'll have the opportunity to work on exciting projects,
meet new people, and learn new things. Whether you're a
seasoned developer or a novice, there's something for
everyone at a hackathon.
</p>
<div class="clearfix" style="position: relative;"></div>
</div>
</div>
</div>
<div class="separator">
<span><i class="fa fa-square"></i></span>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-schedule" aria-label="section-services-tab"
data-bgimage="url(images/bg/2.png) fixed center no-repeat">
<div class="wm wm-border dark wow fadeInDown ">schedule</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Event Schedule</h1>
<div class="separator">
<span><i class="fa fa-square"></i></span>
</div>
<div class="spacer-single"></div>
</div>
<!-- EVENT Schedule BOX -->
<div class="col-md-12 wow fadeInUp">
<div class="de_tab tab_style_4 text-center">
<ul class="de_nav de_nav_dark">
<li class="active" data-link="#section-services-tab">
<h3>March <span>9th</span></h3>
<h4>Registration Begins</h4>
</li>
<li data-link="#section-services-tab">
<h3>April <span>8th</span></h3>
<h4>Registration Ends</h4>
</li>
<li data-link="#section-services-tab">
<h3>April <span>11th</span></h3>
<h4>Event Brochure</h4>
</li>
<li data-link="#section-services-tab">
<h3>April <span>12th</span></h3>
<h4>Vihaan Begins</h4>
</li>
<li data-link="#section-services-tab">
<h3>April <span>13th</span></h3>
<h4>Vihaan Ends</h4>
</li>
</ul>
<div class="de_tab_content text-middle">
<div id="tab1" class="tab_single_content dark">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing">
<div class="schedule-item">
<div class="sc-info">
<h3>Registration Begins</h3>
<p>
Invite friends and devs, create a team, and put on your thinking caps while we review
your entities.
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
<div id="tab2" class="tab_single_content dark">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing">
<div class="schedule-item">
<div class="sc-info">
<h3>Registration Ends</h3>
<p>
It's time to roll the wheels!
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
<div id="tab3" class="tab_single_content dark">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing">
<div class="schedule-item">
<div class="sc-info">
<h3>Event Brochure Release</h3>
<p>
Will Information about on the schedule, speakers, timings, location, and other important
details about the event. It serves as a guide for attendees to help them plan and
prepare for the event.
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
<div id="tab4" class="tab_single_content dark">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing">
<div class="schedule-item">
<div class="sc-info">
<h3>Check In ! Let's Hack</h3>
<p>
Welcome to the thundered of ideas flowing through the servers of Vihaan. With great
participants, insightful judges and awesome webinars, have one of the greatest 48 Hours
experience etched in your geeky life.
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
<div id="tab5" class="tab_single_content dark">
<div class="row">
<div class="col-md-12">
<div class="schedule-listing">
<div class="schedule-item">
<div class="sc-info">
<h3>
Vihaan Celebrates Another Success!
</h3>
<p>
Thank you for attending Vihaan 007 Looking forward to seeing you in the next
season of Vihaan!
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <h3 class="my-3 text-center ">Coming Soon !!</h3>
<div class="separator">
<span><i class="fa fa-square"></i></span>
</div> -->
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-ticket" class="jarallax text-light">
<img src="images/bg/webp/2.webp" class="jarallax-img" alt="" />
<div class="wm wm-border dark wow fadeInDown">tracks</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Tracks</h1>
<div class="separator">
<span><i class="fa fa-square"></i></span>
</div>
<div class="spacer-single"></div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1.25s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-mortar-board text-light"></i>
<div class="text">
<h3><span>Education</span></h3>
<p>
The hackathon targets COVID-19-related challenges in education, emphasizing solutions for digital
literacy, personalized learning, and mental health support while ensuring feasibility, scalability,
sustainability, and cultural sensitivity.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".25s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-money text-light"></i>
<div class="text">
<h3><span>Fintech</span></h3>
<p>
VIHAAN 007's Fintech track focuses on transforming finance globally through innovations in financial
inclusion, digital payments, regulatory compliance, and sustainable finance, highlighting the
potential of fintech to reshape the future of the financial sector.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-leaf text-light"></i>
<div class="text">
<h3><span>Sustainability</span></h3>
<p>
The hackathon promotes economic growth alongside environmental and social sustainability through
creative solutions for sustainable transportation, clean energy, and responsible consumption,
emphasizing innovation, feasibility, and impact.
</p>
</div>
</div>
</div>
<div class="spacer-single sm-hide"></div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".75s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-globe text-light"></i>
<div class="text">
<h3><span>Tourism & Culture</span></h3>
<p>
VIHAAN 007's track combines addressing tourism challenges with safeguarding India's cultural
heritage through virtual experiences, language programs, and community ties, aiming to enhance
experiences while preserving the nation's diverse cultural legacy.
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-users text-light"></i>
<div class="text">
<h3><span>Employability</span></h3>
<p>
This track focuses on tackling employment challenges in India through solutions like job matching,
upskilling, and fostering entrepreneurship, with a goal to create sustainable job opportunities and
promote innovation within the country.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1.25s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-user-md text-light"></i>
<div class="text">
<h3><span>Healthcare</span></h3>
<p>
The Healthcare track addresses critical issues in India's healthcare sector, seeking innovative
solutions to enhance accessibility, affordability, and quality of healthcare services, particularly
focusing on leveraging virtual healthcare and AI technologies.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-lightbulb-o text-light"></i>
<div class="text">
<h3><span>Open Innovation</span></h3>
<p>
This track encourages young engineers to solve real-world industrial problems in areas like auto
tech, consumer tech, and sports tech, providing them with an opportunity to showcase their skills
and creativity.
</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-lightbulb-o text-light"></i>
<div class="text">
<h3><span>Artificial Intelligence</span></h3>
<p>
The AI track explores machine learning, natural language processing, robotics, and ethical AI
applications, empowering participants to develop cutting-edge solutions that improve efficiency,
decision-making, and customer experiences across industries.
</p>
</div>
</div>
</div>
</div>
<div class="separator">
<span><i class="fa fa-square"></i></span>
</div>
<div class="spacer-single"></div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center wow fadeInUp"></div>
<div class="col-md-6 offset-md-3 text-center wow fadeInUp" style=" margin:auto;">
<h1 style="font-size: xx-large;">BONUS TRACKS</h1> <br>
<a
href="https://docs.google.com/document/d/14VcS8pnRncMGO1QXaBAGno574e3RWrRIVhcpcMH_Tm4/edit?usp=sharing">
<h3 style="text-align: center; font-size: x-large;"><span>Hive Track</span></h3>
</a>
<br>
<!-- for laptop -->
<div style="display:flex; justify-content: center;align-items: center; width: 100%;" ,
class="laptop-hivetrack">
<a href="https://hive.io/" target="_blank" style="width:40%; margin-left:30px;"> <img
src="./images/logo/hive.png" alt="HIVE LOGO" class="grey-hover" /></a>  
<div style="width: 55%; border-left: 2px solid grey;">
<h3 style="text-align: center;font-size: 50px; color: gold;">$1500+</h3>
<h2 style="text-align: center; font-size: x-large;">PRIZE POOL</h2>
</div>
</div>
<!-- for mobile -->
<div
style="display:flex; justify-content: center;align-items: center; width: 100%; flex-direction: column;"
, class="mobile-hivetrack">
<a href="https://hive.io/" target="_blank"> <img src="./images/logo/hive.png" alt="HIVE LOGO"
class="grey-hover" /></a>  
<div style="width: 100%; ">
<h3 style="text-align: center;font-size: 50px; color: gold;">$1500+</h3>
<h2 style="text-align: center; font-size: x-large;">PRIZE POOL</h2>
</div>
</div>
<br>
<div style="font-size: larger;">
Hive is an innovative and forward-looking decentralized blockchain and ecosystem, designed to scale
with widespread adoption of the currency and platforms in mind. By combining the lightning-fast
processing times and fee-less transactions, Hive is one of the leading Web3 blockchains used by people
around the world.
<a
href="https://docs.google.com/document/d/14VcS8pnRncMGO1QXaBAGno574e3RWrRIVhcpcMH_Tm4/edit?usp=sharing"></a>
</div>
<br> <br>
<!-- for laptop -->
<div style="display: flex; justify-content: space-around; align-items: center;;"
class="laptop-hivetrack">
<a href="https://docs.google.com/document/d/14VcS8pnRncMGO1QXaBAGno574e3RWrRIVhcpcMH_Tm4/edit?usp=sharing"
target="_blank" class="btn-custom font-weight-bold text-white sm-mb-30">
Know More
</a>
<a href="https://discord.gg/3KfJYZxRmq" class="btn-custom font-weight-bold text-white sm-mb-30"
target="_blank">
Discord Server
</a>
</div>
<!-- for mobile -->
<div style="display: flex; justify-content: space-around; align-items: center; flex-direction: column;"
class="mobile-hivetrack">
<a href="https://docs.google.com/document/d/14VcS8pnRncMGO1QXaBAGno574e3RWrRIVhcpcMH_Tm4/edit?usp=sharing"
target="_blank" class="btn-custom font-weight-bold text-white sm-mb-30">
Know More
</a>
<a href="https://discord.gg/3KfJYZxRmq" target="_blank"
class="btn-custom font-weight-bold text-white sm-mb-30">
Discord Server
</a>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-speakers" class="jarallax text-light">
<img src="images/bg//webp/1.webp" class="jarallax-img" alt="" />
<div class="wm wm-border dark wow fadeInDown">speakers</div>
<div class="container">
<div class="row" style="justify-content: center;">
<div class="col-md-6 text-center wow fadeInUp">
<h1>Previous Judges and Speakers</h1>
<div class="separator">
<span><i class="fa fa-square"></i></span>
</div>
<div class="spacer-single"></div>
</div>
<div class="clearfix"></div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/1.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Mr. Saurabh Jain</h3>
<p class="lead">Speaker - FinTech</p>
<div class="small-border"></div>
<p>
Founder, Fun2Do Labs (EdTech Startup), Ex-Vice
President@Paytm, Startup Guru
</p>
<div class="social">
<a href="https://www.linkedin.com/in/saurabhskj/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/2.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Dr. Rakshit Tandon</h3>
<p class="lead">Speaker - Security</p>
<div class="small-border"></div>
<p>Founder, Fun2Do Labs Ex-VP, PayTM</p>
<div class="social">
<a href="https://www.linkedin.com/in/rakshittandon/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/3.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Mr. Sumeet Malik</h3>
<p class="lead">Speaker - Education</p>
<div class="small-border"></div>
<p>Founder at Pepcoding Education Private Limited</p>
<div class="social">
<a href="https://www.linkedin.com/in/sumeet-malik-ab650410/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/4.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Mr. Alon Grinshpoon</h3>
<p class="lead">Speaker - AR/VR</p>
<div class="small-border"></div>
<p>Founder & CEO at echoAR (Techstars '19)</p>
<div class="social">
<a href="https://www.linkedin.com/in/alongrinshpoon/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/12.png" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Mr. Raghav Apoorv</h3>
<p class="lead">Judge</p>
<div class="small-border"></div>
<p>
Product & Engineering | SWE at Uber | MS CS (ML) at Georgia Tech | ex-Zomato
</p>
<div class="social">
<a href="https://www.linkedin.com/in/arnavgupta/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/5.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Mr. Arnav Gupta</h3>
<p class="lead">Speaker - innovation</p>
<div class="small-border"></div>
<p>
EdTech & Mobile Apps | Products, Engineering |
Founder - 1 exit, 1 fail, 1 profit | Comedian
</p>
<div class="social">
<a href="https://www.linkedin.com/in/raghav-apoorv/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/6.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Mr. Shivaam Sharma</h3>
<p class="lead">iTrack</p>
<div class="small-border"></div>
<p>
Entrepreneur | Speaker | Investor | Working towards
creating a Borderless World for growth of Global Youth
</p>
<div class="social">
<a href="https://www.linkedin.com/in/shivaam/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/7.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Mr. Utkarsh Singh</h3>
<p class="lead">Judge</p>
<div class="small-border"></div>
<p>
PhD Student at Purdue University | Samsung Semiconductor |
NAITS, IIT Delhi | DTU 20
</p>
<div class="social">
<a href="https://www.linkedin.com/in/utkarshsingh1998/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/8.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Ms. Drishti Agarwal</h3>
<p class="lead">Judge</p>
<div class="small-border"></div>
<p>SWE-II @Google | Ex-Adobe</p>
<div class="social">
<a href="https://www.linkedin.com/in/drishti-agarwal-211134157/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-xl-3 col-lg-4 col-sm-6 mb30 wow fadeInUp">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="./images/team/9.webp" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Ms. ISHIKA HOODA</h3>
<p class="lead">Judge</p>
<div class="small-border"></div>
<p>Software Engineer at Amazon Music ML | Ex-Atlassian</p>
<div class="social">
<a href="https://www.linkedin.com/in/ishikahooda/" target="_blank"><i
class="fa fa-linkedin fa-lg"></i></a>
</div>
</div>