-
Notifications
You must be signed in to change notification settings - Fork 0
/
iceis.html
1119 lines (1083 loc) · 70.1 KB
/
iceis.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICEIS'23</title>
<meta name="title" content="Centenary Celebration Program | JU Chemical Engineering Department">
<meta name="description" content="The oldest chemical engineering department in India has been crafting chemical engineers par excellence for the last 100 years. Join us in celebrating its Centenary program.">
<meta name="keywords" content="ccp, centenary celebration program, jadavpur university, chemical engineering, chemical engineering department, ju chem, chemical engineering, 100 year celebration, ju chem centenary, chemical ju, ju centenary, oldest chemical engg, chem engg centenary">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Chemical Engineering Department, Jadavpur University">
<meta property="og:image" content="images/centenary-image.jpeg" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4N39SY28B8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-4N39SY28B8');
</script>
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/flowbite.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" type="image/png" href="images/cent-logo.png">
<link rel="stylesheet" href="css/output.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<header class="relative overflow-hidden">
<div class="hidden sm:block sm:absolute sm:inset-y-0 sm:h-full sm:w-full" aria-hidden="true">
<div class="relative h-full max-w-7xl mx-auto">
<svg class="absolute right-full transform translate-y-1/4 translate-x-1/4 lg:translate-x-1/2" width="404" height="784" fill="none" viewBox="0 0 404 784">
<defs>
<pattern id="f210dbf6-a58d-4871-961e-36d5016a0f49" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="4" height="4" class="text-gray-200" fill="currentColor" />
</pattern>
</defs>
<rect width="404" height="784" fill="url(#f210dbf6-a58d-4871-961e-36d5016a0f49)" />
</svg>
<svg class="absolute left-full transform -translate-y-3/4 -translate-x-1/4 md:-translate-y-1/2 lg:-translate-x-1/2" width="404" height="784" fill="none" viewBox="0 0 404 784">
<defs>
<pattern id="5d0dd344-b041-4d26-bec4-8d33ea57ec9b" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="4" height="4" class="text-gray-200" fill="currentColor" />
</pattern>
</defs>
<rect width="404" height="784" fill="url(#5d0dd344-b041-4d26-bec4-8d33ea57ec9b)" />
</svg>
</div>
</div>
<div class="relative pt-6 pb-16 sm:pb-24">
<nav class="sticky">
<div class="max-w-7xl mx-auto px-4 sm:px-6">
<nav class="relative flex items-center justify-between sm:h-10 md:justify-center" aria-label="Global">
<div class="flex items-center flex-1 md:absolute md:inset-y-0 md:left-0">
<div class="flex items-center justify-between w-full md:w-auto">
<a href="index.html">
<span class="sr-only">Workflow</span>
<img class="h-12 w-12 rounded-full" src="images/centenary-image.jpeg" alt="">Home
</a>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" onclick="openMenu()" class="bg-gray-50 rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<!-- Heroicon name: outline/menu -->
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<div class="hidden md:flex md:space-x-10">
<a href="#about" class="font-normal text-gray-500 hover:text-gray-900">About</a>
<a href="#speakers" class="font-normal text-gray-500 hover:text-gray-900">Speakers</a>
<a href="#themes" class="font-normal text-gray-500 hover:text-gray-900">Themes</a>
<a href="#timeline" class="font-normal text-gray-500 hover:text-gray-900">Timeline</a>
<a href="#paper-submission" class="font-normal text-gray-500 hover:text-gray-900">Paper
Submission</a>
<a href="#comittee" class="font-normal text-gray-500 hover:text-gray-900">Committee</a>
</div>
<div class="hidden md:absolute md:flex md:items-center md:justify-end md:inset-y-0 md:right-0">
<span class="inline-flex rounded-md shadow">
<a href="register-iceis.html" class="inline-flex items-center px-4 py-2 border border-transparent text-base font-normal rounded-md text-white shadow-md bg-indigo-600 hover:bg-indigo-700">
Register Now </a>
</span>
</div>
</nav>
</div>
<div id="mobile-menu" class="hidden absolute z-10 top-0 inset-x-0 p-2 transition transform origin-top-right md:hidden">
<div class="rounded-lg shadow-md bg-white ring-1 ring-black ring-opacity-5 overflow-hidden">
<div class="px-5 pt-4 flex items-center justify-between">
<a href="index.html">
<img class="h-12 w-12 rounded-full" src="images/centenary-image.jpeg" alt="">
</a>
<div class="-mr-2">
<button type="button" onclick="closeMenu()" class="bg-white rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500">
<span class="sr-only">Close menu</span>
<!-- Heroicon name: outline/x -->
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
</div>
<div class="px-2 pt-2 pb-3">
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">About</a>
<a href="#speakers" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Speakers</a>
<a href="#themes" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Themes</a>
<a href="#timeline" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Timeline</a>
<a href="#paper-submission" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Paper
Submission</a>
<a href="#comittee" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Committee</a>
</div>
<a href="register-iceis.html" class="block w-full px-5 py-3 text-center font-medium text-indigo-600 bg-gray-50 hover:bg-gray-100">
Register Now </a>
</div>
</div>
</nav>
<div class="text-center motion-safe:animate-pulse mt-6">
<a class="text-base p-2 rounded bg-indigo-600 hover:bg-indigo-700 text-gray-50" target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSd-VbMGbKjslENTa3GflHms3rhaNDnax1VWHsPn9lEmaBy7ig/viewform"> 
Please click here to fill this form for any kind of transactions. Filling up this form is
mandatory for registration of the event.</a>
</div>
<main id="home" class="mt-16 mx-auto max-w-7xl px-4 sm:mt-24">
<div class="text-center">
<h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl">
<span class="block xl:inline">International Conference on Chemical Engineering </span>
<span class="block text-indigo-600 xl:inline">Innovations &
Sustainability</span>
</h1>
<p class="mt-3 max-w-md mx-auto font-normal text-base text-gray-500 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl">
A two-day International Conference on Chemical Engineering Innovations and Sustainability
(ICEIS)</p>
<div class="mt-3 text-center items-center flex flex-row gap-2 justify-center mx-auto text-base sm:text-lg md:mt-5 md:text-xl md:max-w-3xl">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="w-8 h-8">
<path d="M12.75 12.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM7.5 15.75a.75.75 0 100-1.5.75.75 0 000 1.5zM8.25 17.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM9.75 15.75a.75.75 0 100-1.5.75.75 0 000 1.5zM10.5 17.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM12 15.75a.75.75 0 100-1.5.75.75 0 000 1.5zM12.75 17.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM14.25 15.75a.75.75 0 100-1.5.75.75 0 000 1.5zM15 17.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM16.5 15.75a.75.75 0 100-1.5.75.75 0 000 1.5zM15 12.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM16.5 13.5a.75.75 0 100-1.5.75.75 0 000 1.5z" />
<path fill-rule="evenodd" d="M6.75 2.25A.75.75 0 017.5 3v1.5h9V3A.75.75 0 0118 3v1.5h.75a3 3 0 013 3v11.25a3 3 0 01-3 3H5.25a3 3 0 01-3-3V7.5a3 3 0 013-3H6V3a.75.75 0 01.75-.75zm13.5 9a1.5 1.5 0 00-1.5-1.5H5.25a1.5 1.5 0 00-1.5 1.5v7.5a1.5 1.5 0 001.5 1.5h13.5a1.5 1.5 0 001.5-1.5v-7.5z" clip-rule="evenodd" />
</svg>
<p class="text-gray-700 text-base font-semibold">26 & 27 February 2023</p>
</div>
<div class="mt-5 max-w-md mx-auto sm:flex sm:justify-center md:mt-8">
<div class="rounded-md shadow">
<a href="register-iceis.html" class="w-full flex items-center shadow-sm justify-center px-8 py-2 border border-transparent text-base font-normal rounded-md text-white bg-indigo-600 hover:bg-indigo-700 md:py-2 md:text-lg md:px-8">
Register Now </a>
</div>
<div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3">
<a href="#about" class="w-full flex items-center shadow-sm justify-center px-8 py-2 border border-transparent text-base font-normal rounded-md text-indigo-600 bg-white hover:bg-gray-50 md:py-2 md:text-lg md:px-8">
Read More </a>
</div>
</div>
</div>
</main>
</div>
</header>
<div id="about">
<div class=" max-w-7xl pl-5 text-center md:text-left mx-auto py-16 px-12 sm:py-24 sm:px-6 lg:px-12 lg:flex
lg:items-center gap-36">
<div class="max-w-xl">
<h2 class="text-2xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-5xl">About
<span class="text-rose-500">ICEIS'23</span>
</h2>
</div>
<div class="w-full">
<p class="mt-4 md:mt-0 text-lg font-light text-gray-700">A two-day International Conference on Chemical
Engineering Innovations and Sustainability (ICEIS)
is being organized by the Chemical Engineering
Department of Jadavpur University, Kolkata, on
26-27 February, 2023, on the auspicious occasion
of Centenary Celebration of the Chemical
Engineering Department. ICEIS-2023 intends to
present a platform to students, researchers,
academicians, scientists, engineers and industry
professionals to exchange their views, knowledge
and ideas on recent innovations in the field of
Chemical Engineering with interdisciplinary
applications. ICEIS-2023 will organize plenary &
keynote sessions by eminent experts. Oral
technical sessions and poster presentation
sessions covering accepted extended abstracts
will also be held under the conference.</p>
</div>
</div>
</div>
<div class="my-4 px-4 items-center">
<p class="text-lg font-semibold text-center text-gray-900">Selected papers will be published in: </p>
<div class="flex md:flex-row flex-col gap-4 my-6">
<div class="flex flex-row gap-2 items-center">
<img src="images/journal.JPG" class="w-32">
<p class="font-semibold max-w-xs text-indigo-600">Journal Environmental Science and Pollution Research</p>
</div>
<div class="flex flex-row gap-2 items-center">
<img src="images/sadhana.jpeg" class="w-32">
<a href="https://www.springer.com/journal/12046" class="font-semibold underline hover:text-indigo-700 max-w-xs text-indigo-600">Sadhana Academy Proceedings in Engineering Sciences</a>
</div>
<div class="flex flex-row gap-2 items-center">
<img src="images/mat-today.jpg" class="w-32">
<a href="https://www.sciencedirect.com/journal/materials-today-proceedings" class="font-semibold underline hover:text-indigo-700 max-w-xs text-indigo-600">Materials Today: Proceedins</a>
</div>
</div>
</div>
<div id="speakers" class="bg-gray-50">
<div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<div class="text-center plenary-speaker">
<p class="mt-1 text-4xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-5xl"><span class="text-indigo-600">Plenary</span> Speakers</p>
<div class="mt-12 grid grid-cols-1 gap-y-4 md:grid-cols-3 md:gap-y-8 md:gap-x-10 text-gray-700 text-lg justify-center items-center">
<div class="flex flex-col">
<img src="images/iceis-speakers/seider-warren.jpg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Warren Seider </p>
<p class="text-indigo-600 font-medium">University of Pennsylvania, USA</p>
<!-- <p class="text-sm">27th February 2023, 10:00 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/duygo-kocaefe.jpeg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Duygu Kocaefe</p>
<p class="text-indigo-600 font-medium">Université du Québec à Chicoutimi</p>
<!-- <p class="text-sm">26th February 2023, 11:15 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/Kamalesh-Sirkar.png" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. K K Sirkar</p>
<p class="text-indigo-600 font-medium">NJIT, USA</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/arup-k-sengupta.jpg" class="w-20 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Arup Sengupta</p>
<p class="text-indigo-600 font-medium">Lehigh university, USA</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/Sunando DasGupta2.jpg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Sunando Dasgupta</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Kharagpur</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/Jhuma Sadhukhan.webp" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Jhuma Sadhukhan</p>
<p class="text-indigo-600 font-medium">University of Surrey, UK</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/Dr Goutam Deo.png" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Goutam Deo</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Kanpur</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/sirshendu-de.jpeg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Sirshendu De</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Kharagpur</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/debangsu-bhattacharyya.png" class="w-24 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Debangshu Bhattacharyya</p>
<p class="text-indigo-600 font-medium">West Virginia University, USA</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<div class="text-center plenary-speaker">
<p class="mt-1 text-4xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-5xl"><span class="text-indigo-600">Keynote</span> Speakers</p>
<div class="mt-12 grid grid-cols-1 gap-y-4 md:grid-cols-3 md:gap-y-8 md:gap-x-10 text-gray-700 text-lg justify-center items-center">
<div class="flex flex-col">
<img src="images/iceis-speakers/rabibrata-mukherjee.jpeg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Rabibrata Mukherjee</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Kharagpur</p>
<!-- <p class="text-sm">27th February 2023, 10:00 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/Ravi_Gudi.jpeg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Ravindra D Gudi</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Bombay</p>
<!-- <p class="text-sm">26th February 2023, 11:15 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/Manaswita-Bose.jpg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Manaswita Bose</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Bombay</p>
<!-- <p class="text-sm">27th February 2023, 10:30 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/Dipankar-Bandopahdyay.jpg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Dipankar Bandopahdyay</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Guwahati</p>
<!-- <p class="text-sm">27th February 2023, 10:00 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/animangsu-ghatak.jpg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Animanshu Ghatak</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Kanpur</p>
<!-- <p class="text-sm">26th February 2023, 11:15 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/rajdip.jpeg" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Prof. Rajdip Bandyopadhyaya</p>
<p class="text-indigo-600 font-medium">Indian Institute of Technology, Bombay</p>
<!-- <p class="text-sm">26th February 2023, 11:15 AM (IST)</p> -->
</div>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<div class="text-center invited-speaker">
<p class="mt-1 text-4xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-5xl"><span class="text-indigo-600">Invited</span> Speakers</p>
<div class="mt-12 grid grid-cols-1 gap-y-4 md:grid-cols-3 md:gap-y-8 md:gap-x-10 text-gray-700 text-lg justify-center items-center">
<div class="flex flex-col">
<img src="images/iceis-speakers/tapas-das.jpg" alt="" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Dr. Tapas Das</p>
<p class="text-indigo-600 font-medium">Saint Martin's University, USA</p>
<!-- <p class="text-sm">26th February 2023, 11:15 AM (IST)</p> -->
</div>
<div class="flex flex-col">
<img src="images/iceis-speakers/sulalit.jpeg" alt="" class="w-28 mx-auto mb-2 rounded-full" alt="">
<p>Dr. Sulalit Bandopadhyay</p>
<p class="text-indigo-600 font-medium">Norwegian University of Science & Technology, Norway</p>
<!-- <p class="text-sm">26th February 2023, 11:15 AM (IST)</p> -->
</div>
</div>
</div>
</div>
</div>
<div id="themes" class="relative py-16 bg-white overflow-hidden">
<div class="hidden lg:block lg:absolute lg:inset-y-0 lg:h-full lg:w-full">
<div class="relative h-full text-lg max-w-prose mx-auto" aria-hidden="true">
<svg class="absolute top-12 left-full transform translate-x-32" width="404" height="384" fill="none" viewBox="0 0 404 384">
<defs>
<pattern id="74b3fd99-0a6f-4271-bef2-e80eeafdf357" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="4" height="4" class="text-gray-200" fill="currentColor" />
</pattern>
</defs>
<rect width="404" height="384" fill="url(#74b3fd99-0a6f-4271-bef2-e80eeafdf357)" />
</svg>
<svg class="absolute top-1/2 right-full transform -translate-y-1/2 -translate-x-32" width="404" height="384" fill="none" viewBox="0 0 404 384">
<defs>
<pattern id="f210dbf6-a58d-4871-961e-36d5016a0f49" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="4" height="4" class="text-gray-200" fill="currentColor" />
</pattern>
</defs>
<rect width="404" height="384" fill="url(#f210dbf6-a58d-4871-961e-36d5016a0f49)" />
</svg>
<svg class="absolute bottom-12 left-full transform translate-x-32" width="404" height="384" fill="none" viewBox="0 0 404 384">
<defs>
<pattern id="d3eb07ae-5182-43e6-857d-35c643af9034" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="4" height="4" class="text-gray-200" fill="currentColor" />
</pattern>
</defs>
<rect width="404" height="384" fill="url(#d3eb07ae-5182-43e6-857d-35c643af9034)" />
</svg>
</div>
</div>
<div class="relative px-4 sm:px-6 lg:px-8">
<div class="text-lg max-w-prose mx-auto">
<h1>
<!-- <span -->
<!-- class="block text-base text-center text-indigo-600 font-semibold tracking-wide uppercase">Themes</span> -->
<span class="mt-2 block text-3xl text-center leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">Themes
for the <span class="text-rose-500">Conference</span></span>
</h1>
<!-- <p class="mt-8 text-xl text-gray-500 leading-8">Aliquet nec orci mattis amet quisque ullamcorper
neque, nibh sem. At arcu, sit dui mi, nibh dui, diam eget aliquam. Quisque id at vitae feugiat
egestas ac. Diam nulla orci at in viverra scelerisque eget. Eleifend egestas fringilla sapien.
</p> -->
</div>
<div class="mt-6 text-gray-500 mx-auto">
<div class="mx-auto grid grid-cols-1 gap-1 text-lg md:gap-x-12 md:gap-y-2 md:w-fit md:grid-cols-2">
<li>Petroleum, petrochemicals, coals and natural gas </li>
<li>Catalysis and reaction engineering</li>
<li>Waste management and pollution control</li>
<li>Biofuels and bioprocesses</li>
<li>Energy generation and storage</li>
<li>Nanomaterials, composites and applications</li>
<li>CO2 capture, storage and utilization</li>
<li>Process Intensification and integration</li>
<li>Process simulation and system engineering</li>
<li>Transport processes</li>
<li>Membrane separation</li>
<li>High performance polymer composites</li>
<li>Biorefinery and sustainability</li>
<li>Materials and mineral processing</li>
</div>
</div>
</div>
</div>
<!-- <div id="timeline" class="bg-gray-50 flex flex-row items-center justify-center gap-36 py-16 mx-auto px-12 md:px-24"> -->
<div id="timeline" class="bg-gray-50 py-16 mx-auto px-12 md:px-24">
<p class="mt-1 text-4xl text-center font-extrabold text-rose-500 sm:text-5xl sm:tracking-tight lg:text-5xl">
Timeline</p>
<ol class="mt-12 relative border-l border-gray-200 items-center sm:flex">
<li class="relative mb-6 sm:mb-0">
<span class="flex absolute -left-3 justify-center items-center w-6 h-6 bg-indigo-200 rounded-full ring-8 ring-white">
<svg aria-hidden="true" class="w-3 h-3 text-indigo-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z" clip-rule="evenodd"></path>
</svg>
</span>
<div class="mt-10 sm:pr-8">
<p class="display-only-small-screen"><br></p>
<h3 class="flex items-center mb-1 text-lg font-semibold text-gray-900">Extended Abstract Submission
</h3>
<time class="block mb-2 text-sm font-normal leading-none text-indigo-700">January 14<sup>th</sup>,
2023</time>
<a href="https://docs.google.com/document/d/1lF53sS9weEuWkRCIBXIvnNTHEhOIH1ph/edit" class="py-2 px-4 rounded-md hover:bg-gray-50 border-indigo-600 border text-gray-600" target="_blank">View Abstract Template</a>
<p><br></p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdUkqKLwjMD9GuVQ3UOfYQk-kwD8j0oUVfb1RShWduOEbLVNg/viewform?usp=sf_link" class="text-white bg-indigo-600 hover:bg-indigo-700 focus:ring-4 focus:ring-indigo-300 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2 dark:bg-indigo-600 dark:hover:bg-indigo-700 focus:outline-none dark:focus:ring-indigo-700" target="_blank">Submit Here</a>
</div>
</li>
<li class="relative mb-6 sm:mb-0">
<span class="flex absolute -left-3 justify-center items-center w-6 h-6 bg-indigo-200 rounded-full ring-8 ring-white">
<svg aria-hidden="true" class="w-3 h-3 text-indigo-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z" clip-rule="evenodd"></path>
</svg>
</span>
<div class="mt-10 sm:pr-8">
<h3 class="mb-1 text-lg font-semibold text-gray-900">
<p class="display-only-small-screen"><br></p>Acceptance of Extended Abstract
</h3>
<time class="block mb-2 text-sm font-normal leading-none text-indigo-700">January 20<sup>th</sup>,
2023</time>
</div>
</li>
<li class="relative mb-6 sm:mb-0">
<span class="flex absolute -left-3 justify-center items-center w-6 h-6 bg-indigo-200 rounded-full ring-8 ring-white">
<svg aria-hidden="true" class="w-3 h-3 text-indigo-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z" clip-rule="evenodd"></path>
</svg>
</span>
<div class="mt-10 sm:pr-8">
<h3 class="mb-1 text-lg font-semibold text-gray-900">
<p class="display-only-small-screen"><br></p>Closing of Early Bird Registration
</h3>
<time class="block mb-2 text-sm font-normal leading-none text-indigo-700">January 31<sup>st</sup>,
2023</time>
</div>
</li>
<li class="relative mb-6 sm:mb-0">
<span class="flex absolute -left-3 justify-center items-center w-6 h-6 bg-indigo-200 rounded-full ring-8 ring-white">
<svg aria-hidden="true" class="w-3 h-3 text-indigo-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z" clip-rule="evenodd"></path>
</svg>
</span>
<div class="mt-10 sm:pr-8">
<h3 class="mb-1 text-lg font-semibold text-gray-900">
<p class="display-only-small-screen"><br></p>Closing of Registration
</h3>
<time class="block mb-2 text-sm font-normal leading-none text-indigo-700">February 22<sup>nd</sup>,
2023</time>
</div>
</li>
</ol>
</div>
<div id="paper-submission" class="py-20">
<p class="mt-1 text-4xl text-center font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-5xl">
Paper <span class="text-indigo-600">Submission</span></p>
<p class="mt-5 mx-auto font-light text-xl text-center text-gray-500 md:max-w-3xl">
All participants from educational institutions, R&D centres, Government and Industrial Organizations are
cordially invited to contribute original research papers/review articles based on the thematic areas of the
conference. <span class="font-medium">Last date of extended abstract submission for ICEIS'23 is
14<sup>th</sup> January, 2022.</span>.<br><br><a href="https://docs.google.com/forms/d/e/1FAIpQLSdUkqKLwjMD9GuVQ3UOfYQk-kwD8j0oUVfb1RShWduOEbLVNg/viewform?usp=sf_link" class="text-white bg-indigo-600 hover:bg-indigo-700 focus:ring-4 focus:ring-indigo-300 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2 dark:bg-indigo-600 dark:hover:bg-indigo-700 focus:outline-none dark:focus:ring-indigo-700" target="_blank">Click Here for Submission</a>
</p>
<div class="mx-auto text-center mt-8">
<button class="py-2 px-4 rounded-md hover:bg-gray-50 border-indigo-600 border text-gray-600" type="button" data-modal-toggle="defaultModal">
Click here to view guidelines
</button>
</div>
</div>
<!--Guidelines modal -->
<div id="defaultModal" aria-hidden="true" class="fixed top-0 left-0 right-0 z-50 hidden w-full p-4 overflow-x-hidden overflow-y-auto md:inset-0 h-modal md:h-full">
<div class="relative w-full h-full max-w-md md:h-auto">
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow">
<!-- Modal header -->
<div class="flex items-start justify-between p-4 border-b rounded-t dark:border-gray-600">
<h3 class="text-xl font-semibold text-gray-900">
Guidelines
</h3>
<button type="button" class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm p-1.5 ml-auto inline-flex items-center dark:hover:bg-gray-600 dark:hover:text-white" data-modal-toggle="defaultModal">
<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
<span class="sr-only">Close modal</span>
</button>
</div>
<!-- Modal body -->
<div class="p-6 space-y-6">
<!-- <img src="images/guidelines-iceis.jpg"/> -->
<ul class="space-y-1 max-w-md list-disc list-inside">
<li>Selected papers<sup>**</sup> will be considered for publication in Scopus indexed
journals/Book proceeding.</li>
<li>The extended abstract must be within 4 pages including references. The abstract should
include background, materials and methods, results & discussions, conclusion, and
references.</li>
<li>Relevant figures and tables should be included in the extended abstract.</li>
</ul>
<p><sup>**</sup> Full manuscripts will be requested by the organizers after assessment of the
quality of orally presented research work during the conference.</p>
</div>
<!-- Modal footer -->
<div class="flex items-center p-6 space-x-2 border-t border-gray-200 rounded-b dark:border-gray-600">
<button data-modal-toggle="defaultModal" type="button" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">OK</button>
<!-- <button data-modal-toggle="defaultModal" type="button" class="text-gray-500 bg-white hover:bg-gray-100 focus:ring-4 focus:outline-none focus:ring-blue-300 rounded-lg border border-gray-200 text-sm font-medium px-5 py-2.5 hover:text-gray-900 focus:z-10 dark:bg-gray-700 dark:text-gray-300 dark:border-gray-500 dark:hover:text-white dark:hover:bg-gray-600 dark:focus:ring-gray-600">Decline</button> -->
</div>
</div>
</div>
</div>
<section id="timeline" class="py-12 px-12">
<p class="mt-1 text-4xl text-center font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-5xl">
<span class="text-rose-600">Program </span> Timeline
</p>
<div class="day-1 container max-w-5xl md:px-4 py-12 mx-auto">
<div class="flex flex-col md:flex-row gap-6">
<div class="col-span-12 sm:col-span-3">
<div class="text-center sm:text-left mb-14 before:block before:w-24 before:h-3 before:mb-5 before:rounded-md before:mx-auto sm:before:mx-0 before:bg-rose-400">
<h3 class="text-3xl font-semibold">Day 1</h3>
<span class="text-sm font-bold tracking-wider uppercase">February
26th, 2023</span>
<p>Registration: 9:00 - 10:00 AM</p>
<p>Event starts from 10:00 AM</p>
<p class="font-semibold">Venue (Jadavpur University)</p>
<p>Hall A: Dr. H.L Roy Auditorium</p>
<p>Hall B: K.P. Basu Memorial Hall</p>
<p>Hall C: Chemical Engg. New Seminar Room</p>
</div>
</div>
<div class="flex flex-col w-full md:flex-row gap-2">
<img src="images/iceis-schedules/26-lectures.jpeg" class="w-96 h-full" alt="">
<img src="images/iceis-schedules/26-technical.jpeg" class="w-96 h-full" alt="">
</div>
<!-- <div class="relative col-span-12 md:px-4 space-y-6 sm:col-span-9">
<div
class="col-span-12 space-y-12 relative px-4 sm:col-span-8 sm:space-y-8 sm:before:absolute sm:before:top-2 sm:before:bottom-0 sm:before:w-0.5 sm:before:-left-3 before:bg-gray-700">
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Inauguration</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Plenary Session-I</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<table>
<tr>
<td>
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical Session
A1<br> + <br> Poster Session A1
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical
Session B1
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall B</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600"> Technical
Session C1
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall C</h3>
</td>
</tr>
</table>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<table>
<tr>
<td>
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical Session
A2<br> + <br> Poster Session A2
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical
Session B2
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall B</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600"> Technical
Session C2
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall C</h3>
</td>
</tr>
</table>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Plenary Session-II</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Keynote Session-I</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</div>
</div>
</div> -->
</div>
</div>
<div class="day-2 container max-w-5xl md:px-4 py-12 mx-auto">
<div class="flex flex-col md:flex-row gap-6">
<div class="col-span-12 sm:col-span-3">
<div class="text-center sm:text-left mb-14 before:block before:w-24 before:h-3 before:mb-5 before:rounded-md before:mx-auto sm:before:mx-0 before:bg-rose-400">
<h3 class="text-3xl font-semibold">Day 2</h3>
<span class="text-sm font-bold tracking-wider uppercase">February
27th, 2023</span>
<p>Registration: 9:00 - 10:00 AM</p>
<p>Event starts from 10:00 AM</p>
<p class="font-semibold">Venue (Jadavpur University)</p>
<p>Hall A: Dr. H.L Roy Auditorium</p>
<p>Hall B: K.P. Basu Memorial Hall</p>
<p>Hall C: Chemical Engg. New Seminar Room</p>
</div>
</div>
<div class="flex flex-col w-full md:flex-row gap-2">
<img src="images/iceis-schedules/27-lectures.jpeg" class="w-96 h-full" alt="">
<img src="images/iceis-schedules/27-technical.jpeg" class="w-96 h-full" alt="">
</div>
<!-- <div class="relative col-span-12 md:px-4 space-y-6 sm:col-span-9">
<div
class="col-span-12 space-y-12 relative px-4 sm:col-span-8 sm:space-y-8 sm:before:absolute sm:before:top-2 sm:before:bottom-0 sm:before:w-0.5 sm:before:-left-3 before:bg-gray-700">
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Plenary Session-III</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<table>
<tr>
<td>
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical Session
A3<br> + <br> Poster Session A3
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical
Session B3
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall B</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600"> Technical
Session C3
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall C</h3>
</td>
</tr>
</table>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<table>
<tr>
<td>
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical Session
A4<br> + <br> Poster Session A4
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical
Session B4
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall B</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600"> Technical
Session C4
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall C</h3>
</td>
</tr>
</table>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<table>
<tr>
<td>
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical Session
A5<br> + <br> Poster Session A5
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Technical
Session B5
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall B</h3>
</td>
<td style="padding:0 15px 0 15px;">
<h3 class="text-xl font-semibold tracking-wide text-rose-600"> Technical
Session C5
</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall C</h3>
</td>
</tr>
</table>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Keynote Session-II</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</div>
<div
class="flex flex-col sm:relative sm:before:absolute sm:before:top-2 sm:before:w-4 sm:before:h-4 sm:before:rounded-full sm:before:left-[-35px] sm:before:z-[1] before:bg-rose-400">
<h3 class="text-xl font-semibold tracking-wide text-rose-600">Valedictory</h3>
<h3 class="text-xl font-semibold tracking-wide">Hall A</h3>
</div>
</div>
</div> -->
</div>
</div>
</section>
<div id="comittee" class="">
<!-- <div class="text-center plenary-speaker">
<p class="mt-1 text-4xl font-extrabold text-gray-900 sm:text-3xl sm:tracking-tight lg:text-3xl"><span
class="text-indigo-600">Chief</span> Patron</p>
<div
class="mt-8 grid grid-cols-1 gap-y-4 md:grid-cols-3 md:gap-y-8 md:gap-x-10 text-gray-700 text-md justify-center items-center">
<div class="flex flex-col">
<p>Dr. Abhishek Choudhury</p>
<p class="text-indigo-600 font-medium">Jadavpur University</p>
</div>
</div>
</div> -->
<div class="text-center international-advisory">
<p class="mt-12 text-4xl font-extrabold text-gray-900 sm:text-3xl sm:tracking-tight lg:text-3xl"><span class="text-indigo-600">Organising</span> Committee</p>
</div>
<div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<dl class="max-w-10 text-gray-900 divide-y divide-gray-200 dark:divide-gray-700">
<div class="flex flex-col pb-3">
<dd class="text-lg font-semibold">Patron</dd>
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Prof. Chiranjib Bhattacharjee</dt>
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Pro Vice-Chancellor, Jadavpur
University, India</dt>
</div>
<div class="flex flex-col py-3">
<dd class="text-lg font-semibold">Chairman</dd>
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">Prof. Rajat Chakraborty, Head, Chemical
Engineering</dt>
</div>
<div class="flex flex-col pt-3">
<dd class="text-lg font-semibold">Coordinators, Centenary Celebration</dd>
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">
<table>
<tr>
<td>Dr. Sudeshna Saha  </td>
<td>Dr. Mehabub Rahaman  </td>
<td>Dr. Ratna Dutta  </td>
<td>Dr. Saswata Bose  </td>
</tr>
</table>
</dt>
</div>
<div class="flex flex-col pt-3">
<dd class="text-lg font-semibold">Conference Conveners</dd>
<dt class="mb-1 text-gray-500 md:text-lg dark:text-gray-400">
<table>
<tr>
<td>Prof. Ranjana Chowdhury  </td>
<td>Prof. Kajari Kargupta  </td>
<td>Prof. Papita Das</td>
</tr>
</table>
</dt>
</div>
</dl>
<div class="text-center international-advisory">
<p class="mt-12 text-4xl font-extrabold text-gray-900 sm:text-3xl sm:tracking-tight lg:text-3xl"><span class="text-indigo-600">Advisory</span> Committee</p>
<div class="mt-8 grid grid-cols-1 gap-y-4 md:grid-cols-3 md:gap-y-4 md:gap-x-10 text-gray-700 text-md justify-center items-center">
<div class="flex flex-col">
<p>Prof. Kamlesh Sirkar</p>
<p class="text-indigo-600 font-medium">NJIT, USA</p>
</div>
<div class="flex flex-col">
<p>Prof. Warren Seider</p>
<p class="text-indigo-600 font-medium">University of Pennsylvania, USA</p>
</div>
<div class="flex flex-col">
<p>Prof. Duygu Kocaefe</p>
<p class="text-indigo-600 font-medium">Université du Québec à Chicoutimi, Canada</p>
</div>
<div class="flex flex-col">
<p>Prof. Sharmistha Basu-Dutt</p>
<p class="text-indigo-600 font-medium">University of West Georgia, USA</p>
</div>
<div class="flex flex-col">
<p>Prof. Jhuma Sadhukhan</p>
<p class="text-indigo-600 font-medium">University of Surrey, UK</p>
</div>
<div class="flex flex-col">
<p>Prof. Pinaki Bhattacharya</p>
<p class="text-indigo-600 font-medium">Retd. Prof. & Ex-Head, Jadavpur University, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Siddhartha Dutta</p>
<p class="text-indigo-600 font-medium">Ex Pro-VC & Ex-Head, Jadavpur University, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Sirshendu De</p>
<p class="text-indigo-600 font-medium">IIT Kharagpur, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Sunando Dasgupta</p>
<p class="text-indigo-600 font-medium">IIT Kharagpur, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Runu Chakraborty</p>
<p class="text-indigo-600 font-medium">Jadavpur University, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Sampa Chakrabarti</p>
<p class="text-indigo-600 font-medium">Calcutta University, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Rajdip Bandyopadhyaya</p>
<p class="text-indigo-600 font-medium">IIT Bombay, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Rabibrata Mukherjee</p>
<p class="text-indigo-600 font-medium">IIT Kharagpur, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Manaswita Bose</p>
<p class="text-indigo-600 font-medium">IIT Bombay, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Keka Ojha</p>
<p class="text-indigo-600 font-medium">ISM Dhanbad, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Jayati Sarkar</p>
<p class="text-indigo-600 font-medium">IIT Delhi, India</p>
</div>
</div>
</div>
<div class="text-center international-advisory">
<p class="mt-12 text-4xl font-extrabold text-gray-900 sm:text-3xl sm:tracking-tight lg:text-3xl"><span class="text-indigo-600">Committee</span> Members</p>
<div class="mt-8 grid grid-cols-1 gap-y-4 md:grid-cols-3 md:gap-y-4 md:gap-x-10 text-gray-700 text-md justify-center items-center">
<div class="flex flex-col">
<p>Prof. Avijit Bhowal</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Debashis Roy</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Prof. Ujjaini Sarkar</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Sri. Prasanta Kumar Banerjee</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Dr. Chanchal Mondal</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Dr. Ranjana Das</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Dr. Shyamal Roy</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Ms. Sujata Sardar</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
<div class="flex flex-col">
<p>Dr. Raj Kumar Das</p>
<p class="text-indigo-600 font-medium">Chemical Engg. Dept., JU, India</p>
</div>
</div>
</div>
<div class="text-center plenary-speaker">
<p class="mt-20 text-4xl font-extrabold text-gray-900 sm:text-3xl sm:tracking-tight lg:text-3xl">
<span class="text-rose-600">ICEIS Student Committee</span> Members
</p>
</div>
<div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8">
<dl class="max-w-10 text-gray-900 divide-y divide-gray-200 dark:divide-gray-700">
<div class="flex flex-col pt-3">
<dd class="text-lg font-semibold">Student Coordinator</dd>
<dt class="mb-1 mb-1 md:text-lg">Sayantanu Mondal (PhD)</dt>
</div>
<div class="flex flex-col pt-3">
<table>
<tr>
<td>
<dd class="mb-1 md:text-lg">Sayan Mukherjee (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Sampad Sarkar (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Moumita Sharma (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Sohini Roy Choudhury (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Koustav Nath (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Akash Hossain (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Subhasis ghosh (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Shritama Mukhopadhyay (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Aparna Dhara (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Saswata Chakraborty (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Somakraj Banerjee (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Dinabandhu Manna (PhD)</dd>
</td>
</tr>
<tr>
<td>
<dd class="mb-1 md:text-lg">Sourav Barman (PhD)</dd>
</td>
</tr>