-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf19.html
More file actions
1434 lines (1255 loc) · 48.7 KB
/
conf19.html
File metadata and controls
1434 lines (1255 loc) · 48.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>International Conference on Nano technology 2025</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
<link rel="icon" type="image/png" href="./Logo.png">
<script src="https://www.paypal.com/sdk/js?client-id=AVfp7IbCzZJRAZUYAzVurLj88y2JFogGw6O6b1VOoPsbpdZs184M5hPYCrv-RKVOBBTKrBFnxeiVUQTW¤cy=USD"></script>
<style>
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--secondary: #f59e0b;
--text: #1e293b;
--text-light: #000000;
--background: #f8fafc;
--white: #ffffff;
--border: #e2e8f0;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--text);
background: var(--background);
padding-top: 70px; /* Add padding to account for fixed navbar */
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
/* Navbar */
.navbar {
background: var(--white);
box-shadow: var(--shadow);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
nav.scrolled {
padding: 0.75rem 0;
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
}
.logo {
display: flex;
align-items: center;
font-size: 1.25rem;
font-weight: 700;
color: var(--text);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--primary);
}
/* Hero Section */
.hero {
background: var(--gradient);
color: var(--white);
padding: 8rem 0 4rem;
text-align: center;
}
.hero h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--white);
}
.hero .subtitle {
font-size: 1.25rem;
opacity: 0.9;
margin-bottom: 2rem;
color: var(--white);
}
.event-details {
display: flex;
justify-content: center;
gap: 3rem;
margin-top: 2rem;
}
.detail {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.detail strong {
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.8;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
.cta-buttons .btn {
padding: 0.75rem 1.5rem;
background: var(--white);
color: var(--primary);
border: none;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
.cta-buttons .btn:hover {
background: var(--primary-dark);
color: var(--white);
}
/* Main Content */
.main-content {
padding: 4rem 0;
}
.section-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 2rem;
color: var(--primary);
text-align: center;
}
.section-content {
background: var(--white);
padding: 2rem;
border-radius: 1rem;
box-shadow: var(--shadow);
margin-bottom: 2rem;
}
.section-content h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: var(--primary);
}
.section-content h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: var(--primary);
text-align: center;
}
.section-content ul {
list-style: disc;
padding-left: 2rem;
margin-bottom: 1.5rem;
}
.section-content ul li {
margin-bottom: 0.5rem;
}
.section-content p {
margin-bottom: 1rem;
color: var(--text-light);
}
/pricing/
.pricing-table {
background: var(--white);
padding: 2rem;
border-radius: 1rem;
box-shadow: var(--shadow);
margin-bottom: 2rem;
}
.pricing-table table {
width: 100%;
border-collapse: collapse;
text-align: center;
}
.pricing-table th,
.pricing-table td {
padding: 1rem;
border: 1px solid var(--border);
}
.pricing-table th {
background: var(--primary);
color: var(--white);
font-weight: 600;
}
.pricing-table td {
background: var(--background);
color: var(--text);
}
.pricing-table th,
.pricing-table td {
padding: 1rem;
border: 1px solid gray; /* Black borders */
}
.pricing-table ul {
list-style: none;
padding: 0;
margin: 0;
text-align: left;
}
.pricing-table ul li {
margin-bottom: 0.5rem;
color: var(--text-light);
}
.pricing-table ul li::before {
content: "•";
color: var(--primary);
margin-right: 0.5rem;
}
@keyframes flash {
0%, 100% {
background-color:gold;
}
50% {
background-color: darkgoldenrod;
}
}
.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
animation: flash 1.5s infinite;
}
.btn-register {
padding: 0.75rem 1.5rem;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 0.5rem;
font-weight: 600;
text-align: center;
text-decoration: none;
transition: background-color 0.3s, transform 0.3s;
}
.btn-register:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}
/* Speakers Section */
.speakers-section {
margin-bottom: 4rem;
}
.speakers-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.speaker-card {
background: var(--white);
padding: 1.5rem;
border-radius: 1rem;
box-shadow: var(--shadow);
text-align: center;
}
.speaker-card img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 1rem;
object-fit: cover;
}
.speaker-card h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--primary);
}
.speaker-card p {
font-size: 0.875rem;
color: var(--text-light);
margin-bottom: 0.5rem;
}
.speaker-card .affiliation {
font-size: 0.875rem;
color: var(--text);
font-weight: 500;
}
/* Footer */
.footer {
background: var(--text);
color: #94a3b8;
padding: 4rem 0 2rem;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-section {
margin-bottom: 2rem;
}
.footer-logo {
display: flex;
align-items: center;
gap: 0.75rem;
color: white;
font-weight: 700;
font-size: 1.5rem;
margin-bottom: 1.5rem;
}
.footer-logo img {
height: 100px;
width: auto;
}
.footer-section h3 {
color: white;
font-size: 1.25rem;
margin-bottom: 1.5rem;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.75rem;
}
.footer-section ul li a {
color: #94a3b8;
text-decoration: none;
transition: color 0.3s;
}
.footer-section ul li a:hover {
color: white;
}
.newsletter-form {
display: flex;
gap: 0.5rem;
}
.newsletter-input {
flex: 1;
padding: 0.75rem;
border: 1px solid #334155;
border-radius: 0.5rem;
background: #1e293b;
color: white;
font-size: 1rem;
}
.newsletter-btn {
padding: 0.75rem 1.5rem;
background: var(--primary);
color: white;
border: none;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s;
}
.newsletter-btn:hover {
background: var(--primary-dark);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #334155;
color: #94a3b8;
}
.social-icons {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
}
.social-icons a {
color: #94a3b8; /* Light gray color for icons */
text-decoration: none;
transition: color 0.3s;
}
.social-icons a:hover {
color: var(--primary); /* Change to primary color on hover */
}
.social-icons i {
width: 24px;
height: 24px;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero {
padding: 6rem 0 3rem;
}
.hero h1 {
font-size: 2rem;
}
.event-details {
flex-direction: column;
gap: 1.5rem;
}
.cta-buttons {
flex-direction: column;
gap: 1rem;
}
}
/* New Countdown Styles */
.countdown {
--number-color: hsl(0 0% 25%);
--text-color: hsl(0 0% 25%);
--dot-color: hsl(0, 0%, 10%); /* Dark gray for inactive dots */
--dot-color-remaining: hsl(240, 100%, 50%); /* Blue for remaining dots */
--dot-color-active: hsl(0, 100%, 50%);
font-family: system-ui, sans-serif;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
width: min(60rem, 100%);
margin-inline: auto;
container: inline-size;
margin-bottom: 4rem;
text-align: center;
}
.countdown > .part {
aspect-ratio: 1/1;
display: grid;
place-items: center;
}
.countdown > .part > .remaining {
grid-area: 1/1;
color: hsl(0 0% 100%);
display: grid;
text-align: center;
font-size: 4cqi;
}
.countdown > .part > .remaining > .number {
color: var(--number-color);
}
.countdown > .part > .remaining > .text {
color: var(--text-color);
text-transform: uppercase;
font-size: 0.5em;
}
.countdown > .part > .dot-container {
grid-area: 1/1;
height: 100%;
width: 4%;
rotate: calc(360deg / var(--dots) * var(--dot-idx));
}
.countdown > .part > .dot-container > .dot {
width: 100%;
aspect-ratio: 1/1;
background-color: var(--dot-color);
border-radius: 50%;
transition: background-color 0.25s;
}
.countdown > .part > .dot-container > .dot[data-active="true"] {
background-color: var(--dot-color-remaining);
}
.countdown > .part > .dot-container > .dot[data-active="true"][data-lastactive="true"] {
background-color: var(--dot-color-active);
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background: var(--white);
box-shadow: var(--shadow);
border-radius: 0.5rem;
min-width: 200px;
z-index: 1;
}
.dropdown-content a {
color: var(--text-light);
padding: 0.75rem 1rem;
text-decoration: none;
display: block;
transition: background-color 0.3s, color 0.3s;
}
.dropdown-content a:hover {
background: var(--primary);
color: var(--white);
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .nav-links a {
color: var(--primary);
}
@media (max-width: 768px) {
/* Mobile Navbar */
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 1rem;
box-shadow: var(--shadow);
}
.nav-links.active {
display: flex;
}
.hamburger {
display: block;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}
.dropdown-content {
position: static;
box-shadow: none;
}
/* Hero Adjustments */
.hero {
padding: 6rem 0 2rem;
}
.hero h1 {
font-size: 2rem;
}
.event-details {
gap: 1rem;
}
/* Pricing Table Scroll */
.pricing-scroll {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.pricing-table {
min-width: 600px;
}
.pricing-table th,
.pricing-table td {
font-size: 0.875rem;
padding: 0.75rem;
}
/* Footer Adjustments */
.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.newsletter-form {
flex-direction: column;
}
/* General Mobile Adjustments */
.container {
padding: 0 1rem;
}
.section-content {
padding: 1rem;
}
.btn-register {
width: 100%;
margin-bottom: 0.5rem;
}
.register-buttons {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
}
.hamburger {
display: none; /* Hide by default on desktop */
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}
/* Show hamburger only on mobile */
@media (max-width: 768px) {
.hamburger {
display: block;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 1rem;
box-shadow: var(--shadow);
}
.nav-links.active {
display: flex;
}
}
</style>
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="index.html" class="logo">
<img src="rsummits.png" alt="International Conference on Nano technology: 2025 Logo" width="60" height="60">
</a>
<a href="abstract_submit_conf19.html" class="logo">
<img src="cmelogo.png" alt="International Conference on Nano technology: 2025 Logo" width="80" height="60">
<span>International Conference on Nano technology</span>
<div class="nav-links">
<a href="conf19.html" class="active">Home</a>
<a href="abstract_submit_conf19.html">Submit Abstract</a>
<a href="reg_conf19.html">Register</a>
<div class="dropdown">
<a href="#" class="dropbtn">Program</a>
<div class="dropdown-content">
<a href="Nanotechnology.pdf" target="_blank">Scientific Program</a>
<a href="broch.pdf" target="_blank">Download Brochure</a>
<a href="final_prog.pdf" target="_blank">Final Program</a>
</div>
</div>
<a href="contact.html">Contact</a>
</div>
</div>
</nav>
<header class="hero">
<div class="container">
<h1>International Conference on Nano technology</h1>
<div class="event-details">
<div class="detail">
<strong>Submission Deadline</strong>
<span>August 1, 2025</span>
</div>
<div class="detail">
<strong>Conference Dates</strong>
<span>August 22-23, 2025</span>
</div>
<div class="detail">
<strong>Location</strong>
<span>Virtual Conference</span>
</div>
</div>
<div class="cta-buttons">
<a href="abstract_submit_conf19.html" class="btn">Submit Abstract</a>
<a href="reg_conf19.html" class="btn">Register Now</a>
</div>
</div>
</header>
<main class="main-content">
<div class="container">
<!-- Countdown Section -->
<section class="countdown-section">
<h1>International Conference on Nano technology 2025</span></h1>
<div class="countdown" data-target-date="2025-08-22 00:00:00"></div>
</section>
<!-- Speakers Section -->
<section class="speakers-section">
<h2 class="section-title">Featured Speakers</h2>
<div class="speakers-grid">
<div class="speaker-card">
<img src="DrGeorge.jpg" alt="Dr. Georgios Manginas">
<h3>Dr. Georgios Manginas</h3>
<div class="title"></div>
<div class="affiliation">NCSR Demokritos</div>
<div class="bio">
Georgios Manginas has completed 3 Masters, in Nanotechnology, Materials Science and Renewable Energy from NTUA, University of York and Heriott Watt respectively.. Currently, he is currently working in the Ministry of Digital Transformation in Greece, and has presented in 6 different conferences.
</div>
<div class="expertise">
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
<div class="speaker-card">
<img src="DrRadwa Tarek Rashad Shehata.jpg" alt="Dr.Radwa Tarek Rashad Shehata">
<h3>Dr.Radwa Tarek Rashad Shehata</h3>
<div class="title">Lecturer, Basic Science Department</div>
<div class="affiliation">Misr Higher Institute for Engineering and Technology</div>
<div class="bio">
Dr. Radwa Tarek Rashed Shehata, Lecturer at Misr Higher Institute, Egypt, specializes in nanotechnology-based thermodynamic and conductance studies. She holds a Ph.D. in Physical Chemistry, has published widely, presented internationally, and is known for her teaching and research leadership.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">She has presented at six national and international conferences, guided diverse students, and is recognized for effective teaching, strong administration, and creating an engaging, well-managed learning environment.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrMohammad Taha Etiwi.jpg" alt="Dr.Mohamad Taha Etiwi">
<h3>Dr.Mohamad Taha Etiwi</h3>
<div class="title">Chemistry Researcher & Lecturer</div>
<div class="affiliation"></div>
<div class="bio">
Dr. Mohamad Taha Etiwi is a chemistry researcher and lecturer specializing in water treatment, nanomaterials, and pollutant removal. His work focuses on adsorption processes using engineered nanostructures. He has published in leading journals and is involved in projects developing sustainable chemical solutions to environmental and industrial challenges.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Water treatment, nanomaterials, pollutant removal technologies, adsorption processes with engineered nanostructures.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="Dr Aruna.jpg" alt="Dr.Aruna Devi Rasu">
<h3>Dr.Aruna Devi Rasu</h3>
<div class="title">Professor</div>
<div class="affiliation">Autonomous University of Queretaro</div>
<div class="bio">
Dr. Aruna Devi Rasu Chettiar is a Professor at the Autonomous University of Queretaro, Mexico, specializing in nanomaterials, thin films, and MXene-based nanocomposites for energy applications. She has published extensively, presented at global conferences, and supervises doctoral research projects with international collaborations.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Nanomaterials, thin films, and MXene-based nanocomposites for energy applications.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="Prof.Luiz Moutinho.jpg" alt="Dr.Luiz Moutinho">
<h3>Dr.Luiz Moutinho</h3>
<div class="title">Visiting Professor of Marketing</div>
<div class="affiliation">University of Suffolk, UK & IPAM Portugal</div>
<div class="bio">
Prof.Luiz Moutinho, Visiting Professor at the University of Suffolk and IPAM, is a leading scholar in marketing and futures research. Recognized among the world’s top researchers, he has authored 41 books, over 160 journal articles, and delivered lectures in 63 countries.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Marketing, Futures Research, Artificial Intelligence, Consumer Behaviour, Neuroscience in Marketing.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrManisha mhetre.jpg" alt="Dr.Manisha Rajesh Mhetre">
<h3>Dr.Manisha Rajesh Mhetre</h3>
<div class="title">Assistant professor</div>
<div class="affiliation">Vishwakarma Institute of Technology</div>
<div class="bio">
Dr. Manisha Mhetre, Assistant Professor at Vishwakarma Institute of Technology, Pune, has 30 years of academic and industrial experience. With expertise in instrumentation, IoT, and biomedical systems, she has over 50 publications, multiple patents, and leads funded projects. She actively organizes conferences, workshops, and collaborates with industry and academia.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Instrumentation & Control, Electronics, IoT, Data Science, Industrial Automation, Biomedical Systems.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrBarkat.jpg" alt="Dr. Barkat Ali Khan">
<h3>Dr. Barkat Ali Khan</h3>
<div class="title">Associate Professor & Dean</div>
<div class="affiliation">Director, Office of Research, Innovation and Commercialization (ORIC)</div>
<div class="bio">
Dr. Barkat Ali Khan, Dean and ORIC Director at Gomal University, has 170+ publications (IF 400+, h-index 38), presented globally, and serves as chief editor for multiple journals.
</div>
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">His area of research interest focuses on pharmacokinetics of ingredients responsible for skin rejuvenation, formulation development of polyphenolic emulsions, permeability studies, and polyelectrolytes/ polyplex based nanoparticles in drug delivery technology.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrTokeer.jpg.JPG" alt="Dr.Tokeer Ahmad">
<h3>Dr.Tokeer Ahmad</h3>
<div class="title">Professor</div>
<div class="affiliation">Department of Chemistry, Jamia Millia Islamia</div>
<div class="bio">
Dr. Tokeer Ahmad, Professor of Chemistry at Jamia Millia Islamia, holds a Ph.D. from IIT Delhi. Author of 228 papers with 10,000+ citations (h-index 60), he has earned multiple awards, supervised 16 Ph.D.s, delivered 220 talks, and is a Fellow of the Royal Society of Chemistry.
</div>
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Prof. Ahmad has ranked among the World’s Top 2% Scientists for five consecutive years since 2020, in both career-long and annual lists by Stanford University, USA.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrBernd Blobel.jpg" alt="Dr.Prof.Dr.habil.Bernd Blobel">
<h3>Prof.Dr.habil.Bernd Blobel</h3>
<div class="title">Medical Faculty</div>
<div class="affiliation">University of Regensburg, Germany</div>
<div class="bio">
Prof. Dr. habil. Bernd Blobel – Former Head of the German National eHealth Competence Center, University of Regensburg. Expert in 5P medicine, healthcare digitalization, and interoperability standards with over 600 publications and extensive global contributions to medical informatics and health system transformation.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Pioneer in 5P medicine, healthcare digitalization, and interoperability standards, transforming complex health systems into intelligent, ethical, and globally connected ecosystems.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrRoopSandeep.jpg" alt="Asst.Prof.Roopsandeep Bammidi">
<h3>Asst.Prof.Roopsandeep Bammidi</h3>
<div class="title">Assistant Professor</div>
<div class="affiliation">Department of Mechanical Engineering</div>
<div class="bio">
Roopsandeep Bammidi, Assistant Professor at AITAM, specializes in biomechanical engineering, microswimmers, and microfluidics. Pursuing his Ph.D. at NIT Andhra Pradesh, his research focuses on bioinspired Ocimum Sanctum–Graphene Helical Microswimmers. He has published widely, holds patents, and actively contributes to professional engineering societies.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Biomechanical engineering, microswimmers, microfluidics, computational material science, and AI/ML in engineering.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrLuca Pavic.jpg" alt="Dr.Luka Pavić">
<h3>Dr.Luka Pavić</h3>
<div class="title">Senior Research Associate</div>
<div class="affiliation">Ruđer Bošković Institute (RBI)</div>
<div class="bio">
Dr. Luka Pavić, Senior Research Associate at the Ruđer Bošković Institute, specializes in functional materials and phosphate-based glasses. His research focuses on structure–property relationships, ionic and polaronic conduction, and crystallization processes. He has published over 90 papers and collaborates internationally on advanced materials characterization.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Functional materials, phosphate-based glasses, ionic/polaronic conduction mechanisms, crystallization processes, electrical characterization of advanced materials.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
<div class="speaker-card">
<img src="DrPAULO DE MORAIS.jpg" alt="Dr.Paulo César DE MORAIS">
<h3>Dr.Paulo César DE MORAIS</h3>
<div class="title">Emeritus Professor of Physics</div>
<div class="affiliation">Catholic University of Brasília & University of Brasília</div>
<div class="bio">
Paulo C. de Morais, PhD, is a globally recognized physicist specializing in nanomaterials. With over 500 publications, 13,500+ citations, and 16 patents, he has held prestigious roles in Brazil and China. He’s a senior IEEE member and recipient of multiple international awards, including China’s 1000 Foreign Expert honor.
<div class="expertise">
<h3>Magic Touch</h3>
<div class="expertise-title"></div>
<div class="expertise-tags">
<span class="expertise-tag">Expert in nanomaterials, magnetic nanostructures, quantum dots, and solid-state physics.</span>
<span class="expertise-tag"></span>
<span class="expertise-tag"></span>
</div>
</div>
</div>
</div>
</section>
<!-- Introduction to Nano technology Section -->
<section class="section-content">
<h2>Introduction of Nano technology</h2>
<p>Nanotechnology is a cutting-edge field of science and engineering that involves the design, manipulation, and application of materials at the nanoscale—typically between 1 and 100 nanometers. At this scale, materials exhibit unique physical, chemical, and biological properties that differ significantly from their larger-scale counterparts. These properties open up exciting possibilities across a wide range of industries, including medicine, electronics, energy, environmental science, and materials engineering. In healthcare, for example, nanotechnology enables targeted drug delivery systems and advanced diagnostic tools. In electronics, it contributes to the development of faster, smaller, and more efficient devices. Nanotechnology also plays a vital role in creating lightweight and durable materials, improving energy storage, and reducing environmental pollutants. As research and development continue to grow, nanotechnology holds the potential to revolutionize industries, enhance everyday products, and address complex global challenges with innovative, high-performance solutions.
</p>
</section>