This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
forked from wdmc-nitj/nitj-site
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
2567 lines (2488 loc) · 126 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<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" />
<!-- Favicon and title -->
<link rel="icon" type="image/x-icon" href="./public/assets/images/nitj-logo.png" />
<title>Dr. B.R. Ambedkar National Institute of Technology, Jalandhar</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
<!-- Icons -->
<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="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!-- CSS linking -->
<link rel="stylesheet" href="style.css" />
<script src="./js/data.js" defer></script>
<style>
/* Customizing the Scrollbar */
.material-symbols-outlined {
font-variation-settings: "FILL" 0, "wght" 400, "grad" 0, "opzs" 48;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-resizer {
background-color: #ffffff;
}
/* Track */
::-webkit-scrollbar-track {
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: hsla(201, 96%, 26%);
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #212121;
}
/* Gallery Effects */
.box {
flex: 1;
overflow: hidden;
transition: 0.5s;
line-height: 0;
}
.box>img {
width: 100%;
height: 100%;
border: 0.2rem solid white;
border-radius: 8px;
-o-object-fit: cover;
object-fit: cover;
transition: ease 0.75s;
}
.box:hover {
flex: 1 1 30%;
/* box-shadow: 0px 6px 6px rgba(73, 73, 73, 0.65); */
z-index: 1;
cursor: pointer;
}
.box:hover>img {
opacity: 1;
width: 100%;
height: 100%;
}
.base-image {
margin-top: 40px;
background-image: url("public/assets/images/nitj3.jpg"),
linear-gradient(rgb(255, 255, 255), rgba(4, 4, 4));
mask-image: linear-gradient(0deg, white, white, white, transparent);
-webkit-mask-image: linear-gradient(0deg,
white,
white,
white,
transparent);
background-color: #cccccc;
height: 400px;
background-position: 0% 28%;
background-repeat: no-repeat;
background-size: cover;
}
.base-image-2 {
margin-top: 40px;
background-image: url("public/assets/images/nitj3.jpg"),
linear-gradient(rgb(255, 255, 255), rgba(4, 4, 4));
background-color: #cccccc;
height: 300px;
background-position: 58% 28%;
background-repeat: no-repeat;
background-size: cover;
}
.main-shadow {
text-shadow: rgb(0 0 0) 6px -1px 5px;
}
.carousel-open:checked+.carousel-item {
position: static;
opacity: 100;
}
.carousel-item {
-webkit-transition: opacity 0.9s ease-in-out;
transition: opacity 1s ease-in-out 0.2s;
}
#carousel-1:checked~.control-1,
#carousel-2:checked~.control-2,
#carousel-3:checked~.control-3,
#carousel-4:checked~.control-4 {
display: block;
}
.carousel-indicators {
list-style: none;
margin: 0;
padding: 0;
position: absolute;
bottom: 2%;
left: 0;
right: 0;
text-align: center;
z-index: 10;
}
#menu .menu-content ul li.selected a {
color: hsla(201, 96%, 26%);
font-weight: bold;
font-size: 1.5rem;
}
#menu .menu-content .extra-links a.extra-selected {
font-weight: 600;
color: var(--dark);
}
</style>
</head>
<body class="font-body relative text-dark-purple scroll-smooth">
<!-- Menu for mobile starts-->
<div class=" z-50 p-0 top-0 flex items-start justify-start h-full w-full fixed bg-transparent backdrop-blur-2xl"
id="nav-menu" style="display: none" onclick="priority=4;executor();">
<div id="menu" class="h-screen w-2/3 z-10 relative" onclick="priority=3;executor();">
<div id="menu-content" class="menu-content z-50 bg-accent h-full relative" onclick="priority=2;executor();">
<!-- cross button-->
<div class="top-bar">
<div class="menu-btn z-50 flex justify-end py-4 px-4">
<div class="line bg-white w-[20px] h-[2px] rotate-45 absolute" onclick="priority=1;executor();"></div>
<div class="line bg-white w-[20px] h-[2px] -rotate-45" onclick="priority=1;executor();"></div>
</div>
</div>
<div
class="extra-links absolute bottom-1.5 left-0 w-full select-none flex flex-col align-middle justify-center">
<a class="text-center text-white" href="/">Privacy Policy</a>
<a class="text-center text-white" href="/">Terms & conditions</a>
</div>
</div>
</div>
</div>
<!-- Menu for mobile ends-->
<header class="fixed bg-white top-0 right-0 left-0 z-40">
<!-- TOP NAV BAR stats -->
<div id="top_bar"
class="absolute top-0 right-0 left-0 transition-transform delay-200 h-7 bg-accent py-0.5 px-2 sm:px-12 text-xs uppercase text-white shadow-md">
<div class="container mx-auto flex flex-row justify-between">
<div class="basis-1/2">
<div class="flex flex-row justify-center gap-4 sm:gap-6">
<div class="flex items-center">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
engineering
</span>
<a href="" class="hidden sm:block pl-1.5 text-xs">Jobs</a>
</div>
<div class="flex items-center">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
add_business
</span>
<a href="" class="hidden sm:block pl-1.5 text-xs">Tenders</a>
</div>
<div class="flex items-center">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
badge
</span>
<a href="" class="hidden sm:block pl-1.5 text-xs">Placements</a>
</div>
<div class="flex items-center">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
event_note
</span>
<a href="" class="hidden sm:block pl-1.5 text-xs">Resources</a>
</div>
<div class="flex items-center">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
psychology_alt
</span>
<a href="" class="hidden sm:block pl-1.5 text-xs">Help</a>
</div>
</div>
</div>
<div class="basis-1/2 sm:pl-8 pl-1">
<div class="flex flex-row gap-4 justify-between">
<div class="hidden sm:flex basis-1/6 gap-4 flex-row items-center">
<a href="https://www.facebook.com/NITJofficial"><i class="fa-brands fa-facebook text-lg"></i></a>
<a href="https://www.instagram.com/nitjofficial/"><i class="fa-brands fa-instagram text-lg"></i></a>
<a href="https://twitter.com/NITJofficial"><i class="fa-brands fa-twitter text-lg"></i></a>
</div>
<div class="flex sm:basis-1/3 basis-1/2 justify-center items-center">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
g_translate
</span>
<a href="" class="hidden sm:block pl-1">हिन्दी / <span class="text-lg">A</span>+A-</a>
</div>
<div class="flex sm:basis-1/3 basis-1/2 justify-center items-center">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
contacts
</span>
<a href="" class="hidden sm:block pl-1.5 text-xs">ERP</a>
</div>
</div>
</div>
</div>
</div>
<!-- top nav bar ends -->
<!-- INSTITUTE LOGO & NAME starts -->
<div id="instituteNameContainer"
class="relative sm:px-0 px-20 sm:w-full container p-0 left-[10px] sm:left-0 h-14 max-h-14 sm:h-20 sm:max-h-20">
<div class="mySlides mt-7">
<div class="align-center flex flex-row justify-end sm:justify-between bg-white py-2.5">
<div
class="institute_name sm:max-w-lg sm:basis-1/2 justify-start text-center sm:text-lg font-semibold uppercase hidden sm:block">
<p>Dr B R AMBEDKAR NATIONAL INSTITUTE OF TECHNOLOGY JALANDHAR</p>
</div>
<div
class="institute_name flex sm:max-w-lg sm:basis-1/2 justify-end sm:px-16 text-center text-sm sm:text-xl font-bold uppercase">
<p>डॉ बी आर अंबेडकर राष्ट्रीय प्रौद्योगिकी संस्थान जालंधर</p>
</div>
</div>
</div>
<div class="mySlides mt-7">
<div class="align-center flex flex-row justify-end sm:justify-between bg-white py-2.5">
<div
class="institute_name sm:max-w-lg sm:basis-1/2 justify-center px-16 text-center sm:text-xl font-bold uppercase hidden sm:block">
<p>डॉ बी आर अंबेडकर राष्ट्रीय प्रौद्योगिकी संस्थान जालंधर</p>
</div>
<div
class="institute_name flex sm:max-w-lg sm:basis-1/2 justify-center sm:px-8 text-center text-sm sm:text-xl font-bold uppercase">
<p>ਡਾ ਬੀ ਆਰ ਅੰਬੇਡਕਰ ਨੈਸ਼ਨਲ ਇੰਸਟੀਚਿਊਟ ਟੈਕਨਾਲੋਜੀ ਜਲੰਧਰ</p>
</div>
</div>
</div>
<div class="mySlides mt-7">
<div class="align-center flex flex-row justify-end sm:justify-between bg-white py-2.5">
<div
class="institute_name sm:max-w-lg sm:basis-1/2 justify-center px-8 text-center sm:text-xl font-bold uppercase hidden sm:block">
<p>ਡਾ ਬੀ ਆਰ ਅੰਬੇਡਕਰ ਨੈਸ਼ਨਲ ਇੰਸਟੀਚਿਊਟ ਟੈਕਨਾਲੋਜੀ ਜਲੰਧਰ</p>
</div>
<div
class="institute_name flex sm:max-w-lg sm:basis-1/2 justify-center text-center text-xs sm:text-lg font-semibold uppercase">
<p>Dr B R AMBEDKAR NATIONAL INSTITUTE OF TECHNOLOGY JALANDHAR</p>
</div>
</div>
</div>
</div>
<!-- INSTITUTE LOGO & NAME ends -->
<!-- Logo CONTAINER starts -->
<div
class="absolute hidden sm:block left-[50px] z-40 mx-auto -translate-x-1/2 -translate-y-1/3 sm:translate-y-0 scale-75 sm:scale-100 sm:left-1/2"
style="width: 230px">
<img src="public/assets/images/Rectangle 47 (1).png" alt="" />
</div>
<a href="/index.html">
<div id="logo_250"
class="absolute h-[120px] aspect-square left-[50px] sm:left-1/2 scale-[0.40] sm:scale-100 -translate-y-1/3 top-9 sm:top-7 sm:translate-y-0 z-40 -translate-x-1/2 sm:py-0">
<img src="public/assets/images/logo_250.png" alt="" />
</div>
</a>
<!-- Logo CONTAINER ends -->
<!-- NAV BAR starts-->
<div class="sm:block bg-accent drop-shadow-lg z-40">
<div class="container">
<div class="z-40 flex h-7 sm:h-10 max-w-screen px-4 flex-row justify-between bg-accent text-lg text-white">
<div class="flex items-center sm:hidden h-full">
<span class="material-symbols-outlined pr-2"
style='font-variation-settings: "FILL" 0, "wght" 200, "grad" 0, "opzs" 40;' onclick="open_menu();"> menu
</span>
<a href="/index.html" class="h-full">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
home
</span>
</a>
</div>
<div class="sm:hidden block">
<button type="button"
class="block material-symbols-outlined duration-50 cursor-pointer text-center transition ease-in-out hover:box-border sm:hover:h-10 sm:hover:w-10 hover:rounded-full hover:border-2 hover:border-accent"
data-bs-toggle="tooltip" data-bs-placement="bottom" title="Tap to search" onclick="showSearchPage(event)">
search
</button>
</div>
<div class="basis-2/5 hidden sm:block">
<div class="flex w-full flex-row justify-between px-4">
<div class="flex items-center">
<a href="/index.html" class="hidden sm:block text-xs">
<span class="material-symbols-outlined" style="
font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0,
'opzs' 40;
">
home
</span>
</a>
</div>
<div id="menu-1" class="group cursor-default hover:bg-blue-800">
<div id="Administration" class="p-1.5 font-medium uppercase">Administration</div>
<!-- <div id="drop-down"
class="absolute mt-0.5 hidden gap-5 bg-white p-5 text-sm shadow-sm group-hover:flex">
<div class="flex flex-col gap-5 items-center">
<div id="col"
class="flex flex-col w-52 gap-5 border-2 rounded-b-xl border-accent hover:bg-orange-500 hover:border-orange-500 ">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center"><a href='/admin/index.html'>ABOUT US</a></div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
<a href="/admin/index.html#vision-mission">Vision, Mission & Quality Policy</a>
</li>
<li class="hover:text-[#FF6600]">
Virtual Tour
</li>
<li class="hover:text-[#FF6600]">
Institute History
</li>
<li class="hover:text-[#FF6600]">
Explore NITJ
</li>
<li class="hover:text-[#FF6600]">
NITJ Rankings & Awards
</li>
<li class="hover:text-[#FF6600]">
Institute Prospectus
</li>
<li class="hover:text-[#FF6600]">
Location
</li>
</ul>
</div>
</div>
</div>
</div>
<img src="public/assets/images/logo_250.png" alt="" style="width: 100px;" />
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:border-orange-500 hover:bg-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">LEADERSHIP</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 bg-white px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Organisational Chart
</li>
<li class="hover:text-[#FF6600]">
Chariperson
</li>
<li class="hover:text-[#FF6600]">
Director
</li>
<li class="hover:text-[#FF6600]">
Registrar
</li>
<li class="hover:text-[#FF6600]">
Academic administration
</li>
<li class="hover:text-[#FF6600]">
Student Welfare
</li>
<li class="hover:text-[#FF6600]">
Faculty Welfare
</li>
<li class="hover:text-[#FF6600]">
Planning and Development
</li>
<li class="hover:text-[#FF6600]">
Research and Consultancy
</li>
<li class="hover:text-[#FF6600]">
International Affairs
</li>
<li class="hover:text-[#FF6600]">
Hostel Administration
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:border-orange-500 hover:bg-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">GOVERNING BODIES</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 bg-white px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
NIT Council
</li>
<li class="hover:text-[#FF6600]">
Board of Governors
</li>
<li class="hover:text-[#FF6600]">
Senate
</li>
<li class="hover:text-[#FF6600]">
Standing Committee of the Senate
</li>
<li class="hover:text-[#FF6600]">
Finance Committee
</li>
<li class="hover:text-[#FF6600]">
Building and Works Committee
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">CELLS</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 bg-white px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
E-Cell
</li>
<li class="hover:text-[#FF6600]">
Equal Opportunities and
SC/ST/OBC/PwD cell
</li>
<li class="hover:text-[#FF6600]">
Rajbhasha Cell
</li>
<li class="hover:text-[#FF6600]">
RTI Cell
</li>
<li class="hover:text-[#FF6600]">
Student Grievances Cell
</li>
<li class="hover:text-[#FF6600]">
Faculty Grievances Cell
</li>
<li class="hover:text-[#FF6600]">
Staff Grievances Cell
</li>
<li class="hover:text-[#FF6600]">
Public Grievances
</li>
<li class="hover:text-[#FF6600]">
Women Cell
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">COMMITTEES</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 bg-white px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Institute Development
</li>
<li class="hover:text-[#FF6600]">
Internal Complaint
</li>
<li class="hover:text-[#FF6600]">
Print, Digital Media and Newsletter
</li>
<li class="hover:text-[#FF6600]">
Social Media
</li>
<li class="hover:text-[#FF6600]">
Website Development and Management
</li>
</ul>
</div>
</div>
</div>
</div>
</div> -->
</div>
<div id="menu-2" class="group cursor-default hover:bg-blue-800">
<div id="Academics" class="p-1.5 font-medium uppercase">Academics</div>
<!-- <div id="drop-down"
class="absolute mt-0.5 hidden -translate-x-28 gap-5 bg-white p-5 text-sm shadow-sm group-hover:flex">
<div id="col"
class="flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">DEPARTMENTS</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 bg-white px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Biotechnology
</li>
<li class="hover:text-[#FF6600]">
Chemistry
</li>
<li class="hover:text-[#FF6600]">
Chemical Engineering
</li>
<li class="hover:text-[#FF6600]">
Civil Engineering
</li>
<li class="hover:text-[#FF6600]">
Computer Science and Engineering
</li>
<li class="hover:text-[#FF6600]">
Electronics and Communication Engineering
</li>
<li class="hover:text-[#FF6600]">
Electrical Engineering
</li>
<li class="hover:text-[#FF6600]">
Humanities and Management
</li>
<li class="hover:text-[#FF6600]">
Industrial and Production Engineering
</li>
<li class="hover:text-[#FF6600]">
Information Technology
</li>
<li class="hover:text-[#FF6600]">
Instrumentation and Control Engineering
</li>
<li class="hover:text-[#FF6600]">
Mathematics
</li>
<li class="hover:text-[#FF6600]">
Mechanical Engineering
</li>
<li class="hover:text-[#FF6600]">
Physics
</li>
<li class="hover:text-[#FF6600]">
Textile Technology
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="flex flex-col gap-5">
<div id="col"
class="flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">CENTERS</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Center for Energy and Environment
</li>
<li class="hover:text-[#FF6600]">
Center for Artificial Intelligence
</li>
<li class="hover:text-[#FF6600]">
Center for Continuing Education
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="h-full flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">ACADEMIC SYSTEM</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Academic Circulars & Notices
</li>
<li class="hover:text-[#FF6600]">
Academic Calender
</li>
<li class="hover:text-[#FF6600]">
Academic Regulations
</li>
<li class="hover:text-[#FF6600]">
Curriculum
</li>
<li class="hover:text-[#FF6600]">
Fee Structure
</li>
<li class="hover:text-[#FF6600]">
System of Evaluation and Grant of Division
</li>
<li class="hover:text-[#FF6600]">
Standard Operationg Procedures (SOP)
</li>
<li class="hover:text-[#FF6600]">
UMC Rules
</li>
<li class="hover:text-[#FF6600]">
General FAQs
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-col gap-5">
<div id="col"
class="flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">ACADEMIC SERVICES</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Student Portal LOGIN
</li>
<li class="hover:text-[#FF6600]">
Grade Sheets
</li>
<li class="hover:text-[#FF6600]">
Timetable
</li>
<li class="hover:text-[#FF6600]">
Upcoming Examination Schedules
</li>
<li class="hover:text-[#FF6600]">
Results
</li>
<li class="hover:text-[#FF6600]">
Online Application for Transcripts and Certificates
</li>
<li class="hover:text-[#FF6600]">
Online Application for Verification of Degree
</li>
<li class="hover:text-[#FF6600]">
CGPA Criteria and Medium of Education
</li>
<li class="hover:text-[#FF6600]">
Other Proformas
</li>
<li class="hover:text-[#FF6600]">
Contact Details
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">ACADEMIC FACILITIES</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Central Library
</li>
<li class="hover:text-[#FF6600]">
Computer Center
</li>
<li class="hover:text-[#FF6600]">
Central Workshop
</li>
<li class="hover:text-[#FF6600]">
Institute Instrumentation Center
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-col gap-5">
<div id="col"
class="flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">PROGRAM OF STUDY</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Bachelor of Technology
</li>
<li class="hover:text-[#FF6600]">
Master of Technology
</li>
<li class="hover:text-[#FF6600]">
Master of Business Administration
</li>
<li class="hover:text-[#FF6600]">
Master of Science
</li>
<li class="hover:text-[#FF6600]">
Post Graduate Diploma
</li>
<li class="hover:text-[#FF6600]">
Doctor of Philosophy
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">CONVOCATION</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Convocation 2022
</li>
<li class="hover:text-[#FF6600]">
Past Convocations
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-60 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">OTHER LINKS</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
UGC Act- Rules and Regulations
</li>
<li class="hover:text-[#FF6600]">
NIT Act and Statutes
</li>
<li class="hover:text-[#FF6600]">
Ministry of Education Notifications
</li>
<li class="hover:text-[#FF6600]">
National Education Policy 2020
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
<div id="menu-3" class="group cursor-default hover:bg-blue-800">
<div id="Admissions" class="p-1.5 font-medium uppercase">Admissions</div>
<!-- <div id="drop-down"
class="absolute mt-0.5 hidden -translate-x-1/3 gap-5 bg-white p-5 text-sm shadow-sm group-hover:flex">
<div class="flex flex-col gap-5">
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">PROSPECTIVE STUDENTS</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Why NITJ?
</li>
<li class="hover:text-[#FF6600]">
Explore NITJ
</li>
<li class="hover:text-[#FF6600]">
Discover Student Life
</li>
<li class="hover:text-[#FF6600]">
<a href="./admissions/courses_offered.html" target="_blank"> Courses Offered </a>
</li>
<li class="hover:text-[#FF6600]">
How to Apply
</li>
<li class="hover:text-[#FF6600]">
<a href="./admissions/admission_procedure.html" target="_blank"> Admissions Process </a>
</li>
<li class="hover:text-[#FF6600]">
Virtual Tour
</li>
<li class="hover:text-[#FF6600]">
<a href="./admissions/foreign.html" target="_blank"> International Students </a>
</li>
<li class="hover:text-[#FF6600] md:font-bold py-2">
Contact Details for Admission
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">ANTI RAGGING</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
Anti Ragging Act
</li>
<li class="hover:text-[#FF6600]">
Anti Ragging Affadvit
</li>
<li class="hover:text-[#FF6600]">
Institute Anti-ragging Rules
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-col gap-5">
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">JOIN NITJ</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
<a href="/admissions/index.html">B.Tech Admission</a>
</li>
<li class="hover:text-[#FF6600]">
<a href="/admissions/mtech_ccmt.html">M.Tech Admission</a>
</li>
<li class="hover:text-[#FF6600]">
<a href="/admissions/msc.html">Msc Admission</a>
</li>
<li class="hover:text-[#FF6600]">
<a href="/admissions/mba.html">MBA Admission</a>
</li>
<li class="hover:text-[#FF6600]">
<a href="/admissions/phd.html">Ph.D Admission</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="h-full flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">  INSTITUTE PROSPECTUS  </div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
<a href="/admissions/admission_procedure.html">B.Tech</a>
</li>
<li class="hover:text-[#FF6600]">
<a href="./admissions/src/prospectus.pdf" target="_blank"> M.Tech </a>
</li>
<li class="hover:text-[#FF6600]">
<a href="./admissions/src/prospectus.pdf" target="_blank"> M.Sc. </a>
</li>
<li class="hover:text-[#FF6600]">
<a href="./admissions/src/prospectus.pdf" target="_blank">MBA </a>
</li>
<li class="hover:text-[#FF6600]">
<a href="./admissions/src/prospectus.pdf" target="_blank"> Ph.D </a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
<div class="basis-2/5 hidden sm:block w-full">
<div class="flex w-full flex-row justify-between">
<div class="basis-4/5">
<div class="flex flex-row justify-between">
<div id="menu-4" class="group cursor-default hover:bg-blue-800">
<div id="Research" class="p-1.5 font-medium uppercase">Research</div>
<!-- <div id="drop-down"
class="absolute mt-0.5 hidden -translate-x-1/2 gap-5 bg-white p-5 text-sm shadow-sm group-hover:flex">
<div class="flex flex-col gap-5">
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">RESEARCH @ NITJ</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
<a href="https://vidwan.inflibnet.ac.in/searchc/search" target="_blank"> VIDWAN
(IRINS Instance) </a>
</li>
<li class="hover:text-[#FF6600]">
Research Publications
</li>
<li class="hover:text-[#FF6600]">
Research Jobs
</li>
<li class="hover:text-[#FF6600]">
Internships
</li>
<li class="hover:text-[#FF6600]">
Sponsored Research Projects
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="col"
class="flex flex-col rounded-b-xl w-52 gap-5 border-2 border-accent hover:bg-orange-500 hover:border-orange-500">
<div id="block" class="h-full">
<div id="head" class="h-full rounded-b-xl overflow-clip bg-accent hover:bg-orange-500">
<div class="p-2 text-center">INCUBATION @ NITJ</div>
<div class="h-full rounded-b-xl bg-white">
<ul class="flex flex-col gap-1 px-2 font-normal text-black">
<li class="hover:text-[#FF6600]">
STI Hub
</li>
<li class="hover:text-[#FF6600]">
E-Cell
</li>
<li class="hover:text-[#FF6600]">
Innovation Club
</li>
<li class="hover:text-[#FF6600]">
Institute Innovation Council
</li>
<li class="hover:text-[#FF6600]">
Technology Business Incubator
</li>
</ul>
</div>
</div>
</div>
</div>
</div>