-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1198 lines (1094 loc) · 49.5 KB
/
index.html
File metadata and controls
1198 lines (1094 loc) · 49.5 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">
<meta name="description"
content="Discover GMU's B.Tech in Computer Science - Cybersecurity program, featuring cutting-edge curriculum, expert faculty, and vibrant campus life.">
<meta name="keywords"
content="B.Tech Cybersecurity, GMU, Computer Science, Cybersecurity Education, Information Security">
<meta name="author" content="GM University">
<title>B.Tech Information security - GM University</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@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<style>
:root {
--primary: #3b1413;
--primary-dark: #250d0c;
--primary-light: #5c2221;
--secondary: #f6e8b1;
--secondary-light: #fffce6;
--accent: #ff6b33;
--accent-light: #ff8c5a;
--text: #111827;
--text-light: #374151;
--text-muted: #6b7280;
--bg-light: #f8fafc;
--bg-card: #ffffff;
--white: #ffffff;
--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
--shadow-sm: 0 3px 8px rgba(59, 20, 19, 0.12);
--shadow-md: 0 6px 16px rgba(59, 20, 19, 0.18);
--shadow-lg: 0 10px 28px rgba(59, 20, 19, 0.25);
--gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
--gradient-hero: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 40%, var(--accent) 100%);
--radius: 12px;
--radius-sm: 8px;
--radius-lg: 16px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: clamp(14px, 2.5vw, 16px);
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
color: var(--text);
line-height: 1.75;
background: var(--bg-light);
overflow-x: hidden;
text-align: center;
}
h1, h2, h3 {
color: var(--primary-dark);
font-weight: 700;
line-height: 1.2;
text-align: center ;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.8vw, 1.6rem); font-weight: 600; }
p {
font-size: clamp(0.9rem, 1.7vw, 1.1rem);
color: var(--text-light);
margin-bottom: 1.5rem;
text-align: justify;
}
/* Header */
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: var(--shadow-sm);
z-index: 1000;
padding: 1rem 2rem;
}
.header-content {
max-width: 1600px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo img {
width: clamp(80px, 2vw, 60px);
border-radius: 50%;
border: 2px solid var(--accent);
transition: var(--transition);
object-fit: cover;
}
.logo img:hover { transform: scale(1.1); }
.nav-list {
display: flex;
gap: 2rem;
list-style: none;
justify-content: center;
}
.nav-link {
color: var(--primary-dark);
text-decoration: none;
font-weight: 600;
font-size: clamp(0.9rem, 1.6vw, 1rem);
position: relative;
transition: var(--transition);
text-align: center;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: var(--transition);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.hamburger {
display: none;
font-size: 1.5rem;
background: none;
border: none;
color: var(--primary-dark);
cursor: pointer;
}
/* Hero */
.hero {
background: var(--gradient-hero);
color: var(--white);
text-align: center;
padding: clamp(15rem, 15vh, 12rem) 1.5rem;
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
background-size: 50px 50px;
animation: float 10s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(0.5deg); }
}
.hero-content {
max-width: 1200px;
padding: clamp(2rem, 5vw, 3rem);
background: rgba(0, 0, 0, 0.4);
border-radius: var(--radius-lg);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
z-index: 1;
}
.hero h1 {
margin-bottom: 1.5rem;
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
background: linear-gradient(135deg, var(--white), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero p {
font-size: clamp(1rem, 2vw, 1.2rem);
max-width: 800px;
margin: 0 auto 2rem;
opacity: 0.9;
}
.cta-form {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.cta-form input {
padding: 0.8rem 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: var(--radius-sm);
font-size: 1rem;
background: rgba(255, 255, 255, 0.1);
color: var(--white);
transition: var(--transition);
}
.cta-form input:focus {
outline: none;
border-color: var(--accent);
background: rgba(255, 255, 255, 0.2);
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 0.8rem;
padding: 0.8rem 2rem;
background: var(--secondary);
color: var(--primary-dark);
text-decoration: none;
border-radius: var(--radius);
font-weight: 600;
font-size: clamp(0.9rem, 1.6vw, 1rem);
box-shadow: var(--shadow-md);
transition: var(--transition);
text-align: center;
}
.cta-button:hover {
background: var(--accent);
color: var(--white);
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}
/* Sections */
.container {
max-width: 1600px;
margin: 0 auto;
padding: clamp(3rem, 7vw, 5rem) 1.5rem;
}
.section {
padding: clamp(3rem, 6vw, 4rem) 1.5rem;
margin-bottom: 4rem;
}
.section-title {
text-align: center;
margin-bottom: 2.5rem;
font-weight: 700;
}
.section-title::after {
content: "";
display: block;
width: 150px;
height: 6px;
background: var(--gradient-primary);
margin: 1rem auto;
border-radius: 4px;
}
.section-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.hod-photo {
display: block;
margin: 0 auto 1rem;
width: clamp(200px, 25vw, 220px);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
object-fit: cover;
border: 3px solid var(--accent-light);
transition: var(--transition);
}
.hod-photo:hover {
transform: scale(1.05);
box-shadow: var(--shadow-lg);
}
.about-images {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
margin-top: 2rem;
}
.about-images img {
width: clamp(45%, 48vw, 48%);
height: 220px;
object-fit: cover;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: var(--transition);
filter: brightness(0.95);
}
.about-images img:hover {
transform: scale(1.05);
box-shadow: var(--shadow-lg);
filter: brightness(1);
}
.vision-mission-grid,
.program-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.vision-mission-item,
.program-item,
.faculty-card,
.alumni-card,
.achievement-card {
background: var(--bg-card);
padding: 2rem;
border-radius: var(--radius);
box-shadow: var(--shadow-sm);
transition: var(--transition);
border: 1px solid rgba(59, 20, 19, 0.1);
text-align: center;
}
.vision-mission-item:hover,
.program-item:hover,
.faculty-card:hover,
.alumni-card:hover,
.achievement-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.faculty-grid,
.alumni-grid,
.gallery-grid,
.achievement-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2.5rem;
}
.faculty-card,
.alumni-card,
.achievement-card {
text-align: center;
}
.faculty-avatar,
.alumni-avatar {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 0 auto 1.5rem;
background: var(--gradient-primary);
display: grid;
place-items: center;
font-size: 2rem;
color: var(--white);
box-shadow: var(--shadow-md);
border: 3px solid var(--accent-light);
transition: var(--transition);
overflow: hidden;
}
.faculty-avatar img,
.alumni-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
transition: var(--transition);
filter: brightness(0.95);
}
.faculty-avatar:hover img,
.alumni-avatar:hover img {
transform: scale(1.1);
filter: brightness(1);
}
.faculty-name,
.alumni-name {
font-size: 1.4rem;
font-weight: 600;
color: var(--primary-dark);
}
.faculty-role,
.alumni-role {
color: var(--accent);
font-size: 1rem;
font-weight: 500;
margin-bottom: 1rem;
}
.faculty-specialization,
.alumni-specialization {
font-size: 0.95rem;
color: var(--text-light);
text-align: center;
}
.video-showcase {
padding: clamp(3rem, 7vw, 5rem) 1.5rem;
background: linear-gradient(135deg, var(--bg-light), rgba(246, 232, 177, 0.3));
text-align: center;
}
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 2rem;
max-width: 1400px;
margin: 0 auto;
}
.video-card {
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
overflow: hidden;
background: var(--bg-card);
transition: var(--transition);
}
.video-container {
position: relative;
padding-top: 56.25%;
}
.video-container iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.gallery-grid img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: var(--radius);
box-shadow: var(--shadow-sm);
cursor: pointer;
transition: var(--transition);
filter: brightness(0.95);
border: 2px solid var(--accent-light);
}
.gallery-grid img:hover {
transform: scale(1.05);
box-shadow: var(--shadow-md);
filter: brightness(1);
}
.achievement-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: var(--radius);
margin-bottom: 1rem;
box-shadow: var(--shadow-sm);
transition: var(--transition);
filter: brightness(0.95);
border: 2px solid var(--accent-light);
}
.achievement-card img:hover {
transform: scale(1.03);
box-shadow: var(--shadow-md);
filter: brightness(1);
}
/* Footer */
footer {
background: var(--gradient-primary);
color: var(--white);
padding: clamp(3rem, 6vw, 4rem) 1.5rem;
text-align: center;
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}
.footer-section h4 {
color: var(--secondary);
margin-bottom: 1rem;
font-size: 1.2rem;
}
.footer-section p,
.footer-section a {
color: var(--white);
font-size: 1rem;
margin-bottom: 0.5rem;
text-decoration: none;
text-align: center;
}
.footer-section a:hover { color: var(--secondary); }
.newsletter-form {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 1rem;
}
.newsletter-form input {
padding: 0.8rem;
border: none;
border-radius: var(--radius-sm);
font-size: 1rem;
width: 100%;
max-width: 300px;
}
.newsletter-form button {
padding: 0.8rem 1.5rem;
background: var(--accent);
color: var(--white);
border: none;
border-radius: var(--radius-sm);
cursor: pointer;
transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-light); }
.footer-bottom {
margin-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.3);
padding-top: 1rem;
font-size: 0.9rem;
}
/* Lightbox */
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
z-index: 2000;
align-items: center;
justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
max-width: 90%;
max-height: 90%;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
object-fit: contain;
border: 3px solid var(--accent);
}
.lightbox-close {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 2rem;
color: var(--white);
cursor: pointer;
transition: var(--transition);
}
.lightbox-close:hover {
color: var(--accent);
}
/* Table */
table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
}
th, td {
border: 1px solid var(--text-muted);
padding: 0.5rem;
text-align: center;
}
th {
background: var(--primary-light);
color: var(--white);
}
/* Responsive */
@media (max-width: 1024px) {
.nav-list { gap: 1.5rem; }
.hero { min-height: 60vh; padding: clamp(4rem, 12vh, 10rem) 1rem; }
.faculty-grid,
.alumni-grid,
.gallery-grid,
.achievement-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.about-images img { height: 200px; }
}
@media (max-width: 768px) {
.hamburger { display: block; }
.nav-list {
display: none;
flex-direction: column;
position: absolute;
top: 70px;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
padding: 1rem;
box-shadow: var(--shadow-sm);
text-align: center;
}
.nav-list.active { display: flex; }
.hero { min-height: 50vh; padding: clamp(3rem, 10vh, 8rem) 1rem; }
.hod-photo { width: 100%; max-width: 250px; }
.about-images img { width: 100%; height: 180px; }
}
@media (max-width: 480px) {
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-form input,
.cta-button { font-size: 0.9rem; padding: 0.7rem 1.2rem; }
.faculty-grid,
.alumni-grid,
.gallery-grid,
.achievement-grid { grid-template-columns: 1fr; }
.about-images img { height: 160px; }
.gallery-grid img { height: 180px; }
.achievement-card img { height: 180px; }
} </style>
</head>
<body>
<header>
<div class="header-content">
<div class="logo">
<img src="image.png" alt="GMU Logo" loading="lazy">
</div>
<nav>
<ul class="nav-list">
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#hod-message" class="nav-link">HoD Message</a></li>
<li><a href="#vision-mission" class="nav-link">Vision & Mission</a></li>
<li><a href="#programs" class="nav-link">Programs</a></li>
<li><a href="#faculty" class="nav-link">Faculty</a></li>
<li><a href="#admissions" class="nav-link">Admissions</a></li>
<li><a href="#achievements" class="nav-link">Achievements</a></li>
<li><a href="#gallery" class="nav-link">Gallery</a></li>
<li><a href="#alumni" class="nav-link">Alumni</a></li>
<li><a href="PO.html" class="nav-link">Program Outcomes</a></li>
</ul>
<button class="hamburger" aria-label="Toggle navigation">☰</button>
</nav>
</div>
</header>
<section class="hero">
<div class="hero-content fade-in-up">
<h1>B.Tech in Computer Science - Information Security</h1>
<p>Embark on a journey to become a Information Security leader with GMU's innovative program, designed to equip you
with cutting-edge skills to safeguard the digital world.</p>
</div>
</section>
<section class="video-showcase">
<h2 class="section-title fade-in-up">Explore Our Program & Campus</h2>
<div class="video-grid">
<div class="video-card fade-in-up">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/ACX9O7zL9nc" title="GMU Campus Preview" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen loading="lazy"></iframe>
</div>
</div>
<div class="video-card fade-in-up">
<div class="video-container">
<iframe src="WhatsApp Video 2025-09-13 at 11.00.48_a4dd9eb9.mp4" title="Cybersecurity Program Overview"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen loading="lazy"></iframe>
</div>
</div>
</div>
</section>
<main class="container">
<section class="section fade-in-up" id="about">
<h2 class="section-title">About the Department</h2>
<div class="section-content">
<div class="about-images">
<img src="gmu_top.jpg" alt="GMU Campus" loading="lazy">
<img src="engineering_block.jpeg" alt="Engineering Block" loading="lazy">
</div>
<br>
<p>
The Department of Cyber Security and Information Security at GM University, Davanagere, Karnataka,
was established with the vision of fostering excellence in the rapidly evolving field of digital
security. Recognizing the increasing significance of securing data, networks, and digital
infrastructure in the modern world, the department is committed to equipping students with advanced
technical knowledge, practical skills, and ethical perspectives to meet global cybersecurity
challenges.
The department offers two specialized programs i.e Cyber Security and Information Security that
blend theoretical foundations with hands-on training in areas such as cryptography, ethical hacking,
digital forensics, network defense, artificial intelligence in security, and risk management. With
an emphasis on research-driven learning, students are encouraged to engage in innovative projects
that address real-world problems in cybercrime prevention, data protection, and secure systems
design.
Supported by experienced faculty members, modern laboratories, and collaborations with industry and
government organizations, the department provides a platform for holistic learning and professional
development. It also actively organizes workshops, seminars, and training programs to bridge the gap
between academia and industry.
By promoting skilled cybersecurity professionals, the Department of Cyber Security and Information
Security at GM University plays a vital role in strengthening digital resilience and contributing to
India’s vision of a secure and technology-driven future.
</p>
</div>
</section>
<section class="section fade-in-up" id="hod-message">
<h2 class="section-title">Message from the HoD</h2>
<div class="section-content">
<img src="hod.jpg" alt="Dr. Aruna Kumar B T" class="hod-photo" loading="lazy">
<p>
Dear Students and Aspirants,
It gives me great pleasure to welcome you to the Undergraduate Program in Cyber and Information Security. In today’s digital era, information is the most valuable asset, and securing it has become a global priority. From critical infrastructure and financial systems to personal data and national defense, the demand for skilled cybersecurity professionals is growing at an unprecedented rate.
Our program is designed to blend strong engineering foundations with specialized knowledge in cyber defense, cryptography, digital forensics, ethical hacking, and security management. With a curriculum that is both industry-oriented and research-driven, we aim to prepare graduates who can face real-world security challenges with confidence and innovation.
At GM University, we emphasize not only technical expertise but also ethical responsibility, problem-solving skills, and lifelong learning—qualities that are essential for cybersecurity professionals in a rapidly changing technological landscape. Students will benefit from state-of-the-art laboratories, hands-on projects, collaborations with industry, and opportunities to engage in internships and certifications aligned with global standards.
We envision our graduates as leaders, innovators, and protectors of the digital world, contributing to a safer cyberspace for individuals, businesses, and nations.
I invite you to join us on this exciting journey of discovery, innovation, and excellence in Cyber and Information Security. Together, let us build a secure digital future.
</p>
<p><strong>Dr. Aruna Kumar B T</strong><br>Head of Department</p>
</div>
</section>
<section class="section fade-in-up" id="vision-mission">
<h2 class="section-title">Vision & Mission</h2>
<div class="section-content vision-mission-grid">
<!-- <div class="vision-mission-item">
<h3>Vision Statement – Cyber Security</h3>
<p>• To equip students with the skills to meet global-level cybersecurity challenges.<br>
• To empower graduates to secure digital data while upholding ethical values.<br>
• To build professionals capable of developing automated and innovative digital security
systems.</p>
</div> -->
<div class="vision-mission-item">
<h3>Vision Statement – Information Security</h3>
<p>• To equip students with the skills to address global-level information security challenges.<br>
• To empower graduates to protect and manage information while upholding ethical values.<br>
• To develop professionals capable of creating automated and innovative solutions for
information security systems.</p>
</div>
<!-- <div class="vision-mission-item">
<h3>Mission Statement – Cyber Security</h3>
<p>• Understand cybersecurity concepts in real-time applications and problem-solving.<br>
• Design robust tools and applications for secure data management.<br>
• Apply innovative methods for digital security in automation.</p>
</div> -->
<div class="vision-mission-item">
<h3>Mission Statement – Information Security</h3>
<p>• Understand information security principles in real-time applications and
organizational problem-solving.<br>
• Design reliable frameworks and solutions for safeguarding information and
managing secure data systems.<br>
• Apply innovative methods and emerging technologies to enhance information security
in automated and digital environments.</p>
</div>
</div>
</section>
<section class="section fade-in-up" id="programs">
<h2 class="section-title">Program Highlights</h2>
<div class="section-content program-grid">
<!-- <div class="program-item">
<h3>Cyber Security – Program Overview</h3>
<p>The Cyber Security program is designed to prepare graduates with the knowledge, skills, and
professional values required to address the complex challenges of securing digital
infrastructure. With a strong foundation in computer science, networking, and cryptography, the
program equips students to identify vulnerabilities, mitigate risks, and develop robust security
solutions against evolving cyber threats. Emphasis is placed on hands-on training,
industry-relevant tools, and exposure to real-world attack and defense mechanisms. Students are
encouraged to apply their knowledge to protect national and organizational assets, ensuring
resilience in critical systems and services. The curriculum integrates research, innovation, and
ethical practices, fostering responsible professionals who can contribute to society and
industry alike. By preparing students for higher education, advanced certifications, and
lifelong learning, the program nurtures leaders and experts capable of strengthening cyber
defense globally and addressing the growing need for security professionals</p>
</div> -->
<div class="program-item">
<h3>Information Security – Program Overview</h3>
<p>The Information Security program is structured to develop graduates with expertise in securing
data, applications, and communication systems across organizational and societal contexts. It
provides a balance of theoretical foundations and practical skills in areas such as encryption,
access control, compliance, governance, and risk management. Students gain hands-on experience
with advanced tools and frameworks, enabling them to design and implement effective strategies
for data protection and trust assurance. The program emphasizes the ethical, legal, and
professional aspects of security, ensuring graduates understand the responsibilities of
safeguarding sensitive information. Through research-driven learning and innovation, students
are encouraged to explore new frontiers in areas such as cloud security, digital forensics, and
secure software development. The curriculum also promotes leadership, collaboration, and
continuous learning, preparing graduates for careers in academia, industry, or government.
Ultimately, the program develops skilled professionals who contribute to secure digital
ecosystems locally and globally</p>
</div>
</div>
</section>
<section class="section fade-in-up" id="faculty">
<h2 class="section-title">Faculty Excellence</h2>
<div class="section-content">
<div class="faculty-grid">
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="AK">
<img src="Picture2.jpg" alt="Dr. Aruna Kumar B T" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='AK'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Dr. Aruna Kumar B T</div>
<div class="faculty-role">Assistant Professor & HOD</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> B.E., M.Tech, Ph.D.<br>
<strong>Experience:</strong> 19 years<br>
<strong>Contact:</strong> <a href="mailto:hod.cyiy@gmu.ac.in">hod.cyiy@gmu.ac.in</a><br>
<strong>Phone:</strong> +91 99452 21208
</div>
</div>
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="KP">
<img src="Picture1.jpg" alt="Dr. K Prakash" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='KP'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Dr. K Prakash</div>
<div class="faculty-role">Professor</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> MCA, M.Phil, Ph.D.<br>
<strong>Experience:</strong> 26 years<br>
<strong>Contact:</strong> <a
href="mailto:kprakash.cyiy@gmu.ac.in">kprakash.cyiy@gmu.ac.in</a><br>
<strong>Phone:</strong> +91 63853 59970
</div>
</div>
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="KS">
<img src="Picture3.jpg" alt="Kotreshi S N" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='KS'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Kotreshi S N</div>
<div class="faculty-role">Assistant Professor</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> B.E., M.Tech, (Ph.D.)<br>
<strong>Experience:</strong> 20 years<br>
<strong>Contact:</strong> <a
href="mailto:kotreshisn@gmit.ac.in">kotreshisn@gmit.ac.in</a><br>
<strong>Phone:</strong> +91 85533 36419
</div>
</div>
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="RP">
<img src="Picture4.jpg" alt="Dr. Rachana P G" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='RP'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Dr. Rachana P G</div>
<div class="faculty-role">Assistant Professor</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> B.E., M.Tech, Ph.D.<br>
<strong>Experience:</strong> 4 years<br>
<strong>Contact:</strong> <a href="mailto:rachanapg@gmit.ac.in">rachanapg@gmit.ac.in</a><br>
<strong>Phone:</strong> +91 63606 01253
</div>
</div>
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="KS">
<img src="Picture5.jpg" alt="Kumar S" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='KS'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Kumar S</div>
<div class="faculty-role">Assistant Professor</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> B.E., M.Tech<br>
<strong>Experience:</strong> 4 years<br>
<strong>Contact:</strong> <a
href="mailto:kumars.fet.scst.cse@gmu.ac.in">kumars.fet.scst.cse@gmu.ac.in</a><br>
<strong>Phone:</strong> +91 99019 04054
</div>
</div>
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="NM">
<img src="Picture6.jpg" alt="Nayana M R" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='NM'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Nayana M R</div>
<div class="faculty-role">Assistant Professor</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> MCA<br>
<strong>Experience:</strong> 1 year<br>
<strong>Contact:</strong> <a
href="mailto:nayanamr.fet.scst.cse@gmu.ac.in">nayanamr.fet.scst.cse@gmu.ac.in</a><br>
<strong>Phone:</strong> +91 63645 88766
</div>
</div>
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="RG">
<img src="Picture7.jpg" alt="Rakshitha G B" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='RG'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Rakshitha G B</div>
<div class="faculty-role">Tutor</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> B.E.<br>
<!-- <strong>Experience:</strong> Fresh Graduate<br> -->
<strong>Contact:</strong> <a
href="mailto:rakshithagb.fet.scst@gmu.ac.in">rakshithagb.fet.scst@gmu.ac.in</a><br>
<strong>Phone:</strong> +91 99804 37345
</div>
</div>
<div class="faculty-card fade-in-left">
<div class="faculty-avatar has-image" data-initials="SA">
<img src="Picture8.jpg" alt="Swathi A" loading="lazy"
onerror="this.style.display='none'; this.parentElement.textContent='SA'; this.parentElement.classList.remove('has-image');">
</div>
<div class="faculty-name">Swathi A</div>
<div class="faculty-role">Tutor</div>
<div class="faculty-specialization">
<strong>Qualifications:</strong> B.E.<br>
<!-- <strong>Experience:</strong> Fresh Graduate<br> -->
<strong>Contact:</strong> swathia.fet.scst@gmu.ac.in<br>
<strong>Phone:</strong> +91 90196 35272
</div>
</div>
</div>
</div>
</section>
<section class="section fade-in-up" id="admissions">
<h2 class="section-title">Admissions</h2>
<div class="section-content">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem;">
<div style="padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);">
<h3 style="color: var(--primary-dark); margin-bottom: 1.2rem;">Application Process</h3>
<p>Information about the admission process, eligibility criteria, and application deadlines for the B.Tech programs will be available here.</p>
</div>
<div style="padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);">
<h3 style="color: var(--primary-dark); margin-bottom: 1.2rem;">Eligibility Criteria</h3>
<p>Detailed eligibility requirements and entrance exam information for prospective students will be updated here.</p>
</div>
</div>
</div>
</section>
<section class="section fade-in-up" id="achievements">
<h2 class="section-title">Achievements & Recognition</h2>
<div class="section-content">
<div class="achievement-grid">
<div class="achievement-card fade-in-up">
<img src="ACHIVEMENT2.jpeg" alt="Ignitron Tech Fest">
<p><b>Abhiram Girish Naik</b> from the Department of Cybersecurity, GM University, secured 2nd place at the National-level Vyoma Hackathon – TechSurge 2K25 in Hyderabad. As part of a talented team, he contributed to building a Generative AI solution for health and well-being, showcasing innovation, technical expertise, and problem-solving skills
</div>
<div class="achievement-card fade-in-up">
<img src="ACHIVEMENT1.jpg" alt="Cybersecurity Hackathon Award" >
<p><b>Sanjana N Patel </b>from the Department of Cybersecurity, GM University, achieved 3rd place at the National-level Research Poster Making Competition under the Jigyasa 2.0 program, organized by the Ministry of Science and Technology and the Ministry of Earth Sciences during IISF at CSIR–CRRI, New Delhi. Her poster highlighted “Green Transport Technologies".</p>
</div>
</div>
</div>
</section>
<section class="section fade-in-up" id="gallery">
<h2 class="section-title">Campus Gallery</h2>