-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
944 lines (899 loc) · 36.3 KB
/
index.html
File metadata and controls
944 lines (899 loc) · 36.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./output.css" rel="stylesheet" />
<link href="./style.css" rel="stylesheet" />
<title>try</title>
</head>
<body>
<header class="shadow-xs">
<div
class="px-4 md:px-10 lg:px-20 hidden md:flex bg-[#EAF7FF] justify-between items-center py-1"
>
<div class="text-[#F49A31] flex items-center">
<span class="text-sm">info@curavidahealth.com</span>
</div>
<div class="flex items-center space-x-4">
<div class="text-[#F49A31] flex items-center gap-1">
<img src="./img/phone.png" class="h-4 w-4" />
<span class="text-sm">+91 92721 33228</span>
</div>
<div
class="bg-[#F49A31] text-white flex items-center px-4 py-2 rounded-sm cursor-pointer"
>
<button class="font-semibold text-sm">Request Call Back</button>
<img src="./img/arrow.png" class="w-6 h-0.2 ml-2" alt="Arrow" />
</div>
</div>
</div>
<div
class="bg-linear-to-r from-[#ffffff] via-[#FBF6EE] to-[#bbd0de] flex justify-between items-center px-3.5 md:px-10 lg:px-20 py-4"
>
<h1 class="hidden md:flex text-[#F49A31] text-xl md:text-2xl font-bold">
Curavida Home Health
</h1>
<img src="img/logo.png" class="md:hidden inline max-w-15 mr-2" />
<button class="text-[#F49A31] text-3xl md:hidden">
<img src="./ham.png" class="w-6 h-6" />
</button>
<nav class="hidden md:block">
<ul class="flex gap-6 lg:gap-8 items-center">
<li class="text-[#686868] hover:text-[#F49A31] cursor-pointer">
About
</li>
<li
class="text-[#868686] flex items-center gap-1 hover:text-[#F49A31] cursor-pointer"
>
Services
<img src="./img/down.png" class="inline w-4 h-4 mt-1" />
</li>
<li
class="text-[#868686] flex items-center gap-1 hover:text-[#F49A31] cursor-pointer"
>
Care Packages
<img src="./img/down.png" class="inline w-4 h-4 mt-1" />
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Resources
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Contact Us
</li>
<button
class="border-2 border-[#F49A31] flex gap-2 p-1 px-3 items-center rounded-lg text-[#F49A31] cursor-pointer"
>
Login
<img src="./img/login-icon.png" class="inline w-4 h-4" />
</button>
</ul>
</nav>
</div>
</header>
<main class="bg-linear-to-r from-[#ffffff] via-[#FBF6EE] to-[#bbd0de]">
<section
class="px-4 md:px-10 lg:px-20 flex flex-col md:flex-row items-center py-10"
>
<div
class="flex flex-col md:w-1/2 order-2 md:order-1 text-center md:text-left"
>
<div class="flex items-center gap-1 mb-1 md:0 mx-auto md:mx-0">
<img src="./img/logo.png" class="max-w-30" />
<p class="text-[#F49A31] font-bold text-xl">
CURAVIDA <br />HOME HEALTH
</p>
</div>
<h2 class="text-4xl font-bold md:text-5xl lg:text-6xl my-5">
Your partner in <br /><strong class="text-[#F49A31]"
>Premium</strong
>
Home <br />
Healthcare
</h2>
<p class="text-[#868686]">
Are you looking for a full-day or 24/7 caregiver?
</p>
<button
class="bg-[#F49A31] text-white m-3 py-3 px-6 rounded-full font-semibold w-fit mx-auto md:mx-0 shadow-lg cursor-pointer"
>
Submit your requirements
</button>
</div>
<div class="md:w-1/2 order-1 md:order-2 mb-8 md:mb-0">
<img
src="./img/all.png"
class="w-full h-auto max-w-sm md:max-w-md mx-auto"
/>
</div>
</section>
<section class="bg-[#2B9ADC] text-white py-4 px-4 md:px-5">
<div
class="flex flex-col lg:flex-row items-start justify-center text-center max-w-6xl mx-auto space-y-8 lg:space-y-0 lg:space-x-8"
>
<div class="flex flex-col items-center space-y-3 p-3 w-full lg:w-1/3">
<img src="./img/1.png" class="w-12 h-auto" />
<h2 class="font-bold text-xl">Trained & Verified Caregivers</h2>
<p class="text-sm">
In-house trained caregivers skilled in professionalism and
mannerisms, with thorough identity and criminal background checks.
</p>
</div>
<img src="./img/line.png" class="hidden lg:block max-h-50" />
<div
class="lg:border-t-0 border-t-2 border-white/30 flex flex-col items-center space-y-3 p-3 w-full lg:w-1/3"
>
<img src="./img/2.png" class="w-12 h-auto" />
<h2 class="font-bold text-xl">Personalized Care</h2>
<p class="text-sm">
Care Plan is tailored to each patient after careful consideration
of their needs by the Care Manager, who is a qualified nurse.
</p>
</div>
<img src="./img/line.png" class="hidden lg:block max-h-50" />
<div
class="lg:border-t-0 border-t-2 border-white/30 flex flex-col items-center space-y-3 p-3 w-full lg:w-1/3"
>
<img src="./img/3.png" class="w-12 h-auto" />
<h2 class="font-bold text-xl">Regular Care Updates</h2>
<p class="text-sm">
Daily, Weekly & Monthly Reports are shared with the patient
attendants to keep them informed on patient’s health.
</p>
</div>
</div>
</section>
<section
class="px-4 md:px-10 lg:px-20 flex flex-col md:flex-row items-center gap-8 md:gap-10 py-10 max-w-6xl mx-auto"
>
<div class="md:w-1/2 order-1 md:order-1 relative">
<img
src="./img/family.png"
class="w-full h-auto max-w-md mx-auto rounded-xl shadow-lg"
/>
</div>
<div
class="md:w-1/2 flex flex-col gap-4 mt-3 order-2 md:order-2 relative"
>
<img
src="./r-star.png"
class="absolute w-5 h-5 -top-4 -left-4 z-10"
/>
<img
src="./y-star.png"
class="absolute w-5 h-5 top-8 md:top-6 left-3/4 md:left-2/3 z-10"
/>
<h2 class="text-3xl lg:text-4xl font-semibold">
We make patient care<br class="hidden lg:block" />
<strong class="text-[#F49A31] font-semibold">stress-free</strong>
for you
</h2>
<p class="text-[#868686]">
With our dedicated team of experts, we take the guesswork out of
care-giving. Experience the peace of mind that comes with knowing
your loved one is receiving the highest quality care possible.
</p>
<ul class="space-y-3">
<li class="flex items-center gap-3">
<img src="./img/heart.png" class="w-6 h-6" alt="Heart Icon" />
<p>Dedicated Care Manager</p>
</li>
<li class="flex items-center gap-3">
<img src="./img/heart.png" class="w-6 h-6" alt="Heart Icon" />
<p>Personalised Care Plans</p>
</li>
<li class="flex items-center gap-3">
<img src="./img/heart.png" class="w-6 h-6" alt="Heart Icon" />
<p>Ongoing support via calls & home visits</p>
</li>
<li class="flex items-center gap-3">
<img src="./img/heart.png" class="w-6 h-6" alt="Heart Icon" />
<p>Background-verified caregivers</p>
</li>
</ul>
<img
src="./g-star.png"
class="absolute w-6 h-6 top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 z-10"
/>
<img
src="./r-heart.png"
class="absolute w-5 h-5 bottom-1/4 right-1/4 z-10"
/>
<img
src="./str.png"
class="hidden lg:block absolute max-w-25 rotate-60 bottom-1/3 -right-30 z-10"
/>
<img
src="./w-star.png"
class="absolute w-4 h-4 bottom-1/3 right-1/4 z-10"
/>
<button
class="bg-[#F49A31] text-white flex items-center px-6 py-2 rounded-full font-semibold cursor-pointer w-fit shadow-lg mt-2"
>
About Us
<img src="./img/arrow.png" class="w-7 h-0.2 ml-2" alt="Arrow" />
</button>
</div>
</section>
<section
class="bg-linear-to-r from-[#2B9ADC] to-[#90CAEF] flex flex-col items-center text-white py-10"
>
<div class="flex flex-col px-5">
<h2 class="text-center font-bold text-2xl">Our Services</h2>
<p class="text-center text-sm">
Discover our range of specialized home healthcare services designed
to meet your unique needs. From Elder Care to Post-Op support, our
dedicated team is here to provide compassionate and professional
care.
</p>
<div class="relative w-full">
<button
class="hidden md:flex absolute lg:-left-4 top-45 w-8 h-8 rounded-full bg-[#ffa544] text-white items-center justify-center shadow z-10 cursor-pointer"
>
<img src="./left.png" />
</button>
<div class="grid md:grid-cols-4 gap-10 mt-5">
<div
class="bg-[#C7EAFF] flex flex-col items-center py-2 rounded-sm"
>
<img src="./img/c1.png" class="max-w-60 pt-2 rounded-sm" />
<div>
<h3 class="text-[#323A47] px-4 py-2 text-xl font-semibold">
Elder Care
</h3>
<p class="text-[#868686] px-4 leading-tight">
We provide compassionate support and assistance to seniors,
ensuring their comfort and well-being.
</p>
</div>
</div>
<div
class="bg-[#C7EAFF] flex flex-col items-center py-2 rounded-sm"
>
<div class="px-5">
<img src="./img/c2.png" class="max-w-60 pt-2 rounded-sm" />
<h3 class="text-[#323A47] py-2 text-xl font-semibold">
Post-Operative Care
</h3>
<p class="text-[#868686] leading-tight">
Recover smoothly as we assist with wound care, pain
management, and mobility to promote healing.
</p>
</div>
</div>
<div
class="bg-[#C7EAFF] flex flex-col items-center py-2 rounded-sm"
>
<div class="px-5">
<img src="./img/c3.png" class="max-w-60 pt-2 rounded-sm" />
<h3 class="text-[#323A47] py-2 text-xl font-semibold">
Chronic Condition Care
</h3>
<p class="text-[#868686] leading-tight">
Manage chronic conditions with our expert care, designed to
help you maintain a healthy life.
</p>
</div>
</div>
<div
class="bg-[#C7EAFF] flex flex-col items-center py-2 rounded-sm"
>
<div class="px-5">
<img src="./img/c4.png" class="max-w-60 pt-2 rounded-sm" />
<h3 class="text-[#323A47] py-2 text-xl font-semibold">
Palliative Care
</h3>
<p class="text-[#868686] leading-tight">
We support your loved one with life-limiting conditions to
live with dignity, all in the familiarity and comfort of
their homes.
</p>
</div>
</div>
</div>
<button
class="cursor-pointer hidden md:flex absolute lg:-right-4 top-45 w-8 h-8 rounded-full bg-[#ffa544] text-white items-center justify-center shadow z-10"
>
<img src="./right.png" />
</button>
<div class="flex justify-center mt-6 space-x-2">
<span class="w-2 h-2 rounded-full bg-white"></span>
<span class="w-2 h-2 rounded-full bg-white/50"></span>
</div>
</div>
</div>
</section>
<section
class="relative px-4 md:px-10 lg:px-20 py-12 md:py-20 max-w-7xl mx-auto"
>
<h2
class="flex justify-center text-xl md:text-4xl font-semibold mb-15 text-[#323A47]"
>
How to book Care Services?
</h2>
<img
src="./r-star.png"
class="absolute max-w-5 top-5 left-5 lg:top-10 lg:left-80 z-10"
/>
<img
src="./y-star.png"
class="absolute max-w-5 lg:top-30 lg:left-90 z-10"
/>
<img
src="./g-star.png"
class="absolute max-w-6 lg:top-25 lg:right-60 z-10"
/>
<img
src="./w-star.png"
class="absolute max-w-10 lg:top-10 lg:right-90 z-10"
/>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 justify-items-center">
<div class="flex flex-col items-center text-center">
<img src="./img/s1.png" class="min-w-24 md:max-w-50" />
<span
class="text-[#2B9ADC] font-semibold mt-7 md:mt-4 text-sm md:text-xl"
>Share Requirements</span
>
</div>
<div class="flex flex-col items-center text-center">
<img src="./img/s2.png" class="md:max-w-50" />
<span class="text-[#2B9ADC] font-semibold mt-9 text-sm md:text-xl"
>Finalise Care Plan</span
>
</div>
<div class="flex flex-col items-center text-center">
<img src="./img/s3.png" class="md:max-w-50" />
<span class="text-[#2B9ADC] font-semibold mt-4 text-sm md:text-xl"
>Caregiver is assigned</span
>
</div>
<div class="flex flex-col items-center text-center">
<img src="./img/s4.png" class="md:max-w-49" />
<span class="text-[#2B9ADC] font-semibold mt-3 text-sm md:text-xl"
>Service Starts</span
>
</div>
</div>
</section>
<section class="relative px-4 md:px-10 py-10 max-w-7xl mx-auto">
<h2
class="flex justify-center font-semibold text-xl lg:text-4xl text-[#333]"
>
Choose Care
<strong
class="font-semibold text-[#F49A31] text-xl lg:text-4xl px-1.5 lg:px-2"
>Packages</strong
>
</h2>
<img
src="./str.png"
class="hidden lg:block absolute max-w-20 bottom-45 left-0 mr-8 z-0"
/>
<p
class="flex justify-center text-center mt-3 text-sm mb-10 max-w-xl mx-auto text-[#868686]"
>
Here are care packages designed to meet your needs. Choose the best
option for personalized care.
</p>
<div
class="px-6 grid grid-cols-1 md:grid-cols-3 gap-8 justify-items-center"
>
<div
class="w-full max-w-xs bg-[#318AC3] rounded-xl p-6 flex flex-col text-white shadow-xl h-full"
>
<h3 class="text-xl font-semibold mb-2">Basic Care</h3>
<div class="text-4xl font-semibold mb-1">
950 INR <span class="text-xs font-normal">per day</span>
</div>
<span class="text-xs mb-4"
>Lorem ipsum dolor sit amet aliquet sodales arcu
</span>
<hr class="border-white/50 mb-4" />
<ul class="space-y-3 flex-grow">
<li class="flex gap-2 items-center">
<img src="./img/tick.png" class="h-3 w-3" />
<p class="text-xs">Shower Bath / Assist with bathing</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/tick.png" class="h-3 w-3" />
<p class="text-xs">Assist to Washroom</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/tick.png" class="h-3 w-3" />
<p class="text-xs">Medication Reminders</p>
</li>
<li class="flex gap-2 items-center text-[#5EBEFB]">
<img src="./img/tick.png" class="h-3 w-3" />
<p class="text-xs">Recording vital signs</p>
</li>
<li class="flex gap-2 items-center text-[#5EBEFB]">
<img src="./img/tick.png" class="h-3 w-3" />
<p class="text-xs">Assist With Walking</p>
</li>
<li class="flex gap-2 items-center text-[#5EBEFB]">
<img src="./img/tick.png" class="h-3 w-3" />
<p class="text-xs">Assist with home exercises</p>
</li>
</ul>
<div class="flex justify-center mt-6">
<button
class="px-7 py-2 rounded-lg cursor-pointer bg-white text-[#318AC3] font-semibold"
>
Get Started
</button>
</div>
</div>
<div
class="relative w-full max-w-xs bg-white rounded-xl p-6 flex flex-col text-[#318AC3] border-1 border-[#318AC3] shadow-xl h-full"
>
<div
class="absolute -top-4 left-1/2 transform -translate-x-1/2 bg-[#318AC3] text-white px-5 py-2 rounded-lg text-xs font-semibold"
>
Recommended
</div>
<h3 class="text-xl font-semibold mt-2 mb-2">Comprehensive Care</h3>
<div class="text-4xl font-semibold mb-1">
1050 INR <span class="text-xs font-normal">per day</span>
</div>
<span class="text-xs mb-4"
>Lorem ipsum dolor sit amet aliquet sodales arcu
</span>
<hr class="border-[#318AC3]/50 mb-4" />
<ul class="space-y-3 flex-grow">
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Shower Bath / Assist with bathing</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Assist to Washroom</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Medication Reminders</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" alt="tick" class="h-3 w-3" />
<p class="text-xs">Recording vital signs</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Assist With Walking</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Assist with home exercises</p>
</li>
</ul>
<div class="flex justify-center mt-6">
<button
class="px-7 py-2 rounded-lg cursor-pointer text-white bg-[#318AC3] font-semibold"
>
Get Started
</button>
</div>
</div>
<div
class="w-full max-w-xs bg-white rounded-xl p-6 flex flex-col text-[#318AC3] border border-[#318AC3] shadow-xl h-full md:col-span-1"
>
<h3 class="text-xl font-semibold mb-2">Advanced Care</h3>
<div class="text-4xl font-semibold mb-1">
1599 INR <span class="text-xs font-normal">per day</span>
</div>
<span class="text-xs mb-4"
>Lorem ipsum dolor sit amet aliquet sodales arcu
</span>
<hr class="border-[#318AC3]/50 mb-4" />
<ul class="space-y-3 flex-grow">
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Shower Bath / Assist with bathing</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Assist to Washroom</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Medication Reminders</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Recording vital signs</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Assist With Walking</p>
</li>
<li class="flex gap-2 items-center">
<img src="./img/blue.png" class="h-3 w-3" />
<p class="text-xs">Assist with home exercises</p>
</li>
</ul>
<div class="flex justify-center mt-6">
<button
class="px-7 py-2 rounded-lg cursor-pointer text-white bg-[#318AC3] font-semibold"
>
Get Started
</button>
</div>
</div>
</div>
</section>
<section
class="relative bg-linear-to-r from-[#2B9ADC] to-[#8FCEF6] p-4 md:my-10"
>
<div
class="flex flex-col lg:flex-row items-center justify-between lg:px-10 py-2 pb-100 lg:py-4"
>
<img
src="./img/doctor.png"
class="max-w-xs z-0 lg:max-w-sm absolute bottom-0 lg:right-20 lg:-top-15"
/>
<img
src="./white-string.png"
class="z-0 absolute max-w-25 left-1 bottom-60 lg:left-160 lg:bottom-0"
/>
<div class="flex flex-col p-0 md:p-4 z-1 text-center lg:text-left">
<span class="text-[#F49A31] text-xl md:text-2xl font-semibold mb-2"
>CURAVIDA HOME HEALTH</span
>
<span
class="text-white text-2xl md:text-3xl lg:text-4xl my-2 font-semibold leading-tight"
>Your Most Trusted At-Home<br />
Healthcare Service Provider</span
>
<span class="text-white text-sm mt-2 max-w-lg mx-auto lg:mx-0"
>We provide long-term care packages for 24/7 and 12 hour
(day/night) <br class="hidden md:inline" />support. We are
commited to providing compassionate and effective<br
class="hidden md:inline"
/>
care to all of our patients.</span
>
</div>
<div
class="absolute lg:right-100 lg:top-40 top-70 lg:mt-0 flex gap-2 items-center mt-8 bg-white p-3 rounded-lg shadow-xl z-0 w-fit"
>
<img
src="./img/whitephone.png"
class="h-10 w-10 bg-[#F49A31] p-1.5 rounded-sm"
/>
<div class="flex flex-col">
<span class="text-sm font-semibold text-gray-700">Call Us</span>
<span class="text-sm font-semibold text-gray-800"
>+91 953896795</span
>
</div>
</div>
</div>
</section>
<section class="relative px-4 md:px-10 lg:px-20 py-10 max-w-7xl mx-auto">
<div class="text-center md:text-left mb-8">
<img
src="./str.png"
class="absolute max-w-20 top-1 right-1 -rotate-180"
/>
<h2 class="text-3xl font-semibold mb-2">
Frequently Asked
<strong class="text-[#F49A31] font-semibold">Questions</strong>
</h2>
<p class="text-[#868686]">
Here are answers to common questions about our services. Find the
information you need below.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div
class="bg-[#ffffff] border border-[#AFE0FD] p-4 rounded-lg shadow-md"
>
<h3 class="text-[#2B9ADC] font-semibold mb-2">
Can I book short term services (Ex. 3 days)?
</h3>
<p class="text-[#868686] text-sm">
The minimum duration for booking Curavida Health Care Services is
15 days.
</p>
</div>
<div
class="bg-[#ffffff] border border-[#AFE0FD] p-4 rounded-lg shadow-md"
>
<h3 class="text-[#2B9ADC] font-semibold mb-2">
When can you start the care services at the earliest?
</h3>
<p class="text-[#868686] text-sm">
After we receive details about the patient's condition and their
requirements, we assign the caregiver within 4-5 days and start
the services. It will take us a maximum of 7 days to start the
services.
</p>
</div>
<div
class="bg-[#ffffff] border border-[#AFE0FD] p-4 rounded-lg shadow-md"
>
<h3 class="text-[#2B9ADC] font-semibold mb-2">
How to book the care services?
</h3>
<p class="text-[#868686] text-sm">
Share Care requirements with your experience Manager. 2. Receive &
Confirm Care Plan. 3. Pay Token Amount & book the services.
</p>
</div>
<div
class="bg-[#ffffff] border border-[#AFE0FD] p-4 rounded-lg shadow-md"
>
<h3 class="text-[#2B9ADC] font-semibold mb-2">
When will the service start after booking service?
</h3>
<p class="text-[#868686] text-sm">
A Caregiver will be assigned within 48 hours of booking services.
Once you confirm the caregiver, they start the service on the
decided start date of service.
</p>
</div>
<div
class="bg-[#ffffff] border border-[#AFE0FD] p-4 rounded-lg shadow-md"
>
<h3 class="text-[#2B9ADC] font-semibold mb-2">
Are all your caregivers trained?
</h3>
<p class="text-[#868686] text-sm">
The caregivers are Trained in-House for Caregiving Skills,
Professionalism & Mannerism. After the training they are
evaluated, and qualified Caregivers are certified by Curavida Home
Health.
</p>
</div>
<div
class="bg-[#ffffff] border border-[#AFE0FD] p-4 rounded-lg shadow-md"
>
<h3 class="text-[#2B9ADC] font-semibold mb-2">
Are the caregivers equipped to handle emergency situations?
</h3>
<p class="text-[#868686] text-sm">
Yes. During the training, caregivers are instructed on the
emergency protocol. In the event of a medical emergency,
caregivers have the contact numbers of immediate responders,
hospitals, and physicians readily available.
</p>
</div>
</div>
</section>
<section class="relative">
<div class="bg-[#2B9ADC] pt-5 pb-85 lg:pt-10 lg:pb-80">
<h1
class="pb-3 flex justify-center text-white font-semibold text-3xl"
>
Contact Us
</h1>
<p class="text-center text-white max-w-2xl mx-auto px-4">
Contact us for personalized home healthcare solutions. Our team is
here to help!
</p>
</div>
<div
class="max-w-6xl mx-auto px-4 lg:pb-30 absolute w-full left-1/2 -translate-x-1/2 -bottom-40"
>
<div
class="flex flex-col md:flex-row gap-0 bg-white shadow-2xl overflow-hidden"
>
<div class="md:w-1/2 w-full order-1">
<img
src="./img/final.png"
alt="Contact Us"
class="w-full h-full object-cover min-h-60"
/>
</div>
<div class="md:w-1/2 w-full order-2 p-6 md:p-12">
<form class="flex flex-col gap-5">
<div>
<label class="text-sm mb-2 text-[#323A47] font-medium"
>Name</label
>
<input
type="text"
placeholder="Enter your Name"
class="border border-[#868686] w-full p-3 rounded-xl focus:outline-none"
required
/>
</div>
<div>
<label class="text-sm mb-2 text-[#323A47] font-medium"
>Phone Number</label
>
<input
type="tel"
placeholder="Enter your Phone Number"
class="border border-[#868686] w-full p-3 rounded-xl focus:outline-none"
required
/>
</div>
<div>
<label class="text-sm mb-2 text-[#323A47] font-medium"
>Services</label
>
<select
class="border border-[#868686] w-full p-3 rounded-xl text-gray-700 focus:outline-none"
>
<option>Caretaker</option>
<option>Post-Operative Care</option>
<option>Chronic Condition Care</option>
<option>Palliative Care</option>
</select>
</div>
<div>
<label class="text-sm mb-2 text-[#323A47] font-medium"
>Message</label
>
<textarea
placeholder="Write your Message"
rows="3"
class="border border-[#868686] w-full p-3 rounded-xl focus:outline-none"
></textarea>
</div>
<button
type="submit"
class="bg-[#F49A31] text-white w-40 rounded-md py-3 font-semibold mt-4"
>
Submit
</button>
</form>
</div>
</div>
</div>
<div
class="h-80 md:h-60 bg-linear-to-r from-[#ffffff] via-[#FBF6EE] to-[#bbd0de]"
></div>
</section>
</main>
<footer
class="bg-linear-to-r from-[#ffffff] via-[#FBF6EE] to-[#bbd0de] px-4 md:px-10 lg:px-20 pt-45 lg:pt-35 pb-3 bg-white"
>
<div
class="grid grid-cols-2 sm:grid-cols-2 lg:grid-cols-6 gap-8 max-w-7xl mx-auto"
>
<div class="col-span-2 sm:col-span-3 lg:col-span-2">
<div class="flex items-center mb-6">
<img src="./img/logo.png" class="max-w-20" alt="Curavida Logo" />
<h3 class="text-[#F49A31] font-bold text-xl leading-tight">
CURAVIDA <br />
HOME HEALTH
</h3>
</div>
<p class="text-2xl font-semibold text-[#323A47] mb-3">
Looking for assistance?<br />
Need guidance or have<br />
questions?
</p>
<p class="text-sm text-gray-500 max-w-sm mb-6">
Our Support team will contact you within 1 hour and provide you
details of the best services based on your requirements.
</p>
<a
href="#"
class="inline-flex gap-2 items-center justify-center bg-[#2B9ADC] text-white px-6 py-2 rounded-full font-semibold text-base w-48 md:w-auto lg:hidden"
>
<span>Contact Us</span>
<img
src="./img/arrow.png"
class="inline w-7 h-0.2 py-2"
alt="Arrow"
/>
</a>
</div>
<div class="lg:col-span-1">
<h3 class="text-[#323A47] font-bold mb-3">ABOUT</h3>
<ul class="space-y-2 text-sm">
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Our Story
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Testimonials
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Resources
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Policy’s
</li>
</ul>
</div>
<div class="lg:col-span-1">
<h3 class="text-[#323A47] font-bold mb-3">OUR PACKAGES</h3>
<ul class="space-y-2 text-sm">
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Basic Care
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Comprehensive Care
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Advanced Care
</li>
</ul>
</div>
<div class="lg:col-span-1">
<h3 class="text-[#323A47] font-bold mb-3">OUR SERVICES</h3>
<ul class="space-y-2 text-sm">
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Elder Care
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Post-Op Care
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Chronic Condition Care
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Terminal Illness Care
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
New born baby & mother Care
</li>
</ul>
</div>
<div class="lg:col-span-1">
<h3 class="text-[#323A47] font-bold mb-3">CONNECT</h3>
<ul class="space-y-2 text-sm">
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
support@curavidahealth.in
</li>
<li class="text-[#868686] hover:text-[#F49A31] cursor-pointer">
Contact Us
</li>
</ul>
</div>
</div>
<div
class="flex flex-col lg:flex-row items-center justify-between mt-6 max-w-7xl mx-auto"
>
<a
href="#"
class="hidden mb-5 lg:inline-flex gap-2 items-center justify-center bg-[#2B9ADC] text-white px-6 py-2 rounded-full font-semibold"
>
<span>Contact Us</span>
<img
src="./img/arrow.png"
class="inline w-7 h-0.2 py-2"
alt="Arrow"
/>
</a>
<div class="flex flex-col md:flex-row items-center mt-4 mb-5 lg:mt-0">
<p
class="text-[#868686] text-xs mt-5 lg:mt-0 md:text-sm order-2 md:order-1 lg:order-2"
>
© 2024 Curavida Home Health. All rights reserved.
</p>
<div
class="flex gap-4 lg:mr-50 items-center order-1 md:order-2 lg:order-1"
>
<a
href="#"
class="w-8 h-8 flex items-center justify-center rounded-full bg-[#2B9ADC]"
>
<img src="./img/in.png" class="w-5 h-5" alt="LinkedIn" />
</a>
<a
href="#"
class="w-8 h-8 flex items-center justify-center rounded-full bg-[#2B9ADC]"
>
<img src="./img/x.png" class="w-5 h-5" alt="X (Twitter)" />
</a>
<a
href="#"
class="w-8 h-8 flex items-center justify-center rounded-full bg-[#2B9ADC]"
>
<img src="./img/f.png" class="w-5 h-5" alt="Facebook" />
</a>
<a
href="#"
class="w-8 h-8 flex items-center justify-center rounded-full bg-[#2B9ADC]"
>
<img src="./img/camera.png" class="w-5 h-5" alt="Instagram" />
</a>
</div>
</div>
</div>
</footer>
</body>
</html>