-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1358 lines (1135 loc) · 54 KB
/
index.html
File metadata and controls
1358 lines (1135 loc) · 54 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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>Index - Medicio Bootstrap Template</title>
<meta name="description" content="">
<meta name="keywords" content="">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<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/aos/aos.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/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Required for general styling and layout -->
<link href="https://cdn.jsdelivr.net" rel="stylesheet">
<!-- Required specifically for the chevron (arrow) and list (hamburger) icons -->
<link href="https://cdn.jsdelivr.net" rel="stylesheet">
<!-- Link your custom style sheet that contains the appearance rules you like -->
<!-- <link href="assets/css/style.css" rel="stylesheet"> -->
<!-- Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
<style>
/* Professional Styling for Medical Clinic (Paste into your main CSS file or <head>) */
:root {
--primary-color: #0056b3; /* Professional blue */
--accent-color: #28a745; /* Confident green for CTAs */
--text-color: #333;
--overlay-color: rgba(30, 30, 30, 0.65); /* Darker overlay for readability */
--font-family-sans: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.hero.section { position: relative; overflow: hidden; }
.hero .carousel-item img {
object-fit: cover;
height: 100vh; /* Makes the hero section cover the full viewport height */
width: 100%;
}
.hero .container {
position: absolute;
bottom: 0; top: 0; left: 0; right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
color: white; /* White text for contrast */
background-color: var(--overlay-color);
padding: 2rem;
}
.hero h2 { font-size: 3rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero p { font-size: 1.1rem; max-width: 600px; margin-bottom: 1.5rem; opacity: 0.9; }
.hero .btn-get-started {
background: var(--accent-color);
color: white;
padding: 12px 30px;
border-radius: 5px;
text-decoration: none;
font-weight: 500;
transition: background-color 0.3s ease;
border: none;
}
.hero .btn-get-started:hover { background: var(--primary-color); }
/* Ensure Bootstrap Icons are linked in your <head> for chevron icons to appear */
/* --- General Variables (Matching the Hero Section) --- */
:root {
--primary-color: #0056b3;
--accent-color: #28a745;
--text-color: #333;
--header-bg: #fff; /* White background for clean header */
--font-family-sans: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body { font-family: var(--font-family-sans); }
/* --- Navigation Menu Styling --- */
.navmenu ul {
list-style: none;
padding: 0;
margin: 0;
display: flex; /* Makes the main menu horizontal */
}
.navmenu li {
position: relative;
padding: 0 15px;
white-space: nowrap;
}
.navmenu a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
font-size: 16px;
font-weight: 500;
color: var(--text-color);
white-space: nowrap;
transition: 0.3s;
text-decoration: none;
}
.navmenu a i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}
.navmenu a:hover, .navmenu .active > a, .navmenu li:hover > a {
color: var(--primary-color); /* Highlight color for active/hover links */
}
/* --- Dropdown Menu Styling --- */
.navmenu .dropdown ul {
display: none; /* Hide dropdowns by default */
position: absolute;
left: 15px;
top: 100%;
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: var(--header-bg);
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
transition: 0.3s;
border-radius: 4px;
}
.navmenu .dropdown ul li {
min-width: 200px;
padding: 0;
}
.navmenu .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
color: var(--text-color);
}
.navmenu .dropdown ul a:hover {
color: var(--primary-color);
}
.navmenu .dropdown:hover > ul {
opacity: 1; /* Show dropdown on hover */
visibility: visible;
top: 100%;
}
/* Hide the mobile toggle button on large screens */
.mobile-nav-toggle {
display: none;
font-size: 24px;
cursor: pointer;
line-height: 0;
color: var(--text-color);
}
/* Note: Mobile menu functionality requires JavaScript */
/* --- Modern Medical Aesthetic CSS --- */
:root {
--primary-color: #007BFF; /* A slightly brighter, more approachable blue */
--accent-color: #28a745; /* A confident green for action items */
--background-light: #f8f9fa; /* Off-white background for the section */
--card-bg: #ffffff; /* White cards for contrast */
--text-color: #333;
--shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
--font-family-sans: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.featured-services.section {
background-color: var(--background-light);
padding: 60px 0;
font-family: var(--font-family-sans);
}
.service-item {
background-color: var(--card-bg);
padding: 30px;
text-align: center;
border-radius: 8px;
box-shadow: var(--shadow-subtle);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
height: 100%; /* Ensures all cards in the row are the same height */
}
.service-item:hover {
transform: translateY(-5px); /* Lift effect on hover */
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.service-item .icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
background: var(--primary-color);
border-radius: 50%;
margin-bottom: 20px;
transition: 0.3s;
}
.service-item .icon i {
color: white;
font-size: 24px;
}
.service-item h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
}
.service-item h4 a {
color: var(--text-color);
text-decoration: none;
}
.service-item p {
font-size: 14px;
color: #6c757d;
line-height: 1.5;
}
/* Required Styling for the Icon Boxes (Matching Navy Blue Aesthetic) */
:root {
--primary-color: #007BFF;
--accent-color: #004085; /* Navy Blue */
--heading-color: #1a252f;
--text-color: #2c3e50;
--surface-color: #ffffff;
}
.features .icon-box {
padding: 20px 0;
transition: 0.3s;
border-bottom: 1px solid #eee; /* Subtle separator for list items */
}
.features .icon-box i {
font-size: 24px;
color: var(--accent-color); /* Use the professional accent color */
margin-right: 15px;
line-height: 0;
}
.features .icon-box h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
}
.features .icon-box p {
font-size: 14px;
color: var(--text-color);
margin-bottom: 0;
}
/* Ensure image takes full width of its container */
.features-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* Required Styling for the Icon Boxes (Matching Navy Blue Aesthetic) */
:root {
--primary-color: #007BFF;
--accent-color: #004085; /* Navy Blue */
--heading-color: #1a252f;
--text-color: #2c3e50;
--surface-color: #ffffff;
}
.features .icon-box {
padding: 20px 0;
transition: 0.3s;
border-bottom: 1px solid #eee; /* Subtle separator for list items */
}
.features .icon-box i {
font-size: 24px;
color: var(--accent-color); /* Use the professional accent color */
margin-right: 15px;
line-height: 0;
}
.features .icon-box h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
}
.features .icon-box p {
font-size: 14px;
color: var(--text-color);
margin-bottom: 0;
}
/* Ensure image takes full width of its container */
.features-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="index-page">
<header id="header" class="header sticky-top">
<div class="topbar d-flex align-items-center">
<div class="container d-flex justify-content-center justify-content-md-between">
<div class="d-none d-md-flex align-items-center">
<i class="bi bi-clock me-1"></i> Monday - Saturday, 8AM to 10PM
</div>
<div class="d-flex align-items-center">
<i class="bi bi-phone me-1"></i> Call us now +1 5589 55488 55
</div>
</div>
</div><!-- End Top Bar -->
<div class="branding d-flex align-items-center">
<div class="container position-relative d-flex align-items-center justify-content-end">
<a href="index.html" class="logo d-flex align-items-center me-auto">
<img src="assets/img/logo.png" alt="">
<!-- Uncomment the line below if you also wish to use a text logo -->
<!-- <h1 class="sitename">Medicio</h1> -->
</a>
<!-- Navigation Menu HTML (Refined Content) -->
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#hero" class="active">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#departments">Departments</a></li>
<li><a href="#doctors">Our Doctors</a></li>
<!-- Professional Dropdown Menu -->
<li class="dropdown"><a href="#"><span>Patient Info</span> <i class="bi bi-chevron-down toggle-dropdown"></i></a>
<ul>
<li><a href="#">Billing & Insurance</a></li>
<!-- Removed complex 'Deep Dropdown' -->
<li><a href="#">Patient Portal Login</a></li>
<li><a href="#">Visitor Information</a></li>
<li><a href="#">FAQs</a></li>
</ul>
</li>
<li><a href="#contact">Contact</a></li>
</ul>
<!-- This icon acts as the hamburger menu on mobile devices (requires JS for functionality) -->
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
</nav>
<a class="cta-btn" href="index.html#appointment">Make an Appointment</a>
</div>
</div>
</header>
<main class="main">
<!-- Hero Section -->
<!-- Hero Section -->
<section id="hero" class="hero section">
<div id="hero-carousel" class="carousel slide carousel-fade" data-bs-ride="carousel" data-bs-interval="5000">
<!-- Slide 1: Welcome -->
<div class="carousel-item active">
<img src="assets/img/hero-carousel/hero-carousel-1.jpg" alt="A modern hospital hallway">
<div class="container">
<h2>Welcome to Medicio Health System</h2>
<p>Providing cutting-edge medical services with a compassionate, patient-first approach. Your journey to wellness begins here.</p>
<a href="#about" class="btn-get-started">Discover Our Mission</a>
</div>
</div><!-- End Carousel Item -->
<!-- Slide 2: Specializations -->
<div class="carousel-item">
<img src="assets/img/hero-carousel/hero-carousel-2.jpg" alt="A doctor consulting with a patient">
<div class="container">
<h2>Comprehensive Care, Tailored to You</h2>
<p>Our multidisciplinary team specializes in cardiology, oncology, and pediatrics. Access expert care across all disciplines.</p>
<a href="#about" class="btn-get-started">View Specialties</a>
</div>
</div><!-- End Carousel Item -->
<!-- Slide 3: Emergency/CTA -->
<div class="carousel-item">
<img src="assets/img/hero-carousel/hero-carousel-3.jpg" alt="Emergency vehicle arriving at clinic entrance">
<div class="container">
<h2>In an Emergency? Call Emergency Services</h2>
<p>For urgent appointments or to speak with an on-call nurse, contact our 24/7 helpline. We are here when you need us most.</p>
<a href="#appointment" class="btn-get-started">Schedule Appointment</a>
</div>
</div><!-- End Carousel Item -->
<!-- Navigation Controls -->
<a class="carousel-control-prev" href="#hero-carousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bi bi-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#hero-carousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bi bi-chevron-right" aria-hidden="true"></span>
</a>
<!-- Indicators (Dots) -->
<ol class="carousel-indicators"></ol>
</div>
</section><!-- /Hero Section -->
<!-- Featured Services Section (Aesthetic Changed) -->
<section id="featured-services" class="featured-services section">
<div class="container">
<div class="row gy-4">
<!-- Service Item 1: Cardiology -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="100">
<div class="service-item position-relative">
<div class="icon"><i class="fas fa-heartbeat icon"></i></div>
<h4><a href="#services/cardiology" class="stretched-link">Cardiology</a></h4>
<p>Expert diagnostics and treatment plans for a healthy heart.</p>
</div>
</div><!-- End Service Item -->
<!-- Service Item 2: Urgent Care -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="200">
<div class="service-item position-relative">
<div class="icon"><i class="fas fa-pills icon"></i></div>
<h4><a href="#services/urgentcare" class="stretched-link">Urgent Care</a></h4>
<p>Walk-in clinic for immediate minor injuries and illnesses.</p>
</div>
</div><!-- End Service Item -->
<!-- Service Item 3: Pediatrics -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="300">
<div class="service-item position-relative">
<div class="icon"><i class="fas fa-thermometer icon"></i></div>
<h4><a href="#services/pediatrics" class="stretched-link">Pediatrics</a></h4>
<p>Caring for children from infancy through adolescence.</p>
</div>
</div><!-- End Service Item -->
<!-- Service Item 4: Oncology -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="400">
<div class="service-item position-relative">
<div class="icon"><i class="fas fa-dna icon"></i></div>
<h4><a href="#services/oncology" class="stretched-link">Oncology</a></h4>
<p>Comprehensive cancer care and innovative treatments.</p>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section><!-- /Featured Services Section -->
<!-- Call To Action Section -->
<section id="call-to-action" class="call-to-action section accent-background">
<div class="container">
<div class="row justify-content-center" data-aos="zoom-in" data-aos-delay="100">
<div class="col-xl-10">
<div class="text-center">
<h3>In an emergency? Need help now?</h3>
<!-- Replaced Lorem Ipsum with direct, professional messaging -->
<p>If you are experiencing a medical emergency, please call emergency services immediately. For non-urgent care, you can schedule an appointment using the link below.</p>
<a class="cta-btn" href="#appointment">Make an Appointment</a>
</div>
</div>
</div>
</div>
</section><!-- End Call To Action Section -->
<!-- /Call To Action Section -->
<!-- About Section -->
<section id="about" class="about section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>About Us<br></h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row gy-4">
<!-- Image and Video Column -->
<div class="col-lg-6 position-relative align-self-start" data-aos="fade-up" data-aos-delay="100">
<!-- Ensure you replace 'assets/img/about.jpg' with a real, high-quality image of the clinic or doctors -->
<img src="assets/img/about.jpg" class="img-fluid" alt="A modern clinic waiting area or consultation room">
<!-- Link to a relevant professional video, if one exists for the clinic -->
<a href="https://www.youtube.com" class="glightbox pulsating-play-btn" aria-label="Watch our clinic video"></a>
</div>
<!-- Content Column -->
<div class="col-lg-6 content" data-aos="fade-up" data-aos-delay="200">
<h3>Your dedicated partner in health and wellness.</h3>
<p class="fst-italic">
Medicio Health Clinic offers comprehensive personalized wellness management with a focus on preventive care and overall health span.
</p>
<ul>
<!-- Real services offered by Medicio Health Clinic -->
<li><i class="bi bi-check2-all"></i> <span>Annual comprehensive health assessments.</span></li>
<li><i class="bi bi-check2-all"></i> <span>24/7 access to your healthcare team for urgent concerns.</span></li>
<li><i class="bi bi-check2-all"></i> <span>Efficient referral management and hospital coordination services.</span></li>
</ul>
<p>
Our goal is to provide ongoing health management and help you create a roadmap for your optimal health. We prioritize building relationships to ensure you feel supported and cared for throughout your journey.
</p>
</div>
</div>
</div>
</section><!-- /About Section -->
<!-- Stats Section -->
<section id="stats" class="stats section">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4">
<div class="col-lg-3 col-md-6">
<div class="stats-item d-flex align-items-center w-100 h-100">
<i class="fas fa-user-md flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="25" data-purecounter-duration="1" class="purecounter"></span>
<p>Doctors</p>
</div>
</div>
</div><!-- End Stats Item -->
<div class="col-lg-3 col-md-6">
<div class="stats-item d-flex align-items-center w-100 h-100">
<i class="far fa-hospital flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="15" data-purecounter-duration="1" class="purecounter"></span>
<p>Departments</p>
</div>
</div>
</div><!-- End Stats Item -->
<div class="col-lg-3 col-md-6">
<div class="stats-item d-flex align-items-center w-100 h-100">
<i class="fas fa-flask flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="8" data-purecounter-duration="1" class="purecounter"></span>
<p>Research Labs</p>
</div>
</div>
</div><!-- End Stats Item -->
<div class="col-lg-3 col-md-6">
<div class="stats-item d-flex align-items-center w-100 h-100">
<i class="fas fa-award flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="150" data-purecounter-duration="1" class="purecounter"></span>
<p>Awards</p>
</div>
</div>
</div><!-- End Stats Item -->
</div>
</div>
</section><!-- /Stats Section -->
<!-- Features Section -->
<section id="features" class="features section">
<div class="container">
<div class="row justify-content-around gy-4">
<div class="features-image col-lg-6" data-aos="fade-up" data-aos-delay="100">
<!-- Replace src with a relevant image of medical technology or clinic staff -->
<img src="assets/img/features.jpg" alt="A doctor reviewing patient charts on a tablet">
</div>
<div class="col-lg-5 d-flex flex-column justify-content-center" data-aos="fade-up" data-aos-delay="200">
<h3>A patient-first approach to modern healthcare delivery.</h3>
<p>
We leverage technology and integrated care teams to provide seamless health management tailored to your needs. Below are four key features of the Medicio experience.
</p>
<!-- Icon Box 1: Integrated Care -->
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="300">
<i class="fa-solid fa-hand-holding-medical flex-shrink-0"></i>
<div>
<h4><a href="#features" class="stretched-link">Integrated Care</a></h4>
<p>Our comprehensive approach ensures all aspects of your health are coordinated seamlessly between specialists.</p>
</div>
</div><!-- End Icon Box -->
<!-- Icon Box 2: Modern Facilities -->
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="400">
<i class="fa-solid fa-suitcase-medical flex-shrink-0"></i>
<div>
<h4><a href="#features" class="stretched-link">Modern Facilities</a></h4>
<p>Access state-of-the-art diagnostic imaging and lab services all within our clinic network.</p>
</div>
</div><!-- End Icon Box -->
<!-- Icon Box 3: Expert Staff -->
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="500">
<i class="fa-solid fa-staff-snake flex-shrink-0"></i>
<div>
<h4><a href="#features" class="stretched-link">Expert Staff</a></h4>
<p>Our board-certified physicians and nursing staff are leaders in their respective fields, providing expert care.</p>
</div>
</div><!-- End Icon Box -->
<!-- Icon Box 4: Preventive Focus -->
<div class="icon-box d-flex position-relative" data-aos="fade-up" data-aos-delay="600">
<i class="fa-solid fa-lungs flex-shrink-0"></i>
<div>
<h4><a href="#features" class="stretched-link">Preventive Focus</a></h4>
<p>We prioritize long-term wellness plans and preventive medicine to help you maintain optimal health.</p>
</div>
</div><!-- End Icon Box -->
</div>
</div>
</div>
</section><!-- /Features Section -->
<!-- Appointment Section -->
<section id="appointment" class="appointment section light-background">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>MAKE AN APPOINTMENT</h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<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" required="">
</div>
<div class="col-md-4 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required="">
</div>
<div class="col-md-4 form-group mt-3 mt-md-0">
<input type="tel" class="form-control" name="phone" id="phone" placeholder="Your Phone" required="">
</div>
</div>
<div class="row">
<div class="col-md-4 form-group mt-3">
<input type="datetime-local" name="date" class="form-control datepicker" id="date" placeholder="Appointment Date" required="">
</div>
<div class="col-md-4 form-group mt-3">
<select name="department" id="department" class="form-select" required="">
<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>
<div class="col-md-4 form-group mt-3">
<select name="doctor" id="doctor" class="form-select" required="">
<option value="">Select Doctor</option>
<option value="Doctor 1">Doctor 1</option>
<option value="Doctor 2">Doctor 2</option>
<option value="Doctor 3">Doctor 3</option>
</select>
</div>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message (Optional)"></textarea>
</div>
<div class="mt-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 class="text-center"><button type="submit">Make an Appointment</button></div>
</div>
</form>
</div>
</section><!-- /Appointment Section -->
<!-- Tabs Section -->
<section id="tabs" class="tabs section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Departments</h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div><!-- End Section Title -->
</section><!-- /Tabs Section -->
<!-- Testimonials Section -->
<section id="testimonials" class="testimonials section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Testimonials</h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper init-swiper" data-speed="600" data-delay="5000" data-breakpoints="{ "320": { "slidesPerView": 1, "spaceBetween": 40 }, "1200": { "slidesPerView": 3, "spaceBetween": 40 } }">
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
},
"breakpoints": {
"320": {
"slidesPerView": 1,
"spaceBetween": 40
},
"1200": {
"slidesPerView": 3,
"spaceBetween": 20
}
}
}
</script>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item" "="">
<p>
<i class=" bi bi-quote quote-icon-left"></i>
<span>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.</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="">
<h3>Saul Goodman</h3>
<h4>Ceo & Founder</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>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.</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="">
<h3>Jena Karlis</h3>
<h4>Store Owner</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid.</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- /Testimonials Section -->
<!-- Doctors Section -->
<section id="doctors" class="doctors section light-background">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Doctors</h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row gy-4">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="team-member">
<div class="member-img">
<img src="assets/img/doctors/doctors-1.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Walter White</h4>
<span>Chief Medical Officer</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="team-member">
<div class="member-img">
<img src="assets/img/doctors/doctors-2.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Sarah Jhonson</h4>
<span>Anesthesiologist</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="team-member">
<div class="member-img">
<img src="assets/img/doctors/doctors-3.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>William Anderson</h4>
<span>Cardiology</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="team-member">
<div class="member-img">
<img src="assets/img/doctors/doctors-4.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Amanda Jepson</h4>
<span>Neurosurgeon</span>
</div>
</div>
</div><!-- End Team Member -->
</div>
</div>
</section><!-- /Doctors Section -->
<!-- Gallery Section -->
<section id="gallery" class="gallery section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Gallery</h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper init-swiper">
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"centeredSlides": true,
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
},
"breakpoints": {
"320": {
"slidesPerView": 1,
"spaceBetween": 0
},
"768": {
"slidesPerView": 3,
"spaceBetween": 20
},
"1200": {
"slidesPerView": 5,
"spaceBetween": 20
}
}
}
</script>
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-1.jpg"><img src="assets/img/gallery/gallery-1.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-2.jpg"><img src="assets/img/gallery/gallery-2.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-3.jpg"><img src="assets/img/gallery/gallery-3.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-4.jpg"><img src="assets/img/gallery/gallery-4.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-5.jpg"><img src="assets/img/gallery/gallery-5.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-6.jpg"><img src="assets/img/gallery/gallery-6.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-7.jpg"><img src="assets/img/gallery/gallery-7.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a class="glightbox" data-gallery="images-gallery" href="assets/img/gallery/gallery-8.jpg"><img src="assets/img/gallery/gallery-8.jpg" class="img-fluid" alt=""></a></div>
</div>