-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwomen care.html
More file actions
1288 lines (1166 loc) · 47.7 KB
/
women care.html
File metadata and controls
1288 lines (1166 loc) · 47.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Women Care - HealConnect</title>
<link rel="stylesheet" href="style.css">
<style>
.care-options {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin: 30px;
}
.care-button {
padding: 20px 30px;
font-size: 18px;
border: none;
border-radius: 10px;
background-color: #DA70D6;
color: white;
cursor: pointer;
transition: 0.3s;
}
.care-button:hover {
background-color: #9a4eae;
}
</style>
</head>
<body>
<header>
<h1>HealConnect</h1>
<p>Your Trusted Health Friend</p>
<nav>
<a href="index.html">Home</a>
<a href="remedies.html"> Natural Remedies</a>
<a href="fitness.html">Fitness</a>
<a href="hospital locator.html">Hospital Locator</a>
<a href="diet plans.html">Diet Plans</a>
<a href="schemes.html">Medical Schemes</a>
<a href="women care.html">Women Care</a>
<a href="emergency tips.html">Emergency Tips</a>
<a href="skin care.html">Skincare Tips</a>
<a href="games.html">Games</a>
<a href="record.html">Health Record</a>
</nav>
</header>
<main>
<section class="intro">
<h2>Empowering Your Health Journey</h2>
<p>Explore trusted solutions, from home remedies to emergency help—all in one place.</p>
</section>
<div class="women-container">
<div class="women-box" onclick="showDetails(this, 'Meanstrual Health')">Meanstrual Health</div>
<div class="women-box" onclick="showDetails(this, 'Pregnancy Care')">Pregnancy Care</div>
<div class="women-box" onclick="showDetails(this, 'PCOD Care')">PCOD Care</div>
<div class="women-box" onclick="showDetails(this, 'PCOS Care')">PCOS Care</div>
<div class="women-box" onclick="showDetails(this, 'Menopause')">Menopause</div>
<div class="women-box" onclick="showDetails(this, 'Fitness & Nutrition')">Fitness & Nutrition</div>
<div class="women-box" onclick="showDetails(this, 'Mental Health')">Mental Health</div>
<div class="women-box" onclick="showDetails(this, 'Breast Pain')">Breast Pain</div>
<div class="women-box" onclick="showDetails(this, 'Iron Deficiency / Anemia')">Iron Deficiency / Anemia</div>
<div class="women-box" onclick="showDetails(this, 'Thyroid Issues')">Thyroid Issues</div>
<div class="women-box" onclick="showDetails(this, 'Osteoporosis')">Osteoporosis</div>
<div class="women-box" onclick="showDetails(this, 'Urinary Tract Infections (UTIs)')">Urinary Tract Infections (UTIs)</div>
<div class="women-box" onclick="showDetails(this, 'Endometriosis')">Endometriosis</div>
<div class="women-box" onclick="showDetails(this, 'Infertility Issues')">Infertility Issues</div>
<div class="women-box" onclick="showDetails(this, 'Vaginal Infections / Discharge')">Vaginal Infections / Discharge</div>
<div class="women-box" onclick="showDetails(this, 'Pelvic Inflammatory Disease (PID)')">Pelvic Inflammatory Disease (PID)</div>
<div class="women-box" onclick="showDetails(this, 'Menstrual Hygiene')">Menstrual Hygiene</div>
<div class="women-box" onclick="showDetails(this, 'Postpartum Depression')">Postpartum Depression</div>
<div class="women-box" onclick="showDetails(this, 'Urinary Incontinence')">Urinary Incontinence</div>
</div>
<div id="women-detail" class="women-section">
<button onclick="hideDetails()" class="back-btn">← Back to Women Care</button>
<h2 id="women-title"></h2>
<p id="women-description"></p>
</div>
</main>
<footer>
<p>© 2025 HealConnect. All rights reserved.</p>
</footer>
<script>
const data = {
"Meanstrual Health": `
<h3>Cause:</h3>
<p>Hormonal fluctuations, stress, poor nutrition, PCOS, thyroid issues, or underlying medical conditions.</p>
<h3>Precautions:</h3>
<p><ul>1.Track your cycle.<br>2.Maintain hygiene during periods.<br>3.Avoid excessive caffeine or sugar.</ul></p>
<h3>Symptoms:</h3>
<p>
<ul>
1.Irregular periods or missed cycles<br>
2.Heavy bleeding (menorrhagia) or very light flow (hypomenorrhea)<br>
3.Severe abdominal cramps or pelvic pain<br>
4.Bloating, breast tenderness, and mood swings<br>
5.Headaches or fatigue during menstruation<br>
6.Spotting between periods or after intercourse<br>
7.Nausea, vomiting, or diarrhea during periods
</ul>
</p>
<h3>Treatment:</h3>
<p><ul>1.Pain relief medications (Ibuprofen, Meftal-Spas).<br>2.Heat therapy for cramps.<br>3.Consult a gynecologist if irregular.</ul>
<br><b>Doctor:</b> Gynecologist</p>
<h3>Diet Plan:</h3>
<p><ul>1.Iron-rich foods (spinach, dates, beetroot).<br>2.Hydrating foods (cucumber, watermelon).<br>3.Avoid fried or spicy items during periods.</ul></p>
<h3>Exercise/Yoga:</h3>
<p><a href="https://www.youtube.com/watch?v=8tJe6QhpZ3M" target="_blank">Yoga for Menstrual Cramp Relief – Yogalates with Rashmi Ramesh</a><br>
<a href="https://www.youtube.com/watch?v=a1N3AUwGK9o" target="_blank">Yoga To Ease Period Pain ft. Apurva – Femina India</a><br>
<a href="https://www.youtube.com/watch?v=OTPYbNo0154" target="_blank">Gentle Yoga Flow for Period Pain – Home Practice</a><br>
</p>
<h3>TIPS</h3>
<p><ul>1.Avoid high-intensity workouts on the heaviest days.<br>2.Focus on low-impact activities like yoga, stretching, or walking.<br>3.Stay hydrated and wear comfortable, breathable clothing.<br>4.If cramps are intense, begin with breathing exercises and heat packs before activity.</ul></p>
`,
"Pregnancy Care": `
<h3>Cause:</h3>
<p>Pregnancy brings physical and hormonal changes which can lead to nausea, fatigue, back pain, mood swings, and nutritional deficiencies. High-risk pregnancies may result from pre-existing conditions like diabetes, thyroid issues, or hypertension.</p>
<h3>Precautions:</h3>
<p>
<ul>
1.Attend regular antenatal check-ups.<br>
2.Avoid alcohol, smoking, and raw foods.<br>
3.Take prescribed supplements like folic acid and iron.<br>
4.Stay hydrated and maintain good sleep hygiene.<br>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
1.Routine scans and blood tests to monitor mother and baby.<br>
2.Medications for nausea, acidity, or thyroid regulation as per doctor’s advice.<br>
3.Hospital care in case of complications.
</ul>
<br><b>Doctor:</b> Obstetrician / Gynecologist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
1.Iron and folate-rich foods (spinach, dates, pomegranate).<br>
2.Calcium sources (milk, ragi, sesame, curd).<br>
3.Small frequent meals to ease digestion and nausea.<br>
4.Include healthy fats (ghee, nuts) and protein (dal, eggs, paneer).
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://www.youtube.com/watch?v=yEzZo-uvOFY" target="_blank">Pregnancy YOGA । 1st, 2nd & 3rd Trimester Prenatal YOGA – Neeru Verma (GARBH GYAN‑6)</a></li>
<li><a href="https://www.youtube.com/watch?v=YTE16jF7JU4" target="_blank">25‑Min Pregnancy Workout With Dumbbells (Safe For All Trimesters)</a></li>
<li><a href="https://www.youtube.com/watch?v=T5BRhLWa02I" target="_blank">Tone and Strengthen Your Body During Pregnancy – Full Body Safe for All Trimesters</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
1.Do not lie flat on your back after 20 weeks of pregnancy.<br>
2.Avoid heavy lifting and overexertion.<br>
3.Use pillows for back support while sitting or sleeping.<br>
4.Walking and breathing exercises can reduce stress and promote labor readiness.<br>
5.Pelvic floor exercises (like Kegels) are beneficial during and post-pregnancy.
</ul>
</p>
`,
"PCOD Care": `
<h3>Cause:</h3>
<p>PCOD occurs when the ovaries release many immature or partially mature eggs that develop into cysts due to hormonal imbalances. It is usually caused by poor lifestyle habits, stress, obesity, and hormonal disorders.</p>
<h3>Precautions:</h3>
<p>
<ul>
1.Avoid junk food, sugary drinks, and late-night eating.<br>
2.Maintain a balanced routine with adequate sleep and low stress.<br>
3.Track menstrual cycles and avoid self-medication.<br>
4.Manage weight through healthy diet and regular physical activity.
</ul>
</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Irregular or missed periods</li>
<li>Excess facial or body hair (hirsutism)</li>
<li>Weight gain or difficulty losing weight</li>
<li>Oily skin or acne</li>
<li>Hair thinning or scalp hair loss</li>
<li>Fatigue and mood swings</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
1.Oral contraceptives or hormonal therapy to regulate periods.<br>
2.Ayurvedic and natural remedies for hormonal balance.<br>
3.Lifestyle and diet modifications are key.
</ul>
<br><b>Doctor:</b> Gynecologist / Endocrinologist / Dietician
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
1.Low-carb and high-fiber foods (vegetables, fruits, oats).<br>
2.Incorporate flaxseeds, cinnamon, and fenugreek into meals.<br>
3.Drink plenty of water and reduce intake of fried foods.<br>
4.Eat 4–5 small meals a day to maintain energy levels.
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://www.youtube.com/watch?v=fmjQ6hF3HFg" target="_blank">Yoga for PCOS – New Series (March 2025)</a></li>
<li><a href="https://www.youtube.com/watch?v=1Fbn1WL4EZs" target="_blank">10-Minute Yoga for PCOD Weight Loss – 2025 Routine</a></li>
<li><a href="https://www.youtube.com/watch?v=kgGEEHyMxm0" target="_blank">Yoga for PCOS, PCOD & Infertility – 2025 Guide</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
1.Stay consistent with sleep and mealtimes.<br>
2.Practice meditation or deep breathing to reduce stress-induced hormonal imbalance.<br>
3.Avoid overexercising – moderation is key.<br>
4.Follow up every 6 months with a gynecologist for hormonal checkups.
</ul>
</p>
`,
"PCOS Care": `
<h3>Cause:</h3>
<p>PCOS is a hormonal and metabolic disorder where the ovaries produce excess androgens, leading to infrequent or prolonged periods, ovarian cysts, acne, and weight gain. Genetics, insulin resistance, and inflammation are key contributors.</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Monitor symptoms regularly and get hormone tests annually.</li>
<li>Avoid high-sugar and high-fat diets.</li>
<li>Reduce screen time and manage stress effectively.</li>
<li>Track ovulation if planning for pregnancy.</li>
</ul>
</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Irregular or absent menstrual periods</li>
<li>Excess androgen levels causing facial/body hair (hirsutism)</li>
<li>Severe acne and oily skin</li>
<li>Hair thinning or male-pattern baldness</li>
<li>Weight gain, especially around the abdomen</li>
<li>Difficulty getting pregnant due to ovulation issues</li>
<li>Darkening of skin (especially neck or underarms)</li>
<li>Mood swings, anxiety, or depression</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Hormonal therapy or birth control pills to regulate cycles.</li>
<li>Metformin or Myo-inositol for insulin resistance.</li>
<li>Laser treatment or medication for excess hair or acne.</li>
</ul>
<br><b>Doctor:</b> Endocrinologist / Gynecologist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>High-fiber foods (broccoli, cauliflower, spinach).</li>
<li>Anti-inflammatory options (berries, turmeric, olive oil).</li>
<li>Lean protein (fish, tofu) and complex carbs (quinoa, oats).</li>
<li>Limit dairy and red meat if symptoms worsen.</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://www.youtube.com/watch?v=fmjQ6hF3HFg" target="_blank">Yoga for PCOS – New Series (March 2025)</a></li>
<li><a href="https://www.youtube.com/watch?v=1Fbn1WL4EZs" target="_blank">10-Minute Yoga for PCOD Weight Loss – 2025 Routine</a></li>
<li><a href="https://www.youtube.com/watch?v=kgGEEHyMxm0" target="_blank">Yoga for PCOS, PCOD & Infertility – 2025 Guide</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Maintain a consistent routine with proper sleep and meals.</li>
<li>Prioritize mental health through mindfulness or journaling.</li>
<li>Track weight and waist circumference monthly.</li>
<li>Consult a fertility specialist early if planning pregnancy.</li>
</ul>
</p>
`,
"Menopause" : `
<h3>Cause:</h3>
<p>Menopause is a natural biological process that marks the end of menstrual cycles, typically occurring between ages 45–55. It results from a gradual decline in reproductive hormones like estrogen and progesterone. It can also be induced early due to surgery, radiation, or autoimmune conditions.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Irregular or missed periods</li>
<li>Hot flashes and night sweats</li>
<li>Mood swings, irritability, or anxiety</li>
<li>Sleep disturbances and fatigue</li>
<li>Weight gain and slowed metabolism</li>
<li>Vaginal dryness and reduced libido</li>
<li>Thinning hair or dry skin</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Get regular medical check-ups and screenings.</li>
<li>Manage weight with a balanced diet and physical activity.</li>
<li>Quit smoking and limit alcohol intake.</li>
<li>Keep track of changing symptoms and mood patterns.</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Hormone Replacement Therapy (HRT) for severe symptoms.</li>
<li>Non-hormonal medications for hot flashes and mood changes.</li>
<li>Vaginal estrogen creams for dryness or discomfort.</li>
</ul>
<br><b>Doctor:</b> Gynecologist / Endocrinologist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Calcium-rich foods like dairy, sesame seeds, leafy greens.</li>
<li>Vitamin D through sunlight and fortified foods.</li>
<li>Limit spicy food and caffeine that worsen hot flashes.</li>
<li>Include plant-based estrogens (soy, flaxseeds).</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://www.youtube.com/watch?v=-M_EHoLH6xo" target="_blank">Nearing Menopause? Practice This Perimenopause Yoga – Namaste Yoga Classes (Mumbai)</a></li>
<li><a href="https://www.youtube.com/watch?v=Ik-89QhDRQI" target="_blank">Daily Yoga Routine for Perimenopause – Namaste Yoga Classes</a></li>
<li><a href="https://www.youtube.com/watch?v=fKNVANn1ZL4" target="_blank">Balance Hormones & Flatten Belly – Gentle Yoga for Women Over 40 – 2025 Routine</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Dress in breathable layers to manage hot flashes.</li>
<li>Stay hydrated and practice sleep hygiene.</li>
<li>Use a cool compress or fan at night.</li>
<li>Try meditation, journaling, or talking to a counselor for mood stability.</li>
<li>Consider joining a menopause support group.</li>
</ul>
</p>
`,
"Fitness & Nutrition": `
<h3>Cause (Why it's Important):</h3>
<p>Fitness and nutrition form the foundation of a healthy lifestyle. Lack of physical activity and poor eating habits lead to obesity, diabetes, heart disease, hormonal imbalance, mental health issues, and more.</p>
<h3>Symptoms of Poor Fitness & Nutrition:</h3>
<p>
<ul>
<li>Fatigue and low energy levels</li>
<li>Weight gain or weight loss</li>
<li>Digestive issues or bloating</li>
<li>Poor concentration and mood swings</li>
<li>Weak immunity and frequent illness</li>
<li>Sleep disturbances and joint pain</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Do not skip meals or rely on junk food.</li>
<li>Avoid sedentary behavior—take regular breaks from sitting.</li>
<li>Stay hydrated and get adequate sleep.</li>
<li>Don’t follow crash diets or unverified health trends.</li>
</ul>
</p>
<h3>Treatment / Lifestyle Fixes:</h3>
<p>
<ul>
<li>Regular physical activity (150 minutes/week for adults).</li>
<li>Balanced diet with all macro and micronutrients.</li>
<li>Mindful eating and portion control.</li>
<li>Consult a dietitian or certified trainer when needed.</li>
</ul>
<br><b>Doctor:</b> Nutritionist / General Physician / Fitness Trainer
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Include whole grains, legumes, fruits, and vegetables.</li>
<li>Healthy fats like nuts, seeds, olive oil.</li>
<li>High-quality proteins like eggs, tofu, lean meat, dal.</li>
<li>Limit sugar, salt, and ultra-processed foods.</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://www.youtube.com/watch?v=ml6cT4AZdqI" target="_blank">Full Body Home Workout – Chloe Ting</a></li>
<li><a href="https://www.youtube.com/watch?v=UItWltVZZmE" target="_blank">Beginner Workout – Roberta’s Gym</a></li>
<li><a href="https://www.youtube.com/watch?v=v7AYKMP6rOE" target="_blank">Yoga for Beginners – Yoga With Adriene</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Start with small habits like walking 20 minutes a day.</li>
<li>Use a fitness tracker to monitor steps and water intake.</li>
<li>Meal prep for the week to avoid unhealthy snacking.</li>
<li>Stretch daily and do breathing exercises to manage stress.</li>
<li>Celebrate consistency over intensity — progress takes time.</li>
</ul>
</p>
`,
"Mental Health": `
<h3>Cause:</h3>
<p>Mental health issues in women may stem from hormonal fluctuations, stress, life pressures, trauma, postpartum changes, or stigma around seeking help.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Persistent sadness, low mood, or irritability</li>
<li>Loss of interest, fatigue, or sleep disruptions</li>
<li>High anxiety, panic attacks, or intrusive thoughts</li>
<li>Difficulty concentrating or sudden mood swings</li>
<li>Social withdrawal, appetite changes, or physical pains</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Maintain balanced sleep, diet, and regular breaks.</li>
<li>Build a support system of family and friends.</li>
<li>Avoid comparing yourself on social media.</li>
<li>Seek help early—don’t wait for issues to escalate.</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Psychotherapy (CBT, talk therapy) with a qualified psychologist.</li>
<li>Medication (SSRIs, anti-anxiety) if prescribed by a psychiatrist.</li>
<li>Lifestyle support: exercise, mindfulness, peer groups.</li>
</ul>
<br><b>Doctor:</b> Psychiatrist / Clinical Psychologist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Include omega-3 rich foods (walnuts, flaxseed, fish).</li>
<li>Fresh fruits, vegetables, and probiotic-rich yogurt.</li>
<li>Limit caffeine, refined sugars, and processed foods.</li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Practice 10 minutes of daily mindfulness or deep breathing.</li>
<li>Reach out—even a simple “How are you?” can make a difference.</li>
<li>Try laughter yoga—even a little laugh can boost mood! <em>(See Laughter Yoga links)</em></li>
<li>Join online or local support groups to reduce stigma.</li>
<li>Call the KIRAN mental health helpline (1800-599-0019) if in crisis.</li>
</ul>
</p>
`,
"Breast Pain": `
<h3>Cause:</h3>
<p>Breast pain (mastalgia) may be due to hormonal changes, menstruation, pregnancy, breastfeeding, menopause, cysts, infections, or ill-fitting bras. Non-hormonal causes include muscle strain or injury.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Sharp, burning, or tight breast pain</li>
<li>Swelling or tenderness</li>
<li>Pain localized to one or both breasts</li>
<li>Pain that worsens before menstruation (cyclical)</li>
<li>Discomfort during physical activity or while wearing bras</li>
<li>Occasional radiating pain to the armpits or shoulders</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Wear a well-fitted, supportive bra (especially during physical activity).</li>
<li>Avoid caffeine and high-fat foods, which may worsen symptoms.</li>
<li>Track pain patterns to identify hormonal links.</li>
<li>Perform monthly breast self-examinations.</li>
<li>Limit stress, which can worsen sensitivity.</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Over-the-counter pain relievers (e.g., ibuprofen, paracetamol).</li>
<li>Warm or cold compresses to reduce discomfort.</li>
<li>Evening primrose oil or vitamin E supplements (under medical advice).</li>
<li>In severe cases, hormonal therapy may be considered.</li>
<li>Seek immediate medical attention for lumps, nipple discharge, or persistent pain.</li>
</ul>
<br><b>Doctor:</b> Gynecologist / General Physician / Breast Specialist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Include low-fat dairy, leafy greens, and whole grains.</li>
<li>Reduce intake of processed foods and red meat.</li>
<li>Eat foods rich in vitamin E (sunflower seeds, almonds) and B6 (banana, spinach).</li>
<li>Stay hydrated with herbal teas or infused water.</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://www.youtube.com/watch?v=vXiJbWukiYg" target="_blank">3 Science‑Backed Ways to STOP the Pain – Exercises + Mindfulness (4 days ago)</a></li>
<li><a href="https://www.youtube.com/watch?v=VCMHjBQCVL8" target="_blank">7‑Minute Breast Care Yoga Routine (5 months ago)</a></li>
<li><a href="https://www.youtube.com/watch?v=uTn49ftBM9E" target="_blank">Breast Pain During Lactation – Care Tips by Dr. Pooja Agarwal (last month)</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Use warm saltwater soaks for temporary relief.</li>
<li>Try gentle breast massages with castor or primrose oil.</li>
<li>Limit alcohol and caffeine intake.</li>
<li>If pain persists for over 2 weeks or worsens, consult a doctor immediately.</li>
</ul>
</p>
`,
"Iron Deficiency / Anemia": `
<h3>Cause:</h3>
<p>Iron deficiency anemia occurs when your body doesn't have enough iron to produce hemoglobin. Causes include poor diet, heavy menstrual bleeding, pregnancy, internal bleeding, or inability to absorb iron properly.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Fatigue or weakness</li>
<li>Pale skin or gums</li>
<li>Shortness of breath</li>
<li>Dizziness or lightheadedness</li>
<li>Cold hands and feet</li>
<li>Headaches</li>
<li>Brittle nails or hair loss</li>
<li>Craving non-food items like ice, dirt, or clay (pica)</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Include iron-rich foods regularly in your diet.</li>
<li>Consume vitamin C–rich foods to enhance iron absorption.</li>
<li>Avoid drinking tea or coffee immediately after meals (it blocks iron absorption).</li>
<li>Get routine blood tests if you have heavy periods or digestive issues.</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Iron supplements (ferrous sulfate, as prescribed by a doctor).</li>
<li>Treating underlying causes like ulcers, fibroids, or internal bleeding.</li>
<li>In severe cases, iron infusions or blood transfusions.</li>
</ul>
<br><b>Doctor:</b> General Physician / Hematologist / Gynecologist (for menstrual-related anemia)
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Iron-rich foods: spinach, dates, pomegranates, lentils, red meat, jaggery, and pumpkin seeds.</li>
<li>Vitamin C sources: oranges, lemon, amla, bell peppers to improve absorption.</li>
<li>Avoid calcium-rich foods during iron-rich meals as they reduce absorption.</li>
<a href="https://youtu.be/5v91IgPtgSs?si=_4FGPoj3GabFgKUs" target="_blank">Yogasanas to Heal Anemia</a>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<a href="https://youtube.com/shorts/i2iK2BkkzIw?si=sifu44C6lszR7nIZ" target="_blank">5 Yoga Poses for ANEMIA & IRON DEFICIENCY </a>
<a href="https://youtube.com/shorts/2C35EFG92bk?si=vgBNA3pQEuyYKILz" target="_blank">How to Increase Hemoglobin Naturally at Home</a>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Always take iron tablets on an empty stomach unless advised otherwise.</li>
<li>Drink beetroot or carrot juice for natural iron boost.</li>
<li>If vegetarian, focus on legumes, tofu, and fortified cereals.</li>
<li>Do not self-medicate with iron—excess can cause toxicity.</li>
</ul>
</p>
`,
"Thyroid Issues": `
<h3>Cause:</h3>
<p>Thyroid issues arise from hormonal imbalances when the thyroid gland underproduces (hypothyroidism) or overproduces (hyperthyroidism) thyroid hormones. Causes include autoimmune diseases (Hashimoto’s, Graves’), iodine deficiency, medications, or radiation therapy.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Hypothyroidism: Fatigue, weight gain, dry skin, cold intolerance, constipation, depression, slow heart rate.</li>
<li>Hyperthyroidism: Weight loss, anxiety, palpitations, heat intolerance, frequent bowel movements, tremors, sleep problems.</li>
<li>Swelling in the neck (goiter), irregular menstruation, and mood changes in both types.</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Get regular thyroid function tests (TSH, T3, T4).</li>
<li>Limit soy, gluten, and cruciferous vegetables (for hypothyroidism).</li>
<li>Avoid self-medicating with supplements without doctor advice.</li>
<li>Manage stress with yoga, meditation, and consistent sleep.</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Hypothyroidism: Levothyroxine (synthetic thyroid hormone) under doctor supervision.</li>
<li>Hyperthyroidism: Antithyroid drugs, beta-blockers, radioactive iodine therapy, or surgery in severe cases.</li>
<li>Regular hormone monitoring is essential for both conditions.</li>
</ul>
<br><b>Doctor:</b> Endocrinologist / General Physician
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Hypothyroidism: Iodine-rich foods (iodized salt, seaweed), selenium (nuts, fish), zinc (whole grains).</li>
<li>Hyperthyroidism: Limit iodine intake; avoid processed foods and caffeine.</li>
<li>Ensure adequate hydration and avoid goitrogens if you have hypothyroidism.</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://youtu.be/WQ9Lk9XsQ9Y?si=cgRHk1rxKOn8uTMZ" target="_blank">5 Asanas every thyroid patient MUST do</a></li>
<li><a href="https://youtu.be/munBYhaSr4c?si=zufSW1-3UPgA8mN7" target="_blank">Yoga for Thyroid</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Take thyroid medication on an empty stomach, 30 mins before eating.</li>
<li>Regular follow-ups every 3–6 months are essential.</li>
<li>Keep a symptom journal to track changes over time.</li>
<li>Practice breathing techniques like Anulom Vilom and Bhramari for stress relief.</li>
</ul>
</p>
`,
"Osteoporosis": `
<h3>Cause:</h3>
<p>Osteoporosis occurs when the body loses too much bone or makes too little, leading to brittle and fragile bones. Causes include aging, hormonal changes (especially post-menopause in women), vitamin D and calcium deficiency, sedentary lifestyle, smoking, alcohol, or certain medications (like steroids).</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Frequent fractures, especially in the spine, wrist, or hip</li>
<li>Loss of height over time</li>
<li>Stooped posture (kyphosis)</li>
<li>Back or neck pain due to fractured or collapsed vertebra</li>
<li>Brittle nails and weak grip strength</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Ensure adequate calcium and vitamin D intake daily.</li>
<li>Avoid smoking and limit alcohol consumption.</li>
<li>Perform weight-bearing and strength-training exercises regularly.</li>
<li>Undergo bone density tests (DEXA scan) after age 50 or earlier if at risk.</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Calcium and vitamin D supplements</li>
<li>Bisphosphonates (e.g., alendronate) or hormone replacement therapy (HRT)</li>
<li>Monoclonal antibodies like denosumab for severe cases</li>
<li>Fall prevention strategies at home to avoid fractures</li>
</ul>
<br><b>Doctor:</b> Orthopedic Specialist / Endocrinologist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Calcium-rich foods: dairy, tofu, sesame seeds, leafy greens</li>
<li>Vitamin D sources: sunlight, fortified milk, egg yolks, mushrooms</li>
<li>Limit high-sodium, caffeine, and carbonated drinks which leach calcium</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://youtu.be/H7YUvZsJMBw?si=WU4AarYhUuD_jCjt" target="_blank">Easy Yoga for Osteoporosis</a></li>
<li><a href="https://youtube.com/shorts/qlcsGVwoj7w?si=3jcnvkK1uZFrq7AT" target="_blank">The Best Core Exercises for Osteoporosis & Low Bone Density</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Walk daily for 30 minutes to improve bone strength.</li>
<li>Use stair climbing or resistance bands to build muscle.</li>
<li>Have regular posture and balance checks to avoid falls.</li>
<li>Consider collagen supplements if advised by your doctor.</li>
</ul>
</p>
`,
"Urinary Tract Infections (UTIs)": `
<h3>Cause:</h3>
<p>UTIs are caused by bacteria (mostly *E. coli*) entering the urinary tract. Common triggers include poor hygiene, holding urine too long, dehydration, unprotected sex, use of certain contraceptives, or conditions like diabetes.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Burning sensation while urinating</li>
<li>Frequent urge to urinate, even if little comes out</li>
<li>Cloudy, dark, or strong-smelling urine</li>
<li>Pelvic pain or lower abdominal discomfort</li>
<li>Fever or chills (if infection reaches kidneys)</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Drink plenty of water daily (at least 2–3 liters)</li>
<li>Wipe from front to back after urination or bowel movement</li>
<li>Urinate before and after sexual activity</li>
<li>Avoid using harsh soaps or scented feminine products</li>
<li>Wear breathable, cotton underwear and avoid tight clothing</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Antibiotics prescribed by a doctor (common: nitrofurantoin, ciprofloxacin)</li>
<li>Pain relievers for burning and cramping</li>
<li>Hydration therapy and cranberry supplements (if advised)</li>
<li>In severe or recurrent cases, urine culture and longer treatment may be needed</li>
</ul>
<br><b>Doctor:</b> Urologist / Gynecologist / General Physician
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Drink water with lemon or cranberry juice (unsweetened)</li>
<li>Include garlic, probiotic yogurt, and vitamin C-rich fruits (oranges, kiwi)</li>
<li>Avoid alcohol, caffeine, spicy and acidic foods during infection</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://youtu.be/F5NY7OU5Nfs?si=GiygDR4g01sPfWQZ" target="_blank">Yoga for Urinary Tract Infection</a></li>
<li><a href="https://youtube.com/shorts/jl0OKeCWQWw?si=7R6JOWC4Dbg-3Ue1" target="_blank">Yoga for Urinary Tract Infections (UTI)</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Don’t hold urine for too long—go when you feel the urge</li>
<li>Take a probiotic if you’re on antibiotics to restore good bacteria</li>
<li>Use warm compresses to ease bladder pain</li>
<li>Consult a doctor immediately if symptoms worsen or recur often</li>
</ul>
</p>
`,
"Endometriosis": `
<h3>Cause:</h3>
<p>Endometriosis occurs when the endometrial tissue (lining of the uterus) grows outside the uterus—on ovaries, fallopian tubes, or the pelvic lining—leading to inflammation, scarring, and severe pain. Cause is not fully known; factors include genetics, immune system issues, and retrograde menstruation.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Severe pelvic pain, especially during periods</li>
<li>Pain during intercourse or bowel movements</li>
<li>Heavy menstrual bleeding or spotting between periods</li>
<li>Infertility or difficulty conceiving</li>
<li>Fatigue, diarrhea, or constipation during menstruation</li>
<li>Lower back and abdominal pain</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Track pain and symptoms in a journal or app.</li>
<li>Avoid excessive caffeinated drinks and alcohol.</li>
<li>Manage stress with relaxation techniques.</li>
<li>Plan gym and workouts around heavy pain days.</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Pain relief: NSAIDs like ibuprofen or naproxen.</li>
<li>Hormone therapy: birth control pills, GnRH agonists, or progestins.</li>
<li>Surgery (laparoscopy) to remove endometrial implants if needed.</li>
<li>Fertility treatments based on individual cases.</li>
</ul>
<br><b>Doctor:</b> Gynecologist / Reproductive Endocrinologist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Anti-inflammatory diet: fatty fish, green leafy vegetables, turmeric.</li>
<li>High-fiber foods to regulate estrogen—whole grains, legumes, fruits.</li>
<li>Reduce red meat, caffeine, dairy, and trans fats.</li>
<li>Include omega-3 sources like flaxseeds, chia seeds, walnuts.</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://youtu.be/bgTuLmmcEk4?si=zD2VHzZpFkYtyZwZ" target="_blank">Yoga for Endometriosis & Pelvic Pain</a></li>
<li><a href="https://youtube.com/shorts/O2EuY5UJ8AE?si=DnSSPwrbiVug0wtl" target="_blank">Yoga for endometriosis</a></li>
<li><a href="https://youtube.com/shorts/1relZoCfbuU?si=s_ctWgWYhjDTHiWW" target="_blank">Manage Endometriosis naturally</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Use heat pads to relieve lower abdominal cramps.</li>
<li>Take short walks to improve blood flow on pain-free days.</li>
<li>Consider acupuncture or pelvic physiotherapy for pain management.</li>
<li>Prioritize restful sleep and stress reduction methods.</li>
</ul>
</p>
`,
"Infertility Issues": `
<h3>Cause:</h3>
<p>Infertility can be caused by ovulation disorders (like PCOS), blocked fallopian tubes, endometriosis, age-related factors, low sperm count, hormonal imbalances, stress, obesity, or underlying medical issues.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Irregular or absent menstrual cycles</li>
<li>Difficulty conceiving after 12+ months of regular unprotected sex</li>
<li>Pelvic pain, especially during menstruation or intercourse</li>
<li>Hormonal symptoms: acne, hair growth, weight gain (in women)</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Maintain a healthy body weight and balanced diet</li>
<li>Track ovulation and avoid smoking/alcohol</li>
<li>Reduce stress and get adequate sleep</li>
<li>Avoid exposure to harmful chemicals or radiation</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Ovulation-inducing medications like Clomiphene (Clomid)</li>
<li>IUI (Intrauterine insemination) or IVF (In-vitro fertilization)</li>
<li>Treatment for underlying conditions (e.g., thyroid, PCOS)</li>
<li>Egg or sperm donor, surrogacy in some cases</li>
</ul>
<br><b>Doctor:</b> Fertility Specialist / Gynecologist / Reproductive Endocrinologist
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Eat fertility-boosting foods: whole grains, leafy greens, citrus fruits, berries</li>
<li>Include omega-3s, folic acid, and zinc-rich foods</li>
<li>Limit caffeine, trans fats, and processed foods</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://youtu.be/z4avROtnYwM?si=V6WuAFbw6QUN3zp_" target="_blank">Infertility Treatment</a></li>
<li><a href="https://youtu.be/Aox2AG72qDQ?si=WYDZvRtnJFZwxvM3" target="_blank">Effective Fertility Yoga</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>
<li>Monitor ovulation using a calendar, app, or ovulation test kit</li>
<li>Consult a doctor early if you're over 35 and trying for more than 6 months</li>
<li>Support mental health with counseling or fertility support groups</li>
</ul>
</p>
`,
"Vaginal Infections / Discharge": `
<h3>Cause:</h3>
<p>Vaginal infections are caused by bacteria, yeast, or viruses. Common types include bacterial vaginosis, yeast infections, and trichomoniasis. Causes include poor hygiene, unprotected sex, hormonal changes, antibiotics, or scented hygiene products.</p>
<h3>Symptoms:</h3>
<p>
<ul>
<li>Unusual vaginal discharge (color, consistency, or smell)</li>
<li>Itching or burning sensation in the vaginal area</li>
<li>Redness, swelling, or irritation around the vulva</li>
<li>Pain during urination or intercourse</li>
</ul>
</p>
<h3>Precautions:</h3>
<p>
<ul>
<li>Maintain proper hygiene; wash with plain water or mild soap</li>
<li>Avoid douching or using scented products</li>
<li>Wear breathable cotton underwear</li>
<li>Practice safe sex and maintain a healthy vaginal pH</li>
</ul>
</p>
<h3>Treatment:</h3>
<p>
<ul>
<li>Antibiotics or antifungal medications depending on the type of infection</li>
<li>Topical creams or suppositories (e.g., clotrimazole, metronidazole)</li>
<li>Probiotics to restore healthy vaginal flora</li>
</ul>
<br><b>Doctor:</b> Gynecologist / Dermatologist (in some cases)
</p>
<h3>Diet Plan:</h3>
<p>
<ul>
<li>Eat probiotic-rich foods (yogurt, kefir, kimchi)</li>
<li>Include garlic and cranberry juice (unsweetened)</li>
<li>Avoid excess sugar and refined carbs</li>
</ul>
</p>
<h3>Exercise/Yoga:</h3>
<p>
<ul>
<li><a href="https://youtu.be/AEe1d7Dw_IA?si=GynXitVVIpJrZAOE" target="_blank">Simple and effective ways to maintain vaginal hygiene</a></li>
<li><a href="https://youtu.be/cFSJapeFVz4?si=O-pMufusHyaTXtPX" target="_blank">5 Yoga For White Discharge</a></li>
</ul>
</p>
<h3>TIPS</h3>
<p>
<ul>