-
Notifications
You must be signed in to change notification settings - Fork 222
/
index.html
1220 lines (1046 loc) · 50 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="blog.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/5.4.4/photoswipe.min.css"
integrity="sha512-LFWtdAXHQuwUGH9cImO9blA3a3GfQNkpF2uRlhaOpSbDevNyK1rmAjs13mtpjvWyi+flP7zYWboqY+8Mkd42xA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" href="img/favicon.png" type="image/png">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&family=Open+Sans&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<title>Swasthya Point</title>
<style>
*{
padding: 0%;
margin: 0%;
}
body {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
#root {
flex: 1;
}
.h1 {
font-size: 40px;
}
.follow-us {
-ms-flex-align: center;
display: flex;
background-color: aliceblue;
padding: 20px;
text-align: center;
margin-top: auto;
/* Keep this at the bottom */
}
.follow-us h2 {
color: grey;
/* Grey color for the heading */
font-size: 28px;
/* Increased size for the heading */
margin-bottom: 15px;
/* Space between heading and icons */
}
.follow-us a {
margin: 0 15px;
color: grey;
/* Grey color for icons */
text-decoration: none;
height: 50px;
width: 50px;
border-radius: 50%;
position: relative;
z-index: 3;
transition: color 0.5s ease-in-out;
}
@property --fill {
syntax: '<percentage>';
inherits: true;
initial-value: 0%;
}
.follow-us a::after {
position: absolute;
z-index: -1;
content: '';
inset: -3px;
border-radius: inherit;
background: conic-gradient(var(--iconbg) var(--fill), transparent var(--fill));
transition: --fill 0.6s ease-in-out;
}
.follow-us a::before {
position: absolute;
content: '';
inset: -1px;
border-radius: inherit;
background-color: aliceblue;
z-index: 0;
}
.follow-us a:hover {
color: var(--iconbg);
/* Change color on hover */
--fill: 100%
}
.follow-us a:focus {
outline: 2px solid var(--iconbg);
outline-offset: 2px;
}
.follow-us img {
width: 50px;
/* Set logo size */
height: 50px;
filter: grayscale(100%);
/* Grey color for icons */
transition: filter 0.3s;
/* Smooth transition effect */
}
.follow-us a:hover img {
filter: grayscale(0%);
/* Color on hover */
}
/* General styles for contact form inputs */
.form-control {
background-color: #fff;
/* White background */
border: 1px solid #ced4da;
/* Light border */
border-radius: 0.5rem;
/* Rounded corners */
transition: border-color 0.3s;
/* Smooth border transition */
}
.form-control:focus {
outline: none;
/* Remove default outline */
box-shadow: none;
/* Remove any shadow */
border-color: #007bff;
/* Change border color on focus */
}
/* Add custom styles for buttons */
.btn {
background-color: black;
/* Primary color */
border-radius:20px;
/* Remove border */
color: #fff;
/* White text */
transition: background-color 0.3s;
/* Smooth background transition */
}
.btn:hover {
background-color: rgb(12, 112, 39);
color: black;
/* Darker shade on hover */
}
/* Responsive design */
@media (max-width: 768px) {
.container {
padding: 20px;
/* Adjust padding on smaller screens */
}
}
.navbar {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
.nav-list {
list-style: none;
display: flex;
gap: 20px;
}
.nav-link {
text-decoration: none;
color: white;
padding: 10px;
}
.nav-link:hover,
.nav-link.active {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 5px;
}
.dropdown {
display: none;
position: absolute;
background-color: rgba(0, 0, 0, 0.8);
list-style: none;
padding: 10px;
}
li:hover .dropdown {
display: block;
}
.menu-toggle {
display: none;
cursor: pointer;
}
/* Mobile styles */
@media (max-width: 768px) {
.nav-list {
display: none;
flex-direction: column;
width: 100%;
position: absolute;
top: 60px;
left: 0;
background-color: rgba(0, 0, 0, 0.9);
}
.nav-list.active {
display: flex;
}
.menu-toggle {
display: flex;
}
}
</style>
</head>
<body>
<!-- header section starts -->
<nav class="navbar bg-dark">
<div class="logo">
<img src="./img/swasthya-logo.png" alt="Swasthya Logo">
</div>
<div class="menu-toggle" id="mobile-menu" aria-label="Toggle navigation" tabindex="0">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-list">
<li><a class="nav-link text-white" href="#home">Home</a></li>
<li><a class="nav-link text-white" href="#about">About Us</a></li>
<li>
<a class="nav-link text-white" href="#services">Services</a>
<ul class="dropdown">
<li><a class="dropdown-link text-white" href="#service1">Service 1</a></li>
<li><a class="dropdown-link text-white" href="#service2">Service 2</a></li>
<li><a class="dropdown-link text-white" href="#service3">Service 3</a></li>
</ul>
</li>
<li><a class="nav-link text-white" href="#blog">Blog</a></li>
<li><a class="nav-link text-white" href="#contact">Contact</a></li>
<div class="menu"><i class="fa-solid fa-bars"></i></div>
</ul>
</nav>
<script>
const mobileMenu = document.getElementById('mobile-menu');
const navList = document.querySelector('.nav-list');
mobileMenu.addEventListener('click', () => {
navList.classList.toggle('active');
});
// Optional: Close menu when clicking outside
document.addEventListener('click', (event) => {
if (!navList.contains(event.target) && !mobileMenu.contains(event.target)) {
navList.classList.remove('active');
}
});
</script>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>Your Health, Our Priority</h3>
<span>Personalized Care for Every Patient</span>
<p>We believe in a patient-centered approach, offering a wide range of medical services tailored to meet
your unique health needs.</p>
<a href="#" class="btn btn-outline-dark d-grid px-8 py-7 ">EXPLORE</a>
</div>
<div style="height: 100vh; filter: brightness(0.7);">
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel"
style="height: 100%;">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0"
class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner" style="height: 100%;">
<div class="carousel-item active">
<img src="./img/HD-wallpaper-medical-hospital.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="./img/medicine-healthcare-people-conce.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="./img/surgery-1822458_640.png" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleFade"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleFade"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- home section ends-->
<!-- about section starts -->
<section class="about" id="about">
<div class="row">
<div class="video-container" data-aos="zoom-in-up">
<video src="img/about-video.mp4" loop autoplay muted></video>
</div>
<div class="content" data-aos="fade-left" data-aos-duration="500">
<h3>Our Commitment to Healthcare</h3>
<p>Welcome to Swasthya Point! We have been dedicated to providing exceptional healthcare services to
our
community. </p>
<p>Our skilled team of professionals utilizes advanced technology to deliver personalized care
across
various specialties, including emergency services and wellness programs.</p>
<a href="#" class="btn">Learn more</a>
</div>
</div>
</section>
<!-- about section ends -->
<!-- icons sections starts -->
<section class="icons-container body.night">
<div class="icons" data-aos="fade-up">
<div class="info">
<h3>Pharmacy</h3>
<span>Prescription and medications.</span>
</div>
</div>
<div class="icons" data-aos="fade-up" data-aos-duration="500">
<div class="info">
<h3>Maternity Care</h3>
<span>Support for new mothers</span>
</div>
</div>
<div class="icons" data-aos="fade-up" data-aos-duration="600">
<div class="info">
<h3>Mental Health Services</h3>
<span>Emotional wellness support</span>
</div>
</div>
<div class="icons" data-aos="fade-up" data-aos-duration="700">
<div class="info">
<h3>Health Screening</h3>
<span>Preventive health evaluations</span>
</div>
</div>
</section>
<!-- icons section ends -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p><br></p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-right">
<div class="icon-box">
<div class="icon"><img src="img/ic.jpeg" class="card-img-top serviceimgs" alt="Radiology">
</div>
<h4><a href="radiology.html">Radiology</a></h4>
<p>To visualize internal structures and diagnose conditions.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="fade-down">
<div class="icon-box">
<div class="icon"><img src="img/ic3.jpeg" class="card-img-top serviceimgs" alt="Psychiatrist">
</div>
<h4><a href="psychatry.html">Psychiatry</a></h4>
<p>Specializes in mental health.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="fade-left">
<div class="icon-box">
<div class="icon"><img src="img/ic5.jpeg" class="card-img-top serviceimgs" alt="Dermatology">
</div>
<h4><a href="dermatology.html">Dermatology</a></h4>
<p>Diagnosis and treatment of skin, hair, and nail conditions.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="fade-right">
<div class="icon-box">
<div class="icon"><img src="img/ic2.jpeg" class="card-img-top serviceimgs" alt="Blood Bank">
</div>
<h4><a href="bloodbank.html">Blood Bank</a></h4>
<p>Transfusion medicine and blood donation center.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="fade-up">
<div class="icon-box">
<div class="icon"><img src="img/ic4.jpeg" class="card-img-top serviceimgs" alt="Urologist">
</div>
<h4><a href="urology.html">Urology</a></h4>
<p>Focuses on conditions affecting the urinary tract.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="fade-left">
<div class="icon-box">
<div class="icon"><img src="img/ic6.jpeg" class="card-img-top serviceimgs" alt="Pediatrician">
</div>
<h4><a href="pediatrics.html">Pediatrician</a></h4>
<p>Specializes in the medical care of infants, children.</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- <div class="bg-boz py-3">
<div class="container">
<div class="row">
<div class="col-md-4">
<img src="img/portfolio-6.jpg" class="card-img my-5" alt="...">
<img src="img/portfolio-2.jpg" class="card-img " alt="...">
</div>
<div class="col-md-4">
<img src="img/portfolio-3.jpg" class="card-img my-5" alt="...">
<img src="img/portfolio-4.jpg" class="card-img" alt="...">
</div>
<div class="col-md-4">
<img src="img/portfolio-5.jpg" class="card-img my-5" alt="...">
<img src="img/portfolio-1.jpg" class="card-img mb-5" alt="...">
</div>
</div>
</div>
</div> -->
<div class="bg-boz py-3" id="gallery">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="image-container" data-aos="fade-up">
<a href="img/portfolio-6.jpg" data-pswp-width="370" data-pswp-height="300">
<img src="img/portfolio-6.jpg" class="card-img" alt="...">
</a>
</div>
<div class="image-container" data-aos="fade-up">
<a href="img/portfolio-2.jpg" data-pswp-width="370" data-pswp-height="300">
<img src="img/portfolio-2.jpg" class="card-img " alt="...">
</a>
</div>
</div>
<div class="col-md-4">
<div class="image-container" data-aos="fade-up" data-aos-duration="500">
<a href="img/portfolio-3.jpg" data-pswp-width="370" data-pswp-height="300">
<img src="img/portfolio-3.jpg" class="card-img " alt="...">
</a>
</div>
<div class="image-container" data-aos="fade-up" data-aos-duration="500">
<a href="img/portfolio-4.jpg" data-pswp-width="370" data-pswp-height="300">
<img src="img/portfolio-4.jpg" class="card-img" alt="...">
</a>
</div>
</div>
<div class="col-md-4">
<div class="image-container" data-aos="fade-up" data-aos-duration="600">
<a href="img/portfolio-5.jpg" data-pswp-width="370" data-pswp-height="300">
<img src="img/portfolio-5.jpg" class="card-img " alt="...">
</a>
</div>
<div class="image-container" data-aos="fade-up" data-aos-duration="600">
<a href="img/portfolio-1.jpg" data-pswp-width="370" data-pswp-height="300">
<img src="img/portfolio-1.jpg" class="card-img " alt="...">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="bg-mavi py-5">
<div class="container">
<div class=" d-flex flex-column " id="bottom-carousel">
<div class="d-flex justify-content-center mb-5">
<div class="card-body text-center text-white w-50 d-flex flex-column">
<h1 class="card-title">''</h1>
<p class="card-text" style="font-size: 20px;">Welcome to a world of personalized healthcare.
Schedule appointments,
consult with specialists, and access medical resources conveniently online.</p>
</div>
</div>
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0"
class="active bt1" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" class="bt2"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" class="bt3"
aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="3" class="bt4"
aria-label="Slide 4"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="4" class="bt5"
aria-label="Slide 5"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="carousel-caption d-flex flex-column py-3 d-md-block py-md-5">
<h6>Jane Galadriel</h6>
<p>Ceo Tengkurep</p>
</div>
</div>
<div class="carousel-item">
<div class="carousel-caption d-flex flex-column py-3 d-md-block py-md-5">
<h6>Jane Galadriel</h6>
<p>Ceo Tengkurep</p>
</div>
</div>
<div class="carousel-item">
<div class="carousel-caption d-flex flex-column py-3 d-md-block py-md-5">
<h6>Jane Galadriel</h6>
<p>Ceo Tengkurep</p>
</div>
</div>
<div class="carousel-item">
<div class="carousel-caption d-flex flex-column py-3 d-md-block py-md-5">
<h6>Jane Galadriel</h6>
<p>Ceo Tengkurep</p>
</div>
</div>
<div class="carousel-item">
<div class="carousel-caption d-flex flex-column py-3 d-md-block py-md-5">
<h6>Jane Galadriel</h6>
<p>Ceo Tengkurep</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- <div id="contact"
class="max-w-2xl mx-auto relative overflow-hidden z-10 bg-white p-8 rounded-lg shadow-md before:w-44 before:h-44 before:absolute before:bg-cyan-400 before:rounded-full before:-z-10 before:blur-2xl after:w-56 after:h-56 after:absolute after:bg-sky-400 after:rounded-full after:-z-10 after:blur-xl after:top-60 after:-right-12">
<h2 class="text-5xl text-sky-900 font-bold mb-6">Contact Us</h2>
<form method="post" action="#" id="contactForm">
<div class="mb-4">
<label class="block text-xl font-medium text-gray-600" for="name">Name</label>
<input class="mt-1 p-2 w-full border rounded-md" type="text" id="name" name="name" placeholder="Enter your name" required/>
</div>
<div class="mb-4">
<label class="block text-xl font-medium text-gray-600" for="email">Email Address</label>
<input class="mt-1 p-2 w-full border rounded-md" name="email" id="email" type="email" name="email" placeholder="Enter your email" required />
</div>
<div class="mb-4">
<label class="block text-xl font-medium text-gray-600" for="subject">Subject</label>
<input class="mt-1 p-2 w-full border rounded-md" type="text" id="subject" name="subject" placeholder="Enter subject" required/>
</div>
<div class="mb-4">
<label class="block text-xl font-medium text-gray-600" for="message">Message</label>
<textarea class="mt-1 p-2 w-full border rounded-md" rows="3" name="message"
id="message" placeholder="Write a Message" required></textarea>
</div>
<div class="flex justify-end">
<button
class="text-2xl d-grid gap-2 col-6 mx-auto [background:linear-gradient(144deg,#af40ff,#5b42f3_50%,#00ddeb)] text-white px-4 py-2 font-bold rounded-md hover:opacity-80"
type="submit" id="contactBtn">
Send Message
</button>
</div>
<div class="d-flex justify-content-center">
<div id="confirmationMessage" class="alert alert-success mt-3" style="display: none;">
Thank you! Your message has been sent successfully.
</div>
</div>
</form>
</div> -->
<!-- Contact Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="row g-4">
<div class="col-lg-4 text-[15px]">
<div
class="h-100 bg-light rounded d-flex align-items-center p-5 transition transform hover:scale-105 hover:shadow-lg hover:bg-gray-100">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-white transition transform hover:bg-blue-500 hover:rotate-180"
style="width: 55px; height: 55px;">
<i class="fa fa-map-marker-alt text-primary text-[15px]"></i>
</div>
<div class="ms-4">
<p class="mb-2 ">Address</p>
<h5 class="mb-0">Swasthya Point Delhi, India</h5>
</div>
</div>
</div>
<div class="col-lg-4 text-[15px]">
<div
class="h-100 bg-light rounded d-flex align-items-center p-5 transition transform hover:scale-105 hover:shadow-lg hover:bg-gray-100">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-white transition transform hover:bg-blue-500 hover:rotate-180"
style="width: 55px; height: 55px;">
<i class="fa fa-phone-alt text-primary text-[15px]"></i>
</div>
<div class="ms-4">
<p class="mb-2">Call Us Now</p>
<h5 class="mb-0">+91 9876543210</h5>
</div>
</div>
</div>
<div class="col-lg-4 text-[15px] hover:bg-gray-100 hover:shadow-lg transition duration-300 ease-in-out"">
<div class=" h-100 bg-light rounded d-flex align-items-center p-5 transition transform
hover:scale-105 hover:shadow-lg hover:bg-gray-100">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-white transition transform hover:bg-blue-500 hover:rotate-180"
style="width: 55px; height: 55px;">
<i class="fa fa-envelope-open text-primary text-[15px]"></i>
</div>
<div class="ms-4">
<p class="mb-2">Mail Us Now</p>
<h5 class="mb-0 normal-case"> [email protected]</h5>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeIn" data-wow-delay="0.1s">
<div class="bg-light rounded p-5">
<p class="d-inline-block border rounded-pill py-1 px-4 " style="color: #000;">Contact Us
</p>
<h1 class="mb-4">Have Any Query? Please Contact Us!</h1>
<form>
<div class="row g-3">
<div class="col-md-6">
<div class="form">
<input type="text" class="form-control" id="name" name="name"
placeholder="Your Name" required>
</div>
</div>
<div class="col-md-6">
<div class="form">
<input type="email" class="form-control" id="email" name="email"
placeholder="Your Email" required>
</div>
</div>
<div class="col-md-6">
<div class="form">
<input type="tel" class="form-control" id="phone" name="phone"
placeholder="Your Phone Number" required
style=" height: 50px; font-size: 15px;">
<label for="phone">Your Phone Number</label>
</div>
</div>
<div class="col-md-6">
<div class="form">
<input type="text" class="form-control" id="city" name="city"
placeholder="Your City" required>
</div>
</div>
<div class="col-12">
<div class="form">
<input type="text" class="form-control" id="subject" name="subject"
placeholder="Subject" required>
</div>
</div>
<div class="col-12">
<div class="form">
<textarea class="form-control" placeholder="Leave a message here"
id="message" name="message" style="height: 100px ; font-size: 15px;"
required></textarea>
</div>
</div>
<div class="col-12 d-flex justify-content-center">
<button class="btn btn-primary w-100 py-3" id="contact">Send
Message</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-6 wow fadeIn" data-wow-delay="0.5s">
<div class="h-100" style="min-height: 400px;">
<iframe class="rounded w-100 h-100"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d224346.77249238306!2d77.06889927915427!3d28.527582456103037!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390d1d4567aef7fd%3A0xddb0beddcd6d3c74!2sNew%20Delhi%2C%20Delhi%2C%20India!5e0!3m2!1sen!2sin!4v1603794290143!5m2!1sen!2sin"
frameborder="0" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Contact End -->
<footer class="footer-distributed">
<div class="footer-left">
<h3><a class="social-icon__link" href="https://tushargupta1504.github.io/Medical-Website/" target="_blank">
<img src="img/swasthya-logo.png" height="120px" width="120px" >
</a></h3>
<p class="footer-links">
<a href="#home">Home</a>
|
<a href="#about">About</a>
|
<a href="#contact">Contact</a>
|
<a href="blog.html">Blog</a>
</p>
<p class="footer-company-name">Copyright © 2024 <strong>Swasthya</strong> All rights reserved</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><span>Swasthya Point </span>
Delhi</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+91 9876543210</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
<strong>Swasthya</strong> Prioritize your healthwith top healthcare providers,personalized treatments, andeasy management of your health journey.
</p>
<div class="footer-icons">
<a class="social-icon__link" href="" target="_blank">
<img src="img/facebook.png" height="48px" width="48px" >
</a>
<a class="social-icon__link" href="">
<img src="img/instagram.png" height="40px" width="40px">
</a>
<a class="social-icon__link" href="https://www.linkedin.com/in/tushar1504/">
<img src="img/linkedin.png" height="55px" width="54px">
</a>
<a class="social-icon__link" href="" target="_blank">
<img src="img/twitter.png" height="55px" width="54px">
</a>
<a class="social-icon__link" href="" target="_blank">
<img src="img/youtube.png" height="55px" width="54px">
</a>
</div>
</div>
</footer>
</div>
</div>
</div>
</div>
</section>
<script>
var content = document.getElementsByTagName('body')[0];
var darkMode = document.getElementById('dark-change');
darkMode.addEventListener('click', function () {
darkMode.classList.toggle('active');
content.classList.toggle('night');
})
</script>
</div>
<footer>
/* <p class="m-0" style="text-align: center; ">© 2024 Swasthya Point</p> */
</footer>
</div>
<script>
var content = document.getElementsByTagName('body')[0];
var darkMode = document.getElementById('dark-change');
darkMode.addEventListener('click', function () {
darkMode.classList.toggle('active');
content.classList.toggle('night');
})
</script>
<script>
// Get the form and submit button
const form = document.querySelector('form');
const submitButton = document.querySelector('#contact');
// Add an event listener to the submit button
submitButton.addEventListener('click', function (event) {
// Prevent the default form submission behavior
event.preventDefault();
// Get the input fields
const nameInput = document.querySelector('#name');
const emailInput = document.querySelector('#email');
const phoneInput = document.querySelector('#phone');
const cityInput = document.querySelector('#city');
const subjectInput = document.querySelector('#subject');
const messageInput = document.querySelector('#message');
// Clear the input fields
nameInput.value = '';
emailInput.value = '';
phoneInput.value = '';
cityInput.value = '';
subjectInput.value = '';
messageInput.value = '';
// Display an alert
alert('Your details have been submitted!');
});
</script>
</main>
<div id="google_translate_element"></div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.HORIZONTAL}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<footer class="bg-red-500 h-[30vh]">
<!-- <div class="footercolor"> -->
<section class="footer" id="footer" style="background-color: black ">
<hr> <!-- Horizontal line -->
<!-- Parent div wrapping all footer content -->
<div class="footer-row">
<!-- Child div for 'About Scruter' -->
<div class="footer-column">
<h3>About Swasthy</h3>
<div class="text-white, text-2xl">Swasthy provides online consultations, health information,
diagnostic tests, and affordable
services across various specialties, ensuring accessible healthcare for all.</div>
</div>
<!-- Child div for 'Quick Links' -->
<div class="footer-column">
<h3 class="ml-20">Quick Links</h3>
<a class="ml-20" href="#">About Us</a>
<a class="ml-20" href="#">Our Team</a>
<a class="ml-20" href="#">Privacy Policy</a>
<a class="ml-20" href="#">Terms of Service</a>
<a class="ml-20" href="#">Our Contributors</a>
</div>
<!-- Child div for 'Help Desk' -->
<div class="footer-column">
<h3>Help Desk</h3>
<a href="#">Help Center</a>
<a href="faq.html">FAQ</a>
<a href="#">Contact Us</a>
<a href="#">Support</a>
</div>
<!-- Child div for 'Follow Us' -->
<div class="footer-column">
<h3 class="ml-40">Follow Us</h3>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-linkedin "></i></a>
<a href="#"><i class="fa-brands fa-facebook "></i></a>
<a href="#"><i class="fa-brands fa-x-twitter "></i></a> <!-- Updated X icon -->
<a href="#"><i class="fa-brands fa-instagram "></i></a>
<a href="#"><i class="fa-brands fa-pinterest "></i></a>
</div>
</div>
</div>
<!-- Footer credit -->
<div class="credit">
<p>Made with ❤ by Team Swasthya.</p>
</div>
</section>
<!-- </div> -->
<!-- Footer Section Ends Here -->
</footer>
<style>
/* Footer styles */
.footer {
padding: 20px;
background-color: #FF6F61;
/* Ice cream color */
color: white;
width: 100%;
}
.footer hr {
border: 0;
border-top: 1px solid white;
margin: 20px 0;
}
/* Parent div styling */
.footer-row {
display: flex;