-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1045 lines (924 loc) · 48.5 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" xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Page Meta -->
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="AIIMS Hospital and University" name="description">
<meta content="Hospital, Emergency, AIIMS, University, Medical, Institution, Government hospital, Government"
name="keywords">
<meta content="CDAC" name="author">
<!-- Title Meta -->
<title>AIIMS Rajkot</title>
<link href="assets/icons/favicon.png" rel="icon">
<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=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Thirdparty CSS -->
<link href="assets/thirdparty/css/animate.min.css" rel="stylesheet">
<link href="assets/thirdparty/css/aos.min.css" rel="stylesheet">
<link href="assets/thirdparty/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/thirdparty/data-tables/datatables.min.css" />
<link href="assets/thirdparty/css/bootstrap-icons.css" rel="stylesheet">
<link href="assets/thirdparty/fontawesome/css/all.min.css" rel="stylesheet">
<link href="assets/thirdparty/css/glightbox.min.css" rel="stylesheet">
<link href="assets/thirdparty/css/swiper-bundle.min.css" rel="stylesheet">
<!-- CSS Stylesheets -->
<link href="assets/css/styles.css" rel="stylesheet">
</head>
<body>
<!-- Title Section -->
<div id="title-section" class="d-flex align-items-center">
<div class="d-flex align-items-center justify-content-around">
<!-- Logo -->
<div class="align-items-center me-auto">
<!-- Add class="d-none" to remove the logo in mobile version -->
<a href="index.html" class="logo me-auto"><img src="assets/img/title-logo.png" alt=""></a>
</div>
<!-- Titles -->
<div class="row text-center d-md-flex titles">
<h5 class="md-none mt-1">अखिल भारतीय आयुर्विज्ञान संस्थान, राजकोट, गुजरात</h5>
<h5 class="md-none">અખિલ ભારતીય આયુર્વિજ્ઞાન સંસ્થા, રાજકોટ, ગુજરાત</h5>
<h4> ALL INDIA INSTITUTE OF MEDICAL SCIENCES, RAJKOT, GUJARAT</h4>
<p class="md-none mb-0">(A Central Autonomous Institute of National Importance under Pradhan Mantri Swasthya
Suraksha
Yojna (PMSSY),<br>
Ministry of Health, Government of India)
</p>
</div>
<div class="d-md-flex title-buttons row">
<button class="pushable"
onclick="window.open('https://aiimsrajkot.prd.dcservices.in/AHIMSG5/hissso/loginLogin')">
<span class="front">
HIS Login
</span>
</button>
<!-- <span class="screen-reader-buttons justify-content-center">
<button class="btn">A+</button>
<button class="btn">A</button>
<button class="btn">A-</button>
</span>
<button class="btn">Screen Reader</button> -->
</div>
</div>
</div>
<!-- Menu Bar Section -->
<header id="menu" class="">
<div class="container d-flex align-items-center justify-content-center">
<div id="menu-title" class="menu-title title-buttons">
<a href="https://aiimsrajkot.prd.dcservices.in/AHIMSG5/hissso/loginLogin" target="_blank" class="menu-btn">HIS
Login</a>
</div>
<!-- menu links -->
<nav id="navbar" class="navbar order-last order-lg-0">
<ul class="navbar-links">
<li><a class="nav-link scrollto" href="#">Home</a></li>
<li class="dropdown">
<a class="nav-link" href="#title-section"><span>HealthCare</span><i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="pages/ipd.html"><span>InPatient</span></a>
<!-- <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="pages/ipd.html">InPatient Status</a></li>
<li><a href="pages/ipd.html">Insurance</a></li>
<li><a href="pages/ipd.html">Checkout Process</a></li>
<li><a href="pages/ipd.html">Visitor Policy</a></li>
<li><a href="pages/ipd.html">Queries and FAQs</a></li>
</ul> -->
</li>
<li class="dropdown"><a href="pages/opd.html"><span>Out Patient</span><i
class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="pages/opd.html">Departments</a></li>
<li><a href="pages/opd.html">Find a Doctor</a></li>
<li><a href="pages/opd.html">Online Appointment</a></li>
<li><a href="pages/opd.html">Schedule & Timings</a></li>
</ul>
</li>
<!-- <li><a href="#emergency">Emergency Ward</a></li> -->
<li><a href="https://esanjeevaniopd.in/" target="_blank">Tele-Consultation</a></li>
</ul>
</li>
<li class="dropdown"><a class="nav-link" href="#services"><span>Health Services</span><i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#services">Labs and diagnostics</a></li>
<li><a href="#services">Pharmacy</a></li>
<li><a href="https://www.eraktkosh.in/" target="_blank">Blood bank</a></li>
<!-- <li><a href="#emergency">Emergency Services</a></li> -->
<li><a href="#goi">Allied organizations</a></li>
</ul>
</li>
<li class="dropdown"><a class="nav-link" href="pages/academics.html"><span>Academics</span><i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="pages/academics.html">Courses</a></li>
<li><a href="pages/academics.html">Library</a></li>
<li><a href="pages/academics.html">Research Projects</a></li>
<li><a href="pages/academics.html">Hostel</a></li>
<li><a href="pages/academics.html">Rules and Guidelines</a></li>
<li><a href="pages/academics.html">Admissions</a></li>
</ul>
</li>
<!-- <li class="dropdown"><a class="nav-link" href="pages/portals.html"><span>Portals</span><i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Student</a></li>
<li><a href="#">Faculty</a></li>
<li><a href="#">Doctor</a></li>
<li><a href="#">Medical Staff</a></li>
<li><a href="#">Employee</a></li>
<li><a href="#">Patient</a></li>
</ul>
</li> -->
<li class="dropdown"><a class="nav-link" href="pages/gallery.html"><span>Gallery</span><i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="pages/gallery.html">Hospital</a></li>
<li><a href="pages/gallery.html">University</a></li>
<li><a href="pages/gallery.html">Events</a></li>
<li><a href="pages/gallery.html">Annual Reports</a></li>
<li><a href="pages/gallery.html">E-Magazines</a></li>
<li><a href="pages/gallery.html">Documents Archive</a></li>
</ul>
</li>
<li class="dropdown"><a class="nav-link" href="pages/notices.html"><span>Notices</span><i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="pages/notices.html">Recruitment</a></li>
<li><a href="pages/notices.html">Admissions</a></li>
<li><a href="pages/notices.html">Press Releases</a></li>
<li><a href="pages/notices.html">Events</a></li>
<li><a href="pages/notices.html">Tenders</a></li>
<!-- <hr class="mt-0 mb-0">
<li><a href="pages/notices.html">Students</a></li>
<li><a href="pages/notices.html">Faculty</a></li>
<li><a href="pages/notices.html">Employees</a></li>
<li><a href="pages/notices.html">Patient</a></li> -->
</ul>
</li>
<li class="dropdown"><a class="nav-link" href="pages/institute.html"><span>Institution</span><i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="pages/institute.html">About</a></li>
<li><a href="pages/institute.html">Organization</a></li>
<li><a href="pages/institute.html">Dignitaries</a></li>
<li><a href="pages/institute.html">Key Administrators</a></li>
<li><a href="pages/institute.html">Core Committees</a></li>
<li><a href="pages/institute.html">Directory</a></li>
</ul>
</li>
<li><a class="nav-link scrollto" href="#contact">Contact Us</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- CTA Button -->
<!-- <a href="#appointment" class="menu-btn scrollto ms-auto"><span class="d-none d-md-inline">Book an</span>
Appointment</a> -->
</div>
</header>
<!-- Hero Section -->
<section id="hero" class="content">
<!-- bootstrap 5 carousal attributes are used here (data-bs etc). Read documentation for more info-->
<div id="heroCarousel" class="carousel slide carousel-fade" data-bs-ride="carousel" data-bs-interval="10000">
<!-- Carousel indicators at the bottom -->
<ol class="carousel-indicators" id="hero-carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<!-- Slide 1 -->
<div class="carousel-item active" style="background-image: url(assets/img/hero-slides/slide-1.png)">
<div class="container">
<h2>AIIMS Health Care</h2>
<p>Top quality heathcare at affordable cost. AIIMS multispeciality hospitals have top notch facilities
maintained by professional medical staff and highly qualified doctors.</p>
<a href="pages/opd.html" class="btn-get-started scrollto">Out-Patient Department</a>
<a href="pages/opd.html" class="btn-get-started scrollto">Schedule & Timings</a>
<a href="https://esanjeevaniopd.in/" class="btn-get-started scrollto" target="_blank">Tele Consultation</a>
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item " style="background-image: url(assets/img/hero-slides/slide-2.png)">
<div class="container">
<h2>AIIMS University</h2>
<p>AIIMS brings educational facilities of the highest order together in one place for the training of the
personnel in all important branches of the health activity through undergraduate and postgraduate courses.
</p>
<a href="pages/notices.html" class="btn-get-started scrollto">Admissions</a>
<a href="pages/academics.html" class="btn-get-started scrollto">Research Projects</a>
<a href="pages/academics.html" class="btn-get-started scrollto">Courses</a>
</div>
</div>
<!-- Slide 3 -->
<div class="carousel-item" style="background-image: url(assets/img/hero-slides/slide-3.png)">
<div class="container">
<h2>Administration</h2>
<p> An Act of Parliament established the All India Institute of Medical Sciences as a national institution
with the goal of developing a medical workforce to demonstrate a high standard of Medical Education and
sophisticated health care at an affordable cost in India.</p>
<a href="pages/notices.html" class="btn-get-started scrollto">Recruitments</a>
<a href="pages/institute.html" class="btn-get-started scrollto">About Us</a>
<a href="pages/notices.html" class="btn-get-started scrollto">Tenders</a>
</div>
</div>
</div>
<!-- Carousel Controls -->
<a class="carousel-control-prev" href="#heroCarousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bi bi-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#heroCarousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bi bi-chevron-right" aria-hidden="true"></span>
</a>
</div>
</section>
<!-- Featured Services Section -->
<section id="featured-services" class="featured-services">
<div class="container" data-aos="fade-up">
<div class="row justify-content-between">
<div class="col-md-12 col-lg-6 d-flex align-items-stretch mb-5 mb-lg-0 section-bg">
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<span class="text-center mb-0 py-0">
<h3>News Feed</h3>
</span>
<hr>
<div id="newsCarousel" class="carousel slide carousel-fade" data-bs-ride="carousel" data-bs-interval="5000">
<!-- Carousel indicators at the bottom -->
<ol class="carousel-indicators" id="news-carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<!-- Slide 1 -->
<div class="carousel-item active">
<div class="container">
<img src="assets/img/news-feed/Vaccination-Hoarding-Hin-PetrolPump-2-Final_0.jpg" class="img-fluid">
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item">
<div class="container">
<img src="assets/img/news-feed/Picture3_0.jpg" class="img-fluid">
</div>
</div>
<!-- Slide 3 -->
<div class="carousel-item">
<img src="assets/img/news-feed/Picture2_0.png" class="img-fluid">
</div>
<!-- Slide 4 -->
<div class="carousel-item">
<div class="container">
<img src="assets/img/news-feed/Picture1_0.png" class="img-fluid">
</div>
</div>
</div>
<!-- Carousel Controls -->
<a class="carousel-control-prev" href="#newsCarousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bi bi-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#newsCarousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bi bi-chevron-right" aria-hidden="true"></span>
</a>
</div>
</div>
</div>
<div class="row notices-container col-md-12 col-lg-6 d-flex align-items-stretch mb-5 mb-lg-0 section-bg" data-aos="fade-up" data-aos-delay="200">
<h3 class="text-center full-width notices-title">Notices<hr></h3>
<div class="full-width notices-scroller " id="notices-scroller">
<a href="pages/notices.html">
<div class="notices">
<div class="notices-content" id="notices-content">
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Featured Services Section -->
<!-- Emergency Section -->
<!-- <section id="emergency" class="emergency">
<div class="container" data-aos="fade-right" data-aos-delay="0">
<div class="text-center">
<h3>Emergency? Need help right now?</h3>
<p> Our emergency care unit has a seperate dedicated Hotline to aid you in critial moments of need</p>
<a class="emergency-btn scrollto" href="tel:+91 9789977904">Call Emergency</a>
</div>
</div>
</section> -->
<!-- End Emergency Section -->
<!-- Services Section -->
<section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>An overview of the services provided at AIIMS.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="icon"><i class="fas fa-heartbeat"></i></div>
<h4 class="title"><a href="#">Labs and Diagnostics</a></h4>
<p class="description">High-Tech diagnostic center for all your tests and scans.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="zoom-in" data-aos-delay="200">
<div class="icon"><i class="fas fa-pills"></i></div>
<h4 class="title"><a href="#">Amrit Pharmacy</a></h4>
<p class="description">Buy from our wide array of medicines, medical equipments and drugs.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="zoom-in" data-aos-delay="200">
<div class="icon"><i class="fas fa-hospital-user"></i></div>
<h4 class="title"><a href="pages/opd.html">OPD</a></h4>
<p class="description">View our Medical Departments, Doctor glossary and Timings.</p>
</div>
<!-- <div class="col-lg-4 col-md-6 icon-box" data-aos="zoom-in" data-aos-delay="300">
<div class="icon"><i class="fas fa-hospital-user"></i></div>
<h4 class="title"><a href="https://www.eraktkosh.in" target="_blank">Blood Bank</a></h4>
<p class="description">Browse through e-RaktKosh blood bank stock search.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="icon"><i class="fas fa-dna"></i></div>
<h4 class="title"><a href="pages/academics.html">Research Projects</a></h4>
<p class="description">View our research labs, amenities and ongoing research projects.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="zoom-in" data-aos-delay="200">
<div class="icon"><i class="fas fa-wheelchair"></i></div>
<h4 class="title"><a href="#emergency">Emergency Services</a></h4>
<p class="description">View first-aid manuevers, ambulance information and emergency hotlines.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="zoom-in" data-aos-delay="300">
<div class="icon"><i class="fas fa-notes-medical"></i></div>
<h4 class="title"><a href="#goi">Allied Organizations</a></h4>
<p class="description">View government's other initiatives in medical domain.</p> -->
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- About Us Section -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Us</h2>
<p>All India Institute of Medical Sciences, Rajkot in Gujarat is one amongst the several new
AIIMS, being
established under the Ptradhan Mantri Swasthya Suraksha Yojna (PMSSY) of the Ministry of Health
and Family
Welfare, Government of India.</p>
</div>
<div class="row">
<div class="col-lg-6 text-center" data-aos="fade-right">
<img src="assets/img/logo.png" class="img-fluid" alt="">
<h4>All India Institute of Medical Sciences</h4>
<h4> (AIIMS), Rajkot, Gujarat </h4>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" data-aos="fade-left">
<h5>The trinity of the mission of the Institute is:</h5>
<ul>
<li><i class="bi bi-check-circle"></i> Education of diverse health professionals</li>
<li><i class="bi bi-check-circle"></i> Research in biomedical sciences; and</li>
<li><i class="bi bi-check-circle"></i> Patient care at the highest care level.</li>
</ul>
<h6>The Objectives of AIIMS are mentioned in the AIIMS Act 1956 (as amended)</h6>
<ul>
<li><i class="bi bi-check-circle"></i> To develop pattern of teaching in under-graduate and
postgraduate medical education in all its branches so as to demonstrate a high standard of
medical education to all medical colleges and other allied institutions in India.</li>
<li><i class="bi bi-check-circle"></i> To bring together in one place educational facilities
of the highest order for the training of personnel in all branches of health activities.
</li>
<li><i class="bi bi-check-circle"></i> To attain self-sufficiency in post-graduate medical
education</li>
</ul>
</div>
<p class="about-ender text-justify">
AIIMS, Rajkot has objectives to reduce the “gaps” in affordable tertiary
health care, and to generate ‘wellness’ amongst the general population. AIIMS, Rajkot is under
the phase six
of the Pradhan Mantri Swasthya Suraksha Yojna (PMSSY). AIIMS Rajkot shall be a 750 bedded
hospital with
multiple speciality as well as superspeciality departments. The Project cost of construction is
about Rs.
1195 Crores, which includes an allocation of Rs. 185 Crores towards state-of-the art medical
equipment. The
Government of Gujarat has allotted about 201 Acres of Land for the project and shall take care
of access
roads, water facilities and provision of electricity connection.
</p>
</div>
</div>
</section><!-- End About Us Section -->
<!-- Counts Section -->
<div id="counter" class="counter">
<div class="container" data-aos="fade-up">
<div class="row no-gutters">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="fas fa-heartbeat"></i>
<span data-purecounter-start="0" data-purecounter-end="450" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Lab Tests</strong> done today</p>
<a href="pages/ipd.html">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="fas fa-bed"></i>
<span data-purecounter-start="0" data-purecounter-end="750" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Patient Visits</strong> today</p>
<a href="pages/opd.html">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="far fa-hospital"></i>
<span data-purecounter-start="0" data-purecounter-end="8" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Departments</strong> of medical speciality.</p>
<a href="pages/opd.html">Find out more »</a>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="fas fa-user-md"></i>
<span data-purecounter-start="0" data-purecounter-end="250" data-purecounter-duration="1"
class="purecounter"></span>
<p><strong>Doctors</strong> currently working under AIIMS</p>
<a href="pages/institute.html">Find out more »</a>
</div>
</div>
</div>
</div>
</div><!-- End Counts Section -->
<!-- Dignitaries Section -->
<section id="dignitaries" class="dignitaries section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Dignitaries</h2>
<p>Special mention of honor to our diginitaries who made and make us what we are today.</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<div class="member-img">
<img src="assets/img/dignitaries/image-1.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>Shri Mansukh Mandaviya</h4>
<span>Union Minister of Health and Family Welfare</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="200">
<div class="member-img">
<img src="assets/img/dignitaries/image-2.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>Dr. Bharati Pravin Pawar</h4>
<span>Minister of State for Health and Family Welfare</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<div class="member-img">
<img src="assets/img/dignitaries/image-3.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>Dr. P K Dave</h4>
<span>President All India Institute of Medical Sciences, Rajkot</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="400">
<div class="member-img">
<img src="assets/img/dignitaries/image-4.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>Dr. CDS Katoch</h4>
<span>Executive Director AIIMS, Rajkot</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Dignitaries Section -->
<!-- Departments Section -->
<section id="departments" class="departments">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Departments</h2>
<p>AIIMS is equipped with 16+ departments to address every medical need in with the utmost expertise and
texhnology.</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<!-- Tab Headers -->
<div class="col-lg-4 mb-5 mb-lg-0">
<ul class="nav nav-tabs flex-column">
<li class="nav-item">
<a class="nav-link active show" data-bs-toggle="tab" data-bs-target="#tab-1">
<h4>Cardiology</h4>
<p>Healthen your heart and life with aid from our cadiology department.</p>
</a>
</li>
<li class="nav-item mt-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-2">
<h4>Neurology</h4>
<p>Treat your issues related to Brain and spine and nerval disorders</p>
</a>
</li>
<li class="nav-item mt-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-3">
<h4>Hepatology</h4>
<p>Address problems in liver, pancreas and gallbladder.</p>
</a>
</li>
<li class="nav-item mt-2">
<a class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-4">
<h4>Obstetrics (Pregnancy)</h4>
<p>Welcome your child to the world in the safest enviroment.</p>
</a>
</li>
</ul>
</div>
<!-- Tab Content -->
<div class="col-lg-8">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<h3>Cardiology</h3>
<p class="fst-italic">Cardiology is a branch of medicine that deals with the disorders of the
<strong>heart</strong> as well as some parts of the cardiovascular system.
</p>
<img src="assets/img/departments/departments-1.jpg" alt="" class="img-fluid">
<p class="text-justify">Our team of cardiologists and cardiothoracic surgeons are trained at the top
institutes in India and
abroad and are completely dedicated to the treatment for coronary heart diseases. Our pioneering work
for the prevention and treatment of cardiac diseases has led to the achievement of better outcomes and
improved quality of life for thousands of cardiac patients who visit us each year with complex heart
problems.</p>
</div>
<div class="tab-pane" id="tab-2">
<h3>Neurology</h3>
<p class="fst-italic">Neurology is a branch of medicine dealing with disorders of the<strong> brain and
nervous system</strong>.</p>
<img src="assets/img/departments/departments-2.jpg" alt="" class="img-fluid">
<p class="text-justify">The department of neurology at AIIMS is well equipped to treat all the
neurological diseases including
stroke, headache, epilepsy, coma, neuropathies, multiple sclerosis, myopathies, Parkinson’s disease,
Myasthenia Gravis and many more, establishing it as one of the best hospital for neurosurgery treatment
in India.</p>
</div>
<div class="tab-pane" id="tab-3">
<h3>Hepatology</h3>
<p class="fst-italic">Hepatology is the branch of medicine that incorporates the study of liver,
gallbladder, biliary tree, and pancreas as well as management of their disorders.</p>
<img src="assets/img/departments/departments-3.jpg" alt="" class="img-fluid">
<p class="text-justify">We are dedicated to the management of diseases of the digestive and hepatobiliary
systems in children
and adults. Our gastroenterology surgeons offer expert care in both Medical and Surgical
Gastroenterology. The Institutes possess modern state of art equipment backed by advanced intensive care
units.</p>
</div>
<div class="tab-pane" id="tab-4">
<h3>Obstetrics</h3>
<p class="fst-italic">Obstetrics is the field of study concentrated on pregnancy, childbirth and the
postpartum period.</p>
<img src="assets/img/departments/departments-4.jpg" alt="" class="img-fluid">
<p class="text-justify">With every stage of a woman’s life comes changes in her body and different health
issues are faced at
different stages. The Centre for Obstetrics and Gynaecology at AIIMS offers world-class and
comprehensive care for women. Our renowned specialists offer their expert opinion on preventive
measures, ensure accurate diagnosis and provide suitable treatment. Our doctors are highly experienced
and skilled to cater to women of different age groups – from teenagers to senior citizens..</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Departments Section -->
<!-- Gallery Section -->
<section id="gallery" class="gallery section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Gallery</h2>
<p>A glossary of our institute, facilities, functions and media events.</p>
</div>
<div class="gallery-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-1.jpg">
<img src="assets/img/gallery/gallery-1.jpg" class="img-fluid" alt="">
</a>
</div>
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-2.jpg">
<img src="assets/img/gallery/gallery-2.jpg" class="img-fluid" alt="">
</a>
</div>
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-3.jpg">
<img src="assets/img/gallery/gallery-3.jpg" class="img-fluid" alt="">
</a>
</div>
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-4.jpg">
<img src="assets/img/gallery/gallery-4.jpg" class="img-fluid" alt="">
</a>
</div>
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-5.jpg">
<img src="assets/img/gallery/gallery-5.jpg" class="img-fluid" alt="">
</a>
</div>
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-6.jpg">
<img src="assets/img/gallery/gallery-6.jpg" class="img-fluid" alt="">
</a>
</div>
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-7.jpg">
<img src="assets/img/gallery/gallery-7.jpg" class="img-fluid" alt="">
</a>
</div>
<div class="swiper-slide">
<a class="gallery-lightbox" href="assets/img/gallery/gallery-8.jpg">
<img src="assets/img/gallery/gallery-8.jpg" class="img-fluid" alt="">
</a>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Gallery Section -->
<!-- Appointment Section -->
<!-- <section id="appointment" class="appointment">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Make an Appointment</h2>
<p>Please fill in the form to book an appointment and receive a call back.</p>
</div>
<form action="forms/appointment.php" method="post" role="form" class="php-email-form" data-aos="fade-up"
data-aos-delay="100">
<div class="row">
<div class="col-md-4 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-4 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
<div class="col-md-4 form-group mt-3 mt-md-0">
<input type="tel" class="form-control" name="phone" id="phone" placeholder="Your Phone" required>
</div>
</div>
<div class="row">
<div class="col-md-4 form-group mt-3">
<input type="datetime" name="date" class="form-control datepicker" id="date" placeholder="Appointment Date"
required>
</div>
<div class="col-md-4 form-group mt-3">
<select name="department" id="department" class="form-select">
<option value="">Select Department</option>
<option value="Department 1">Cardiology</option>
<option value="Department 2">Pregnancy</option>
<option value="Department 3">Neurology</option>
</select>
</div>
<div class="col-md-4 form-group mt-3">
<select name="doctor" id="doctor" class="form-select">
<option value="">Select Doctor</option>
<option value="Doctor 1">Doctor 1</option>
<option value="Doctor 2">Doctor 2</option>
<option value="Doctor 3">Doctor 3</option>
</select>
</div>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message (Optional)"></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your appointment request has been submitted successfully. Thank you!</div>
</div>
<div class="text-center"><button type="submit" class="menu-btn">Make an Appointment</button></div>
</form>
</div>
</section> -->
<!-- End Appointment Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact section-bg">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>AIIMS Rajkot is located at the heart of the city which is easy for access by all.</p>
</div>
</div>
<div>
<iframe style="border:0; width: 100%; height: 350px;"
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d472252.60148144077!2d70.4660652!3d22.3735024!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3959c9c3b621838b%3A0x70393f9e004a5669!2sAIIMS%20MEDICAL%20COLLEGE%2C%20RAJKOT!5e0!3m2!1sen!2sin!4v1647250355008!5m2!1sen!2sin"
frameborder="0" allowfullscreen></iframe>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-lg-12">
<div class="row">
<div class="col-md-6">
<div class="info-box">
<!-- <i class="bi bi-map"></i> -->
<!-- <svg xmlns="" width="16" height="16" fill="currentColor" class="bi bi-telephone-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"/>
</svg> -->
<img src="assets/img/logo.svg" class="img-fluid" style="height:50px;">
<h3>Our Address</h3>
<p>AIIMS Rajkot, Khanderi, Para Pipaliya, Rajkot, Gujarat, India, 360006</p>
</div>
</div>
<div class="col-md-3">
<div class="info-box">
<a href="mailto:[email protected]">
<i class="bi bi-envelope"></i>
<h3>Email Us</h3>
</a>
<p> dda [dot] aiimsrajkot [at] gmail [dot] com</p>
</div>
</div>
<div class="col-md-3">
<div class="info-box">
<a href="tel:+09 87654321">
<i class="bi bi-phone"></i>
<h3>Call Us</h3>
</a>
<p>+123 456 7890</p>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-6">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col form-group mt-3">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col form-group mt-3">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button type="submit" class="menu-btn">Send Message</button></div>
</form>
</div> -->
</div>
</div>
</section><!-- End Contact Section -->
<!-- ===== Govt of India Digital section===== -->
<section id="goi" class="goi-icons-section">
<div class="container">
<div class="row no-gutters align-items-md-stretch">
<div class="col-sm-2 d-flex ms-auto goi-card" onclick="window.open('https://www.digitalindia.gov.in')">
<img src="assets/img/govt-icons/DigitalIndia.png" class="img-fluid goi-icon mx-auto d-block" alt="">
</div>
<div class="col-sm-2 d-flex align-items-center goi-card" onclick="window.open('http://pmssy-mohfw.nic.in/')">
<img src="assets/img/govt-icons/govin.png" class="img-fluid goi-icon mx-auto d-block"
style="margin-top: 35px;" alt="">
</div>
<div class="col-sm-2 d-flex align-items-center goi-card"
onclick="window.open('https://meraaspataal.nhp.gov.in/')">
<img src="assets/img/govt-icons/Myhospital.png" class="img-fluid goi-icon mx-auto d-block" alt="">
</div>
<div class="col-sm-2 d-flex align-items-center goi-card" onclick="window.open('https://nhm.gov.in/')">
<img src="assets/img/govt-icons/nhm.png" class="img-fluid goi-icon mx-auto d-block" alt="">
</div>
<div class="col-sm-2 d-flex align-items-center goi-card" onclick="window.open('https://ors.gov.in/orsportal/')">
<img src="assets/img/govt-icons/ORS.png" class="img-fluid goi-icon mx-auto d-block" alt="">
</div>
<div class="col-sm-2 d-flex align-items-center goi-card" onclick="window.open('https://sbmurban.org/')">
<img src="assets/img/govt-icons/SwachhBharat.png" class="img-fluid goi-icon mx-auto d-block" alt="">
</div>
</div>
</div>
</section>
</main><!-- End #main -->
<!-- Footer -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-sm">
<div class="footer-info">
<h3>All India Institute of Medical Sciences, Rajkot</h3>
<p>(AIIMS), Khanderi, Para Pipaliya,<br> Rajkot, Gujarat, India, 360006</p>
<strong>Phone:</strong> +123 456 7890<br>
<strong>Email:</strong> dda [dot] aiimsrajkot [at] gmail [dot] com<br>
</p>
<div class="social-links mt-3">
<a href="https://twitter.com/aiimsrajkot" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/aiimsrajkot/" target="_blank" class="facebook"><i
class="bi bi-facebook"></i></a>
<a href="https://m.youtube.com/channel/UC0aNCYXJTCnDXBs4T4-zIOQ" class="google-plus"><i
class="bi bi-youtube"></i></a>
<!-- <a href="#" class="linkedin"><i class="bi bi-linkedin"></i></a> -->
<img src="assets/img/govt-icons/google-play.png" alt="" class="img-fluid app-store-image"
onclick="window.open('https://play.google.com/store/apps/details?id=com.cdac.aiimsrajkot&hl=en_IN&gl=US')" />
</div>
</div>
</div>
<div class="col-sm footer-links">
<h4>Important Links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="pages/rti.html">Right to Information</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="pages/privacy-statement.html">Privacy Statement</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="pages/terms-of-use.html">Terms of use</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.mohfw.gov.in/" target="_blank">MOHFW</a></li>
</ul>
</div>
<div class="col-sm footer-links">
<h4>Other AIIMS</h4>
<div class="row">
<div class="col-sm">
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiims.edu/" target="_blank">Delhi</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.aiimsbhopal.edu.in/"
target="_blank">Bhopal</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiimsbhubaneswar.nic.in/"
target="_blank">Bhuvaneswar</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.aiimsjodhpur.edu.in/"
target="_blank">Jodhpur</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiimspatna.org/" target="_blank">Patna</a>
</li>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiimskalyani.edu.in/"
target="_blank">Kalyani</a></li>
</ul>
</div>
<div class="col-sm">
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.aiimsdeoghar.edu.in/"
target="_blank">Deoghar</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiimsbathinda.edu.in/"
target="_blank">Bathinda</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.aiimsraipur.edu.in/"
target="_blank">Raipur</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiimsrishikesh.edu.in/"
target="_blank">Rishikesh</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiimsrbl.edu.in/"
target="_blank">Raebareli</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://www.aiimsmangalagiri.edu.in/"
target="_blank">Mangalagiri</a></li>
</ul>
</div>
<div class="col-sm">
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="http://aiimsnagpur.edu.in/"
target="_blank">Nagpur</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="https://aiimsgorakhpur.edu.in/"