-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-static.html
1146 lines (1128 loc) · 61.9 KB
/
index-static.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8"><!-- IE compatibility -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Prema is a personal responsive portfolio template based on bootstrap v3.3.6"><meta name="author" content=""><title>MAK | Portfolio</title><!-- Favicons Links --><link rel="apple-touch-icon" sizes="180x180" href="favicons/favicons-apple-touch-icon.png"><link rel="icon" type="image/png" href="favicons/favicons-favicon-32x32.png" sizes="32x32"><link rel="icon" type="image/png" href="favicons/favicons-favicon-16x16.png" sizes="16x16"><link rel="manifest" href="img/favicons/manifest.json"><link rel="mask-icon" href="img/favicons/safari-pinned-tab.svg" color=" #38bc1c"><link rel="shortcut icon" href="favicons/favicons-favicon.ico"><meta name="msapplication-config" content="img/favicons/browserconfig.xml"><meta name="theme-color" content="#0c7cd5"><!-- Bootstrap css file --><link rel="stylesheet" href="css/css-bootstrap.min.css"><!-- Fontawesome library css file --><link rel="stylesheet" href="css/css-font-awesome.min.css"><!-- Animate css file --><link rel="stylesheet" href="css/css-animate.css"><!-- Slick Slider css file --><link rel="stylesheet" href="css/css-slick.css"><!-- Custom styles css file --><link rel="stylesheet" href="css/css-style.css"><!-- Color styles css file --><link rel="stylesheet" href="css/colors-color-1.css"><!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.js"></script>
<![endif]--></head>
<body id="top-page" data-spy="scroll" data-target=".navbar-fixed-top" data-offset="80">
<!-- Start Loading Page -->
<div class="loading">
<div class="loading-wrapper">
<div class="loader"></div>
<h4>Portfolio</h4>
</div>
</div>
<!-- End Loading Page -->
<!-- start Home Section -->
<div id="home" class="main">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<!-- Start container -->
<div class="container">
<!-- Logo and toggle -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collaps" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Start Logo -->
<a class="scroll-link navbar-brand" href="#top-page"><span class="colored-brand">Portfolio</span></a>
<!-- End Logo -->
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collaps">
<ul class="nav navbar-nav navbar-right"><li class="active">
<a class="scroll-link" href="#top-page">HOME</a>
</li>
<li>
<a class="scroll-link" href="#about">ABOUT</a>
</li>
<li>
<a class="scroll-link" href="#process">LIFE & CAREER</a>
</li>
<li>
<a class="scroll-link" href="#services">FIELDS</a>
</li>
<li>
<a class="scroll-link" href="#experiences">EXPERIENCE</a>
</li>
<li>
<a class="scroll-link" href="#portfolio">WORKS</a>
</li>
<li>
<a class="scroll-link" href="#testimonials">AWARDS</a>
</li>
<li>
<a class="scroll-link" href="#contact">CONTACT</a>
</li>
</ul>
</div> <!-- /.navbar-collapse -->
</div> <!-- End container -->
</nav>
<!-- End Navigation -->
<!-- Start Content -->
<div class="hero-content-wrapper overlay">
<div class="hero-content text-center">
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1>Mubarak Ahmad Khan</h1>
<p>Bangladeshi scientist (Sonali Bag, & Jutin Detector)</p>
<a href="#portfolio" class="scroll-link btn btn-custom reverse light">My Works</a>
<a href="#contact" class="scroll-link btn btn-custom">Awards</a>
</div>
</div>
</div>
</div>
</div> <!-- End Content -->
<a href="#about" class="go-down scroll-link">
<span class="glyphicon glyphicon-menu-down" aria-hidden="true"></span>
</a>
</div>
<!-- End Home Section -->
<!-- Start About Me Section -->
<section id="about" class="section">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="profile-intro text-center">
<div class="profile-img-wrapper wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<img class="img-responsive" src="img/Mubarak_Ahmad.jpg" alt="john doe profile"></div>
<h2>MUBARAK AHMAD KHAN</h2>
<div class="separator centered"></div>
<p class="title">Bangladeshi scientist (Sonali Bag, & Jutin Detector)</p>
</div>
</div>
</div>
<div class="row">
<!-- My Personal Info -->
<div class="profile text-center col-sm-5 col-sm-push-7">
<div class="wow fadeInRight" data-wow-duration="1s" data-wow-offset="200">
<h4>Personal Info</h4>
<div class="separator centered"></div>
<p class="para"><span class="highlight">My Name:</span> Mubarak Ahmad Khan</p>
<p class="para"><span class="highlight">Nationality:</span> Bangladeshi</p>
<p class="para"><span class="highlight">Date Of Birth:</span> 31st January 1958</p>
<p class="para"><span class="highlight">My Phone:</span> <a href="tel:0123456789">+0123456789 </a></p>
<p class="para"><span class="highlight">E-mail:</span> <a href="mailto:[email protected]">[email protected]</a></p>
<p class="para"><span class="highlight">Website:</span> <a href="#">www.mubarakahmadkhan.com</a></p>
<!-- <p class="para"><span class="highlight">Fields:</span> Environmental science, material science, polymer science, nano-technology, agriculture and biological sciences. </p> -->
</div>
</div>
<div class="info-tabs col-sm-7 col-sm-pull-5 wow fadeInLeft" data-wow-duration="1s" data-wow-offset="200">
<!-- Tabs Nav -->
<ul class="nav nav-tabs" role="tablist"><li role="presentation" class="active">
<a href="#about-me-panel" aria-controls="about-me-panel" role="tab" data-toggle="tab">About Me</a>
</li>
<li role="presentation">
<a href="#why-me-panel" aria-controls="why-me-panel" role="tab" data-toggle="tab">Institutions</a>
</li>
<li role="presentation">
<a href="#my-vision-panel" aria-controls="my-vision-panel" role="tab" data-toggle="tab">Fields</a>
</li>
</ul><!-- Tabs Panel --><div class="tab-content">
<!-- About Me Panel -->
<div role="tabpanel" class="tab-pane fade in active" id="about-me-panel">
<h4>About Me</h4>
<div class="separator"></div>
<p class="para"><span>Hello, <br> Mubarak Ahmad Khan is a Bangladeshi scientist who has been doing research into Jute's commercial uses and possibilities. According to the science-based research database, Scopus, he is considered to be the leading scientist in the study of jute worldwide. He is currently serving as the Scientific Advisor of Bangladesh Jute Mills corporation (BJMC). Among his many discoveries citables are sonali bag, Jutin, helmets and tiles of which all are made from jute.</p>
</div>
<!-- Why Me Panel -->
<div role="tabpanel" class="tab-pane fade" id="why-me-panel">
<h4>Institutions</h4>
<div class="separator"></div>
<p class="para">Bangladesh Atomic Energy Commission(1984-2017)</p>
<p class="para">Bangladesh Jute Mills corporation(2017-Present)</p>
</div>
<!-- My Vision Panel -->
<div role="tabpanel" class="tab-pane fade" id="my-vision-panel">
<h4>Fields</h4>
<div class="separator"></div>
<p class="para">Environmental science, material science, polymer science, nano-technology, agriculture and biological sciences</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Me Section -->
<!-- Start Process Section -->
<section id="process" class="section">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="section-intro text-center wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h2>Life and career</h2>
<div class="separator centered"></div>
<!-- <p class="para">Dramatically repurpose low-risk high-yield ideas without robust customer service. Intrinsicly build fully tested total linkage without scalable.</p> -->
</div>
</div>
</div>
<!-- Step 1 -->
<div class="row process-step">
<div class="col-sm-7">
<div class="process-text wow fadeInLeft" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-bar-chart"></i>
<h3>Professional career </h3>
<div class="separator"></div>
<p class="para">Holisticly architect efficient e-markets for clicks-and-mortar innovation. Globally productize cross-platform e-commerce without extensive meta-services. Completely administrate process-centric customer service via intuitive sources. Phosfluorescently utilize revolutionary bandwidth rather than leveraged.</p>
</div>
</div>
<div class="col-sm-5">
<div class="process-img wow fadeInRight" data-wow-duration="1s" data-wow-offset="200">
<img src="images/process-01.jpg" alt="Planning" class="img-responsive"></div>
</div>
</div>
<!-- Step 2 -->
<div class="row process-step">
<div class="col-sm-7 col-sm-push-5">
<div class="process-text wow fadeInRight" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-pencil"></i>
<h3>Working experience in eminent research institute</h3>
<div class="separator"></div>
<p class="para">Completely transition enterprise imperatives and virtual methods of empowerment. Authoritatively drive ethical catalysts for change for impactful schemas. Assertively evisculate an expanded array of internal or "organic" sources before.</p>
</div>
</div>
<div class="col-sm-5 col-sm-pull-7">
<div class="process-img wow fadeInLeft" data-wow-duration="1s" data-wow-offset="200">
<img src="img/pic6.jpeg" alt="Designing" class="img-responsive"></div>
</div>
</div>
<!-- Step 3 -->
<div class="row process-step">
<div class="col-sm-7">
<div class="process-text wow fadeInLeft" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-code"></i>
<h3>Teaching experience in Bangladesh</h3>
<div class="separator"></div>
<p class="para">Energistically utilize just in time applications vis-a-vis intuitive best practices. Quickly communicate enterprise scenarios rather than collaborative results. Completely develop client-centric scenarios whereas viral ROI. Compellingly mesh cross-platform products.</p>
</div>
</div>
<div class="col-sm-5">
<div class="process-img wow fadeInRight" data-wow-duration="1s" data-wow-offset="200">
<img src="img/pic7.jpeg" alt="Development" class="img-responsive"></div>
</div>
</div>
<!-- Step 4 -->
<div class="row process-step">
<div class="col-sm-7 col-sm-push-5">
<div class="process-text wow fadeInRight" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-tv"></i>
<h3>Membership</h3>
<div class="separator"></div>
<p class="para">Intrinsicly scale cross-media collaboration and idea-sharing for dynamic communities. Collaboratively underwhelm worldwide relationships after reliable mindshare. Professionally foster granular technology for 2.0 testing procedures. Interactively iterate resource-leveling growth strategies.</p>
</div>
</div>
<div class="col-sm-5 col-sm-pull-7">
<div class="process-img wow fadeInLeft" data-wow-duration="1s" data-wow-offset="200">
<img src="img/pic8.jpg" alt="Production" class="img-responsive"></div>
</div>
</div>
</div>
</section><!-- End Process Section -->
<!-- Start Services Section -->
<section id="services" class="section text-center">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="section-intro">
<h2>Fields</h2>
<div class="separator centered"></div>
<p class="para">Continually transform process-centric systems rather than compelling growth strategies. Energistically streamline low-risk high-yield supply chains via scalable intellectual capital.</p>
</div>
</div>
</div>
<div class="row">
<!-- Service No. ( 1 ) -->
<div class="service col-md-4 col-sm-6 wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-paint-brush"></i>
<h4>Environmental science</h4>
<p class="para">Collaboratively maintain tactical niche markets whereas functionalized catalysts for change. Collaboratively transform.</p>
</div>
<!-- Service No. ( 2 ) -->
<div class="service col-md-4 col-sm-6 wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-object-group"></i>
<h4>Material science</h4>
<p class="para">Enthusiastically maximize equity invested niches for enterprise-wide human capital. Rapidiously cultivate maintainable.</p>
</div>
<!-- Service No. ( 3 ) -->
<div class="service col-md-4 col-sm-6 wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-code"></i>
<h4>Biological Science</h4>
<p class="para">Collaboratively maintain tactical niche markets whereas functionalized catalysts for change. Collaboratively transform.</p>
</div>
<!-- Service No. ( 4 ) -->
<div class="service col-md-4 col-sm-6 wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-envira"></i>
<h4>Polymer science</h4>
<p class="para">Enthusiastically maximize equity invested niches for enterprise-wide human capital. Rapidiously cultivate maintainable.</p>
</div>
<!-- Service No. ( 5 ) -->
<div class="service col-md-4 col-sm-6 wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-support"></i>
<h4>Nano-technology</h4>
<p class="para">Collaboratively maintain tactical niche markets whereas functionalized catalysts for change. Collaboratively transform.</p>
</div>
<!-- Service No. ( 6 ) -->
<div class="service col-md-4 col-sm-6 wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<i class="fa fa-eye"></i>
<h4>Agriculture Sciences</h4>
<p class="para">Enthusiastically maximize equity invested niches for enterprise-wide human capital. Rapidiously cultivate maintainable.</p>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- Start Quote Section -->
<section id="quote" class="section">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<div class="section-intro">
<h2>Biodegradable Polybag (Sonali Bag)</h2>
<h2>Jute reinforced polymer corrugated sheet (Jutin)</h2>
<div class="separator centered"></div>
<p class="para">Completely orchestrate 24/365 information before best-of-breed core competencies. Collaboratively unleash customized functionalities.</p>
</div>
<a href="#contact" class="wow bounceIn scroll-link btn btn-custom reverse dark" data-wow-duration="0.6s" data-wow-offset="200">Know More</a>
</div>
</div>
</div>
</section><!-- End Quote Section --><!-- Start Experiences Section -->
<section id="experiences" class="section text-center"><div class="container">
<div class="row">
<div class="col-xs-12">
<div class="section-intro">
<h2>My Experiences</h2>
<div class="separator centered"></div>
<p class="para">Objectively cultivate equity invested customer service without intermandated methodologies. Intrinsicly productivate interactive strategic theme areas via goal-oriented.</p>
</div>
</div>
</div>
<!-- Start Timeline -->
<div class="timeline-wrapper">
<div class="timeline">
<!-- Event ( 1 ) -->
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>2017 to Present</h4>
<i class="fa fa-diamond fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Scientific Advisor</h4>
<div class="separator"></div>
<p class="job-title">Bangladesh Jute Mill's Corporation</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>2015</h4>
<i class="fa fa-diamond fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Director General</h4>
<div class="separator"></div>
<p class="job-title">Bangladesh Atomic Energy Commission</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>2012 to Present</h4>
<i class="fa fa-diamond fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Adjunct Professor</h4>
<div class="separator"></div>
<p class="job-title">Dhaka University, Bangladesh</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<!-- Event ( 2 ) -->
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>2003, 2005, 2007, 2010 and 2014</h4>
<i class="fa fa-trophy fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Alexader von Humboldt fellow (AvH)</h4>
<div class="separator"></div>
<p class="job-title">Fraunhofer Institute for Applied Polymer Research and University of Kassel, Germany.</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<!-- Event ( 3 ) -->
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>2001</h4>
<i class="fa fa-lightbulb-o fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Principle Scientific Officer and Group Leader</h4>
<div class="separator"></div>
<p class="job-title">Radiation and Polymer Chemistry Laboratory, Bangladesh Atomic Energy Commission</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<!-- Event ( 4 ) -->
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>2000</h4>
<i class="fa fa-suitcase fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Vising Professor</h4>
<div class="separator"></div>
<p class="job-title">Michigan State University, USA</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<!-- Event ( 5 ) -->
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>1990</h4>
<i class="fa fa-certificate fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>IAEA Fellow</h4>
<div class="separator"></div>
<p class="job-title">University of New South Wales, Australia</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<div class="event row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>1984</h4>
<i class="fa fa-certificate fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Scientific Officer</h4>
<div class="separator"></div>
<p class="job-title">Radiation and Polymer Chemistry Laboratory, Bangladesh Atomic Energy Commission</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
<!-- Event ( 6 ) -->
<div class="event graduation row">
<div class="col-sm-3 col-xs-12 event-left wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h4>1982</h4>
<i class="fa fa-certificate fa-fw"></i>
</div>
<div class="col-sm-9 col-xs-12 event-right last-event wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<div class="content-wrapper">
<h4>Lecturer in Chemistry</h4>
<div class="separator"></div>
<p class="job-title">Mirzapur College which was affiliated University of Dhaka</p>
<!-- <p class="para">Dramatically incentivize bleeding-edge core competencies via dynamic users. Progressively provide access to best-of-breed markets whereas multidisciplinary services. Quickly restore orthogonal expertise whereas highly efficient.</p> -->
</div>
</div>
</div>
</div>
</div> <!-- End Timeline -->
</div>
</section><!-- End Experiences Section --><!-- Start Skills Section -->
<!-- End Skills Section -->
<!-- Start Portfolio Section -->
<section id="portfolio" class="section text-center">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="section-intro">
<h2>My works</h2>
<div class="separator centered"></div>
<p class="para">Intrinsicly conceptualize real-time information without cross functional potentialities. Conveniently impact integrated benefits and ubiquitous paradigms. Dynamically architect.</p>
</div>
</div>
</div>
<!-- <div class="controls">
<button class="filter btn btn-custom" data-filter="all" data-toggle="tooltip" data-placement="top" title="12">All</button>
<button class="filter btn btn-custom active" data-filter=".design" data-toggle="tooltip" data-placement="top" title="4">Design</button>
<button class="filter btn btn-custom" data-filter=".development" data-toggle="tooltip" data-placement="top" title="5">Development</button>
<button class="filter btn btn-custom" data-filter=".branding" data-toggle="tooltip" data-placement="top" title="5">Branding</button>
</div> -->
<div id="Container" class="row">
<!-- Project 1 -->
<div class="mix design branding col-md-4 col-sm-6 col-xs-12" data-my-order="1">
<div class="project" data-toggle="modal" data-target="#modal">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/1.jpeg" alt="project-1"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>design / branding</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-labelledby="label_1">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_1">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/1.jpeg" alt="project-1"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( design, branding )</p>
<p class="para project-description">Energistically develop reliable content for leading-edge networks. Dramatically enhance optimal testing procedures and multimedia based e-commerce. Holisticly syndicate standardized human capital without extensible experiences. <br> Efficiently synthesize client-based solutions through resource sucking systems. Proactively visualize mission-critical paradigms before competitive value. Efficiently disintermediate resource sucking e-markets via visionary e-markets. Efficiently.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 2 -->
<div class="mix branding col-md-4 col-sm-6 col-xs-12" data-my-order="2">
<div class="project" data-toggle="modal" data-target="#modal-2">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/2.jpeg" alt="project-2"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>branding</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-2" tabindex="-1" role="dialog" aria-labelledby="label_2">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_2">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/2.jpeg" alt="project-2"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( branding )</p>
<p class="para project-description">Professionally procrastinate cross-platform ROI without ubiquitous intellectual capital. Holisticly customize highly efficient "outside the box" thinking before seamless imperatives. <br> Efficiently develop customized manufactured products with inexpensive web services. Dynamically grow unique ROI with dynamic action items. Efficiently morph superior ROI via out-of-the-box systems. Professionally foster maintainable process improvements.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 3 -->
<div class="mix design development col-md-4 col-sm-6 col-xs-12" data-my-order="3">
<div class="project" data-toggle="modal" data-target="#modal-3">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/14.jpeg" alt="project-3"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>design / development</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-3" tabindex="-1" role="dialog" aria-labelledby="label_3">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_3">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/14.jpeg" alt="project-3"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( design, development )</p>
<p class="para project-description">Efficiently reinvent 2.0 manufactured products after client-focused relationships. Distinctively architect enterprise-wide information vis-a-vis one-to-one vortals. <br> Collaboratively incentivize 2.0 interfaces before next-generation scenarios. Proactively repurpose backward-compatible schemas for progressive e-commerce. Intrinsicly whiteboard resource-leveling methods of empowerment before out-of-the-box quality vectors. Assertively deliver multidisciplinary meta-services for diverse technologies. Dramatically leverage.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 4 -->
<div class="mix branding col-md-4 col-sm-6 col-xs-12" data-my-order="4">
<div class="project" data-toggle="modal" data-target="#modal-4">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/4.jpeg" alt="project-4"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>branding</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-4" tabindex="-1" role="dialog" aria-labelledby="label_4">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_4">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/4.jpeg" alt="project-4"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( branding )</p>
<p class="para project-description">Conveniently iterate prospective bandwidth whereas resource-leveling e-markets. Conveniently architect process-centric web services vis-a-vis adaptive content. Appropriately seize cooperative e-services before focused relationships. <br> Collaboratively innovate extensible innovation with future-proof partnerships. Distinctively provide access to low-risk high-yield methodologies after enabled internal or "organic" sources.Objectively myocardinate sticky processes rather than.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 5 -->
<div class="mix design col-md-4 col-sm-6 col-xs-12" data-my-order="5">
<div class="project" data-toggle="modal" data-target="#modal-5">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/5.jpeg" alt="project-5"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>design</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-5" tabindex="-1" role="dialog" aria-labelledby="label_5">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_5">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/5.jpeg" alt="project-5"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( design )</p>
<p class="para project-description">Completely leverage other's unique schemas without quality ROI. Interactively reintermediate proactive total linkage with client-centered leadership. Globally implement technically sound catalysts for change through 2.0 networks. <br> Professionally empower stand-alone networks rather than highly efficient imperatives. Holisticly productivate bleeding-edge bandwidth whereas alternative infomediaries. Proactively empower technically sound expertise with.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 6 -->
<div class="mix development col-md-4 col-sm-6 col-xs-12" data-my-order="6">
<div class="project" data-toggle="modal" data-target="#modal-6">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/6.jpeg" alt="project-6"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>development</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-6" tabindex="-1" role="dialog" aria-labelledby="label_6">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_6">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/6.jpeg" alt="project-6"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( development )</p>
<p class="para project-description">Intrinsicly conceptualize real-time information without cross functional potentialities. Conveniently impact integrated benefits and ubiquitous paradigms. Dynamically architect.
<br>
Conveniently embrace fully researched niches for professional internal or.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 7 -->
<div class="mix branding col-md-4 col-sm-6 col-xs-12" data-my-order="7">
<div class="project" data-toggle="modal" data-target="#modal-7">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/7.jpeg" alt="project-7"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>branding</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-7" tabindex="-1" role="dialog" aria-labelledby="label_7">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_7">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/7.jpeg" alt="project-7"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( branding )</p>
<p class="para project-description">Assertively negotiate cross-media mindshare and process-centric ROI. Intrinsicly maximize premier total linkage after virtual synergy. Uniquely leverage other's future-proof networks rather than client-focused leadership skills. <br> Progressively matrix technically sound expertise for alternative users. Intrinsicly pontificate goal-oriented bandwidth vis-a-vis timely infrastructures. Continually formulate vertical core competencies rather than bricks-and-clicks.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 8 -->
<div class="mix development col-md-4 col-sm-6 col-xs-12" data-my-order="8">
<div class="project" data-toggle="modal" data-target="#modal-8">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/8.jpeg" alt="project-8"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>development</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-8" tabindex="-1" role="dialog" aria-labelledby="label_8">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_8">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/8.jpeg" alt="project-8"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( development )</p>
<p class="para project-description">Intrinsicly conceptualize real-time information without cross functional potentialities. Conveniently impact integrated benefits and ubiquitous paradigms. Dynamically architect. <br>
Synergistically implement accurate mindshare before scalable synergy. Assertively pursue compelling infrastructures rather than dynamic "outside the box".</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 9 -->
<div class="mix development col-md-4 col-sm-6 col-xs-12" data-my-order="9">
<div class="project" data-toggle="modal" data-target="#modal-9">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/9.jpeg" alt="project-9"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>development</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-9" tabindex="-1" role="dialog" aria-labelledby="label_9">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_9">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/9.jpeg" alt="project-9"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( development )</p>
<p class="para project-description">Intrinsicly conceptualize real-time information without cross functional potentialities. Conveniently impact integrated benefits and ubiquitous paradigms. Dynamically architect. <br>
Synergistically implement accurate mindshare before scalable synergy. Assertively pursue compelling infrastructures rather than dynamic "outside the box".</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 10 -->
<div class="mix development col-md-4 col-sm-6 col-xs-12" data-my-order="10">
<div class="project" data-toggle="modal" data-target="#modal-10">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/10.jpeg" alt="project-10"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>development</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-10" tabindex="-1" role="dialog" aria-labelledby="label_10">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_10">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/10.jpeg" alt="project-10"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( development )</p>
<p class="para project-description">Intrinsicly conceptualize real-time information without cross functional potentialities. Conveniently impact integrated benefits and ubiquitous paradigms. Dynamically architect. <br>
Synergistically implement accurate mindshare before scalable synergy. Assertively pursue compelling infrastructures rather than dynamic "outside the box".</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 11 -->
<div class="mix branding col-md-4 col-sm-6 col-xs-12" data-my-order="11">
<div class="project" data-toggle="modal" data-target="#modal-11">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/11.jpeg" alt="project-11"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>branding</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-11" tabindex="-1" role="dialog" aria-labelledby="label_11">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_11">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/11.jpeg" alt="project-11"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( branding )</p>
<p class="para project-description">Assertively negotiate cross-media mindshare and process-centric ROI. Intrinsicly maximize premier total linkage after virtual synergy. Uniquely leverage other's future-proof networks rather than client-focused leadership skills. <br> Progressively matrix technically sound expertise for alternative users. Intrinsicly pontificate goal-oriented bandwidth vis-a-vis timely infrastructures. Continually formulate vertical core competencies rather than bricks-and-clicks.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
<!-- Project 12 -->
<div class="mix design col-md-4 col-sm-6 col-xs-12" data-my-order="12">
<div class="project" data-toggle="modal" data-target="#modal-12">
<div class="project-img-wrapper">
<img class="center-block img-responsive" src="img/12.jpeg" alt="project-12"></div>
<div class="img-overlay">
<div class="overlay-text">
<h4>Project Name</h4>
<p>design</p>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modal-12" tabindex="-1" role="dialog" aria-labelledby="label_12">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="label_12">Project Name</h4>
</div>
<div class="modal-body">
<img class="center-block img-responsive thumbnail" src="img/12.jpeg" alt="project-12"><h4>Project Name</h4>
<div class="separator"></div>
<p class="para subtitle">( design )</p>
<p class="para project-description">Completely leverage other's unique schemas without quality ROI. Interactively reintermediate proactive total linkage with client-centered leadership. Globally implement technically sound catalysts for change through 2.0 networks. <br> Professionally empower stand-alone networks rather than highly efficient imperatives. Holisticly productivate bleeding-edge bandwidth whereas alternative infomediaries. Proactively empower technically sound expertise with.</p>
<a href="#" class="btn btn-custom btn-custom-reverse">Live Preview</a>
<a href="#contact" class="btn btn-custom dark scroll-link" data-dismiss="modal">Start Project</a>
</div>
</div>
</div>
</div> <!-- End Modal -->
</div>
</div>
<div class="row">
<!-- <div class="col-xs-12 interested">
<h2 class="wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">Interested?</h2>
<div class="separator centered wow fadeInUp" data-wow-duration="1s" data-wow-offset="200"></div>
<p class="para wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">Intrinsicly conceptualize real-time information without cross functional potentialities. <br>Synergistically implement accurate mindshare before scalable synergy.</p>
<a href="#contact" class=" scroll-link btn btn-custom dark wow bounceIn" data-wow-duration="0.6s" data-wow-offset="200">Let's Go!</a>
</div> -->
</div>
</div>
</section><!-- End Portfolio Section --><!-- Start Testimonials Section --><section id="testimonials" class="section text-center"><div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="section-intro">
<h2>Awards</h2>
<div class="separator centered"></div>
<p class="para">Synergistically create extensive intellectual capital rather than clicks-and-mortar materials.</p>
</div>
</div>
</div>
<!-- Start Carousel -->
<div id="carousel" class="carousel slide" data-ride="carousel">
<!-- Items Wrapper -->
<div class="carousel-inner" role="listbox">
<!-- Client NO. 1 -->
<div class="item row active">
<div class="client-details">
<!-- <img class="img-circle img-responsive" src="img/pic5.jpg" alt="Client 1"> -->
<h4>Bangladesh Academy of Sciences Gold Medal (2010)</h4>
</div>
<p class="testimonial-text para col-sm-8 col-sm-offset-2 col-xs-12">Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis corporis nam dolorem pariatur, fugit nisi exercitationem ratione non atque, unde commodi dolor rem porro eius! Lorem ipsum dolor sit amet consectetur adipisicing elit. Dignissimos, repudiandae?</p>
</div>
<!-- Client NO. 2 -->
<div class="item row">
<div class="client-details">
<!-- <img class="img-circle img-responsive" src="img/pic2.jpg" alt="Client 2"> -->
<h4>National Jute Award(2017)</h4>
</div>
<p class="testimonial-text para col-sm-8 col-sm-offset-2 col-xs-12">Lorem ipsum dolor sit amet consectetur adipisicing elit. Recusandae esse quam ducimus hic et facere quibusdam itaque, architecto atque enim consequatur placeat nihil ipsum labore. Lorem ipsum dolor sit amet consectetur, adipisicing elit. Voluptatum, rerum!</p>
</div>
<!-- Client NO. 3 -->
<div class="item row">
<div class="client-details">
<!-- <img class="img-circle img-responsive" src="img/pic3.jpg" alt="Client 3"> -->
<h4>National Environment Award (2019)</h4>
</div>
<p class="testimonial-text para col-sm-8 col-sm-offset-2 col-xs-12">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nisi veritatis modi cupiditate ut commodi tenetur corrupti aut perspiciatis nobis ipsam pariatur repellat minima eius, quo, et in officia dicta quae autem cumque illum blanditiis doloribus!</p>
</div>
<!-- Client NO. 4 -->
<div class="item row">
<div class="client-details">
<!-- <img class="img-circle img-responsive" src="img/pic4.jpg" alt="Client 4"> -->
<h4>MIT Solve Health Security & Pandemics prize (2020)</h4>
</div>
<p class="testimonial-text para col-sm-8 col-sm-offset-2 col-xs-12">Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis eligendi alias consectetur quis ad! Enim repellendus blanditiis vel dicta animi maiores, cumque sapiente laboriosam neque. Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut, consectetur!</p>
</div>
</div>
<!-- Controls -->
<div class="carousel-controls">
<a href="#carousel" class="left carousel-control" role="button" data-slide="prev">
<i class="fa fa-angle-left" aria-hidden="true"></i>
<span class="sr-only">Previous</span>
</a>
<a href="#carousel" class="right carousel-control" role="button" data-slide="next">
<i class="fa fa-angle-right" aria-hidden="true"></i>
<span class="sr-only">Next</span>
</a>
</div>
</div> <!-- End Carousel -->
</div>
</section><!-- End Testimonials Section --><!-- Start Clients Section --><section id="clients" class="section text-center"><div class="container">
<div class="row">
<div class="col-xs-12">
<div class="section-intro wow fadeInUp" data-wow-duration="1s" data-wow-offset="200">
<h2>Publications</h2>
<div class="separator centered"></div>
<p class="para">Dynamically pontificate future-proof relationships whereas interoperable infomediaries. Professionally aggregate corporate leadership after accurate users.</p>
</div>
</div>
</div>
<div class="row">
<div class="client-list">
<!-- Client No. 1 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100">
<img class="img-responsive" src="images/logos-1.png" alt="client No. 1"></div>
</div>
<!-- Client No. 2 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100" data-wow-delay="0.1s">
<img class="img-responsive" src="images/logos-2.png" alt="client No. 2"></div>
</div>
<!-- Client No. 3 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100" data-wow-delay="0.2s">
<img class="img-responsive" src="images/logos-3.png" alt="client No. 3"></div>
</div>
<!-- Client No. 4 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100" data-wow-delay="0.3s">
<img class="img-responsive" src="images/logos-4.png" alt="client No. 4"></div>
</div>
<!-- Client No. 5 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100" data-wow-delay="0.4s">
<img class="img-responsive" src="images/logos-5.png" alt="client No. 5"></div>
</div>
<!-- Client No. 6 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100" data-wow-delay="0.5s">
<img class="img-responsive" src="images/logos-6.png" alt="client No. 6"></div>
</div>
<!-- Client No. 7 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100" data-wow-delay="0.6s">
<img class="img-responsive" src="images/logos-7.png" alt="client No. 7"></div>
</div>
<!-- Client No. 8 -->
<div class="col-md-3 col-sm-6">
<div class="client wow bounceIn" data-wow-duration="0.6s" data-wow-offset="100" data-wow-delay="0.7s">
<img class="img-responsive" src="images/logos-8.png" alt="client No. 8"></div>
</div>
</div>
</div>
</div>
</section><!-- End Clients Section --><!-- Start Contact Section --><div id="contact" class="section text-center">
<div class="container">
<div class="overlay"></div>
<div class="row">
<div class="col-xs-12 wow fadeIn" data-wow-duration="1s" data-wow-offset="200">