-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1715 lines (1543 loc) · 72.1 KB
/
Copy pathindex.html
File metadata and controls
1715 lines (1543 loc) · 72.1 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
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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO -->
<meta name="description"
content="HackBIOS a 24-hour ultimate offline hackathon event for tech enthusiasts, entrepreneurs, and innovators. Join us now and showcase your skills in building the next big thing in tech." />
<title>HackBIOS</title>
<link rel="stylesheet" href="css/style.css" />
<!-- Favicon -->
<link rel="shortcut icon" href="./images/favicon-Hackbios-new.png" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Comfortaa&display=swap" rel="stylesheet" />
<!-- Anurag Box icons -->
<link href="https://unpkg.com/boxicons@2.0.8/css/boxicons.min.css" rel="stylesheet" />
</head>
<body>
<section id="header">
<div id="nav">
<div class="nav-container">
<div class="nav-logo">
<a href="#"><img src="images/logo.png" alt="" width="150px" /></a>
</div>
<div class="nav-menu">
<div><a href="#">Register</a></div>
<div><a href="#about">About Us</a></div>
<div><a href="#highlights">Highlights</a></div>
<div><a href="#prize-section">Prizes</a></div>
<div><a href="#timeline-section">Schedule</a></div>
<div><a href="#tracks">Tracks</a></div>
<div><a href="#sponsors-section">Sponsors</a></div>
<div><a href="#faqs-section">FAQs</a></div>
<div><a href="#contact-section">Contact Us</a></div>
</div>
<div class="nav-ham">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="nav-slide">
<div><a href="#">Register</a></div>
<div><a href="#about">About Us</a></div>
<div><a href="#highlights">Highlights</a></div>
<div><a href="#prize-section">Prizes</a></div>
<div><a href="#timeline-section">Schedule</a></div>
<div><a href="#tracks">Tracks</a></div>
<div><a href="#sponsors-section">Sponsors</a></div>
<div><a href="#faqs-section">FAQs</a></div>
<div><a href="#contact-section">Contact Us</a></div>
</div>
</div>
</section>
<section id="home-section">
<!-- <div class="nav"></div> -->
<div class="playAreaC">
<canvas id="playArea"></canvas>
</div>
<div id="home">
<div id="home-center">
<img id="home-center-image" src="images/Iceberg-min.png" alt="" srcset="" />
<div class="home-upper-text">
<div class="home-u-text-1">SHRI SHANKRACHARYA TECHNICAL CAMPUS</div>
<div class="home-u-text-2">HACKATHON 5.0</div>
</div>
<div class="home-center-text">
<div class="home-text-1">H A C K</div>
<div class="home-text-2">B I O S</div>
</div>
<div class="home-l-text">
<p>28 MARCH 2023</p>
</div>
</div>
<div class="home-register">
<!-- Devfolio Registration div -->
<div class="register-btns">
<div class="apply-button" data-hackathon-slug="hackbios" data-button-theme="dark"
style="height: 44px; width: 312px">
</div>
<a href="https://discord.gg/7AkZDgjnvx" target="_blank">
<div class="button" id="discord-button" style="width: 312px;">
<i class="bx bxl-discord-alt"></i> JOIN
DISCORD
</div>
</a>
</div>
<div class="how-to-register">
<a target="_blank"
href="https://drive.google.com/file/d/1_bOUYJdU7QXvPrs2HxdNznLc9NJYA2uT/view?usp=sharing">How To
Register?</a>
</div>
</div>
</div>
</section>
<!-- about -->
<section id="about">
<div class="container about-section">
<div class="heading">
<h2 class="back-heading">ABOUT US</h2>
<h2 class="front-heading">About Us</h2>
</div>
<div class="flex about-content">
<div class="content flex">
<p>
The Shri Shankaracharaya Technical Campus in Bhilai, Chhattisgarh,
India, orchestrated the HackBIOS event. The previous offline
hackathon was an enjoyable experience as it accommodated over 100
teams of four members each. This time around, we aim to
incorporate school students in order to expose them to the latest
technologies and the tech community, thereby sparking their
interest in the field. Additionally, it will provide college
students with the chance to be recruited by various corporations.
</p>
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis, tempora illum perferendis
sapiente, voluptatem voluptatum beatae numquam officia iure explicabo non temporibus dignissimos
hic molestias dolorem voluptates dolores vero minus.</p> -->
</div>
<div class="image">
<a href="https://storyset.com/people">
<img src="./images/Waste management-amico-min.png" alt="" />
<!-- <a href="https://storyset.com/people">People illustrations by Storyset</a> -->
</a>
</div>
</div>
<!-- hiresh -->
<div class="venue-container">
<a href="https://goo.gl/maps/gyYGhU2WunV9C2L49" rel="noopener" target="_blank">
<div class="about-venue button-about">
<div class="about-venue-content about-one">
<span>WHERE</span>
<!-- <p>SSTC, Bhilai, Chhattisgarh</p> -->
</div>
<i class="fa-solid fa-location-crosshairs"></i>
</div>
</a>
<!-- <a href="https://www.timeanddate.com/worldclock/fixedtime.html?msg=10&iso=20230328T05&p1=1440" target="_blank"> -->
<a href="https://calendar.google.com/calendar/u/0/r/eventedit?text=HackBIOS+Hackathon+Event+%F0%9F%92%BB&details=Hackathon+will+start+at+10.30+AM+IST+at+Shri%20Shankaracharya%20Technical%20Campus.%20Happy%20Hacking!!!.&dates=20230328T103000/20230329T103000&location=Shri+Shankaracharya+Technical+Campus,+Junwani,+Bhilai,+Chhattisgarh+490020,+India"
target="_blank">
<div class="about-venue button-about">
<div class="about-venue-content">
<span>WHEN</span>
<!-- <p>28 March 2023</p> -->
</div>
<i class="fa-solid fa-calendar-days"></i>
</div>
</a>
</div>
</div>
</section>
<section></section>
<section id="highlights">
<div class="highlights-heading">
<p>Why Attend HackBIOS?</p>
</div>
<div class="HL-container">
<div class="HL-box HL-box-1 HL-box-L">
<p class="HL-head">MENTORSHIP</p>
<div class="HL-icon">
<!-- <img src="images/lecture-min.png" alt="" srcset="" /> -->
<img src="images/Mentorship.png" alt="" srcset="" />
</div>
<p class="HL-para">
Guidance from experts and<br />Step-by-step hands-on training
sessions
</p>
</div>
<div class="HL-box HL-box-2">
<div class="HL-icon">
<!-- <img src="images/assessment-min.png" alt="" srcset="" /> -->
<img src="images/Hiring.png" alt="" srcset="" />
</div>
<p class="HL-head">HIRING OPPORTUNITIES</p>
<p class="HL-para">
Get Direct Internship and <br />
full-time Opportunities from Top MNCs
</p>
</div>
<div class="HL-box-3">
<img src="images/college.jpeg" alt="" srcset="" />
</div>
<div class="HL-box HL-box-4 HL-box-L">
<p class="HL-head">EXPOSURE & EXPEIRENCE</p>
<div class="HL-icon">
<!-- <img src="images/cpu (1).png" alt="" srcset="" /> -->
<img src="images/Exposure.png" alt="" srcset="" />
</div>
<p class="HL-para">
Network with 350+ Participants <br />& Learn about latest
technologies
</p>
</div>
<div class="HL-box HL-box-5">
<div class="HL-icon">
<!-- <img src="images/video-game-min.png" alt="" srcset="" /> -->
<img src="images/Mini-events.png" alt="" srcset="" />
</div>
<p class="HL-head">MINI-EVENTS & GAMES</p>
<p class="HL-para">
• Algo Writing <br />
• FunQuiz (Technical and Non-Technical) <br />
• Online Multiplayer Match (Games)
</p>
</div>
</div>
</section>
<section id="prize-section">
<div class="prize-container">
<div class="prizes-heading">
<h2 class="back-heading2">PRIZES</h2>
<h2 class="front-heading2">Prizes</h2>
</div>
<div class="prizes-main-container">
<div class="top-winner-prizes">
<div class="top-winner-prizes-container">
<div class="winner-prizes-logo">
<img src="./images/Winners-Logo.png" alt="">
</div>
<h2>Prizes For Winners</h2>
<hr>
<p>
<ul>
<li><p class="content-bold">Prizes Worth ₹50K.</p></li>
<li>TechXR Exclusive <p class="content-bold">VR Kit</p> for Top 3 Winners.</li>
<li>Total of <p class="content-bold">$2000</p> for Digital Ocean Credits and T-Shirts for Winners.</li>
<li>6 months <p class="content-bold">Free Web Hosting</p> for Winners - Cybrancee.</li>
<li>Free <p class="content-bold"> 1-year Team Plan</p> to the Winning team Worth $240 - Beeceptor.</li>
</ul>
</p>
</div>
</div>
<div class="all-participants-prizes">
<div class="all-participants-prizes-container">
<div class="winner-prizes-logo">
<img src="./images/All-Participation-Logo.png" alt="">
</div>
<h2>Prizes For All Participants</h2>
<hr>
<div style="overflow-y: scroll;">
<ul>
<li>Cybrancee - 1-month free website hosting (not domain) to all participants.</li>
<li>Interview buddy - 12 free online mock interview courses (100% off) - To the teams having more than 50% girls participation.</li>
<li>Digital Ocean - $50 credits with a 30-day free trial for all participants (for a new account)</li>
<li>Digital Ocean - Stickers for all participants</li>
<li>20% discount code for all participants for Paperback Books.</li>
<li>90% off discount vouchers for everyone Interview Buddy Process.</li>
<li>1-month Premium tier subscription to all participants ($99 value per sign up) by Echo3D.</li>
<li>Beeceptor - All the participants get a $25 credit towards subscribing to the Team plan.</li>
<li>90-day extended trial for Balsamiq Cloud for all participants.</li>
</ul>
</div>
</div>
</div>
<!-- Sponser Prizes Start -->
<div class="tracks-container">
<div class="tracks-heading">
<h2 style="font-size: 50px;">SPONSOR PRIZES</h2>
</div>
<div class="sponsor-track-container">
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/tezos-logo.png" alt="" style= "width : 70%; height: 190%;">
</div>
<div class="prize-money">
<p style="margin-top: 10px;">$500</p>
</div>
<div class="track-title">
<p>Track: Tezos</p>
</div>
<div class="track-description">
<p> Best hack build on Tezos
<a href="https://drive.google.com/file/d/1g-eRkZXSnUmd74mzHaSVYK7uweM1XAgU/view?usp=sharing" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Solana-logo.png" alt="" width="70%" style="height: 60%;">
</div>
<div class="prize-money">
<p>$500</p>
</div>
<div class="track-title">
<p>Track: Solana</p>
</div>
<div class="track-description">
<p>Master Glasseater
<a href="https://nsb.dev/solana-bounty" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Solana-logo.png" alt="" width="70%" style="height: 60%;">
</div>
<div class="prize-money">
<p>$250</p>
</div>
<div class="track-title">
<p>Track: Solana</p>
</div>
<div class="track-description">
<p>Rising Teknoking
<a href="https://nsb.dev/solana-bounty" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Solana-logo.png" alt="" width="70%" style="height: 60%;">
</div>
<div class="prize-money">
<p>$100</p>
</div>
<div class="track-title">
<p>Track: Solana</p>
</div>
<div class="track-description">
<p>Young Gun
<a href="https://nsb.dev/solana-bounty" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Filecoin.png" alt="" width="70%">
</div>
<div class="prize-money">
<p>$250</p>
</div>
<div class="track-title">
<p>Track: Filecoin</p>
</div>
<div class="track-description">
<p>Best use of Filecoin and/or IPFS
<a href="https://nsb.dev/filecoin-bounty" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Polygon_Logo.png" alt="" width="70%">
</div>
<div class="prize-money">
<p>$200</p>
</div>
<div class="track-title">
<p>Track: Ethereum + Polygon</p>
</div>
<div class="track-description">
<p>Best hack built on Ethereum + Polygon
<a href="https://nsb.dev/polygon-bounty" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Polygon_Logo.png" alt="" width="70%">
</div>
<div class="prize-money">
<p>$150</p>
</div>
<div class="track-title">
<p>Track: Ethereum</p>
</div>
<div class="track-description">
<p>Best hack built on Ethereum
<a href="https://nsb.dev/polygon-bounty" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Replit-logo.png" alt="">
</div>
<div class="prize-money">
<p>$50</p>
</div>
<div class="track-title">
<p>Track: Replit</p>
</div>
<div class="track-description">
<p>Winning Project deployed on Replit
<a href="https://nsb.dev/replit-bounty" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/VerbwireBlack_largest.png" alt="" width="70%" style="height: 80%;">
</div>
<div class="prize-money">
<p>₹ 10K, across 5 teams
</p>
</div>
<div class="track-title">
<p>Track: Verbwire - Web3 Track</p>
</div>
<div class="track-description">
<p>Most Innovative Use Of Verbwire API
<a href="https://drive.google.com/file/d/1IMgMsX4RM6PgHpqkjuye08B0Lf58lT05/view?usp=sharing" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/VerbwireBlack_largest.png" alt="" width="70%" style="height: 80%;">
</div>
<div class="prize-money">
<p>₹ 110K in Premium API Credits</p>
</div>
<div class="track-title">
<p>Track: Verbwire - Web3 Track</p>
</div>
<div class="track-description">
<p>Creative Use Of Verbwire API
<a href="https://drive.google.com/file/d/1IMgMsX4RM6PgHpqkjuye08B0Lf58lT05/view?usp=sharing" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="https://voyager.postman.com/logo/postman-logo-orange.svg" alt="" width="80%" style="height: 90%;">
</div>
<div class="prize-money">
<p>Swag Kits for Top 3 Winners</p>
</div>
<div class="track-title">
<p>Postman - API Track </p>
</div>
<div class="track-description">
<p>Integrate APIs in your projects using Postman.</p>
</div>
</div>
<div class="sponsor-track-card">
<div class="sponsor-logo">
<img src="./images/Techment-Logo-png.png" alt="" width="50%" style="height: 110%;">
</div>
<!-- <div class="prize-money">
<p>₹ 110K in Premium API Credits</p>
</div> -->
<div class="track-title">
<p>Track: Universal Health Card (UHC)</p>
</div>
<div class="track-description">
<p>Techment Problem Statement
<a href="https://drive.google.com/file/d/1ZD1Aq2LP6JkICjIk26FsvrTNKqAWNiPD/view?usp=sharing" target="_blank" style="color: #09ae2a;">Click Here</a>
</p>
</div>
</div>
<!-- Sponser Prizes End -->
</div>
</div>
</div>
</section>
<!-- Schedule -->
<section id="timeline-section">
<!-- <div class="TL-head"> -->
<div class="tracks-heading">
<h2 class="back-heading2">SCHEDULE</h2>
<h2 class="front-heading2">Schedule</h2>
<!-- </div> -->
</div>
<div id="TL-main">
<div class="TL-switch">
<div class="TL-day-active">Day 1</div>
<div class="">Day 2</div>
</div>
<div class="timeline-W timeline-1 timeline-active">
<div class="timeline">
<div class="TL-container TL-left">
<div class="TL-content">
<h4>09:00 AM</h4>
<p>Breakfast</p>
</div>
</div>
<div class="TL-container TL-right">
<div class="TL-content">
<h4>10:15 AM</h4>
<p>Opening Ceremony</p>
</div>
</div>
<div class="TL-container TL-left">
<div class="TL-content">
<h4>11:00 AM</h4>
<p>Instructions & Hackathon Begins!</p>
</div>
</div>
<div class="TL-container TL-right">
<div class="TL-content">
<h4>02:00 PM-3:15 PM</h4>
<p>Lunch</p>
</div>
</div>
<div class="TL-container TL-left">
<div class="TL-content">
<h4>03:30 PM</h4>
<p>Judging 1</p>
</div>
</div>
<div class="TL-container TL-right">
<div class="TL-content">
<h4>05:00 PM-6:30 PM</h4>
<p>API's Workshop using Postman</p>
</div>
</div>
<div class="TL-container TL-left">
<div class="TL-content">
<h4>06:30 PM</h4>
<p>Snacks</p>
</div>
</div>
<div class="TL-container TL-right">
<div class="TL-content">
<h4>08:00 PM-09:00PM</h4>
<p>Judging 2</p>
</div>
</div>
<div class="TL-container TL-left">
<div class="TL-content">
<h4>09:00 PM-10:30 PM</h4>
<p>Dinner</p>
</div>
</div>
<div class="TL-container TL-right">
<div class="TL-content">
<h4>10:30 PM-12:30AM</h4>
<p>COD GAME</p>
</div>
</div>
<div class="TL-container TL-left">
<div class="TL-content">
<h4>02:00 AM</h4>
<p>Midnight Snacks</p>
</div>
</div>
</div>
</div>
<div class="timeline-W timeline-2">
<div class="timeline">
<div class="TL-container TL-right">
<div class="TL-content">
<h4>08:00 AM- 09:00 AM</h4>
<p>Breakfast</p>
</div>
</div>
<div class="TL-container TL-left">
<div class="TL-content">
<h4>9:00 AM-10:00 AM</h4>
<p>Final Judging</p>
</div>
</div>
<div class="TL-container TL-right">
<div class="TL-content">
<h4>10:00 AM-11:00 AM</h4>
<p>Quiz and Guess the Song!</p>
</div>
</div>
<div class="TL-container TL-left">
<div class="TL-content">
<h4>11:15 AM</h4>
<p>Result and Closing Ceremony</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- tracks -->
<section id="tracks">
<div class="tracks-container">
<div class="tracks-heading">
<!-- <h3>TRACKS</h3> -->
<h2 class="back-heading2">TRACKS</h2>
<h2 class="front-heading2">Tracks</h2>
<!-- <p >Here are some ideas on which you can work on...</p> -->
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="tracks-card-flip-sign">
<img src="images/plus.png" alt="" srcset="" width="20px" />
</div>
<div>
<p>Food & Farm Tech.</p>
</div>
<div>
<img src="images/Nitrogen cycle-pana-min.png " alt="" srcset="" width="170px" />
</div>
<!-- <a href="https://storyset.com/learn">Learn illustrations by Storyset</a> -->
</div>
<div class="flip-card-back">
<div class="tracks-card-flip-sign">
<img src="images/minus-min.png" alt="" srcset="" width="20px" />
</div>
<!-- <h1>We'll provide more info soon</h1> -->
<div class="card-wrapper">
<p class="card-description"><b>Developing solutions keeping in mind the need to enhance the primary sector
of India - Agriculture, and to manage and process our agriculture produce.</b>
</p>
<button class="show-problem1-modal button" id="discord-button">View Problem Statement</button>
</div>
</div>
</div>
</div>
<!-- modal start -->
<div class="modal-mask problem1-modal" role="dialog"></div>
<div class="modal" role="alert">
<div class="modal-body">
<h2>Problem Statements</h2> <br>
<p class="para">1. Limited access to sustainable farming technologies in rural areas results in reducedcrop
yields and food insecurity. This is due to several factors, including the highcost of
modern farming equipment, inadequate infrastructure, and limited access to financing. These challenges can
lead to lower yields and less productive farms, contributingtofood insecurity and economic hardship for
farmers.
<br><br>
2. Inefficient food distribution systems lead to high food waste and prices, creatingfoodaccess and
affordability problems. Food waste occurs at different stages of the supplychain, from harvest to
distribution, and from retail to consumer. Poor logistics andtransportation systems, and a lack of proper
storage and preservation technologies alsocontribute to waste. This wastes resources and increases the cost
of food for consumers.
<br><br>
3. Over-reliance on chemical fertilizers and pesticides has led to environmental
degradation and health hazards. The overuse of chemicals can lead to soil depletion, water pollution, and
health hazards for farmers and consumers. Chemicals alsoharmbeneficial insects and pollinators, which can
further reduce crop yields and damageecosystems.
<br><br>
4. Small-scale farmers lack adequate training on sustainable farming practices andtechnology adoption,
limiting their productivity and efficiency. Small-scale farmers oftenlack access to the latest farming
techniques, innovations, and technologies. Inadequateeducation and training can lead to lower yields and
reduced profitability, makingit
challenging to sustain their livelihoods.
<br><br>
5. Urban areas often have limited access to affordable and nutritious food options, leading to health and
wellness concerns. Urbanization has led to increased demandfor
food, but the proximity of cities to farms has decreased, leading to food scarcity and
higher prices. Many urban areas also lack access to fresh, locally produced, andnutrientrich food options,
leading to health problems.
<br><br>
6. Climate change has disrupted traditional weather patterns, resulting in unpredictablecrop yields and
affecting food production. Climate change has led to more extremeweather conditions, including floods,
droughts, and heatwaves, which can destroycrops, affect soil quality, and increase pests and diseases. These
effects can threaten foodproduction and food security.
<br><br>
7. Inadequate investment in research and development of new farming technologiesandpractices has limited
productivity and efficiency gains. There is a lack of investment inresearch and development of new farming
technologies and practices to address
challenges faced by farmers. This has led to stagnation in productivity gains andlowprofitability, making it
challenging for farmers to sustain their livelihoods.
<br><br>
8. The underuse of data-driven decision-making in agriculture results in suboptimal
resource allocation and reduced productivity. The underuse of data-driven decision- making tools, such as
precision agriculture, can limit productivity gains and leadtosuboptimal resource allocation. Lack of data
sharing and poor data quality alsocontribute to low productivity.
<br><br>
9. Fragmented food supply chains and a lack of transparency and accountability inthefood system can result
in food safety concerns and other issues. Fragmented foodsupply chains can create gaps in the system,
leading to quality issues and supply chaindisruptions. A lack of transparency and accountability in the food
systemcan leadtofood safety concerns, traceability issues, and other problems.
</p>
<br>
</div>
<button class="modal-close" role="button">X</button>
</div>
<!-- modal end -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="tracks-card-flip-sign">
<img src="images/plus.png" alt="" srcset="" width="20px" />
</div>
<div>
<p>Smart Education & Learning</p>
</div>
<div>
<img src="images/Online learning-bro-min.png " alt="" srcset="" width="170px" />
</div>
<!-- <a href="https://storyset.com/learn">Learn illustrations by Storyset</a> -->
</div>
<div class="flip-card-back">
<div class="tracks-card-flip-sign">
<img src="images/minus-min.png" alt="" srcset="" width="20px" />
</div>
<!-- <h1>We'll provide more info soon</h1> -->
<div class="card-wrapper">
<p class="card-description"><b>Smart education, a concept that describes learning in digital age. It
enables learners to learn more effectively, efficiently, flexibly and comfortably.</b>
</p>
<button class="show-modal show-problem2-modal button" id="discord-button">View Problem Statement</button>
</div>
</div>
</div>
</div>
<!-- modal start -->
<div class="modal-mask problem2-modal" role="dialog"></div>
<div class="modal" role="alert">
<div class="modal-body">
<h2>Problem Statements</h2> <br>
<p class="para"> 1. The lack of pedagogical training among educators is a
major challenge in the implementation of smart education and learning
technologies, as the complex integration of technology with traditional
teaching methodologies demands advanced skillsets beyond the grasp of
most teachers.
<br>
<br>
2. The deployment of smart education and learning
technologies in low-income communities is hampered by the high cost of
access and maintenance, compounded by the challenge of securing funding
from reluctant public entities and private investors.
<br>
<br>
3. The advancement of smart education and learning
technologies is impeded by the inadequate infrastructure in remote areas,
where power supply and high-speed internet are scarce, and the cost of laying
down necessary infrastructure to implement the latest technologies is
exorbitant.
<br>
<br>
4. The detrimental impact of increased screen time due to
smart education and learning technologies on students' physical and mental
well-being poses a serious challenge, with little mitigation available in the
absence of proven alternatives.
<br>
<br>
5. The proper handling and use of data generated by smart
education and learning technologies is an increasingly complex challenge in
the face of evolving privacy laws, increased cybersecurity risks, and a shortage
of personnel with the necessary expertise to effectively manage and safeguard
data.
<br>
<br>
6. The effectiveness of smart education and learning
technologies is hampered by the lack of consistency and standardization in
the design of digital educational materials, as well as the varying levels of
competence and expertise among educators tasked with implementing these
materials
<br>
<br>
7. The potential negative impact of smart education and
learning technologies on students' cognitive development and non-digital
skills represents a significant obstacle, particularly as there is limited research
on how to balance the use of technology with traditional educational
methods.
<br>
<br>
8. The rapid pace of technological innovation and the
complexity of emerging technologies creates a daunting challenge for
educators, who must continually adapt their teaching methodologies to keep
pace with new developments and integrate them effectively into the
curriculum.
<br>
<br>
9. The digital divide created by the uneven distribution of
smart education and learning technologies among different socioeconomic
groups presents a formidable obstacle to achieving educational equity,
particularly in the face of mounting pressure to close achievement gaps and
improve learning outcomes.
</p>
</div>
<button class="modal-close" role="button">X</button>
</div>
<!-- modal end -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="tracks-card-flip-sign">
<img src="images/plus.png" alt="" srcset="" width="20px" />
</div>
<!-- <div><p>Food & Farm Tech.</p></div> -->
<div>
<p>Healthcare Technology</p>
</div>
<div>
<img src="images/Orthopedic-pana-min.png " alt="" srcset="" width="170px" />
</div>
<!-- <a href="https://storyset.com/learn">Learn illustrations by Storyset</a> -->
</div>
<div class="flip-card-back">
<div class="tracks-card-flip-sign">
<img src="images/minus-min.png" alt="" srcset="" width="20px" />
</div>
<!-- <h1>We'll provide more info soon</h1>
-->
<div class="card-wrapper">
<p class="card-description"><b>Cutting-edge technology in these sectors continues to be in demand. Recent
shifts in healthcare trends, growing populations also present an array of opportunities for
innovation.</b>
</p>
<button class="show-modal show-problem3-modal button" id="discord-button">View Problem Statement</button>
</div>
</div>
</div>
</div>
<!-- modal start -->
<div class="modal-mask problem3-modal" role="dialog"></div>
<div class="modal" role="alert">
<div class="modal-body">
<h2>Problem Statements</h2><br>
<p class="para">1. No direct access to the patient's health: The offline healthcare systems are not
sustainable, and many people cannot afford primary healthcare and rely on the ER for routine check
ups. Health professionals lack the time and devices to provide direct care to every patient.
<br><br>
2. Siloes in the Healthcare World: Healthcare professionals are disconnected and
working in silos. A missing platform can bring the healthcare industry to a single page, where they
can discuss their learning, share knowledge, and create notes. Things could get better if there were a
single platform exclusively for the healthcare sector. Everyone can learn from everyone, leading to a
better understanding, diagnosis, and treatment.
<br><br>
3. Issues with Medicare and Medicaid Reimbursement; Medicare and Medicaid
are government healthcare programs that provide healthcare coverage to patients. Their repayment
structures vary significantly and need to maintain an orchestrated management process. The
procedures for filing and receiving Medicare and Medicaid are very different and are an extra task on
the to-do list of healthcare professionals. The regulations also need them to store and record patient
records in a particular format for the services rendered.
<br><br>
4. Absence of Supply Management System: As patients, we never think of the
logistics behind healthcare services. But they form the backbone of the industry. Efficient logistics
practices ensure smooth healthcare services. However, managing these logistics is still a tricky task.
<br><br>
5. Invest in Data Management Systems: To avoid heavy losses and spending
unnecessarily, it's imperative to turn to digital healthcare technology providers for a powerful and
effective solution. Invest in an inventory or warehouse management system at the higher end of
supply chain management.
<br><br>
6. Managing the Massive Volumes of Patient-Related Data; Patient-related data
is one of the most overwhelming aspects of healthcare. With each new addition to the patient
database, the existing data pool still becomes bigger. Consequently, it becomes even tougher to
manage this data. As much as we expect the traditional infrastructure to manage and secure the
data, it is only unrealistic.
<br><br>
7. Inefficiencies and Errors in Data Sharing : In an age where medical science has
made noteworthy advancements, inefficiencies and healthcare errors are still persistent because of
the healthcare industry's traditional technology for management. This is not just a hurdle in medical
science; it causes regression because of the waste it generates. Not only do patients pay the price in
the form of inconvenience and health, but we also see a rise in administrative expenses and litigation
owing to these inefficiencies.
<br><br>
8. No early warning healthcare devices: Diseases like cancer, as well as events
like aneurysms and strokes, frequently catch doctors off guard. It is often too late to do much, and
many patients die not because they cannot be saved but because it is too late to save them. The new
smoking is sitting, and lifestyle diseases are on the rise. Lifestyle diseases include cancer, diabetes,
obesity, heart disease, and kidney disease. IoMT can manage the risk of suffering from all of these.
<br><br>
9. Slow pace with modern solutions:Our knowledge is limited. We need to learn
more about the mechanisms underlying the various diseases caused by viral infections. A small
change in human DNA can help prevent a variety of ailments.
</p>
</div>
<button class="modal-close" role="button">X</button>
</div>
<!-- modal end -->
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<div class="tracks-card-flip-sign">
<img src="images/plus.png" alt="" srcset="" width="20px" />
</div>
<!-- <div><p>Food & Farm Tech.</p></div> -->
<div>
<p>Transporation & Smart Mobility</p>
</div>
<div>
<img src="images/Smart mobility-pana-min.png" alt="" srcset="" width="170px" />
</div>
</div>
<div class="flip-card-back">
<div class="tracks-card-flip-sign">
<img src="images/minus-min.png" alt="" srcset="" width="20px" />
</div>
<!-- <h1>We'll provide more info soon</h1>
-->
<div class="card-wrapper">
<p class="card-description"><b>Ideas focused on the intelligent use of resources to meet the
transportation demands of evergrowing population.</b>
</p>
<button class="show-modal show-problem4-modal button" id="discord-button">View Problem Statement</button>
</div>
<!-- <p>We love that guy</p> -->
</div>
</div>
</div>
<!-- modal start -->
<div class="modal-mask problem4-modal" role="dialog"></div>
<div class="modal" role="alert">
<div class="modal-body">
<h2>Problem Statements</h2> <br><br>
<p class="para"><b>" Travel time and traffic flow optimization in India " :</b> <br>
Traffic congestion on roads not only increases the fuel consumption but consequently leads to
increase in carbon dioxide emissions, outdoor air pollution as well as increase in the exposure time
of the passengers. There are constraints on making large scale additions/ improvements to the road
infrastructure. There is also no baseline against which the quality of the traffic flow in town or any
other city could be measured on any given day. This problem is looking for optimization solution of
Traffic flow in any City through Traffic Flow Analysis using open-source data as well as development
of a dashboard to objectively monitor the quality of traffic flow in a city on a given day. The objective
analysis solutions will help to both monitor and manage traffic congestion and emissions through
better utilisation of the available infrastructure and help identify the low hanging fruit infrastructure
bottlenecks addressing which will lead to an immediate improvement in the traffic flow in the city.
<br> <br>
<b>" Smart driver training problem for attitudinal change ":</b> <br>
While there has been a lot of emphasis given on Road Safety information by Traffic Police and other
stake holders yet an attitudinal change with willingness to adhere to traffic rules that impact safety
has not been achieved. There is a need to devise programmes and interventions that bring about an
attitudinal change in the citizens.
<br> <br>
<b>" Parking Management following system approach for the city " :</b> <br>
Parking is a major problem in urban areas in both developed and developing countries. Following the
rapid incense of car ownership, many cities are suffering from lack of car parking areas with
imbalance between parking supply and demand which can be considered the initial reason for
metropolis parking problems. This imbalance is partially due to ineffective land use planning and
miscalculations of space requirements during first stages of planning. Shortage of parking space,