-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
3371 lines (3234 loc) · 183 KB
/
about.html
File metadata and controls
3371 lines (3234 loc) · 183 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - Ropheka Hospitals</title>
<!--=====FAB ICON=======-->
<link rel="shortcut icon" href="assets/img/logo/fav-logo1.png" type="image/x-icon" />
<!--===== CSS LINK =======-->
<link rel="stylesheet" href="assets/css/plugins/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/plugins/aos.css" />
<link rel="stylesheet" href="assets/css/plugins/fontawesome.css" />
<link rel="stylesheet" href="assets/css/plugins/magnific-popup.css" />
<link rel="stylesheet" href="assets/css/plugins/owlcarousel.min.css" />
<link rel="stylesheet" href="assets/css/plugins/sidebar.css" />
<link rel="stylesheet" href="assets/css/plugins/slick-slider.css" />
<link rel="stylesheet" href="assets/css/plugins/nice-select.css" />
<link rel="stylesheet" href="assets/css/plugins/swiper-bundle.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!--===== JS SCRIPT LINK =======-->
<script src="assets/js/plugins/jquery-3-7-1.min.js"></script>
</head>
<body class="homepage1-body">
<!--===== PROGRESS STARTS=======-->
<div class="paginacontainer">
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
</div>
<!--===== PROGRESS ENDS=======-->
<!--=====HEADER START=======-->
<header class="homepage3-body">
<div id="vl-header-sticky" class="vl-header-area vl-transparent-header" style="background-color: white !important">
<div class="container-fulid inner-alginment">
<div class="row">
<div class="col-lg-12">
<div class="header-top-area">
<div class="header-list">
<ul>
<li>
<a href="#"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"
fill="none">
<g clip-path="url(#clip0_5594_78877)">
<path
d="M7.5013 16.668H5.0013C4.11725 16.668 3.2694 16.3168 2.64428 15.6917C2.01916 15.0665 1.66797 14.2187 1.66797 13.3346V5.83464C1.66797 4.95058 2.01916 4.10273 2.64428 3.47761C3.2694 2.85249 4.11725 2.5013 5.0013 2.5013H14.168C15.052 2.5013 15.8999 2.85249 16.525 3.47761C17.1501 4.10273 17.5013 4.95058 17.5013 5.83464V8.33464M6.66797 1.66797V3.33464M12.5013 1.66797V3.33464M1.66797 6.66797H17.5013M15.418 13.0371L14.168 14.2871"
stroke="#1C293F" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M14.1667 18.3333C16.4679 18.3333 18.3333 16.4679 18.3333 14.1667C18.3333 11.8655 16.4679 10 14.1667 10C11.8655 10 10 11.8655 10 14.1667C10 16.4679 11.8655 18.3333 14.1667 18.3333Z"
stroke="#1C293F" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_5594_78877">
<rect width="20" height="20" fill="white" />
</clipPath>
</defs>
</svg>
24/7 Availability </a>
</li>
</ul>
</div>
<ul>
<li>
<a href="mailto:info@rophekahospitals.in"><svg xmlns="http://www.w3.org/2000/svg" width="20"
height="20" viewBox="0 0 20 20" fill="none">
<path
d="M2.92857 15.0714L7.57143 9.5M17.7857 15.0714L13.1429 9.5M2 5.78571L8.70893 10.2583C9.30461 10.6554 9.6024 10.854 9.92434 10.9311C10.2089 10.9994 10.5054 10.9994 10.7899 10.9311C11.1119 10.854 11.4097 10.6554 12.0054 10.2583L18.7143 5.78571M4.97143 16H15.7429C16.7829 16 17.303 16 17.7003 15.7976C18.0497 15.6196 18.3338 15.3354 18.5119 14.986C18.7143 14.5888 18.7143 14.0687 18.7143 13.0286V5.97143C18.7143 4.93134 18.7143 4.41128 18.5119 4.01402C18.3338 3.66457 18.0497 3.38046 17.7003 3.20252C17.303 3 16.7829 3 15.7429 3H4.97143C3.93134 3 3.41128 3 3.01402 3.20252C2.66457 3.38046 2.38046 3.66457 2.20252 4.01402C2 4.41128 2 4.93133 2 5.97143V13.0286C2 14.0687 2 14.5888 2.20252 14.986C2.38046 15.3354 2.66457 15.6196 3.01402 15.7976C3.41128 16 3.93133 16 4.97143 16Z"
stroke="#1C293F" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" />
</svg>
info@rophekahospitals.in</a>
<span> | </span>
</li>
<li>
<a href="tel:(234)345-4574"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"
viewBox="0 0 20 20" fill="none">
<path
d="M10.8763 5.83333C11.6903 5.99214 12.4383 6.39022 13.0247 6.97662C13.6111 7.56301 14.0092 8.31105 14.168 9.125M10.8763 2.5C12.5674 2.68787 14.1443 3.44514 15.3482 4.64751C16.5521 5.84987 17.3114 7.42584 17.5013 9.11667M14.5846 18.3333C7.45096 18.3333 1.66797 12.5503 1.66797 5.41667C1.66797 5.09482 1.67974 4.77572 1.70288 4.45977C1.72943 4.09718 1.7427 3.91589 1.83772 3.75086C1.91642 3.61417 2.05589 3.48455 2.19795 3.41604C2.36948 3.33333 2.56954 3.33333 2.96964 3.33333H5.3174C5.65387 3.33333 5.8221 3.33333 5.96632 3.38871C6.09371 3.43763 6.20714 3.51708 6.29665 3.62008C6.39798 3.73669 6.45547 3.8948 6.57046 4.21101L7.54222 6.88337C7.67597 7.25127 7.74289 7.43522 7.73155 7.60975C7.72155 7.76364 7.66897 7.91173 7.5798 8.03755C7.47869 8.18023 7.31084 8.28094 6.97516 8.48235L5.83464 9.16667C6.83622 11.3741 8.62638 13.1666 10.8346 14.1667L11.519 13.0262C11.7204 12.6904 11.8211 12.5226 11.9637 12.4215C12.0896 12.3323 12.2376 12.2797 12.3916 12.2697C12.5661 12.2584 12.7501 12.3253 13.118 12.4591L15.7903 13.4308C16.1065 13.5458 16.2646 13.6033 16.3812 13.7047C16.4842 13.7942 16.5637 13.9076 16.6126 14.035C16.668 14.1792 16.668 14.3474 16.668 14.6839V17.0317C16.668 17.4317 16.668 17.6318 16.5852 17.8033C16.5167 17.9454 16.3871 18.0849 16.2505 18.1636C16.0854 18.2586 15.9041 18.2718 15.5416 18.2984C15.2256 18.3216 14.9065 18.3333 14.5846 18.3333Z"
stroke="#1C293F" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" />
</svg>
+919570017001</a>
</li>
</ul>
</div>
</div>
<div class="space16 d-lg-block d-none"></div>
</div>
<div class="row align-items-center">
<div class="col-lg-2 col-md-6 col-6">
<div class="vl-logo">
<a href="index.html">
<img src="assets/img/logo/logo1.png" alt="Logo" />
</a>
</div>
</div>
<div class="col-lg-8 d-none d-lg-block">
<div class="vl-main-menu text-center">
<nav class="vl-mobile-menu-active">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li class="nav-item dropdown has-megamenu">
<a class="nav-link " href="specialties.html">
Specialties <i class="fa-solid fa-angle-down d-lg-inline d-none"></i>
</a>
<div class="sub-menu megamenu" role="menu">
<div class="row">
<!-- General Care -->
<div class="col-lg-3 col-md-6">
<h6 class="fw-bold mb-2">General Care</h6>
<ul class="list-unstyled">
<li><a href="general-medicine.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">General Medicine</span></a></li>
<li><a href="general-practitioner.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">General Practitioner</span></a></li>
<li><a href="general-surgery.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">General Surgery</span></a></li>
<li><a href="paediatrics.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Paediatrics</span></a></li>
<li><a href="obstetrics-gynaecology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Obstetrics & Gynaecology</span></a></li>
</ul>
</div>
<!-- Specialties -->
<div class="col-lg-3 col-md-6">
<h6 class="fw-bold mb-2">Specialties</h6>
<ul class="list-unstyled">
<li><a href="orthopaedics.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Orthopaedics</span></a></li>
<li><a href="skin-dermatology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Skin & Dermatology</span></a></li>
<li><a href="haematology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Haematology</span></a></li>
<li><a href="dental.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Dental</span></a></li>
<li><a href="neurology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Neurology</span></a></li>
</ul>
</div>
<!-- Critical Care -->
<div class="col-lg-3 col-md-6">
<h6 class="fw-bold mb-2">Critical Care</h6>
<ul class="list-unstyled">
<li><a href="anaesthesia-critical-care.html"><i class="fa-solid fa-arrow-right me-2"></i>
<span class="link-text">Anaesthesia & Critical Care</span></a></li>
<li><a href="respiratory-medicine.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Respiratory Medicine</span></a></li>
<li><a href="vascular-surgery.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Vascular Surgery</span></a></li>
<li><a href="plastic-surger.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Plastic Surgery</span></a></li>
<li><a href="ent-ear-nose-throat.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">ENT (Ear, Nose & Throat)</span></a></li>
</ul>
</div>
<!-- Oncology & More -->
<div class="col-lg-3 col-md-6">
<h6 class="fw-bold mb-2">Oncology & More</h6>
<ul class="list-unstyled">
<li><a href="oncology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Oncology</span></a></li>
<li><a href="medical-oncology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Medical Oncology</span></a></li>
<li><a href="surgical-oncology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Surgical Oncology</span></a></li>
<li><a href="diabetology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Diabetology</span></a></li>
<li><a href="cardiology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Cardiology</span></a></li>
<li><a href="nephrology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Nephrology</span></a></li>
<li><a href="urology.html"><i class="fa-solid fa-arrow-right me-2"></i> <span
class="link-text">Urology</span></a></li>
</ul>
</div>
</div>
</div>
<ul class="sub-menu d-lg-none">
<li><a href="general-medicine.html">General Medicine</a></li>
<li><a href="general-practitioner.html">General Practitioner</a></li>
<li><a href="general-surgery.html">General Surgery</a></li>
<li><a href="paediatrics.html">Paediatrics</a></li>
<li><a href="obstetrics-gynaecology.html">Obstetrics & Gynaecology</a></li>
<li><a href="orthopaedics.html">Orthopaedics</a></li>
<li><a href="skin-dermatology.html">Skin & Dermatology</a></li>
<li><a href="haematology.html">Haematology</a></li>
<li><a href="dental.html">Dental</a></li>
<li><a href="neurology.html">Neurology</a></li>
<li><a href="anaesthesia-critical-care.html">Anaesthesia & Critical Care</a></li>
<li><a href="respiratory-medicine.html">Respiratory Medicine</a></li>
<li><a href="vascular-surgery.html">Vascular Surgery</a></li>
<li><a href="plastic-surger.html">Plastic Surgery</a></li>
<li><a href="ent-ear-nose-throat.html">ENT (Ear, Nose & Throat)</a></li>
<li><a href="oncology.html">Oncology</a></li>
<li><a href="medical-oncology.html">Medical Oncology</a></li>
<li><a href="surgical-oncology.html">Surgical Oncology</a></li>
<li><a href="diabetology.html">Diabetology</a></li>
<li><a href="cardiology.html">Cardiology</a></li>
<li><a href="nephrology.html">Nephrology</a></li>
<li><a href="urology.html">Urology</a></li>
</ul>
</li>
<li class="has-dropdown">
<a href="services.html">Services
<span class="arrow-size">
<i class="fa-solid fa-angle-down d-lg-inline d-none"></i>
</span>
</a>
<ul class="sub-menu">
<li><a href="services/laboratory.html">Laboratory</a></li>
<li><a href="services/ambulance-facility.html">Ambulance Facility</a></li>
</ul>
</li>
<li><a href="careers.html">Careers</a></li>
<li><a href="emergency-care.html">24/7 Emergency Care</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
<div class="col-lg-2 col-md-6 col-6">
<div class="vl-hero-btn d-none d-lg-block text-end">
<div class="btn-area1">
<a href="contact.html" class="vl-btn12">
<span class="text">Book Now <i class="fa-solid fa-arrow-right"></i></span>
</a>
</div>
</div>
<div class="vl-header-action-item d-block d-lg-none">
<button type="button" class="vl-offcanvas-toggle">
<i class="fa-solid fa-bars-staggered"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</header>
<!--=====HEADER END =======-->
<!--===== MOBILE HEADER STARTS =======-->
<div class="homepage4-body">
<div class="vl-offcanvas">
<div class="vl-offcanvas-wrapper">
<div class="vl-offcanvas-header d-flex justify-content-between align-items-center mb-90">
<div class="vl-offcanvas-close">
<button class="vl-offcanvas-close-toggle">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
</div>
<div class="vl-offcanvas-menu d-lg-none mb-40">
<nav></nav>
</div>
</div>
</div>
<div class="vl-offcanvas-overlay"></div>
</div>
<!--===== MOBILE HEADER STARTS =======-->
<!--===== HERO AREA STARTS =======-->
<div class="inner-header-section-area" style="
background-image: url(assets/img/all-images/bg/bg9.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
">
<img src="assets/img/elements/elements28.png" alt="" class="elements28" />
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12">
<div class="hero-header">
<h1 class="text-anime-style-1" style="color: white; margin-top: 80px">
About Us
</h1>
<div class="space28"></div>
<a style="color: white" href="about.html" class="bradecrumb">Home <i class="fa-solid fa-angle-right"></i>
About Us</a>
</div>
</div>
</div>
</div>
</div>
<!--===== HERO AREA ENDS =======-->
<!--===== ABOUT AREA STARTS =======-->
<div class="about4-section-area sp1">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="about-images-area">
<div class="img1 image-anime reveal">
<img src="assets/img/all-images/about/about-img9.png" alt="" />
</div>
<div class="img2">
<img src="assets/img/elements/elements18.png" alt="" class="elements18 keyframe5" />
</div>
</div>
</div>
<div class="col-lg-6">
<div class="about4-heading heading4">
<h5 class="vl-section-subtitle" data-aos="fade-left" data-aos-duration="800">
Ropheka Health Care We Treat, Jesus Heals
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none">
<path d="M0.667969 4.00033H11.049M8.00137 7.33366L11.3346 4.00033L8.0013 0.666992" stroke="#02015A"
stroke-width="1.5" />
</svg>
</h5>
<div class="space24"></div>
<h2 class="vl-section-title text-anime-style-3">
Quality Care with Compassion
</h2>
<div class="space24"></div>
<p data-aos="fade-left" data-aos-duration="900" style="text-align: justify;">
At Ropheka Multi Speciality Hospital, we believe that true healing comes from a blend of medical
excellence and compassionate care. Our strength lies in offering well-rounded and specialized treatment
under one roof, supported by advanced facilities, modern diagnostic tools, and a 24/7 emergency care
system. We provide comprehensive healthcare across multiple specialities including Orthopaedics,
Dermatology, Haematology, Dental Care, Critical Care (ICU), Dialysis, Physiotherapy, Emergency Medicine,
Diagnostics, CT Scan, and Ultrasound. <br><br>
What sets Ropheka apart is not just our infrastructure, but the commitment of our doctors to treat every
patient with integrity, compassion, and skill. Whether it’s life-saving emergency care or long-term health
management, our team ensures that both the body and soul are cared for with equal importance. <br><br>
Our Founders & Directors: <br><strong>Dr. R. Jesu Pandian – MBBS, MD (Path), FHO, BMT, MBA
(HM)</strong>, <br>
<strong>Dr. S. Aldrin Shalom – MBBS, MS (Ortho), AO Trauma (UK), MBA</strong>, <br>
<strong>Dr. S. Agnes Blessy – MBBS, MD (DVL)</strong>, and <br>
<strong>Dr. D. Lincy Christal – MBBS, General Practitioner</strong>.
</p>
<div class="row">
<div class="col-lg-6">
<div class="counter-boxarea" data-aos="fade-left" data-aos-duration="1000">
<h2><span class="counter">500</span>+</h2>
<div class="space16"></div>
<p>Serving patients weekly</p>
</div>
</div>
<div class="col-lg-6">
<div class="counter-boxarea" data-aos="fade-left" data-aos-duration="1100">
<h2><span class="counter">95</span>%</h2>
<div class="space16"></div>
<p>Patient satisfaction rate</p>
</div>
</div>
<div class="col-lg-6">
<div class="counter-boxarea" data-aos="fade-left" data-aos-duration="1200">
<h2><span class="counter">10</span>+</h2>
<div class="space16"></div>
<p>Years serving the community</p>
</div>
</div>
<div class="col-lg-6">
<div class="counter-boxarea" data-aos="fade-left" data-aos-duration="1000">
<h2><span class="counter">24</span>/7</h2>
<div class="space16"></div>
<p>Urgent care available</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--===== ABOUT AREA ENDS =======-->
<section class="mission-section">
<div class="container">
<!-- Motto -->
<div class="motto-box">
<h3>Our Motto</h3>
<p>Love. Serve. Heal. — In Jesus' Name</p>
</div>
<!-- Mission and Vision -->
<div class="row">
<div class="col-lg-6">
<div class="mission-card">
<i class="fas fa-hands-helping" style="color: #35b0e1;"></i>
<h4> Our Mission </h4>
<p>To provide compassionate, Christ-centered healthcare and education that reflect the
love of Jesus — by healing the sick, nurturing the vulnerable, and equipping caregivers
to serve with excellence, empathy, and faith.</p>
</div>
</div>
<div class="col-lg-6">
<div class="vision-card">
<i class="fas fa-eye" style="color: #35b0e1;"></i>
<h4>Our Vision </h4>
<p>To be a leading institution of healing and learning in the name of Jesus — transforming
lives through world-class medical care and Christ-focused education, raising a
generation of caregivers committed to love, service, and spiritual purpose.
“At Ropheka Multi Speciality Hospital, we are committed to delivering advanced,
compassionate medical care —rooted in the healing ministry of Christ. Guided by the
name ‘Ropheka,’ meaning ‘The Lord who heals,’ we serve every patient with clinical
excellence, integrity, and Christ-centered love. We aim to restore not just the body, but
the wholeness of life through faith, skill, and compassion.</p>
</div>
</div>
</div>
<!-- Hospital Commitment -->
<div class="row mt-4">
<div class="col-12">
<div class="p-4 rounded shadow-sm" style="color:white; background-color: #35b0e1;">
<h4 class="text-center mb-4">I am the Lord who heals you.</h4>
<p class="text-center">At Ropheka Multi Speciality Hospital and Institute, our mission is to extend the healing
ministry of Christ by delivering best-in-class medical care and Christ-centered
education. We are committed to reaching the unreached, serving with integrity, and
offering 24/7 compassionate support. With a genuine will to restore the whole person—
body, mind, and spirit—we aim to provide advanced treatments, nurture future
caregivers, and walk with every patient toward complete healing and hope.</p>
</div>
</div>
</div>
</div>
</section>
<!--===== TEAM AREA STARTS =======-->
<!-- <div class="team4-section-area sp1">
<div class="container">
<div class="row">
<div class="col-lg-5 m-auto">
<div class="heading4 text-center space-margin60">
<h5 class="vl-section-subtitle">
Medicax<span> | </span>Our Team
<svg
xmlns="http://www.w3.org/2000/svg"
width="13"
height="8"
viewBox="0 0 13 8"
fill="none"
>
<path
d="M0.667969 4.00033H11.049M8.00137 7.33366L11.3346 4.00033L8.0013 0.666992"
stroke="#02015A"
stroke-width="1.5"
/>
</svg>
</h5>
<div class="space24"></div>
<h2 class="vl-section-title text-anime-style-3">
Meet Our Expert Medical Team
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="team4-slider-area owl-carousel">
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img10.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements13.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Jane Cooper</a>
<div class="space12"></div>
<p>Dentist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img11.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements14.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Ralph Edwards</a>
<div class="space12"></div>
<p>Cardiologist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img12.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements15.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Ralph Edwards</a>
<div class="space12"></div>
<p>Gynecologist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img13.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements16.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Kristin Watson</a>
<div class="space12"></div>
<p>Dermatologist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img14.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements17.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Wade Warren</a>
<div class="space12"></div>
<p>Surgeon Specialist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img10.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements13.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Jane Cooper</a>
<div class="space12"></div>
<p>Dentist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img13.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements16.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Kristin Watson</a>
<div class="space12"></div>
<p>Dermatologist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img14.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements17.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Wade Warren</a>
<div class="space12"></div>
<p>Surgeon Specialist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img10.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements13.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Jane Cooper</a>
<div class="space12"></div>
<p>Dentist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img13.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements16.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Kristin Watson</a>
<div class="space12"></div>
<p>Dermatologist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img14.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements17.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Wade Warren</a>
<div class="space12"></div>
<p>Surgeon Specialist</p>
</div>
</div>
<div class="team4-boxarea">
<div class="img1">
<img
src="assets/img/all-images/team/team-img10.png"
alt=""
class="team-img10"
/>
<img
src="assets/img/elements/elements13.png"
alt=""
class="elements13 keyframe5"
/>
</div>
<div class="name-area">
<a href="doctor.html">Dr. Jane Cooper</a>
<div class="space12"></div>
<p>Dentist</p>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="space30"></div>
<div class="btn-area1 text-center">
<a href="doctor.html" class="vl-btn4"
>Join Our Team
<span
><svg
xmlns="http://www.w3.org/2000/svg"
width="22"
height="22"
viewBox="0 0 22 22"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M11 0.25C5.06294 0.25 0.25 5.06294 0.25 11C0.25 16.9371 5.06294 21.75 11 21.75C16.9371 21.75 21.75 16.9371 21.75 11C21.75 5.06294 16.9371 0.25 11 0.25ZM10 7C9.5955 7 9.2309 7.24364 9.0761 7.61732C8.92134 7.99099 9.0069 8.42111 9.2929 8.70711L10.5858 10L7.29289 13.2929C6.90237 13.6834 6.90237 14.3166 7.29289 14.7071C7.68342 15.0976 8.31658 15.0976 8.70711 14.7071L12 11.4142L13.2929 12.7071C13.5789 12.9931 14.009 13.0787 14.3827 12.9239C14.7564 12.7691 15 12.4045 15 12V8C15 7.44772 14.5523 7 14 7H10Z"
fill="white"
/></svg></span>
</a>
</div>
</div>
</div>
</div>
</div> -->
<!--===== TEAM AREA ENDS =======-->
<!--===== WORKS AREA STARTS =======-->
<!-- <div class="works4-section-area sp6">
<div class="container">
<div class="row">
<div class="col-lg-8 m-auto">
<div class="heading4 text-center space-margin60">
<h5 class="vl-section-subtitle">
Medicax<span> | </span> How it works
<svg
xmlns="http://www.w3.org/2000/svg"
width="13"
height="8"
viewBox="0 0 13 8"
fill="none"
>
<path
d="M0.667969 4.00033H11.049M8.00137 7.33366L11.3346 4.00033L8.0013 0.666992"
stroke="#02015A"
stroke-width="1.5"
/>
</svg>
</h5>
<div class="space24"></div>
<h2 class="vl-section-title text-anime-style-3">
Discover How Medicax Works
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12" data-aos="zoom-out" data-aos-duration="1200">
<div class="cs_case_study_1_list">
<div
class="cs_case_study cs_style_1 cs_hover_active active"
data-aos="fade-up"
data-aos-duration="800"
>
<a
href="case-single.html"
class="cs_case_study_thumb cs_bg_filed"
data-src="assets/img/all-images/works/work-img10.png"
></a>
<div class="content-area1">
<div class="arrow">
<a href="#">1</a>
</div>
<div class="text">
<a href="case-single.html">Schedule An Appointment</a>
</div>
</div>
<div class="content-area">
<div class="arrow2">
<a href="#">1</a>
</div>
<div class="space32"></div>
<a href="case-single.html" class="head"
>Schedule An Appointment</a
>
<div class="space16"></div>
<p>
Begin your journey to better health by scheduling a
consultation with PrimeCare Medical Clinic. You can easily
book your appointment by calling our friendly reception team
or using our convenient online booking system. We offer
flexible appointment times to accommodate your schedule,
including evening and appointments for your convenience.
</p>
<div class="space30"></div>
<div class="img1">
<img
src="assets/img/all-images/works/work-img10.png"
alt=""
/>
</div>
</div>
</div>
<div
class="cs_case_study cs_style_1 box2 cs_hover_active"
data-aos="fade-up"
data-aos-duration="900"
>
<a
href="case-single.html"
class="cs_case_study_thumb cs_case_study_thumb2 cs_bg_filed"
data-src="assets/img/all-images/case/case-img2.png"
></a>
<div class="content-area1">
<div class="arrow">
<a href="#">2</a>
</div>
<div class="text">
<a href="case-single.html">Consultation</a>
</div>
</div>
<div class="content-area">
<div class="arrow2">
<a href="#">2</a>
</div>
<div class="space32"></div>
<a href="case-single.html" class="head">Consultation</a>
<div class="space16"></div>
<p>
Begin your journey to better health by scheduling a
consultation with PrimeCare Medical Clinic. You can easily
book your appointment by calling our friendly reception team
or using our convenient online booking system. We offer
flexible appointment times to accommodate your schedule,
including evening and appointments for your convenience.
</p>
<div class="space30"></div>
<div class="img1">
<img
src="assets/img/all-images/works/work-img10.png"
alt=""
/>
</div>
</div>
</div>
<div
class="cs_case_study cs_style_1 box3 cs_hover_active"
data-aos="fade-up"
data-aos-duration="1000"
>
<a
href="case-single.html"
class="cs_case_study_thumb cs_case_study_thumb3 cs_bg_filed"
data-src="assets/img/all-images/case/case-img3.png"
></a>
<div class="content-area1">
<div class="arrow">
<a href="#">3</a>
</div>
<div class="text">
<a href="case-single.html">Personalized Treatment</a>
</div>
</div>
<div class="content-area">
<div class="arrow2">
<a href="#">3</a>
</div>
<div class="space32"></div>
<a href="case-single.html" class="head"
>Personalized Treatment</a
>
<div class="space16"></div>
<p>
Begin your journey to better health by scheduling a
consultation with PrimeCare Medical Clinic. You can easily
book your appointment by calling our friendly reception team
or using our convenient online booking system. We offer
flexible appointment times to accommodate your schedule,
including evening and appointments for your convenience.
</p>
<div class="space30"></div>
<div class="img1">
<img
src="assets/img/all-images/works/work-img10.png"
alt=""
/>
</div>
</div>
</div>
<div
class="cs_case_study cs_style_1 box4 cs_hover_active"
data-aos="fade-up"
data-aos-duration="1100"
>
<a
href="case-single.html"
class="cs_case_study_thumb cs_case_study_thumb4 cs_bg_filed"
data-src="assets/img/all-images/case/case-img4.png"
></a>
<div class="content-area1">
<div class="arrow">
<a href="#">4</a>
</div>
<div class="text">
<a href="case-single.html">Ongoing Care</a>
</div>
</div>
<div class="content-area">
<div class="arrow2">
<a href="#">4</a>
</div>
<div class="space32"></div>
<a href="case-single.html" class="head">Ongoing Care</a>
<div class="space16"></div>
<p>
Begin your journey to better health by scheduling a
consultation with PrimeCare Medical Clinic. You can easily
book your appointment by calling our friendly reception team
or using our convenient online booking system. We offer
flexible appointment times to accommodate your schedule,
including evening and appointments for your convenience.
</p>
<div class="space30"></div>
<div class="img1">
<img
src="assets/img/all-images/works/work-img10.png"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!--===== WORKS AREA ENDS =======-->
<!--===== TESTIMONIAL AREA STARTS =======-->
<!-- <div
class="testimonial4-section-area sp1"
style="
background-image: url(assets/img/all-images/bg/bg6.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
"
>
<img
src="assets/img/elements/elements12.png"
alt=""
class="elements12 keyframe5"
/>
<div class="container">
<div class="row">
<div class="col-lg-8 m-auto">
<div class="heading4 text-center space-margin60">
<div class="heading4 text-center space-margin60">
<h5 class="vl-section-subtitle">
Medicax<span> | </span>Testimonials
<svg
xmlns="http://www.w3.org/2000/svg"
width="13"
height="8"
viewBox="0 0 13 8"
fill="none"
>
<path
d="M0.667969 4.00033H11.049M8.00137 7.33366L11.3346 4.00033L8.0013 0.666992"
stroke="#02015A"
stroke-width="1.5"
/>