-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1136 lines (975 loc) · 54.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Arogyapanthi</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon_a.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<!--link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet"-->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
-->
<!-- =============================================================================================================== -->
</head>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="d-flex align-items-center fixed-top">
<div class="container d-flex justify-content-between">
<div class="contact-info d-flex align-items-center">
<!-- i class="bi bi-envelope"></i> <a href="mailto:[email protected]"> [email protected] </a>
<i class="bi bi-phone"></i> +91 7004700520 -->
</div>
<!--<div class="d-none d-lg-flex social-links align-items-center">
<a href="https://twitter.com/arogyapanthi?s=08" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/Arogyapanthi-107276901639878" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="https://youtube.com/channel/UCpteRX0WZm3FPK0LN2sB0SA" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/arogya-panthi-199a25217" class="linkedin"><i class="bi bi-linkedin"></i></i></a>
</div>-->
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<!-- <h1 class="logo me-auto"><a href="index.html">Arogyapanthi</a></h1> -->
<!-- Uncomment below if you prefer to use an image logo -->
<a href="index.html" class="logo me-auto"><img src="assets/img/logocrop.png" alt="" class="img-fluid"></a>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#product">Products</a></li>
<li><a class="nav-link scrollto" href="#Believers">Believers</a></li>
<!-- <li><a class="nav-link scrollto" href="#doctors">Doctors</a></li> -->
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<!-- <li><a class="nav-link scrollto" href="#contact">Contact</a></li> -->
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<a href="#contact" class="appointment-btn scrollto"><span class="d-none d-md-inline"></span>Contact us</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container">
<h1>Welcome to <span>Arogyapanthi</span></h1>
<h2>One Step Towards Digital India</h2>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= Why Us Section ======= -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container">
<div class="row">
<div class="col-lg-4 d-flex align-items-stretch">
<div class="content">
<h3>Why Choose Arogyapanthi?</h3>
<p>
Arogyapanthi is an initiative toward the digitalization of the medical system which will eliminate the obstacles in your journey of medical treatment and pave a smooth path towards the best of your health.
</p>
<div class="text-center">
<a href="https://www.youtube-nocookie.com/embed/h4AsgdH5-6k?controls=0" class="more-btn">Learn More <i class="bx bx-chevron-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-8 d-flex align-items-stretch">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-receipt"></i>
<h4>Electronic Medical Records</h4>
<p>We use Blockchain Technology to decrease the chances of misplacement and interchanging of reports which makes the patient's privacy as well as data secured.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-cube-alt"></i>
<h4>Doctor Discovery</h4>
<p>The patients will be able to get specialist doctors connected to us for their treatment without traveling to other cities or countries.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<i class="bx bx-images"></i>
<h4>Appointment Management</h4>
<p>The patients can easily register for taking the appointments from any doctor and this will help
the patients to get their reports directly.</p>
</div>
</div>
</div>
</div><!-- End .content-->
</div>
</div>
</div>
</section>
<!-- =================End Why Us Section============= -->
<!-- ================ About Section ==================== -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch position-relative">
<a href="https://www.youtube-nocookie.com/embed/h4AsgdH5-6k?controls=0" class="glightbox play-btn mb-4"></a>
</div>
<div
class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5">
<h3>Advantages</h3>
<p>ArogyaPanthi aims to bring improvement in every aspect of the Healthcare Sector.
From more accuracy to time saving and less-hectic processes, we bring you many more advantages through our platform.</p>
<div class="icon-box">
<div class="icon"><i class="fa fa-briefcase" aria-hidden="true"></i></div>
<h4 class="title"><a href="">Facility Management</a></h4>
<p class="description">Our Healthcare facilities management system is available for various hospitals and
healthcare centers (both private and public) to keep your site safe, secure, and functional, allowing you to focus on your patients and staff.
Blood Banks, Dialysis Centres, Birth Centres, Specialized clinics and outpatient centers, Labs,
and other facilities are taken care of to maintain high-quality health care services.</p>
</div>
<div class="icon-box">
<div class="icon"><i class="fa fa-address-card" aria-hidden="true"></i></div>
<h4 class="title"><a href="">Digital Medical Records</a></h4>
<p class="description">We provide a digital version of a patient's medical history that we maintain over time.
From reducing the incidence of medical errors to transferring patient data from one department to the other quickly,
there are numerous other advantages of implementing digital medical records.</p>
</div>
<div class="icon-box">
<div class="icon"><i class="fa fa-male" aria-hidden="true"></i></div>
<h4 class="title"><a href="">Staff Interaction</a></h4>
<p class="description">Our biggest asset is our positive attitude towards productive interactions in
the team that boosts morale among members & encourages the exchange of new ideas.
Staff satisfaction helps us to establish trust and truthful relations and will also raise customer satisfaction.</p>
</div>
<div class="icon-box">
<div class="icon"><i class="fa fa-users" aria-hidden="true"></i></div>
<h4 class="title"><a href="">Customer Experience</a></h4>
<p class="description">We promise to maintain a well-structured feedback mechanism with all the listening and
learning ports available to capture patients' feedback from all touchpoints. With a long-term vision for our clients,
we will always try to eliminate the loopholes in our services.</p>
</div>
<div class="icon-box">
<div class="icon"><i class="fas fa-rupee-sign"></i></div>
<h4 class="title"><a href="">Financial Control and Tax Planning</a></h4>
<p class="description">Here at ArogyaPanthi, we give our best for you to have an untroubled medical billing experience.
Our online platform ensures smooth and safe financial planning and transactions under our team's expertise and knowledge that you can trust..</p>
</div>
<div class="icon-box">
<div class="icon"><i class="far fa-hourglass"></i></div>
<h4 class="title"><a href="">Less Time Consuming</a></h4>
<p class="description">Tech advancements, such as voice recognition, digital scribes, and connected devices,
have already begun that automatically reduce time spent entering information into the Digital health records. Still, along with that,
we save your time looking for the best facilities and best doctors with constantly upgraded accuracy.</p>
</div>
<div class="icon-box">
<div class="icon"><i class="fas fa-funnel-dollar"></i></div>
<h4 class="title"><a href="">Marketing Strategy</a></h4>
<p class="description">This is mainly for our customers from the healthcare service market (hospitals, healthcare centers).
We stand with you at each step, whether establishing target customers, online reputations, retention strategy for unhappy patients, budgets, or
competition analysis with a well-planned strategy to ensure your success.</p>
</div>
</div>
</div>
</div>
</section><!-- ============End About Section============== -->
<!-- ============== Counts Section ================ -->
<!-- section id="counts" class="counts">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="fas fa-user-md"></i>
<span data-purecounter-start="0" data-purecounter-end="0" data-purecounter-duration="1"
class="purecounter"></span>
<p>Doctors</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="far fa-hospital"></i>
<span data-purecounter-start="0" data-purecounter-end="0" data-purecounter-duration="1"
class="purecounter"></span>
<p>Departments</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="fas fa-flask"></i>
<span data-purecounter-start="0" data-purecounter-end="0" data-purecounter-duration="1"
class="purecounter"></span>
<p>Research Labs</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="fas fa-award"></i>
<span data-purecounter-start="0" data-purecounter-end="0" data-purecounter-duration="1"
class="purecounter"></span>
<p>Awards</p>
</div>
</div>
</div>
</div>
</section--><!-- ==============End Counts Section============== -->
<!-- ================= Services Section ================-->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>We promise our customers the best of services. User experience is taken care of and we ensure that our clients are more than satisfied with our services</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="icon-box">
<div class="icon"><i class="fas fa-address-book"></i></div>
<h4><a href="">Finding Doctors</a></h4>
<p>The patients will be able to get specialist doctors for their treatment of particular medical
problems without traveling from one city to another city or county, we'll
arrange the doctor at the nearest hospital according to the patient's convenience. So it'll become easy to find a doctor for them.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0">
<div class="icon-box">
<div class="icon"><i class="fas fa-calendar-alt"></i></div>
<h4><a href="">Appointment & Scheduling</a></h4>
<p>We provide an advanced solution for appointments that solves many issues such as the ability to make an appointment, reschedule one,
cancel or even set a reminder for your upcoming appointments</p></div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0">
<div class="icon-box">
<div class="icon"><i class="fas fa-hospital-user"></i></div>
<h4><a href="">Digital Medical records</a></h4>
<p>Now access your medical records everywhere as we get you medical records available online maintained and updated over time and without any privacy issues.
It also made your medical data easily sharable to doctors for an error-free treatment</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="fas fa-ambulance"></i></div>
<h4><a href="">Management services</a></h4>
<p>Our management services include HR Management, Reception Management, Inventory Management, Pharmacy Management, Laboratory Management, Inpatient and Outpatient Management and Feedback Management.</p></div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="fas fa-file-alt"></i></div>
<h4><a href="">Accounting</a></h4>
<p>Our accounting services take care of the financial development, business expenses, purchase order management, optimum utilization of bookkeeping services, accuracy in tax rates and regulatory information, and ensures fast processing of invoices</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4">
<div class="icon-box">
<div class="icon"><i class="fas fa-notes-medical"></i></div>
<h4><a href="">Analytics & Dashboard</a></h4>
<p>Get accurate analytics of every aspect of your organization. Proper data of your happy and unhappy customers, customer retention, online reputation can lead to a better functioning and successful organization.</p>
</div>
</div>
</div>
</div>
</section>
<!--============ End Services Section ==============-->
<!-- ============ Appointment Section ============ -->
<!-- <section id="appointment" class="appointment section-bg">
<div class="container">
<div class="section-title">
<h2>Make an Appointment</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<form action="forms/appointment.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-4 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</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" data-rule="email" data-msg="Please enter a valid email">
<div class="validate"></div>
</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" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</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" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</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">Department 1</option>
<option value="Department 2">Department 2</option>
<option value="Department 3">Department 3</option>
</select>
<div class="validate"></div>
</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 class="validate"></div>
</div>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message (Optional)"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your appointment request has been sent successfully. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Make an Appointment</button></div>
</form>
</div>
</section>End Appointment Section -->
<!-- ======= Departments Section ======= -->
<section id="product" class="departments">
<div class="container">
<div class="section-title">
<h2>Products</h2>
<p>We develop our products keeping in mind the needs and accessibility of our clients. We aim to avail all the significant facilities at one place for the betterment of the procedure</p>
</div>
<div class="row">
<div class="col-lg-3">
<ul class="nav nav-tabs flex-column">
<li class="nav-item">
<a class="nav-link active show" data-bs-toggle="tab" href="#tab-1">Hospital Management System</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-2">Clinic Management system</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-3">Laboratory Management System</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-4">Pharmacy</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-5">Patient Services</a>
</li>
</ul>
</div>
<div class="col-lg-9 mt-4 mt-lg-0">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Hospital Management System</h3>
<p class="fst-italic">We will improve the communication and interaction of doctors with their
patients.</p>
<p>A Hospital Management System is an integrated information system for managing all aspects of a
hospital’s operations.It can provide an automated way of managing any hospital activities rather than a traditional system.
Moreover, this system can operate regular hospital activities like IPD, OPD, billing, test, bed management, account sector, HR management, etc. accurately and efficiently.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/gallery/gallery-8.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-2">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Clinic Management system</h3>
<p class="fst-italic">We will help your patients to get the appointments from the doctor of clinic.
</p>
<p>Clinic management system helps in medical health facilities improve and also save time by sending
the checkup schedule of doctors and patients on their profiles
at time respectively. The doctors can send the reports and bills directly to the paitents.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/clinic2.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-3">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Laboratory Management System</h3>
<p class="fst-italic">We will provide better way of workload, faster communication and also let you
save your time. </p>
<p> Laboratory management system helps in the improvement of lab productivity and efficiency, by
keeping track of data associated with samples, experiments and better workflow.
</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-3.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-4">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Pharmacy</h3>
<p class="fst-italic">We will help generate purchase requisitions as per the consumption pattern or reorder level based and else more.</p>
<p>Pharmacy Systems will be able to make both out-patient sales and in patient issues and also
maintains the inventory of all the drug items of the hospital.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-1.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-5">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Patient Services</h3>
<p class="fst-italic">Patients will not have to travel anywhere for further treatment;
we will help you get the doctor at your nearby hospital.</p>
<p>The patients can easily register for taking the appointments from any doctor, and this will help
the patients to get their reports directly.</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-5.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Departments Section -->
<!-- vedio emmbed code -->
<div id="vedio" class="vedio">
<div class="video-responsive">
<div >
<iframe class="embed-responsive-item" width="560" height="315" src="https://www.youtube.com/embed/CfUiEwKWTQs"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<!-- ended of vedio emmbedd code -->
<!-- ======= Doctors Section ======= -->
<section id="doctors" class="doctors">
<div class="container">
<div class="section-title">
<h2>OurTeam</h2>
<p>“Collaboration is the best way to work. It’s the only way to work, really. Everyone’s there because they have a set of skills to offer across the board.” ~ Antony Starr</p>
</div>
<div class="row">
<div class="col-lg-6">
<div class="member d-flex align-items-start">
<div class="pic"><img src="./assets/img/team photo/Shubham-01.jpeg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Shubham Jaishwal</h4>
<span>Chief Executive Officer, Founder</span>
<!--<p>Explicabo voluptatem mollitia et repellat qui dolorum quasi</p>-->
<div class="social">
<a href="https://twitter.com/JaiSwaL_BaBa25"><i class="ri-twitter-fill"></i></a>
<a href="https://www.facebook.com/profile.php?id=100005508308549"><i class="ri-facebook-fill"></i></a>
<a href="https://www.instagram.com/jaiswal_baba/"><i class="ri-instagram-fill"></i></a>
<a href="https://www.linkedin.com/in/shubham-jaiswal-b298181a0/"> <i class="ri-linkedin-box-fill"></i>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/team photo/shreyasi.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Shreysi Swaraj</h4>
<span>Co-Founder,Web Developer and Graphic Designer</span>
<!--<p>Dolorum tempora officiis odit laborum officiis et et accusamus</p>-->
<div class="social">
<a href="https://github.com/shreysiSwaraj"><i class="ri-github-fill"></i></a>
<a href="https://instagram.com/shreysi_swaraj212?utm_medium=copy_link"><i class="ri-instagram-fill"></i></a>
<a href="https://www.linkedin.com/in/shreysi-swaraj-680197195"> <i class="ri-linkedin-box-fill"></i></a>
<a href=""><i class="ri-twitter-fill"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/team photo/skandnew.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Skand Tiwari</h4>
<span>Software Developer</span>
<!--<p>Explicabo voluptatem mollitia et repellat qui dolorum quasi</p>-->
<div class="social">
<a href=" https://github.com/SkandTiwari"><i class="ri-github-fill"></i></a>
<a href="https://www.instagram.com/tiwariskand11/"><i class="ri-instagram-fill"></i></a>
<a href="https://www.linkedin.com/mwlite/in/skand-tiwari-b58b6a1b1"> <i class="ri-linkedin-box-fill"></i> </a>
<a href="https://mobile.twitter.com/SkandTi26337239"><i class="ri-twitter-fill"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4 mt-lg-0">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/team photo/Shreya Khushi.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Shreya Kumari</h4>
<span>Marketing and Customer service</span>
<!--<p>Aut maiores voluptates amet et quis praesentium qui senda para</p>-->
<div class="social">
<a href="https://twitter.com/Sh0614_?s=08"><i class="ri-twitter-fill"></i></a>
<a href="https://www.facebook.com/shreyakhushi06"><i class="ri-facebook-fill"></i></a>
<a href="https://www.instagram.com/shreyakhushi_/"><i class="ri-instagram-fill"></i></a>
<a href="https://www.linkedin.com/in/shreya-kumari-9b40521b2"> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start">
<div class="pic"><img src="./assets/img/team photo/sanu kr.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Sanu Kumar</h4>
<span>Web Developer</span>
<!--<p>Quisquam facilis cum velit laborum corrupti fuga rerum quia</p>-->
<div class="social">
<a href="https://twitter.com/SanuKum98709762"><i class="ri-twitter-fill"></i></a>
<a href="https://www.facebook.com/sanu.shekharazad"><i class="ri-facebook-fill"></i></a>
<a href="https://www.instagram.com/sanu_shekhar_azad/"><i class="ri-instagram-fill"></i></a>
<a href="https://www.linkedin.com/in/sanu-kumar-0a1624202/"> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4 mt-lg-0">
<div class="member d-flex align-items-start">
<div class="pic"><img src="./assets/img/team photo/supriya didi.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Supriya Gahoi</h4>
<span>Backend Developer</span>
<!--<p>Aut maiores voluptates amet et quis praesentium qui senda para</p>-->
<div class="social">
<a href="https://twitter.com/supranvi"><i class="ri-twitter-fill"></i></a>
<a href="https://github.com/supriyagahoi"><i class="ri-github-fill"></i></a>
<a href="https://www.instagram.com/"><i class="ri-instagram-fill"></i></a>
<a href="https://www.linkedin.com/in/supriya-gahoi-825b661b0/"> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Doctors Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
<p>Below you will find the answer to the most common question you may have on Arogyapanthi.
Also, please feel free to check out our social media handle.
And if you still can't find the answer you're looking for just Contact Us!</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" class="collapse"
data-bs-target="#faq-list-1"> How we will be able to arrange the doctors to the nearest hospital?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-bs-parent=".faq-list">
<p>We will collect the data of the patients of that area with a need for a particular treatment.
According to the emergency, We will arrange a specialist doctor for those patients who could go to their nearest hospital to give his service.</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-2"
class="collapsed">How to get knowledge about the equipment is present in the hospitals?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-bs-parent=".faq-list">
<p>As government and private hospitals have their data regarding the equipment's
availability in their hospitals and know about this information, we have to disseminate them to share that summary with us.</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-3"
class="collapsed">How the patients will handy to reserved their appointments?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-bs-parent=".faq-list">
<p>For pre-arranging, patients must have to create their accounts on our website.
Then they have to do a simple search for the availability of doctors and book a convenient appointment according to their and doctor's convenience.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-4"
class="collapsed">How doctors will manage their appointments?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-bs-parent=".faq-list">
<p>Doctors will have their profile with details about them on our website and whenever they are
available for a patient, they can unlock booking for a specific duration.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-5"
class="collapsed"> How do you take benefit of our services?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-5" class="collapse" data-bs-parent=".faq-list">
<p>Customers can take advantage of our service by simply creating an account on our website and by
discovering many functions.</p>
</div>
</li>
</ul>
</div>
</div>
</section>
<!-- End Frequently Asked Questions Section -->
<!-- ======= Testimonials Section ======= -->
<!-- <section id="testimonials" class="testimonials">
<div class="container">
<div class="testimonials-slider swiper-container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="">
<h3>Saul Goodman</h3>
<h4>Ceo & Founder</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus.
Accusantium quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<!-- <div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis
quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<!-- <div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="">
<h3>Jena Karlis</h3>
<h4>Store Owner</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim
tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<!-- <div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit
minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div>End testimonial item -->
<!-- <div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim
culpa labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum
quid.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div>End testimonial item -->
<!-- </div>
<div class="swiper-pagination"></div>
</div>
</div>
</section> -->
<!-- End Testimonials Section -->
<!-- ======= Gallery Section ======= -->
<section id="Believers" class="gallery">
<div class="container">
<div class="section-title">
<h2>Believers</h2>
<p>We are searching for a partner who is about to empower our customers to integrate anywhere and reach more prospects.
Whether you're looking to become a partner, own a solution, or want to build one together, we can make the world a better place!</p>
</div>
</div>
<div class="container-fluid">
<div class="row no-gutters">
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners1.png" class="galelry-lightbox">
<img src="assets/img/partners/partners1.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners2.png" class="galelry-lightbox">
<img src="assets/img/partners/partners2.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners3 (1).png" class="galelry-lightbox">
<img src="assets/img/partners/partners3 (1).png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners3.png" class="galelry-lightbox">
<img src="assets/img/partners/partners3.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners5.png" class="galelry-lightbox">
<img src="assets/img/partners/partners5.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners6 (1).png" class="galelry-lightbox">
<img src="assets/img/partners/partners6 (1).png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners6.png" class="galelry-lightbox">
<img src="assets/img/partners/partners6.png " alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/partners/partners8.png" class="galelry-lightbox" >
<img src="assets/img/partners/partners8.png" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</section><!-- End Gallery Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>Need something? Put down your needs for the managment services. Feel Free to Contact us to get our Services. Our team will get back to you soon!!</p>
</div>
</div>
<div>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d43219.877576404135!2d77.44699129320978!3d23.181378972285273!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x397c439c25ae535b%3A0x1069429af4953f91!2sL.N.%20Medical%20College%20%26%20J.K.%20Hospital!5e0!3m2!1sen!2sin!4v1626267545230!5m2!1sen!2sin"
style="border:0; width: 100%; height: 350px;" allowfullscreen="" loading="lazy"></iframe>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>A108 BHEL Street, Bhopal, NY 535022</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+91 7004700502</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<!-- action="forms/contact.php" -->
<form method="post" role="form" class="php-email-form" name="google-sheetdata">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<!-- <label for="phone_no">Phone Number</label> -->
<input type="text" name="num" data-validation="number" data-validation-allowing="negative,number"
input name="color" data-validation="number" datavalidation-ignore="$" required="required" class="form-control" id="phone_no" placeholder="Phone Number">
</div>
</div><br>
<div class="form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</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 name="submit" type="submit">Send Message</button></div>
</form>
</div>