-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
961 lines (850 loc) · 49.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Vedic Jyotishya - Your Spiritual Doctor</title>
<meta content="Embark on a path to spiritual enlightenment with Vedic Jyotishya. Delve into personalized astrology consultations, engage in virtual Poojas, and explore our curated online spiritual emporium. Elevate your sacred space and knowledge under the guidance of seasoned experts. Uncover the transformative power of ancient wisdom within a global community of seekers." name="description">
<meta content="Pooja, astrology, matchmaking, horoscope, daily horoscope, book a pooja, astrology session, renowned astrologist, vedic astrology, vedic, astrology, classes for purana, puranic studies, vedic studies, Spiritual Enlightenment, Astrology Consultations, Virtual Poojas, Sacred Artifacts, Online Spiritual Emporium, Personalized Spiritual Guidance, Ancient Wisdom Learning, Holistic Well-Being, Global Spiritual Community,
Authentic Ritual Products, Vedic Education, Sacred Practices, Meditation and Mantras, Spiritual Wisdom Courses, Enlightened Living, Astrology Mastery, Cultural Heritage Exploration, Online Spiritual Learning, Pooja Rituals, Positive Energy Artifacts, spiritual tablets, protective tablets and wearables, digital pooja" name="keywords">
<meta property="og:title" content="Vedic Jyotishya: Your Spiritual Doctor">
<meta property="og:description" content="Embark on a path to spiritual enlightenment with Vedic Jyotishya. Delve into personalized astrology consultations, engage in virtual Poojas, and explore our curated online spiritual emporium.">
<meta property="og:image" content="assets/img/meta-og-img.jpg">
<meta property="og:url" content="https://www.vedicjyotishya.com">
<meta property="og:type" content="website">
<link rel="canonical" href="https://www.vedicjyotishya.com/">
<meta name="author" content="AumKami Pvt Ltd">
<meta name="robots" content="index, follow">
<!-- Favicons -->
<link href="assets/img/pooja-logo.svg" rel="icon">
<link href="assets/img/pooja-logo.svg" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent ">
<div class="container d-flex align-items-center justify-content-between">
<div class="logo">
<a href="index.html"><img src="assets/img/pooja-logo.png" alt="" class="img-fluid"></a>
<h1><a href="index.html">Vedic Jyotishya</a></h1>
<!--Uncomment below if you prefer to use an image logo -->
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto " href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto " href="#portfolio" style="display: none;">Portfolio</a></li>
<li><a class="nav-link scrollto" href="#pricing" style="display: none;">Pricing</a></li>
<li><a class="nav-link scrollto" href="#team" style="display: none;">Team</a></li>
<!--
<li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li>
-->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section class="home" id="hero">
<img decoding="async" class="img-slide active" src="assets/img/achan1.JPG" ></img>
<img decoding="async" class="img-slide" src="assets/img/deepam.JPG" ></img>
<img decoding="async" class="img-slide" src="assets/img/homam.JPG" ></img>
<div class="content123 active">
<h1>Unlocking the Secrets of <br><span>Vedic Astrology</span></h1>
<p>Vedic astrology, also known as Jyotish, is a profound and ancient science that has been practiced and revered for thousands of years. Its roots are firmly embedded in the Vedas, the sacred texts of Hinduism, and it offers a unique perspective on understanding the cosmos and its influence on our lives. Let's discover your destiny, decode your relationships, and heal your body and mind with our Vedic wisdom.</p>
<a href="#about" class="scrollto">Read More</a>
</div>
<div class="content123">
<h1>Customized Rituals for <br><span>Prosperity and Peace</span></h1>
<p>Experience the transformative power of our rituals to bring abundance and serenity into your life.</p>
<a href="#services" class="scrollto">Read More</a>
</div>
<div class="content123">
<h1>Astrology Consultations <br><span>Your Personal Guiding Star</span></h1>
<p>Let our knowledgeable astrologers illuminate your path to success, love, and good health.</p>
<a href="#services" class="scrollto">Read More</a>
</div>
<div class="media-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
<div class="slider-navigation">
<div class="nav-btn active"></div>
<div class="nav-btn"></div>
<div class="nav-btn"></div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>Services</h2>
<p>What we do offer</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="icon-box" data-aos="zoom-in-left">
<div class="icon">
<!--<i class="bi bi-briefcase" style="color: #ff689b;"></i>-->
<img src="assets/img/Homondam-icon.png" alt="" class="serv6">
</div>
<h4 class="title"><a href="">Poojas</a></h4>
<p class="description">Experience personalized, recommended poojas onsite or online for spiritual elevation.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-md-0">
<div class="icon-box" data-aos="zoom-in-left" data-aos-delay="100">
<div class="icon">
<!--<i class="bi bi-book" style="color: #e9bf06;"></i>-->
<img src="assets/img/icon-set2.svg" alt="" class="serv2">
</div>
<h4 class="title"><a href="">Horoscope</a></h4>
<p class="description">Discover insights into yourself and current challenges through a personalized handwritten horoscope today. </p>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-lg-0 ">
<div class="icon-box" data-aos="zoom-in-left" data-aos-delay="200">
<div class="icon">
<!--<i class="bi bi-card-checklist" style="color: #3fcdc7;"></i>-->
<img src="assets/img/icon-set.svg" alt="" class="serv3">
</div>
<h4 class="title"><a href="">Consultation</a></h4>
<p class="description">Secure personalized guidance from our astrologers for immediate solutions and a brighter path forward.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5">
<div class="icon-box" data-aos="zoom-in-left" data-aos-delay="300">
<div class="icon">
<!--<i class="bi bi-binoculars" style="color:#41cf2e;"></i>-->
<img src="assets/img/icon-set2.svg" alt="" class="serv4">
</div>
<h4 class="title"><a href="">Vedic Education</a></h4>
<p class="description">Explore the science behind mantras, puranas, and proper pooja practices to deepen your understanding.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5">
<div class="icon-box" data-aos="zoom-in-left" data-aos-delay="400">
<div class="icon">
<!--<i class="bi bi-globe" style="color: #d6ff22;"></i>-->
<img src="assets/img/icon-set2.svg" alt="" class="serv5">
</div>
<h4 class="title"><a href="">Marriage Compatibility</a></h4>
<p class="description">Ensure marital bliss by consulting our astrologers for a compatibility check with your potential life partner.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5">
<div class="icon-box" data-aos="zoom-in-left" data-aos-delay="500">
<div class="icon">
<!--<i class="bi bi-clock" style="color: #4680ff;"></i>-->
<img src="assets/img/icon-set.svg" alt="">
</div>
<h4 class="title"><a href="">Spiritual Products</a></h4>
<p class="description">Visit our sacred store for spiritual tools – click now for divine blessings!</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container">
<div class="row" data-aos="zoom-out">
<div class="col-lg-9 text-center text-lg-start">
<h3>EMBARK ON A DIVINE JOURNEY.</h3>
<p> Unlock Your Spiritual Potential and Embrace a Life of Harmony and Fulfillment.</p>
</div>
<img src="assets/img/anjaliprayer.svg" alt="" class="praying-img">
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" href="#">Contact Us</a>
</div>
</div>
</div>
</section><!-- End Cta Section -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>About</h2>
<p>Who we are</p>
</div>
<div class="row content" data-aos="fade-up">
<div class="col-lg-6">
<p>
We are vedic astrologers and pandits with a rich heritage rooted in Vedic traditions, guided by the profound wisdom of Vedic astrology and the lineage of Lord Parashurama. Our sacred journey began when the great Lord Parashurama brought our ancestors from Andhra Pradesh to Kerala to fulfill the sacred duties of priesthood. With unwavering dedication, we have preserved and passed down the profound knowledge of Vedic education, astrology, and sacred rituals for generations.
</p>
<ul>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Our Commitment to Tradition and Authenticity</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;">Personalized Consultations and Services</li>
<li><!--<i class="ri-check-double-line"></i>--><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> A Legacy of Trust and Results</li>
</ul>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<p>
we are committed to harnessing the ancient wisdom of our heritage to serve and guide you through the journey of life. With our profound knowledge in Vedic education, astrology, and sacred rituals, we provide solutions that resonate with the cosmic energies, leading you to a life of abundance, harmony, and spiritual enlightenment.
</p>
<a href="#features" class="btn-learn-more scrollto">Learn More</a>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container">
<ul class="nav nav-tabs row d-flex">
<li class="nav-item col-3" data-aos="zoom-in">
<a class="nav-link active show" data-bs-toggle="tab" href="#tab-1">
<img src="assets/img/Homondam-icon.png" alt="" sizes="10px" srcset="" style="width: 60px;height: auto;">
<!--<i class="ri-gps-line"></i>-->
<h4 class="d-none d-lg-block">Jamadagni Gotra - Our Lineage.</h4>
</a>
</li>
<li class="nav-item col-3" data-aos="zoom-in" data-aos-delay="100">
<a class="nav-link" data-bs-toggle="tab" href="#tab-2">
<img src="assets/img/deepam-icon.png" alt="" style="width: 60px;height: auto;">
<!--<i class="ri-body-scan-line"></i>-->
<h4 class="d-none d-lg-block">Vedanga Jyothisha - The Vedic astrology.</h4>
</a>
</li>
<li class="nav-item col-3" data-aos="zoom-in" data-aos-delay="200">
<a class="nav-link" data-bs-toggle="tab" href="#tab-3">
<img src="assets/img/kindi-icon.png" alt="" style="width: 60px;height: auto;">
<!--<i class="ri-sun-line"></i>-->
<h4 class="d-none d-lg-block">Our Spiritual Emporium: Elevate Your Journey with Confidence</h4>
</a>
</li>
<li class="nav-item col-3" data-aos="zoom-in" data-aos-delay="300">
<a class="nav-link" data-bs-toggle="tab" href="#tab-4">
<img src="assets/img/Idol-icon.png" alt="" style="width: 60px;height: auto;">
<!--<i class="ri-store-line"></i>-->
<h4 class="d-none d-lg-block">Elevate Your Understanding of Spiritual Sciences</h4>
</a>
</li>
</ul>
<div class="tab-content" data-aos="fade-up">
<div class="tab-pane active show" id="tab-1">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0">
<h3>Jamadagni Gotra - Our Lineage.</h3>
<p class="fst-italic">
Gotra traces one's ancestry or patrilineal descent and is an essential part of
the Hindu social and religious tradition. Each gotra
is associated with a rishi (sage) or ancient seer
from whom the lineage is believed to have originated.The Jamadagni Gotra is a
lineage or clan within the system of gotras which is named after the rishi Jamadagni, father of Lord Parashuram - The sixth incarnation of Lord Vishnu and the first warrior Brahmin in history.
</p>
<ul>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> This heritage has endowed us with a deep understanding of Sanskrit, Pooja, Tantra, and Vedas.</li><br>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> We are Acharya's of more than 250 temples.</li><br>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> We are well versed in vedic astrology, which is one of the six auxillary discplines in Hinduism.</li>
</ul>
<p>
we hold a deep reverence for the ancient traditions and authenticity
of Vedic knowledge. Our commitment to preserving and passing down
this sacred wisdom remains unwavering. We follow age-old practices,
ensuring that every Pooja, Homa, and astrological reading is performed
with the utmost precision and adherence to tradition. This commitment
to authenticity is what sets us apart and allows us to offer genuine,
transformative experiences to our clients.
</p>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center">
<img src="assets/img/doingpooja.webp" alt="" class="img-fluid" style="transform: scaleX(-1);">
</div>
</div>
</div>
<div class="tab-pane" id="tab-2">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0">
<h3>Vedanga Jyothisha - The Vedic astrology.</h3>
<p>
Indian astrology, also known as Vedic astrology, is a cornerstone of our services.
Rooted in the Vedas, it is one of the six auxiliary disciplines in Hinduism. Our
knowledge is derived from the Vedanga Jyothisha, an ancient text that explores
the intricate relationships between planetary and star positions and their influence
on our lives. With the sacred art of Grahanila (Planetary Positioning), we delve into
the mental and physical conditions of individuals. Our expertise allows us to analyze
and understand relationship matters, health issues, and even the curability of certain
diseases. With the alignment of the celestial bodies, we offer profound insights into
the most suited career paths, marriage predictions, and more.
</p>
<p class="fst-italic">
We understand that every individual is unique, and their journey through life is equally
distinctive. That's why, we offer personalized consultations and services. Our experienced
astrologers take the time to understand your specific concerns and challenges, and we will provide you with;
</p>
<ul>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Possible solution to the problems you are facing.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Self awareness and spiritual growth.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Marriage Compatibility.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Horoscope Writing.</li>
</ul>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center">
<img src="assets/img/customer.webp" alt="" class="img-fluid" style="transform: scaleX(-1);">
</div>
</div>
</div>
<div class="tab-pane" id="tab-3">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0">
<h3>Our Spiritual Emporium: Elevate Your Journey with Confidence</h3>
<p>
Step into a realm of spiritual enrichment with our online emporium, meticulously curated to enhance your spiritual space. Here, authenticity meets convenience, ensuring a seamless and secure shopping experience for seekers worldwide. Explore a collection of sacred objects, handcrafted spiritual tablets, and energized talismans, each selected for its quality and authenticity. Why choose us? Our commitment to providing genuine spiritual products is underscored by:
</p>
<ul>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;">
Our Sacred Tools are handcrafted and imbued with ritualistic practices, ensuring that each item carries the intended blessings for your spiritual journey.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Each spiritual tool that you find in the store will be tailored to help you along your journey.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> We provide safe and secure payment options and choose most trusted courier service agency to handle the delivery.</li>
</ul>
<p class="fst-italic">
Explore the transformative power of our meticulously crafted spiritual objects, designed to infuse positive energies into your life. Trust in the authenticity, security, and global accessibility that Vedic Jyotishya provides as you embark on your spiritual journey. Each purchase is a deliberate step towards enriching and deepening the meaning in your spiritual life.
</p>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center">
<img src="assets/img/lifestyle.webp" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-4">
<div class="row">
<div class="col-lg-6 order-2 order-lg-1 mt-3 mt-lg-0">
<h3>Elevate Your Understanding: A Scholarly Exploration into Spiritual Sciences</h3>
<p>
Immerse yourself in a transformative learning experience where the science and significance of every pooja, mantra, and spiritual practice are unveiled. Here's what our educational programs offer:
</p>
<ul>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> In-Depth Insights: Gain profound understanding into the science behind each ritual, unraveling the spiritual depth embedded in every action.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Purana Exploration: Dive into the treasures of ancient wisdom as our courses unfold the cultural and spiritual heritage within the Puranas.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Upcoming Astrology Course: Anticipate our upcoming astrology course, designed to empower you with the knowledge of deciphering the cosmic language.</li>
</ul>
<p class="fst-italic">
Why Choose Vedic jyotishya for Your Spiritual Education:
</p>
<ul>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Holistic Approach: Our courses go beyond the surface, providing a holistic understanding of rituals, mantras, and spiritual texts.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Expert Guidance: Learn from seasoned experts who not only teach but also inspire and guide you on your journey of spiritual discovery.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Practical Application: Our education is not just theoretical; we emphasize practical application, ensuring that you can integrate your learning into real-life practices.</li>
<li><img src="assets/img/Deepam-right-icon.png" alt="" style="width: 20px;height: auto;"> Cultural Reverence: Immerse yourself in an environment that respects and preserves the cultural and spiritual significance of ancient texts and practices.</li>
</ul>
<p class="fst-italic">
Enrich your spiritual knowledge with Vedic Jyotishya, where learning is a transformative and enlightening journey. Choose us as your educational partner and embark on a path toward a more profound understanding of spirituality.
</p>
</div>
<div class="col-lg-6 order-1 order-lg-2 text-center">
<img src="assets/img/karma.webp" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio" style="display: none;">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>Portfolio</h2>
<p>Our Recent Poojas.</p>
</div>
<!--
<ul id="portfolio-flters" class="d-flex justify-content-end" data-aos="fade-up">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
-->
<div class="row portfolio-container" data-aos="fade-up">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>Web 2</h4>
<p>Web</p>
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-img"><img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt=""></div>
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox preview-link" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" class="details-link" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials" style="display:none;">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>Testimonials</h2>
<p>What they are saying about us</p>
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="">
<h3>Saul Goodman</h3>
<h4>Ceo & Founder</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="">
<h3>Jena Karlis</h3>
<h4>Store Owner</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim culpa labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Pricing Section ======= -->
<section id="pricing" class="pricing" style="display: none;">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>Pricing</h2>
<p>Our Competing Prices</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="box" data-aos="zoom-in">
<h3>Free</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li class="na">Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box featured" data-aos="zoom-in" data-aos-delay="100">
<h3>Business</h3>
<h4><sup>$</sup>19<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="200">
<h3>Developer</h3>
<h4><sup>$</sup>29<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="300">
<span class="advanced">Advanced</span>
<h3>Ultimate</h3>
<h4><sup>$</sup>49<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Pricing Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>F.A.Q</h2>
<p>Frequently Asked Questions</p>
</div>
<ul class="faq-list">
<li>
<div data-bs-toggle="collapse" class="collapsed question" href="#faq1">Are your online spiritual services accessible globally? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>
Yes, our online platform ensures global accessibility. Seekers from around the world can connect with our expert astrologers, participate in virtual Poojas, and explore our curated collection of spiritual artifacts from the comfort of their homes.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq2" class="collapsed question">Can I schedule a virtual consultation with your astrologers? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq2" class="collapse" data-bs-parent=".faq-list">
<p>
Absolutely! Our online platform allows you to schedule virtual consultations with our experienced astrologers. Connect with them from anywhere in the world and gain personalized insights into various aspects of your life.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq3" class="collapsed question">What makes your online spiritual emporium unique? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq3" class="collapse" data-bs-parent=".faq-list">
<p>
Our online spiritual emporium stands out for its curated collection of genuine and purposeful handamde spiritual objects. Each item is handmade by our tantrics / astrologers which vouches for their quality, ensuring that your purchase is a meaningful addition to your spiritual journey.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq4" class="collapsed question">Do you offer any introductory courses for beginners in astrology or spirituality? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq4" class="collapse" data-bs-parent=".faq-list">
<p>
Yes, we understand the importance of catering to beginners. Keep an eye on our platform for upcoming introductory courses that provide foundational knowledge in astrology and spirituality..
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq5" class="collapsed question">Are the spiritual tablets available on your ecommerce platform hand-drawn by skilled artisans? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq5" class="collapse" data-bs-parent=".faq-list">
<p>
Yes, our hand-drawn spiritual tablets are crafted by skilled artisans, ensuring intricate detailing and authenticity in each piece.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq6" class="collapsed question">How do you ensure the privacy of personal information during virtual consultations? <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq6" class="collapse" data-bs-parent=".faq-list">
<p>
We prioritize the privacy and confidentiality of your personal information during virtual consultations. Our secure platform utilizes encryption and other measures to safeguard your data.
</p>
</div>
</li>
</ul>
</div>
</section><!-- End F.A.Q Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team" style="display: none;">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>Team</h2>
<p>Our Hardworking Team</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up">
<div class="member-img">
<img src="assets/img/team/team-1.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Walter White</h4>
<span>Chief Executive Officer</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<div class="member-img">
<img src="assets/img/team/team-2.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Sarah Jhonson</h4>
<span>Product Manager</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="200">
<div class="member-img">
<img src="assets/img/team/team-3.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>William Anderson</h4>
<span>CTO</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<div class="member-img">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Amanda Jepson</h4>
<span>Accountant</span>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title" data-aos="zoom-out">
<h2>Contact</h2>
<p>Contact Us</p>
</div>
<div class="row mt-5">
<div class="col-lg-4" data-aos="fade-right">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>Edamana Madom, Mannady P O, Adoor, Pathanamthitta, Kerala, India.</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+91 9995813930</p>
<p>+91 8714040109</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0" data-aos="fade-left">
<form action="https://api.web3forms.com/submit" method="post" role="form" class="php-email-form">
<div class="row">
<input type="hidden" name="access_key" value="b7ab6f44-b26c-4528-96ed-fe304fb6d09e">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject">
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<img src="assets/img/pooja-logo.svg" alt="" class="footer-logo">
<h3>Vedic Jyotishya</h3>
<p>Your Spiritual Doctor.</p>
<div class="social-links">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
<div class="copyright">
© Copyright <strong><span>Vedic Jyotishya</span></strong>. All Rights Reserved
</div>
<div class="credits">
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>