-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1259 lines (1019 loc) · 65.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" class="no-js" >
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nm</title>
<link rel="icon" href="av-assets/imgg/l.png" sizes="16x16">
<!--
<meta property="og:title" content="Mahmudul H. Nayeem">
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.nayeem.cf">
<meta property="og:image" content="av-assets/imgg/ww.png"> -->
<meta name="author" content="Mahmudul Hasan Nayeem">
<meta name="keywords" content="Mh,Nayeem, nayem">
<meta name="description" content="Learn about Mahmudul H. Nayeem and His Works">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap" rel="stylesheet">
<style>
/* Make the image fully responsive */
.carousel-inner img {
width: 100%;
height: 100%;
}
</style>
<!--
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34590577-4', 'auto');
ga('send', 'pageview');
</script>
hultprizemexico.org/api/school/search.php? -->
<!-- Bundled vendor CSS files -->
<link rel="stylesheet" href="index.css">
<!-- Our compiled and merged Sass files
-->
<link href="av-assets/css/app.ee7641cdc24bc970ef95.bundle.css" rel="stylesheet">
<link href="av-assets/css/vendor.dd98eeee80a47afcbe55.bundle.css" rel="stylesheet">
<!--
Replace "no-js" class with "js" in case JavaScript is available.
You can delete this when you feel the need to make use of modernizr
-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="/path/to/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="index.js"></script>
<script>(function(h){h.className = h.className.replace('no-js', 'js')})(document.documentElement)</script>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory. -->
<!-- Place anything custom after this. But put JS to the end of body. -->
<script data-ad-client="ca-pub-5633876830891121" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body class="example" style="background-color: black">
<nav id="navbar" class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#hero" style=""><img src="av-assets/imgg/log.png"></a>
<!--
<h3>Nm</h3>
-->
<div id="nav-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02" >
<ul class="navbar-nav ml-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="#incentives">
<i class="fa fa-diamond" aria-hidden="true">Insights</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#castle">
<i class="fa fa-envira" aria-hidden="true">Experiences</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">
<i class="fa fa-flask" aria-hidden="true">Research</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#apply">
<i class="fa fa-medium" aria-hidden="true">Involve</i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">
<i class="fa fa-connectdevelop" aria-hidden="true">Contact</i>
</a>
</li>
</ul>
</div>
<div class="headerr">
<div class="progresss-container">
<div class="progresss-bar" id="myBar"></div>
</div>
</div>
</div>
</nav>
<div>
<div style="position: fixed; right: 5%; bottom: 10%; z-index: 1">
<a id="top" class="my-btn-top navbar-brand" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="#hero" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 20px; height:20px; background-color: transparent; margin-left: 0px; border-radius: 20px; padding: 10px 15px;"><i class="fa fa-long-arrow-up" aria-hidden="true"></i></a>
</div>
</div>
<div id="hero" style="margin-top: 50px; background-color: black;">
<div class="container">
<div class="row">
<div class="col">
<h1 style="font-family: 'Quicksand', sans-serif; margin-bottom: 0px; font-size: 40px; word-spacing:5px; letter-spacing: -3px;">Transforming A Generation of <br><span>ChangeSeekers to Changemakers</span>
</h1>
<div style="display: flex; flex-direction: column; justify-content: flex-start;margin-bottom: 10px; width: 70%;">
<p style="font-family: 'Quicksand', sans-serif; font-size: 14px; text-align: left; margin-left: 0px; padding-left: 0px; color: #FF1493 ">Mahmudul Hasan Nayeem <br> Entrepreneur | Mentor | Speaker <br> <span style="color: white; font-size: 14px;">
Visionary of A R&D Focused "Young, Entrepreneurial & Intellectual Generation"
To Solve Future Pressing Challenges And Change The World
</span></p>
</div>
<a class="my-btn" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="appreciation.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 170px; height: auto;margin-bottom: 120px; border-radius: 20px; margin-left: 0px;">Appreciations </i></a>
<a class="my-btn" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="accomplishments.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: auto; height: auto;margin-bottom: 120px; border-radius: 20px;margin-left: 0px;">Accomplishments </i></a>
<a class="my-btn navbar-brand" data-aos="fade-down" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="featured.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 170px; height: auto;margin-bottom: 120px; border-radius: 20px; margin-left: 0px;">Featured In </i></a>
</div>
</div>
</div>
<div class="arrow-container">
<a class="arrow-link" href="#incentives">
<p style="font-size: 10px;font-family: 'Quicksand', sans-serif;
">Explore</p>
<div class="arrow">
<ul>
<li></li>
<li></li>
</ul>
</div>
</a>
</div>
</div>
<div id="incentives" style="margin: 30px 0px;">
<div class="container">
<div class="row" >
<div class="col-12 col-md-4" data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500">
<h4 style="font-family: 'Quicksand',sans-serif; text-align:right; color: #FF1493; font-size: 36px">Insights</h4> <h4 style="font-family: 'Quicksand',sans-serif; text-align:right; color: #FF1493; font-size: 18px">Tech Evengelist</h4>
<ul>
<li style="font-size: 12px;">Experienced in Machine Learning, Data Science & BI
</li>
<li style="font-size: 12px;">Excellent at Data Analysis, Interpretation and Consulting
</li>
<li style="font-size: 12px;">R&D & Data Driven Intelligent Enterprise Development</li>
<li style="font-size: 12px;">Interested in Quantum Computing, Space & Singularity</li>
</ul>
</div>
<div class="col-12 col-md-4" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000" >
<img src="av-assets/img/1.png" />
</div>
<div class="col-12 col-md-4 right-col" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="1000">
<h4 style="font-family: 'Quicksand',sans-serif; text-align:left; color: #FF1493; font-size: 18px">Mentor</h4>
<ul style="padding-left: 0px;">
<li style="font-size: 12px;">Adroit in Strategy Business Development & Leadership</li>
<li style="font-size: 12px;">Steadfast in Mentoring, Planning and Action Implementation</li>
<li style="font-size: 12px;">Love to Discuss and Share Intellectual Thoughts & Visions</li>
<li style="font-size: 12px;">Team Player to Unleash & Ignite Others Potentials</li>
</ul>
<h3 class="fun-mobile" style=" font-size: 18px"></h3>
<ul style="padding-left: 0px;">
<li style="font-size: 12px;">Concerned about World's Pressing Challenges & SDG</li>
<li style="font-size: 12px;">Propagates Human Rights, Gender Quality & Climate Action</li>
<li style="font-size: 12px;">Interested in Emotion Intelligence, Management & Diplomacy</li>
<li style="font-size: 12px;">Dreamer of Tech Driven Social and Entrepreneurial Revolution</li>
</ul>
<h4 style="font-family: 'Quicksand',sans-serif; text-align:left; margin-top: 40px; color: #FF1493 ; font-size: 18px">Speaker</h4>
</div>
</div>
</div>
</div>
<div style="display: flex; justify-content: center; color: white; height: auto; width: 100%; background-color: black; margin-top: 0px; padding-top: 0px;">
<a class="my-btn" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="influence.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Influence </i></a>
<!--
<a class="my-btn" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="movement.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 170px; height: auto;margin-bottom: 120px; border-radius: 20px;">Supported Movements </i></a> -->
<a class="my-btn" data-aos="fade-down" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="industry.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Industry Acumen </i></a>
<a class="my-btn" data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="leadership.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Leadership </i></a>
</div>
<div id="new" style="width: 100%; margin-top: 0px; height: auto; background-color:black; text-align: center; justify-content: center;">
<div class="container">
<div class="row">
<div class="col-12 col-md-12" data-aos="fade-down" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="text-align: center;">
<h2 style="font-size:36px; color: #FF1493 ; font-family: 'Quicksand', sans-serif;">Experiences</h2>
<p data-aos="fade-up" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="font-size: 14px; color: white; text-align: center; margin: 0px 20px auto;font-family: 'Quicksand',sans-serif; color: white">Currently working as Intern, Software Engineering@JP Morgan Chase & Co(Virtual Internship), Data Scientist@Neuinfer Inc<br> Previously Worked As CD of Hult Prize Foundation and Completed internship@Microsoft Bangladesh as part of Microsoft YoungBangla Internship Program 2018. Highly interested in Research & Development, STEM (Science, Technology, Engineering and Math) & Startup Ecosystem Development.</p>
</div>
</div>
</div>
</div>
<div id="castle" style="text-align: bottom">
<div data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="text-align: right; margin-left: 20px;margin-right: 20px; width: 60% ;margin-top:470px;" >
<p style="color: #FF1493; font-size: 18px;">Campus Director</p>
<p style="color:white;margin-top: -20px;"><a href="https://hultprize.org">Hult Prize Foundation@</a></p>
<p style="color:white; margin-top: -20px; font-size: 10px">May,2019 - March,2020</p>
<p style="color: #FF1493; font-size: 18px;">Startup Intern</p>
<p style="color:white;margin-top: -20px;"><a href="https://hultprize.org">Microsoft Bangladesh@</a></p>
<p style="color:white; margin-top: -20px; font-size: 10px">March,2018 - October,2018</p>
</div>
<div data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="text-align: left; margin-right: 20px; width: 40%">
<p style="color: #FF1493; font-size: 18px;">Co-Founder & Data Scientist</p>
<p style="color:white; margin-top: -20px;">@Neuinfer Inc</p>
<p style="color:white; margin-top: -20px; font-size: 10px">April,2019 - Present</p>
<p style="color: #FF1493; font-size: 18px;">Research & Development Associate</p>
<p style="color:white; margin-top: -20px;">@Startup Chattogram & Youth 360</p>
<p style="color:white; margin-top: -20px; font-size: 10px">January,2020 - Present</p>
<p style="color: #FF1493; font-size: 18px;">Intern, Software Engineering</p>
<p style="color:white; margin-top: -20px;">@JP Morgan Chase & Co.</p>
<p style="color:white; margin-top: -20px; font-size: 10px">May,2020 - Present</p>
<div class="col-12 col-md-3" style="text-align: left; margin: 0px; padding: 0px">
<a class="navbar-brand" href="#footer">
<img src="av-assets/imgg/log.png">
</a>
</div>
</div>
</h2>
<div class="castle-overlay" data-aos="zoom-in" data-aos-offset="500" data-aos-delay="100" data-aos-duration="1000"></div>
</div>
<div style="display: flex; justify-content: center; color: white; height: auto; width: 100%; background-color: black;">
<a class="my-btn" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="neuinfer.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Neuinfer Inc </i></a>
<a class="my-btn" data-aos="fade-down" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="education.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Education </i></a>
<a class="my-btn" data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="project.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Projects </i></a>
</div>
<!--
<div id="launching">
<div class="container">
<div class="row">
<div class="col">
<h2 data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="font-size:36px; font-family: 'Quicksand', sans-serif; text-transform: none;">Projects</h2>
<p data-aos="fade-bottom" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="font-size: 12px; color: white">I'm a Tech Evangelist, Researcher, and Consultant(Machine Learning and Data Science). Aside from that, I am an Active Model United Nations Enthusiast, Mentor, and a Speaker. I Love Diversity, Sharing Knowledge, and Team Work. I'm Optimist About Future Tech Triumph, Ethology and Point of Singularity. I Believe The Absolute Definition of 'Success' and 'Leadership' Entrusted in How Much Effort We Are Putting to Make Others Capable of Succeeding! Currently we are working few incredible project as part of Neuinfer Inc as follows.</p>
</div>
</div>
<div class="row">
<div class="col">
<div class="row" style="padding-top: 10px;">
<div class="col-12 col-md-3" style="text-align: left; padding-top: 10px;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000" >
<img src="av-assets/imgg/mit.jpg" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">Mit Solve 2020<br> </h3>
<p style="font-size: 12px">
Reducing the probalities of autistic baby born and miscarriage by Iot based machine learning solution which seemlessly monitoring brain activity of mother. Thus inferring the possible risk of epilepsy, psychic instability, maternal health and fetal neural development in real time and mitigating neural abnormalities of fetus, ensuring happy and healthy maternity.</p>
<a class="btn on-link" href="https://solve.mit.edu/challenges/maternal-and-newborn-health/solutions/30998" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px; background-color:#FF1493; border-radius: 20px;
">Neuinfer - Mit Solve </i>
</a>
</div>
<div class="col-12 col-md-3" style="padding-top: 10px;text-align: left;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="">
<img src="av-assets/imgg/25u25.jpg" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">Top Talent Under 25<br> </h3>
<p style="font-size: 12px"> Top Talents under 25 is the first award for
outstanding young people worldwide. In each of these 8 future-critical categories, we award 5 Top Talents under 25! Categories including Innovation, Entrepreneurship, Management, Digital, Social, Society, Education and Diversity. Therefore, I'm competing into this prestigious award this year.</p>
<a class="btn on-link" href="https://toptalentsunder25.com/" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px; background-color:#FF1493; border-radius: 20px;
">Find Updates </i>
</a>
</div>
<div class="col-12 col-md-3" style="text-align: left;padding-top: 10px;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000">
<img src="av-assets/imgg/dk.png" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">Digital Khichuri<br></h3>
<p style="font-size: 12px">The Digital Khichuri Challenge will focus on means of addressing online incitement against two groups: COVID patients and frontline medical workers. These two have been selected given that discrimination and stigmatization against both groups can have a potentially serious impact on Bangladesh’s ability to manage and recover from COVID-19.</p>
<a class="btn on-link" href="http://digitalkhichuribd.org/apply-en/" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px; background-color:#FF1493; border-radius: 20px;
">Challenge Website </i>
</a>
</div>
<div class="col-12 col-md-3" style="text-align: left;padding-top: 10px;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="">
<img src="av-assets/imgg/cp.jpg" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">Children's Prize Foundation<br></h3>
<p style="font-size: 12px">The Children’s Prize is awarded to scientifically-minded individuals with a passion for global child health and a strong commitment to verify the impact of their work. Between 2013 and 2017, the Prize has awarded over $1,700,000.00 to such individuals and organizations across the globe.</p>
<a class="btn on-link" href="http://www.childrensprize.org/the-prize/" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px; background-color:#FF1493; border-radius: 20px;">
Children's Prize </i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="incentives2" style="background-color: black; width: 100%;">
<div class="container">
<div class="row">
<div class="col">
<p data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="font-size:36px; font-family: 'Quicksand', sans-serif; font-size: 36px; color: #FF1493">Completed Projects</p>
<p data-aos="fade-bottom" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="" style="font-size: 12px; color: white">Our projects always focuses on innovation, tech-entrepreneruship and R&D respectively. Among the following projects, we have achieved valuable experiences, mentoring and winning status. For updates on upcoming projects, keep an eye on the website or project page itselt and feel free to contact our team via Linkeding or Email. We would love to hear from you and have you in our team. We will triumph.</p>
</div>
</div>
<div class="row" style="padding-top: 10px;">
<div class="col-12 col-md-3" style="text-align: left;padding-top: 10px;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000" >
<img src="av-assets/imgg/goi.png" style="width: 50px; height: 50px;">
<h4 style="font-size: 18px; color: #FF1493">Goi Peace Writing Competition 2020<br> </h4>
<p style="font-size: 12px">
This annual essay contest is organized in an effort to harness the energy, creativity and initiative of the world's youth in promoting a culture of peace and sustainable development. Theme:
“A Letter from Myself in 2030”
Imagine what an ideal world ten years from now would be like. Write a letter from yourself in 2030 to your present (2020) self.
</p>
<a class="btn on-link" href="https://www.goipeace.or.jp/en/work/essay-contest/" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px; background-color:#FF1493; border-radius: 20px;
">Goi Peace Foundation </i>
</a>
</div>
<div class="col-12 col-md-3" style="text-align: left;padding-top: 10px;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000" >
<img src="av-assets/imgg/yop.png" style="width: 50px; height: 50px;">
<h4 style="font-size: 18px;color: #FF1493">National Writing Competition 2020<br> </h4>
<p style="font-size: 12px">
The far-reaching effects of the Kovid-19 epidemic are affecting the lives and livelihoods of millions of people in Bangladesh. Considering the complexity of the situation, it is necessary for everyone to take part in the transition process of Bangladesh from this situation.
Through this competition you will be able to raise your voice, share your thoughts, get your advice to the policy makers
</p>
<a class="btn on-link" href="https://host.youthop.com/write2fight/?fbclid=IwAR3SbvLlOaPAwG3YVXoU7K3h4TbCU1WUubzOrzAceGZMGW9R8BA8mJG5Gso" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px;background-color:#FF1493; border-radius: 20px;
">Youth Opportunities </i>
</a>
</div>
<div class="col-12 col-md-3" style="text-align: left;padding-top: 10px;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000">
<img src="av-assets/imgg/ms.png" style="width: 50px; height: 50px;">
<h4 style="font-size: 18px;color: #FF1493">MS Azure Virtual Hackathon 2020<br></h4>
<p style="font-size: 12px">
What is the Microsoft Azure Virtual Hackathon?
This virtual hackathon aims to bring together AI/ML enthusiasts, talented developers, designers, and entrepreneurs to solve real-world business challenges from APAC using Azure AI. With multiple partner challenges, our goal is for participants to use Azure technology to create something innovative and transformative.</p>
<a class="btn on-link" href="https://www.msazurevirtualhack.com/" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px;background-color:#FF1493; border-radius: 20px;
">Hackathon Website </i>
</a>
</div>
<div class="col-12 col-md-3" style="text-align: left;padding-top: 10px;" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000">
<img src="av-assets/imgg/gp.png" style="width: 50px; height: 50px;">
<h4 style="font-size: 18px; color: #FF1493">Winner, GP Pre-Accelerator, 2019<br></h4>
<p style="font-size: 12px">Grameenphone Accelerator (GPA) powered by Seedstars is a cohort-based, mentor-led and curriculum-driven open innovation platform helps early stages entrepreneur to validate their IDEA, prototype building and help them to make investable.It also provides equity free grants, expert mentors, top-notch curricula, in-house development resources, investor access and many more. </p>
<a class="btn on-link" href="https://www.grameenphone.com/gpaccelerator" style="font-size: 12px;font-family: 'Quicksand', sans-serif;margin-right: 10px;background-color:#FF1493;border-radius: 20px;
">Accelerator Update </i>
</a>
</div>
</div>
</div>
</div>
<!-
<div class="col-12 col-md-4" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000" >
<img src="av-assets/imgg/ic2.png" />
</div> --
<!-
<div class="col-12 col-md-4 right-col" data-Falliaos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="1000">
<h3>CD, Hult Prize Foundation</h3>
<ul>
<li style="font-size: 15px;">Responsible for Organizing On-Campus Program</li>
<li style="font-size: 15px;">Assigned Duty for Ignite, Educatate and Inspire Fellow University Students</li>
<li style="font-size: 15px;">Responsible for Leading The On Campus Champion Team <br>To the Regional Finals</li>
</ul>
<h3 class="fun-mobile"></h3>
<ul>
<li style="font-size: 15px;">A Proud Member of MSYB Internship Team</li>
<li style="font-size: 15px;">Experienced in Startup Ecosystem <br>& Business Development</li>
<li style="font-size: 15px;">Excellent at Tech Implimentations <br>And Rapid Prototyping</li>
</ul>
<h3>Intern,MSYB</h3>
</div> --
-->
<!--
<div id="process">
<div class="container">
<div class="row">
<div class="col">
<h2 style="font-size:36px; font-family: 'Quicksand', sans-serif;" data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500">Accomplishments</h2>
</div>
</div>
<div class="row">
<div class="col" data-aos="fade-up" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500">
<h2 style="color: white; font-size: 12px">
“Believe passionately in what you do, and never knowingly compromise your standards and values. Act like a true professional, aiming for true excellence, and the money will follow.”
— David Maister
<br>
"Energetic,self motivated and dedicated" - this is the complete defination to describe myself in three easy yet powerful words. My interest into Technology,Entrepreneurship and Public services lead me to rethink,reshape and renovate my career path 3 years back. However in this short life, i have accomplished few incredible and lifechanging opportunities which lead me to dream more, work more and do more to make other people's life better, easier and smooth. I believe in collaboration, team work and i am leading the path to pay it forward. Follow me throughout this entire journey ! </h2>
</div>
<p style="font-size:15px; color: white;">
</p>
</div>
<div id="carousel-example-2" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel-example-2" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-2" data-slide-to="1"></li>
<li data-target="#carousel-example-2" data-slide-to="2"></li>
<li data-target="#carousel-example-2" data-slide-to="4" class="active"></li>
<li data-target="#carousel-example-2" data-slide-to="5"></li>
<li data-target="#carousel-example-2" data-slide-to="6"></li>
<li data-target="#carousel-example-2" data-slide-to="7" class="active"></li>
<li data-target="#carousel-example-2" data-slide-to="8"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="view">
<img class="d-block w-100" src="av-assets/imgg/mm.jpg"
alt="First slide">
<div class="mask rgba-black-light"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Light mask</h3>
<p>First text</p>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img class="d-block w-100" src="av-assets/imgg/j.jpg"
alt="Second slide">
<div class="mask rgba-black-strong"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Strong mask</h3>
<p>Secondary text</p>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img class="d-block w-100" src="av-assets/imgg/sj.jpg"
alt="Third slide">
<div class="mask rgba-black-slight"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Slight mask</h3>
<p>Third text</p>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img class="d-block w-100" src="av-assets/imgg/bup.jpg"
alt="Third slide">
<div class="mask rgba-black-slight"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Slight mask</h3>
<p>Third text</p>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img class="d-block w-100" src="av-assets/imgg/sp.jpg"
alt="Third slide">
<div class="mask rgba-black-slight"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Slight mask</h3>
<p>Third text</p>
</div>
</div>
<div class="carousel-item">
= <div class="view">
<img class="d-block w-100" src="av-assets/imgg/microsoft.jpg"
alt="Third slide">
<div class="mask rgba-black-slight"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Slight mask</h3>
<p>Third text</p>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img class="d-block w-100" src="av-assets/imgg/pla.jpg"
alt="Third slide">
<div class="mask rgba-black-slight"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Slight mask</h3>
<p>Third text</p>
</div>
</div>
<div class="carousel-item">
<div class="view">
<img class="d-block w-100" src="av-assets/imgg/gp1.jpg"
alt="Third slide">
<div class="mask rgba-black-slight"></div>
</div>
<div class="carousel-caption">
<h3 class="h3-responsive">Slight mask</h3>
<p>Third text</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carousel-example-2" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel-example-2" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
=</div>
!--
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators" style="color: #FF1493">
<li data-target="#carouselExampleIndicators" data-slide-to="0" style="color: #FF1493" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1" style="color: #FF1493"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2" style="color: #FF1493"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3" style="color: #FF1493"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="4" style="color: #FF1493"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="5" style="color: #FF1493"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="6" style="color: #FF1493"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="7" style="color: #FF1493"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="8" style="color: #FF1493"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item">
<img class="d-block w-100" style="color: #FF1493" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">JMUN 2019</h5>
<p style="color: white; font-size: 12px;">Jahangirnagar University Model United Nations 2019, Committee - Sochum</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" style="color: #FF1493" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">BUPIMUN 2019</h5>
<p style="color:white ; font-size: 12px;">BUP International Model United Nations 2019, Committee - UNSC</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" style="color: #FF1493"alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">YoungBangla 2018</h5>
<p style="color:white ; font-size: 12px;">Policy Cafe with Sajeeb Wazed</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" style="color: #FF1493" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">JMUN 2019</h5>
<p style="color: white; font-size: 12px;">Jahangirnagar University Model United Nations 2019, Committee - Sochum</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="av-assets/imgg/pla.jpg" style="color: #FF1493" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">BUPIMUN 2019</h5>
<p style="color:white ; font-size: 12px;">BUP International Model United Nations 2019, Committee - UNSC</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="av-assets/imgg/show.jpg" style="color: #FF1493" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">Microsoft Bangladesh</h5>
<p style="color:white ; font-size: 12px;">BUP International Model United Nations 2019, Committee - UNSC</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="av-assets/imgg/sp.jpg" style="color: #FF1493"alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">YoungBangla 2018</h5>
<p style="color:white ; font-size: 12px;">Policy Cafe with Sajeeb Wazed</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="av-assets/imgg/wd.jpg" style="color: #FF1493" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">JMUN 2019</h5>
<p style="color:white ; font-size: 12px;">Campus Ambassador and Delegate</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="av-assets/imgg/bp.jpg" style="color: #FF1493" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">BUPIMUN 2019</h5>
<p style="color:white ; font-size: 12px;">Gala Nights at Bangladesh University of Professionals</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="av-assets/imgg/gp1.jpg" style="color: #FF1493" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 32px;">Gp Pre-Accelerator, 2019</h5>
<p style="color:white ; font-size: 12px;">Champion Teams at Dhaka Finale, Gp Pre-Accelerator 2019</p>
</div>
</div>
<!-
<div class="carousel-item">
<img class="d-block w-100" src="av-assets/imgg/yb.jpg" style="color: #FF1493" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h5 style="color: #FF1493; font-size: 36px;">Young Bangla with Sajeeb Wazed</h5>
<p style="color: white; font-size: 12px;">Meetup of YoungBangla and CRI Networks with Honorable ICT Advisor to the Prime Minister of Bangladesh, Mr. Sajeeb Wazed</p>
</div>
</div>--
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev" style="color: #FF1493">
<span class="carousel-control-prev-icon" aria-hidden="true" style="color: #FF1493"></span>
<span class="sr-only" style="color: #FF1493">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next" style="color: #FF1493">
<span class="carousel-control-next-icon" aria-hidden="true" style="color: #FF1493 "></span>
<span class="sr-only" style="color: #FF1493">Next</span>
</a>
</div>
<div style="display: flex; justify-content: center; color: white;">
<a class="my-btn" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="project.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Projects </i></a>
<a class="my-btn" data-aos="fade-down" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="conference.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Conferences </i></a>
<a class="my-btn" data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="award.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Award </i></a>
</div>
</div>
</div>
<!-
<div id="competing">
<div class="container">
<div class="row">
<div class="col">
<h2 data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="font-size:36px; color: #FF1493; font-family: 'Quicksand', sans-serif ; text-transform: none;">Alliance</h2>
<p style="font-size: 12px" data-aos="fade-up" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500">Associated with <a href="YoungBangla.org">YoungBangla</a> and <a href="cri.org.bd">CRI</a>. Along with working as a Campus Ambassador of Jmun and Bupimun, Joined "Policy cafe" and "Young Bangla with Sajeeb Wazed" - Two National Level Meetup and Policy Discussion Sessions by Honorable Prime Minister's ICT Advisor. It's not been an easy path at all throughout the journey so far. I inturrpted each and every step of my life yet survived and suriving.The more i stepped down,faced challanges obstacle to my career ambition, the more fiercely i drew myself back and achievd my goal. Still a long way to go and more to achieve !
</p>
</div>
</div>
<div class="row">
<div class="col" data-aos="fade-up" data-aos-offset="200" data-aos-duration="1000">
<h2></h2>
</div>
</div>
<div class="row" data-aos="zoom-in" data-aos-offset="200" data-aos-duration="1000">
<div class="col-12 col-md-3">
<img src="av-assets/img/yb.png" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">Former Intern</h3>
<p style="font-size: 12px">@YoungBangla and CRI</p>
<!-
<p style="font-size: 12px">As part of Microsoft YoungBangla Internship Program, i have participated into "Policy cafe" and "Young Bangla with Sajeeb Wazed"</p> ->
</div>
<div class="col-12 col-md-3">
<!- <a class="on-link" href="#search"> ->
<img src="av-assets/img/jmun.png" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">CA & Delegate</h3>
<p style="font-size: 12px">@Jahangirnagar University<br>Model United Nations</p>
<!- </a> ->
</div>
<div class="col-12 col-md-3">
<img src="av-assets/img/bup.png" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">CA & Delegate</h3>
<p style="font-size: 12px">@Bangladesh University of Professionals<br>Model United Nations</p>
</div>
<div class="col-12 col-md-3">
<img src="av-assets/img/y.png" style="width: 50px; height: 50px;">
<h3 style="font-size: 18px">Research & Development Associate</h3>
<p style="font-size: 12px">@Startup Chattogram & Youth360</p>
</div>
</div>
</div>
</div> -->
<!-- <div id="search">
<div class="container">
<div class="row">
<div class="col">
<h2>Find Your School</h2>
</div>
</div>
<div class="row">
<form>
<div class="search-container">
<input type="text" name="school" id="autocomplete" placeholder="Ex: Stanford"
onfocus="this.placeholder = ''"
onblur="this.placeholder = 'Enter your school'" />
</div>
<input type="hidden" name="url" />
<input type="button" onclick="" value="Go to Campus" />
</form>
</div>
</div>
</div> -->
<div id="faq">
<div class="container">
<div class="row">
<div class="col">
<h2 data-aos="fade-down" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="font-size:36px; font-family: 'Quicksand', sans-serif; text-transform: none;">Research</h2>
<p data-aos="fade-up" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" style="font-size: 14px; color: white; text-align: center; margin: 0px 20px auto;font-family: 'Quicksand',sans-serif;">Our Research and Development Projects Focuses on Machine Learning Algorithms, Intelligt Predictive Analytics, End to End Business Development, Market Research and Ecosystem Development Respectively. However, anyone interested in R&D can join our team. Anyone from regardless of background is warmly welcome. All you need is courage, interest and hard working mentality in STEM, AI, Startup and Business. Kindly read the following Q&A for more information and motivation. Remember - "A country without a robust research infrastructure is always a country of bottomless basket"</p>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-12 col-md-6" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500">
<h4 style="font-size:22px; font-family: 'Quicksand', sans-serif;color: #FF1493">For Individuals</h4>
<ul>
<li data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="false" class="collapsed" style="font-size: 12px;">What is Research and Development and In which sector we are working on?
<div id="collapseOne" class="panel-collapse collapse" aria-expanded="false">
<div class="panel-body">
<p style="font-size: 12px;">R&D represents the activities companies undertake to innovate and introduce new products and services or to improve their existing offerings.R&D allows a company to stay ahead of its competition.
Companies in different sectors and industries conduct R&D; pharmaceuticals, semiconductors, and technology companies generally spend the most. Healthcare, Education, Weather, Transportation, Government, Advisory, Marketing and Financial Industry Projects</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#Div1"><div class="panel-heading" style="font-size: 12px;">
How to involve with Neuinfer and Is there any cost involved?
<div id="Div1" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">
If you are dedicated enough to join our team, learn and gain more in your career, kindly submit your CV at - [email protected]. For information regarding the process, contact directly with <a href="https://www.facebook.com/profile.php?id=100011960434801">Mahmudul Hasan Nayeem</a>Cost : Primarily Not. But it solely depends on your personal approach and projects requirements.</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#Div5"><div class="panel-heading" style="font-size: 12px;">
I'm from non-tech background. May I join and how may this help fulfil career objective?
<div id="Div5" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">
Tech and Non-Tech, both are hinghly encouraged to join regardless of gender, age, sex, race or ethnicity. We believe - 'A country without proper research infrastructure is always a country of bottomless basket. Therefore we are trying to bring a change in this norm. Contact us to start your journey and understand better your career objectives.</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#div11"><div class="panel-heading" style="font-size: 12px;">
Do you provide jobs/full time placements and May I'll get the credit for contribution?
<div id="div11" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">Yes, but it's very limited and most of the cases it's voluntarily served to the accomplished candidates.Each and every individuals contributing the projects will get proper credit for his/her job via linkedin and website.
</p>
</div>
</div>
</li>
</ul>
</div>
<!--
<li data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" class="collapsed"><div class="panel-heading" style="font-size: 12px;">
How do we research?
<div id="collapseTwo" class="panel-collapse collapse" aria-expanded="false" style="height: 0px;">
<div class="panel-body">
<p style="font-size: 12px;">We conduct as part of <a href="">Alienn Inc's</a> project based research on various industries or domain. Each and every of our project involves technological influence and deep understanding of Data Analysis, Machine Learning and Data Science. Contact our team for better understanding</p>
</div>
</div>
</li> -->
<!--
<li data-toggle="collapse" data-parent="#accordion" href="#Div2"><div class="panel-heading" style="font-size: 12px;">
Where to start? I've no research background
<div id="Div2" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">We believe every noble work starts by overcoming the psychological challenge first. If you are dedicated, passionate and enthusiast enough, then our team is always ready to work with you. Feel free to contact for grooming and required information</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#Div3"><div class="panel-heading">
?
<div id="Div3" class="panel-collapse collapse">
<div class="panel-body">
<p>The target social impact area of focus / theme for the Hult Prize changes every year. The 2019-20 theme will be announced in the 2019 Hult Prize Global Finals.
</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#Div6">
<div class="panel-heading" style="font-size: 12px;">
What external services do we provide?
<div id="Div6" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">Research guideline, thesis review, thesis publications, higher study guideline etc</p>
</div>
</div>
</li> -->
<div class="col-12 col-md-6" data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500">
<h4 style="font-size:22px; font-family: 'Quicksand', sans-serif;color: #FF1493">For Businesses</h4>
<ul>
<li data-toggle="collapse" data-parent="#accordion" href="#div12"><div class="panel-heading" style="font-size: 12px;">
What Services Do Neuinfer Provide For Corporate/Enterprises?
<div id="div12" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">Neuinfer is Committed and Expertised in End to End Business Development, Industry Transition Consultancy, Business Shifting Strategic Support and Tech Transformation Consultancy Services Through R&D Implementation and It's Research Team</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#div8"><div class="panel-heading" style="font-size: 12px;">
What Are The Previous Projects We Have Done And In Which Industry?
<div id="div8" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">We Are Working On Neuinfer's Core Mission to AI and Data Driven Healthcare Services. In Addition To That, Neuinfer is Dedicated to Enhance it's Helping Hand By Providing Strategic and Advanced Tech Backed Consultancy and Software Support To The Finance, Healthcare, Marketing And Public Organizations. Previous Projects Includes : Startup Chattogram's Business Development. <a href="https://startupchattogram.org/"></a>Check Here </p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#div9"><div class="panel-heading" style="font-size: 12px;">May You Help In Starting A New Business And What Is The TimeFrame?
<div id="div9" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">Absolutely. Neuinfer is Working With Youth360(A For-Profit NGO) And Responsible For Their Business, Marketing And On Site IT Consultancy. This Projects Would About To Last 6Months More. TimeFrame Solely Depends On Project's Requirement. Kindly Contact Our Team ASAP For Consulting Your Business Matter Soon.</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#div7"><div class="panel-heading"
style="font-size: 12px;">What About The Cost And Legal Matters?
<div id="div7" class="panel-collapse collapse">
<div class="panel-body">
<p style="font-size: 12px;">The Projects Structure, Timeframe and Manpower Defines The Projects Cost Structure and Value Proposition Complexities. Contact Our Team For A In-Debth Discussion And Meetup. We Also Have a Professional Legal Team Who Handle The Legal Matter With Utmost Professionalism And Priority. So Don't Worry About Legal Matters. Every Deal and Agreement Would Be Done Based On Legal Advisories From Both End.</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<div style="display: flex; justify-content: center; color: white; height: auto; width: 100%; background-color: black;">
<a class="my-btn" data-aos="fade-right" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="conference.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Conference </i></a>
<a class="my-btn" data-aos="fade-left" data-aos-offset="200" data-aos-duration="1000" data-aos-delay="500" class="btn on-link" href="papers.html" style="font-size: 12px;font-family: 'Quicksand', sans-serif; width: 150px; height: auto;margin-bottom: 120px; border-radius: 20px;">Papers </i></a>
</div>
</div>
</div>
<!--
<div class="col-12 col-md-6">
<h4 style="font-size:22px; font-family: 'Quicksand', sans-serif; color: #FF1493">For Businesses</h4>
<ul>
<li data-toggle="collapse" data-parent="#accordion" href="#div10"><div class="panel-heading">
Why business and companies prefer us?
<div id="div10" class="panel-collapse collapse">
<div class="panel-body">
<p>Local events provide the university student body an opportunity to bypass the general application round and advance directly into the Hult Prize Regional Finals while better preparing students for the next round of competition. Last year, five out of the six global finalists came from the Hult Prize OnCampus rounds. In 2017, the overall champion was a Hult Prize OnCampus winner.</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#div13"><div class="panel-heading">
What is Machine Learning and Big Data Analysis mean for business?
<div id="div13" class="panel-collapse collapse">
<div class="panel-body">
<p>One of the most important parts of being an entrepreneur is the ability to raise funds. Historically, selected teams have not had an issue coming up with the funding required to attend one of our regional events. Often times universities afford the costs associated with travel and lodging, and in other cases teams have crowdfunded their way to the city of their choice. Think of this as the first challenge you will face as an up and coming start-up.</p>
</div>
</div>
</li>
<li data-toggle="collapse" data-parent="#accordion" href="#div14"><div class="panel-heading">
What is Business Intelligence and how it helps a business to generate more revenue?