-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1139 lines (1082 loc) · 38.3 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 class="no-js" lang="zxx">
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="Site keywords here">
<meta name="description" content="">
<meta name='copyright' content=''>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Title -->
<title>GMC Kottayam</title>
<!-- Favicon -->
<link rel="icon" href="img/title-removebg-preview.png">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap"
rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Nice Select CSS -->
<link rel="stylesheet" href="css/nice-select.css">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- icofont CSS -->
<link rel="stylesheet" href="css/icofont.css">
<!-- Slicknav -->
<link rel="stylesheet" href="css/slicknav.min.css">
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="css/owl-carousel.css">
<!-- Datepicker CSS -->
<link rel="stylesheet" href="css/datepicker.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="css/animate.min.css">
<!-- Magnific Popup CSS -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Medipro CSS -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="loader">
<div class="loader-outter"></div>
<div class="loader-inner"></div>
<div class="indicator">
<svg width="16px" height="12px">
<polyline id="back" points="1 6 4 6 6 11 10 1 12 6 15 6"></polyline>
<polyline id="front" points="1 6 4 6 6 11 10 1 12 6 15 6"></polyline>
</svg>
</div>
</div>
</div>
<!-- End Preloader -->
<!-- Header Area -->
<header class="header">
<!-- Topbar -->
<div class="topbar">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-5 col-12">
<!-- Contact -->
<ul class="top-link">
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- End Contact -->
</div>
<div class="col-lg-6 col-md-7 col-12">
<!-- Top Contact -->
<ul class="top-contact">
<li><i class="fa fa-phone"></i>0481-2592001</li>
<li><i class="fa fa-envelope"></i><a
href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
<!-- End Top Contact -->
</div>
</div>
</div>
</div>
<!-- End Topbar -->
<!-- Header Inner -->
<div class="header-inner">
<div class="container">
<div class="inner">
<div class="row">
<div class="col-lg-3 col-md-3 col-12">
<!-- Start Logo -->
<div class="logo">
<a href="index.html"><img src="img/kmc_logo.webp" alt="#"></a>
</div>
<!-- End Logo -->
<!-- Mobile Nav -->
<div class="mobile-nav"></div>
<!-- End Mobile Nav -->
</div>
<div class="col-lg-7 col-md-9 col-12">
<!-- Main Menu -->
<div class="main-menu">
<nav class="navigation">
<ul class="nav menu">
<li class="active"><a href="#">Home </a>
</li>
<li><a href="#about">About </a></li>
<li><a href="#services">Services </a></li>
<li><a href="#fees">Fees&Charges </a>
</li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
<!--/ End Main Menu -->
</div>
<div class="col-lg-2 col-12">
<div class="get-quote">
<a href="#appointment" class="btn">Get Appointment</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/ End Header Inner -->
</header>
<!-- End Header Area -->
<!-- Slider Area -->
<section class="slider">
<div class="hero-slider">
<!-- Start Single Slider -->
<div class="single-slider" style="background-image:url('img/slider2.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="text">
<h1>We Provide <span>Medical</span> Services That You Can <span>Trust!</span></h1>
<p>GOVERNMENT MEDICAL COLLEGE HOSPITAL </p>
<div class="button">
<a href="#appointment" class="btn">Get Appointment</a>
<a href="#about" class="btn primary">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Single Slider -->
<!-- Start Single Slider -->
<div class="single-slider" style="background-image:url('img/slider.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="text">
<h1>We Provide <span>Medical</span> Services That You Can <span>Trust!</span></h1>
<p>GOVERNMENT MEDICAL COLLEGE HOSPITAL </p>
<div class="button">
<a href="#appointment" class="btn">Get Appointment</a>
<a href="#about" class="btn primary">About Us</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Start End Slider -->
<!-- Start Single Slider -->
<div class="single-slider" style="background-image:url('img/slider3.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="text">
<h1>We Provide <span>Medical</span> Services That You Can <span>Trust!</span></h1>
<p>GOVERNMENT MEDICAL COLLEGE HOSPITAL</p>
<div class="button">
<a href="#appointment" class="btn">Get Appointment</a>
<a href="contact.html" class="btn primary">Conatct Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Single Slider -->
</div>
</section>
<!--/ End Slider Area -->
<!-- Start Schedule Area -->
<section class="schedule">
<div class="container">
<div class="schedule-inner">
<div class="row">
<div class="col-lg-4 col-md-6 col-12 ">
<!-- single-schedule -->
<div class="single-schedule first">
<div class="inner">
<div class="icon">
<i class="fa fa-ambulance"></i>
</div>
<div class="single-content">
<span>GMC Kottayam</span>
<h4>Emergency Cases</h4>
<p>Providing medical and Surgical care 24×7.
The team members are available physically in Emergency department in 8/12 hrs
shift.</p>
<a href="#about">LEARN MORE<i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- single-schedule -->
<div class="single-schedule middle">
<div class="inner">
<div class="icon">
<i class="icofont-prescription"></i>
</div>
<div class="single-content">
<span>GMC Kottayam</span>
<h4>Our Doctors </h4>
<p>Our doctors are committed to advancing medical knowledge and improving patient
care through cutting-edge research.</p>
<a href="#about">LEARN MORE<i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-12">
<!-- single-schedule -->
<div class="single-schedule last">
<div class="inner">
<div class="icon">
<i class="icofont-ui-clock"></i>
</div>
<div class="single-content">
<span>GMC Kottayam</span>
<h4>OP Time </h4>
<ul class="time-sidual">
<li class="day">Monday - Saturday <span> 8.00 am – 1.00 pm</span></li>
<li class="day">Casualty <span>24 Hours</span></li>
<li class="day">15 departments<span>All days</span></li>
<li class="day">Other department<span>Alternative days</span></li>
</ul>
<a href="#about">LEARN MORE<i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/End Start schedule Area -->
<!-- Start Feautes -->
<section class="Feautes section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2>We Are Always Ready to Help You & Your Family</h2>
<img src="img/section-img.png" alt="#">
<p>The mission of Government Medical College Kottayam is to provide exemplary medical education,
conduct innovative research, and deliver exceptional healthcare services to our community
and beyond.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-12">
<!-- Start Single features -->
<div class="single-features">
<div class="signle-icon">
<i class="icofont icofont-ambulance-cross"></i>
</div>
<h3>Emergency Help</h3>
<p>Hospital-Casualty – 0481-2592475</p>
</div>
<!-- End Single features -->
</div>
<div class="col-lg-4 col-12">
<!-- Start Single features -->
<div class="single-features">
<div class="signle-icon">
<i class="icofont icofont-medical-sign-alt"></i>
</div>
<h3>Hospital Administrative </h3>
<p>Hospital-Enquiry – 0481-2592201</p>
</div>
<!-- End Single features -->
</div>
<div class="col-lg-4 col-12">
<!-- Start Single features -->
<div class="single-features last">
<div class="signle-icon">
<i class="icofont icofont-stethoscope"></i>
</div>
<h3>Medical Treatment</h3>
<p>Hospital Superintendent Office – 0481-2592204</p>
</div>
<!-- End Single features -->
</div>
</div>
</div>
</section>
<!--/ End Feautes -->
<!-- Start Fun-facts -->
<div id="fun-facts" class="fun-facts section overlay">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-12">
<!-- Start Single Fun -->
<div class="single-fun">
<i class="icofont icofont-home"></i>
<div class="content">
<span class="counter">2094</span>
<p>Hospital Rooms</p>
</div>
</div>
<!-- End Single Fun -->
</div>
<div class="col-lg-3 col-md-6 col-12">
<!-- Start Single Fun -->
<div class="single-fun">
<i class="icofont icofont-user-alt-3"></i>
<div class="content">
<span class="counter">327</span>
<p>Specialist Doctors</p>
</div>
</div>
<!-- End Single Fun -->
</div>
<div class="col-lg-3 col-md-6 col-12">
<!-- Start Single Fun -->
<div class="single-fun">
<i class="icofont-simple-smile"></i>
<div class="content">
<span class="counter">3000</span>
<p>Out Patients Per Day</p>
</div>
</div>
<!-- End Single Fun -->
</div>
<div class="col-lg-3 col-md-6 col-12">
<!-- Start Single Fun -->
<div class="single-fun">
<i class="icofont icofont-table"></i>
<div class="content">
<span class="counter">62</span>
<p>Years of Experience</p>
</div>
</div>
<!-- End Single Fun -->
</div>
</div>
</div>
</div>
<!--/ End Fun-facts -->
<!-- Start Why choose -->
<section class="why-choose section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title" id="about">
<h2>We Offer Different Services To Improve Your Health</h2>
<img src="img/section-img.png" alt="#">
<p>Our vision is to be a world-class institution that excels in medical education, research, and
healthcare delivery. We aspire to foster a culture of excellence, innovation, and compassion
to shape the future of healthcare in our region and beyond.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-12">
<!-- Start Choose Left -->
<div class="choose-left">
<h3>Who We Are</h3>
<p>The Third Medical College in Kerala, was established in 1962. It was formally inaugurated on
03.12.1962 by Sri.R Sankar,the then Chief Minister of Kerala in the presence of Sri.M P
Govindan Nair, the Health Minister.</p>
<p>It has a campus which spreads across 265 acres of beautiful land shared by two panchayats
(Arpookkara and Athirampuzha) and Kottayam municipality. This is a tertiary care hospital
catering to people from five districts including Kottayam, Idukki, Alappuzha, Pathanamthitta
and Ernakulam. This is the referral hospital for lakhs of pilgrims visiting Sabarimala
temple. The world-renowned tourism spot Kumarakom, is just 14 kilometers away. Government
Medical College Kottayam is a 2094 bedded hospital which has about 3000 out-patients and
more than 500 emergency patient visits per day. The number of in-patients being treated in
this hospital is more than one lakh annually. There are 327 regular teaching faculty and
more than 1550 other staff working in this institution. Annual intake for medical
undergraduate course is 175 and that for post-graduation is 142. Total annual intake for
pharmacy and other para–medical courses is 196.
</p>
<div class="row">
<div class="col-lg-6">
<ul class="list">
<li><i class="fa fa-caret-right"></i>Vast campus area</li>
<li><i class="fa fa-caret-right"></i>Vital tertiary care hub</li>
<li><i class="fa fa-caret-right"></i>Key pilgrim referral center</li>
</ul>
</div>
<div class="col-lg-6">
<ul class="list">
<li><i class="fa fa-caret-right"></i>Busy with daily emergencies</li>
<li><i class="fa fa-caret-right"></i>Extensive medical faculty</li>
<li><i class="fa fa-caret-right"></i>Wide range of courses</li>
</ul>
</div>
</div>
</div>
<!-- End Choose Left -->
</div>
<div class="col-lg-6 col-12">
<!-- Start Choose Rights -->
<div class="choose-right">
<div class="video-image">
<img src="img/himg.jpg" alt="#">
</div>
</div>
<!-- End Choose Rights -->
</div>
</div>
</div>
</section>
<!--/ End Why choose -->
<!-- Start Call to action -->
<section class="call-action overlay" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-12">
<div class="content">
<h2>Do you need Emergency Medical Care? Call @ 0481-2592001</h2>
<p>GMC Hospital Kottayam</p>
<div class="button">
<a href="contact.html" class="btn">Contact Now</a>
<a href="#about" class="btn second">Learn More<i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ End Call to action -->
<!-- Start portfolio -->
<section class="portfolio section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2>We Maintain Cleanliness Rules Inside Our Hospital</h2>
<img src="img/section-img.png" alt="#">
<p>Government Medical College Hospital Kottayam</p>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 col-12">
<div class="owl-carousel portfolio-slider">
<div class="single-pf">
<img src="img/gallery-3.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
<div class="single-pf">
<img src="img/slide-9.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
<div class="single-pf">
<img src="img/gallery-1.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
<div class="single-pf">
<img src="img/gallery-2.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
<div class="single-pf">
<img src="img/EGOT2.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
<div class="single-pf">
<img src="img/gallery-5.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
<div class="single-pf">
<img src="img/Operation-Theatre1-1024x576.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
<div class="single-pf">
<img src="img/gallery-4.jpg" alt="#">
<a href="#about" class="btn">View Details</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ End portfolio -->
<!-- Start service -->
<section class="services section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title" id="services">
<h2>We Offer Different Services To Improve Your Health</h2>
<img src="img/section-img.png" alt="#">
<p>Government Medical College Hospital Kottayam</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-12">
<!-- Start Single Service -->
<div class="single-service">
<i class="icofont icofont-prescription"></i>
<h4><a href="service-details.html">General Treatment</a></h4>
<p>The team consists of Medical superintendent/RMO/Chief Nursing Officer with support of doctors
and hospital staff.</p>
</div>
<!-- End Single Service -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Start Single Service -->
<div class="single-service">
<i class="icofont-surgeon"></i>
<h4><a href="service-details.html">Plastic Surgery</a></h4>
<p>This is a high volume tertiary care department handling all aspects of Plastic Surgery like
reconstruction in Trauma, Malignancies, Micro Vascular Surgery, Aesthetic Surgery,
Congenital anomalies and Burns. </p>
</div>
<!-- End Single Service -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Start Single Service -->
<div class="single-service">
<i class="icofont icofont-heart-alt"></i>
<h4><a href="service-details.html">Cardiology</a></h4>
<p>Department of Cardiology, started in 1972 in Government medical college Kottayam is known for
catering thousands of patients coming from various districts of Kerala. </p>
</div>
<!-- End Single Service -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Start Single Service -->
<div class="single-service">
<i class="icofont icofont-listening"></i>
<h4><a href="service-details.html">E N T</a></h4>
<p>Presently under the able leadership of Dr. Sadarudheen Ahmed. M, our department is dedicated
to providing comprehensive care for all ear, nose, and throat related disorders</p>
</div>
<!-- End Single Service -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Start Single Service -->
<div class="single-service">
<i class="icofont icofont-eye-alt"></i>
<h4><a href="service-details.html">Ophthalmology</a></h4>
<p>Our department provides specialty care in retina and uvea , cataract, squint and pediatric
ophthalmology, cornea and eye banking, neurophthalmology and orbit and refractive services.
</p>
</div>
<!-- End Single Service -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Start Single Service -->
<div class="single-service">
<i class="icofont icofont-blood"></i>
<h4><a href="service-details.html">Blood Bank</a></h4>
<p>We try to maintain correct information of each blood bank.Source of the information in
current state is National Blood Bank data provided by the Government of India. </p>
</div>
<!-- End Single Service -->
</div>
</div>
</div>
</section>
<!--/ End service -->
<!-- Pricing Table -->
<section class="pricing-table section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title" id="fees">
<h2>We Provide You The Best Treatment In Resonable Price</h2>
<img src="img/section-img.png" alt="#">
<p>Government Medical College Hospital Kottayam</p>
</div>
</div>
</div>
<div class="row">
<!-- Single Table -->
<div class="col-lg-4 col-md-12 col-12">
<div class="single-table">
<!-- Table Head -->
<div class="table-head">
<div class="icon">
<i class="icofont icofont-ui-cut"></i>
</div>
<h4 class="title">Plastic Surgery</h4>
<div class="price">
<p class="amount">Rs.81,000<span>/ Min Cost</span></p>
</div>
</div>
<!-- Table List -->
<ul class="table-list">
<li><i class="icofont icofont-ui-check"></i>Dermatosurgery </li>
<li><i class="icofont icofont-ui-check"></i>Paediatric Dermatology </li>
<li><i class="icofont icofont-ui-check"></i>Botulinum Toxin Injection (Botox)</li>
<li><i class="icofont icofont-ui-check"></i>Aesthetic Surgery</li>
<li><i class="icofont icofont-ui-check"></i>Transgender Surgeries</li>
</ul>
<div class="table-bottom">
<a class="btn" href="#appointment">Book Now</a>
</div>
<!-- Table Bottom -->
</div>
</div>
<!-- End Single Table-->
<!-- Single Table -->
<div class="col-lg-4 col-md-12 col-12">
<div class="single-table">
<!-- Table Head -->
<div class="table-head">
<div class="icon">
<i class="icofont-brand-tribenet"></i>
</div>
<h4 class="title">Neuro Surgery</h4>
<div class="price">
<p class="amount">Rs.95,000<span>/ Min Cost</span></p>
</div>
</div>
<!-- Table List -->
<ul class="table-list">
<li><i class="icofont icofont-ui-check"></i>Peripheral Nerve surgeries</li>
<li><i class="icofont icofont-ui-check"></i>Burrhole Evacuations</li>
<li><i class="icofont icofont-ui-check"></i>Atest Neurovascular Surgeries</li>
<li><i class="icofont icofont-ui-check"></i>Spine Deformity Surgeries</li>
<li><i class="icofont icofont-ui-check"></i>Spondylolisthesis</li>
</ul>
<div class="table-bottom">
<a class="btn" href="#appointment">Book Now</a>
</div>
<!-- Table Bottom -->
</div>
</div>
<!-- End Single Table-->
<!-- Single Table -->
<div class="col-lg-4 col-md-12 col-12">
<div class="single-table">
<!-- Table Head -->
<div class="table-head">
<div class="icon">
<i class="icofont-heart-beat"></i>
</div>
<h4 class="title">Cardio Surgery</h4>
<div class="price">
<p class="amount">Rs.1,12,000<span>/ Min Cost </span></p>
</div>
</div>
<!-- Table List -->
<ul class="table-list">
<li><i class="icofont icofont-ui-check"></i>Thoracic ICU </li>
<li><i class="icofont icofont-ui-check"></i>paediatric cardiac surgery</li>
<li><i class="icofont icofont-ui-check"></i>entral suction facilities</li>
<li><i class="icofont icofont-ui-check"></i>Non Invasive Ventilator </li>
<li><i class="icofont icofont-ui-check"></i>Epicardial pacemaker</li>
</ul>
<div class="table-bottom">
<a class="btn" href="#appointment">Book Now</a>
</div>
<!-- Table Bottom -->
</div>
</div>
<!-- End Single Table-->
</div>
</div>
</section>
<!--/ End Pricing Table -->
<!-- Start Blog Area -->
<section class="blog section" id="blog">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2>Keep up with Our Most Recent Medical News.</h2>
<img src="img/section-img.png" alt="#">
<p>Government Medical College Hospital Kottayam</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-12">
<!-- Single Blog -->
<div class="single-news">
<div class="news-head">
<img src="img/cvts-11 (2).jpg" alt="#">
</div>
<div class="news-body">
<div class="news-content">
<div class="date">22 MAY, 2023</div>
<h2><a href="blog-single.html">Excellence in Cardiovascular and Thoracic Surgery </a>
</h2>
<p class="text">Invited and topic presented Mitral valve repair for Infective
Endocarditis Surgical strategy and key points on Intensive Mitral Valve Advanced
Repair Workshop at the Central Chest Institute of Thailand (CCIT), Nonthaburi,
Thailand on May 2023</p>
</div>
</div>
</div>
<!-- End Single Blog -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Single Blog -->
<div class="single-news">
<div class="news-head">
<img src="img/newradi.jpg" alt="#">
</div>
<div class="news-body">
<div class="news-content">
<div class="date">15 JAN, 2024</div>
<h2><a href="blog-single.html">New Radiology Department</a></h2>
<p class="text">“New Radiology Department is under construction in the ground floor of
the Surgical Block. It is
well equipped with state of art Machines and other machines, 3TMRI, 256 slice CT,
DR, Digital Fluro , Digital
Mammography and Ultrasound machines with color Doppler.”</p>
</div>
</div>
</div>
<!-- End Single Blog -->
</div>
<div class="col-lg-4 col-md-6 col-12">
<!-- Single Blog -->
<div class="single-news">
<div class="news-head">
<img src="img/liver.jpg" alt="#">
</div>
<div class="news-body">
<div class="news-content">
<div class="date">14 FEB, 2022</div>
<h2><a href="blog-single.html">The Department of Surgical Gastroenterology </a></h2>
<p class="text">The department got licensed for Liver Transplantation in August, 2021
and did the first Liver Transplantation (Living Donor) on 14th February, 2022. This
was the first suceessful LDLT of Kerala Government sector.</p>
</div>
</div>
</div>
<!-- End Single Blog -->
</div>
</div>
</div>
</section>
<!-- End Blog Area -->
<!-- Start Appointment -->
<section class="appointment">
<div class="container" id="appointment">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2>We Are Always Ready to Help You. Book An Appointment</h2>
<img src="img/section-img.png" alt="#">
<p>Government Medical College Hospital Kottayam</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-12 col-12">
<form class="form" id="form">
<div class="row">
<div class="col-lg-6 col-md-6 col-12">
<div class="form-group">
<input name="name" id="name" type="text" placeholder="Name">
</div>
</div>
<div class="col-lg-6 col-md-6 col-12">
<div class="form-group">
<input name="email" id="email" type="email" placeholder="Email">
</div>
</div>
<div class="col-lg-6 col-md-6 col-12">
<div class="form-group">
<input name="phone" id="phone" type="text" placeholder="Phone">
</div>
</div>
<div class="col-lg-6 col-md-6 col-12">
<div class="form-group">
<div class="nice-select form-control wide" id="dept" tabindex="0"><span
class="current">Department</span>
<ul class="list">
<li data-value="1" class="option selected ">Department</li>
<li data-value="2" class="option">Anaesthesiology</li>
<li data-value="3" class="option">Anatomy</li>
<li data-value="4" class="option">Biochemistry</li>
<li data-value="5" class="option">Cardiology</li>
<li data-value="6" class="option">Cardio Vascular and Thoracic Surgery</li>
<li data-value="7" class="option">Dermatology and Venereology</li>
<li data-value="8" class="option">E N T</li>
<li data-value="9" class="option">Forensic Medicine</li>
<li data-value="10" class="option">Gastroenterology</li>
<li data-value="11" class="option">General Surgery</li>
<li data-value="12" class="option">Microbiology</li>
<li data-value="13" class="option">Nephrology</li>
<li data-value="14" class="option">Neuro Surgery</li>
<li data-value="15" class="option">Ophthalmology</li>
<li data-value="16" class="option">Plastic Surgery</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-12">
<div class="form-group">
<div class="nice-select form-control wide" id="doctor" tabindex=" 0"><span
class="current">Doctor</span>
<ul class="list">
<li data-value="1" class="option selected focus">Doctor</li>
<li data-value="2" class="option">Dr. Sheela Verghese</li>
<li data-value="3" class="option">Dr. Jim Joe</li>
<li data-value="4" class="option">Dr Baiju R</li>
<li data-value="5" class="option">Dr Ajithkumar K</li>
<li data-value="6" class="option">Dr. Jayakumar T.K</li>
<li data-value="7" class="option">Dr. Sadarudheen Ahmed. M</li>
<li data-value="8" class="option">Dr. Liza John</li>
<li data-value="9" class="option">Dr. Sandesh K</li>
<li data-value="10" class="option">Dr. S.Sunil</li>
<li data-value="11" class="option">DR. S Vasudevan</li>
<li data-value="12" class="option">Dr Juby John </li>
<li data-value="13" class="option">Dr. Murali T V </li>
<li data-value="14" class="option">Dr. T.R. Radha</li>
<li data-value="15" class="option"> Dr Mohandas M.K</li>
<li data-value="16" class="option">Dr. Jacob George</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-12">
<div class="form-group">
<input type="text" placeholder="Date" id="datepicker">
</div>
</div>
<div class="col-lg-12 col-md-12 col-12">
<div class="form-group">
<textarea name="message" id="message"
placeholder="Write Your issue Here....."></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-5 col-md-4 col-12">
<div class="form-group">
<div class="button">
<button type="submit" id="submit-btn" class="btn">Book An Appointment</button>
</div>
</div>
</div>
<div class="col-lg-7 col-md-8 col-12">
<p>( We will be confirm by an Text Message )</p>
</div>
</div>
</form>
</div>
<div class="col-lg-6 col-md-12 ">
<div class="appointment-image">
<img src="img/contact-img.png" alt="#">
</div>
</div>
</div>
</div>
</section>
<!-- End Appointment -->
<!-- Start Newsletter Area -->
<section class="newsletter section">
<div class="container">
<div class="row ">
<div class="col-lg-6 col-12">
<!-- Start Newsletter Form -->
<div class="subscribe-text ">
<h6>Sign up for newsletter</h6>
<p class="">Government Medical College Hospital Kottayam</p>
</div>
<!-- End Newsletter Form -->
</div>
<div class="col-lg-6 col-12">
<!-- Start Newsletter Form -->
<div class="subscribe-form ">
<form action="mail/mail.php" method="get" target="_blank" class="newsletter-inner">
<input name="EMAIL" placeholder="Your email address" class="common-input"
onfocus="this.placeholder = ''" onblur="this.placeholder = 'Your email address'"
required="" type="email">
<button class="btn">Subscribe</button>
</form>
</div>
<!-- End Newsletter Form -->
</div>
</div>
</div>
</section>
<!-- /End Newsletter Area -->
<!-- Footer Area -->
<footer id="footer" class="footer ">
<!-- Footer Top -->
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-12">
<div class="single-footer">
<h2>About Us</h2>
<p>Government Medical College<br>
Gandhinager, Kottayam<br>
Kerala Pin-686008<br>
</p>
<!-- Social -->
<!-- End Social -->
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="single-footer f-link">
<h2>Quick Links</h2>
<div class="row">
<div class="col-lg-6 col-md-6 col-12">
<ul>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>Home</a>
</li>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>About Us</a>
</li>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>Services</a>
</li>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>Our
Cases</a></li>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>Other
Links</a></li>
</ul>
</div>
<div class="col-lg-6 col-md-6 col-12">
<ul>
<li><a href="#"><i class="fa fa-caret-right"
aria-hidden="true"></i>Consuling</a></li>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>Finance</a>
</li>
<li><a href="#"><i class="fa fa-caret-right"
aria-hidden="true"></i>Testimonials</a></li>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>FAQ</a></li>
<li><a href="#"><i class="fa fa-caret-right" aria-hidden="true"></i>Contact
Us</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="single-footer">
<h2>Open Hours</h2>
<p>Government Medical College Hospital Kottayam</p>
<ul class="time-sidual">
<li class="day"> Monday - Saturday<span>8.00 am–1.00 pm</span></li>