Shop

Mahadev Trishul Loading Animation

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Arial’, sans-serif;
overflow-x: hidden;
}
/* Loading Screen – Compact Height */
#loading-screen {
position: relative;
width: 100%;
height: 150px;
background: linear-gradient(135deg,
#0a0015 0%,
#1a0f2e 15%,
#2d1b3d 30%,
#1a0f2e 50%,
#0f0520 70%,
#1e1235 85%,
#0a0015 100%);
background-size: 200% 200%;
animation: backgroundShift 8s ease infinite;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
margin: 0;
padding: 0;
box-shadow: inset 0 0 100px rgba(255, 107, 53, 0.1);
}
@keyframes backgroundShift {
0%, 100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
}
/* Animated Stars Background */
.stars-container {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}
.star {
position: absolute;
background: white;
border-radius: 50%;
animation: twinkle 2s infinite ease-in-out;
box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}
.star.small {
width: 1px;
height: 1px;
}
.star.medium {
width: 2px;
height: 2px;
box-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
}
.star.large {
width: 3px;
height: 3px;
box-shadow: 0 0 4px rgba(255, 255, 255, 1),
0 0 8px rgba(255, 200, 150, 0.5);
}
@keyframes twinkle {
0%, 100% {
opacity: 0.3;
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(1.3);
}
}
/* Shooting Stars */
.shooting-star {
position: absolute;
width: 3px;
height: 3px;
background: white;
border-radius: 50%;
box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.9),
0 0 10px 4px rgba(255, 215, 0, 0.5);
animation: shoot 4s linear infinite;
}
@keyframes shoot {
0% {
transform: translate(0, 0) rotate(-45deg);
opacity: 1;
}
70% {
opacity: 1;
}
100% {
transform: translate(-250px, 250px) rotate(-45deg);
opacity: 0;
}
}
/* Nebula Effect – Subtle */
.nebula {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
filter: blur(50px);
opacity: 0.1;
animation: nebulaPulse 6s ease-in-out infinite;
}
.nebula:nth-child(1) {
background: radial-gradient(circle, #ff6b35 0%, #ff8c42 20%, transparent 70%);
top: -80px;
left: 15%;
width: 350px;
height: 350px;
}
.nebula:nth-child(2) {
background: radial-gradient(circle, #9b4dff 0%, #6a2fc7 20%, transparent 70%);
bottom: -80px;
right: 15%;
animation-delay: 2s;
width: 320px;
height: 320px;
}
.nebula:nth-child(3) {
background: radial-gradient(circle, #ff3d6b 0%, #c73660 20%, transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 4s;
width: 280px;
height: 280px;
}
@keyframes nebulaPulse {
0%, 100% {
transform: scale(1);
opacity: 0.15;
}
50% {
transform: scale(1.4);
opacity: 0.3;
}
}
/* Content Container */
.loading-content {
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
z-index: 2;
}
/* Trishul Container */
.trishul-wrapper {
position: relative;
width: 60px;
height: 100px;
}
/* Trishul SVG */
.trishul {
position: absolute;
left: -200px;
top: 50%;
transform: translateY(-50%) rotate(-90deg) scale(0.3);
width: 60px;
height: 100px;
filter: drop-shadow(0 0 5px #ff6b35);
animation: trishulEntry 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
opacity: 0;
}
@keyframes trishulEntry {
0% {
left: -200px;
opacity: 0;
transform: translateY(-50%) rotate(-90deg) scale(0.3);
filter: drop-shadow(0 0 5px #ff6b35);
}
30% {
left: -50px;
opacity: 0.5;
transform: translateY(-50%) rotate(-20deg) scale(0.7);
filter: drop-shadow(0 0 15px #ff6b35) drop-shadow(0 0 25px #ff8c42);
}
60% {
left: 0;
opacity: 1;
transform: translateY(-50%) rotate(10deg) scale(1.15);
filter: drop-shadow(0 0 20px #ff6b35) drop-shadow(0 0 35px #ff8c42) drop-shadow(0 0 50px rgba(255, 107, 53, 0.6));
}
75% {
transform: translateY(-50%) rotate(-5deg) scale(0.95);
}
85% {
transform: translateY(-50%) rotate(3deg) scale(1.05);
}
100% {
left: 0;
opacity: 1;
transform: translateY(-50%) rotate(0deg) scale(1);
filter: drop-shadow(0 0 15px #ff6b35) drop-shadow(0 0 30px #ff8c42) drop-shadow(0 0 45px rgba(255, 107, 53, 0.4));
}
}
/* Thunder Effect */
.thunder {
position: absolute;
width: 4px;
height: 0;
background: linear-gradient(to bottom, #fff 0%, #ffeb3b 20%, #ff6b35 60%, #ff8c42 80%, transparent 100%);
box-shadow: 0 0 10px #fff,
0 0 20px #ffeb3b,
0 0 30px #ff6b35;
animation: thunderStrike 0.9s ease-out 1.3s forwards;
opacity: 0;
left: 50%;
top: -30px;
transform: translateX(-50%);
}
@keyframes thunderStrike {
0% {
height: 0;
opacity: 0;
}
15% {
opacity: 1;
}
50% {
height: 140px;
opacity: 1;
box-shadow: 0 0 15px #fff,
0 0 30px #ffeb3b,
0 0 50px #ff6b35;
}
100% {
height: 140px;
opacity: 0;
}
}
/* Lightning Flash */
.flash {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0);
pointer-events: none;
animation: flashEffect 0.4s ease-out 1.3s;
}
@keyframes flashEffect {
0%, 100% {
background: rgba(255, 255, 255, 0);
}
30% {
background: rgba(255, 255, 255, 0.5);
}
60% {
background: rgba(255, 255, 255, 0.3);
}
}
/* Energy Wave */
.energy-wave {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
border: 3px solid #ff6b35;
border-radius: 50%;
opacity: 0;
box-shadow: 0 0 10px #ff6b35, 0 0 20px #ff8c42;
animation: energyPulse 1s ease-out 1.5s forwards;
}
@keyframes energyPulse {
0% {
width: 40px;
height: 40px;
opacity: 1;
border-width: 3px;
}
50% {
opacity: 0.8;
}
100% {
width: 150px;
height: 150px;
opacity: 0;
border-width: 1px;
}
}
/* Text Heading – Compact */
.heading {
font-size: 36px;
font-weight: 900;
background: linear-gradient(90deg,
#ffffff 0%,
#ffd700 25%,
#ff8c42 50%,
#ffd700 75%,
#ffffff 100%);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-transform: uppercase;
letter-spacing: 5px;
text-shadow: none;
opacity: 0;
transform: scale(0.8) translateX(-30px);
animation: textAppear 1.2s ease-out 2.2s forwards, textGlow 3s ease-in-out 3.4s infinite;
white-space: nowrap;
filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6))
drop-shadow(0 0 25px rgba(255, 140, 66, 0.4))
drop-shadow(0 0 35px rgba(255, 107, 53, 0.3));
}
@keyframes textGlow {
0%, 100% {
filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6))
drop-shadow(0 0 25px rgba(255, 140, 66, 0.4))
drop-shadow(0 0 35px rgba(255, 107, 53, 0.3));
background-position: 0% center;
}
50% {
filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9))
drop-shadow(0 0 40px rgba(255, 140, 66, 0.7))
drop-shadow(0 0 60px rgba(255, 107, 53, 0.5));
background-position: 100% center;
}
}
@keyframes textAppear {
0% {
opacity: 0;
transform: scale(0.8) translateX(-30px);
}
40% {
opacity: 0.5;
transform: scale(0.95) translateX(-10px);
}
70% {
opacity: 1;
transform: scale(1.08) translateX(0);
}
85% {
transform: scale(0.97) translateX(0);
}
100% {
opacity: 1;
transform: scale(1) translateX(0);
}
}
/* Responsive Design */
@media (max-width: 768px) {
#loading-screen {
height: 120px;
}
.heading {
font-size: 24px;
letter-spacing: 2px;
}
.trishul {
width: 50px;
height: 80px;
}
.loading-content {
gap: 20px;
}
}
@media (max-width: 480px) {
#loading-screen {
height: 100px;
}
.heading {
font-size: 16px;
letter-spacing: 1px;
}
.trishul {
width: 40px;
height: 65px;
}
.loading-content {
gap: 15px;
}











Explore Our Latest Marketplace


Siddha 1 Mukhi Rudraksha (Kaju Shape)

Benefits

  • Spiritual awakening
  • Enhanced consciousness
  • Connection with divine energy
  • Mental clarity
  • Liberation (Moksha)
  • Represents Lord Shiva

Shape

Kaju (Cashew) Shape – Rare & Authentic

₹ 5000


×

1 Mukhi Rudraksha Order











Siddha 2 Mukhi Rudraksha

Benefits

  • Harmony in relationships
  • Unity & emotional balance
  • Removes obstacles in partnerships
  • Represents Ardhanarishvara (Shiva–Shakti)

Size

20-25mm (Standard authentic bead size)

₹ 1100


×

2 Mukhi Rudraksha Order










/* ================= BASE ================= */
.rudra-wrapper * {
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
.rudra-wrapper {
max-width: 520px;
margin: auto;
}
/* ================= CARD ================= */
.rudra-card {
background: #fff;
border-radius: 18px;
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
overflow: hidden;
}
.rudra-header {
background: #e8f5e9;
color: #1b5e20;
padding: 22px;
text-align: center;
font-size: 22px;
font-weight: 600;
}
.rudra-content {
padding: 22px 28px;
}
.rudra-content h4 {
margin-bottom: 12px;
}
.rudra-content li {
margin-bottom: 8px;
font-size: 15px;
}
/* ================= FOOTER ================= */
.rudra-footer {
background: #e8f5e9;
padding: 20px 28px;
display: flex;
justify-content: space-between;
align-items: center;
}
.rudra-price {
font-size: 24px;
font-weight: 600;
color: #1b5e20;
}
/* ================= BUTTON ================= */
.rudra-btn {
background: linear-gradient(135deg,#a5d6a7,#66bb6a,#43a047);
border: none;
color: #fff;
padding: 12px 30px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}
.rudra-btn.full {
width: 100%;
margin-top: 22px;
}
/* ================= POPUP ================= */
.rudra-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 99999;
padding: 15px;
}
.rudra-popup {
background: #fff;
width: 100%;
max-width: 460px;
max-height: 90vh;
overflow-y: auto;
border-radius: 16px;
padding: 25px;
position: relative;
}
.rudra-close {
position: absolute;
top: 10px;
right: 16px;
font-size: 30px;
cursor: pointer;
}
.rudra-popup h2 {
text-align: center;
margin-bottom: 20px;
color: #1b5e20;
}
.rudra-popup label {
display: block;
margin: 14px 0 6px;
font-weight: 500;
}
.rudra-popup input,
.rudra-popup textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 15px;
}
/* MOBILE SAFE */
@media (max-width: 480px) {
.rudra-popup {
max-height: 88vh;
padding: 20px;
}
}


Siddha 3 Mukhi Rudraksha

Benefits

  • Freedom from past karma
  • Self-confidence & inner strength
  • Memory enhancement
  • Overcoming guilt & inferiority complex
  • Represents Agni (Fire God)

Size

15-20mm (Standard authentic bead size)

₹ 1100


×

3 Mukhi Rudraksha Order










/* ================= BASE ================= */
.rudra3-wrapper * {
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
.rudra3-wrapper {
max-width: 520px;
margin: auto;
}
/* ================= CARD ================= */
.rudra3-card {
background: #fff;
border-radius: 18px;
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
overflow: hidden;
}
.rudra3-header {
background: #e8f5e9;
color: #1b5e20;
padding: 22px;
text-align: center;
font-size: 22px;
font-weight: 600;
}
.rudra3-content {
padding: 22px 28px;
}
.rudra3-content h4 {
margin-bottom: 12px;
}
.rudra3-content li {
margin-bottom: 8px;
font-size: 15px;
}
/* ================= FOOTER ================= */
.rudra3-footer {
background: #e8f5e9;
padding: 20px 28px;
display: flex;
justify-content: space-between;
align-items: center;
}
.rudra3-price {
font-size: 24px;
font-weight: 600;
color: #1b5e20;
}
/* ================= BUTTON ================= */
.rudra3-btn {
background: linear-gradient(135deg,#a5d6a7,#66bb6a,#43a047);
border: none;
color: #fff;
padding: 12px 30px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}
.rudra3-btn.full {
width: 100%;
margin-top: 22px;
}
/* ================= POPUP ================= */
.rudra3-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 99998;
padding: 15px;
}
.rudra3-popup {
background: #fff;
width: 100%;
max-width: 460px;
max-height: 90vh;
overflow-y: auto;
border-radius: 16px;
padding: 25px;
position: relative;
}
.rudra3-close {
position: absolute;
top: 10px;
right: 16px;
font-size: 30px;
cursor: pointer;
}
.rudra3-popup h2 {
text-align: center;
margin-bottom: 20px;
color: #1b5e20;
}
.rudra3-popup label {
display: block;
margin: 14px 0 6px;
font-weight: 500;
}
.rudra3-popup input,
.rudra3-popup textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 15px;
}
/* MOBILE SAFE */
@media (max-width: 480px) {
.rudra3-popup {
max-height: 88vh;
padding: 20px;
}
}


Siddha 4 Mukhi Rudraksha

Benefits

  • Boosts creativity & intelligence
  • Improves communication skills
  • Enhances memory power
  • Beneficial for students & scholars
  • Represents Lord Brahma

Size

22-23mm (Standard authentic bead size)

₹ 1100


×

4 Mukhi Rudraksha Order










/* ================= BASE ================= */
.rudra4-wrapper * {
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
.rudra4-wrapper {
max-width: 520px;
margin: auto;
}
/* ================= CARD ================= */
.rudra4-card {
background: #fff;
border-radius: 18px;
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
overflow: hidden;
}
.rudra4-header {
background: #e8f5e9;
color: #1b5e20;
padding: 22px;
text-align: center;
font-size: 22px;
font-weight: 600;
}
.rudra4-content {
padding: 22px 28px;
}
.rudra4-content h4 {
margin-bottom: 12px;
}
.rudra4-content li {
margin-bottom: 8px;
font-size: 15px;
}
/* ================= FOOTER ================= */
.rudra4-footer {
background: #e8f5e9;
padding: 20px 28px;
display: flex;
justify-content: space-between;
align-items: center;
}
.rudra4-price {
font-size: 24px;
font-weight: 600;
color: #1b5e20;
}
/* ================= BUTTON ================= */
.rudra4-btn {
background: linear-gradient(135deg,#a5d6a7,#66bb6a,#43a047);
border: none;
color: #fff;
padding: 12px 30px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}
.rudra4-btn.full {
width: 100%;
margin-top: 22px;
}
/* ================= POPUP ================= */
.rudra4-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 99998;
padding: 15px;
}
.rudra4-popup {
background: #fff;
width: 100%;
max-width: 460px;
max-height: 90vh;
overflow-y: auto;
border-radius: 16px;
padding: 25px;
position: relative;
}
.rudra4-close {
position: absolute;
top: 10px;
right: 16px;
font-size: 30px;
cursor: pointer;
}
.rudra4-popup h2 {
text-align: center;
margin-bottom: 20px;
color: #1b5e20;
}
.rudra4-popup label {
display: block;
margin: 14px 0 6px;
font-weight: 500;
}
.rudra4-popup input,
.rudra4-popup textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 15px;
}
/* MOBILE SAFE */
@media (max-width: 480px) {
.rudra4-popup {
max-height: 88vh;
padding: 20px;
}
}


Siddha 5 Mukhi Rudraksha

Benefits

  • Overall health and wellness
  • Mental peace & stress reduction
  • Helps regulate blood pressure
  • Most common and widely used Rudraksha
  • Represents Kalagni Rudra

Size

22-23mm (Standard authentic bead size)

₹ 1100


×

5 Mukhi Rudraksha Order










/* ================= BASE ================= */
.rudra5-wrapper * {
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
.rudra5-wrapper {
max-width: 520px;
margin: auto;
}
/* ================= CARD ================= */
.rudra5-card {
background: #fff;
border-radius: 18px;
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
overflow: hidden;
}
.rudra5-header {
background: #e8f5e9;
color: #1b5e20;
padding: 22px;
text-align: center;
font-size: 22px;
font-weight: 600;
}
.rudra5-content {
padding: 22px 28px;
}
.rudra5-content h4 {
margin-bottom: 12px;
}
.rudra5-content li {
margin-bottom: 8px;
font-size: 15px;
}
/* ================= FOOTER ================= */
.rudra5-footer {
background: #e8f5e9;
padding: 20px 28px;
display: flex;
justify-content: space-between;
align-items: center;
}
.rudra5-price {
font-size: 24px;
font-weight: 600;
color: #1b5e20;
}
/* ================= BUTTON ================= */
.rudra5-btn {
background: linear-gradient(135deg,#a5d6a7,#66bb6a,#43a047);
border: none;
color: #fff;
padding: 12px 30px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}
.rudra5-btn.full {
width: 100%;
margin-top: 22px;
}
/* ================= POPUP ================= */
.rudra5-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 99998;
padding: 15px;
}
.rudra5-popup {
background: #fff;
width: 100%;
max-width: 460px;
max-height: 90vh;
overflow-y: auto;
border-radius: 16px;
padding: 25px;
position: relative;
}
.rudra5-close {
position: absolute;
top: 10px;
right: 16px;
font-size: 30px;
cursor: pointer;
}
.rudra5-popup h2 {
text-align: center;
margin-bottom: 20px;
color: #1b5e20;
}
.rudra5-popup label {
display: block;
margin: 14px 0 6px;
font-weight: 500;
}
.rudra5-popup input,
.rudra5-popup textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 15px;
}
/* MOBILE SAFE */
@media (max-width: 480px) {
.rudra5-popup {
max-height: 88vh;
padding: 20px;
}
}


Siddha 6 Mukhi Rudraksha

Benefits

  • Enhances willpower & focus
  • Provides grounding & emotional stability
  • Helps with property-related matters
  • Supports earthly pleasures & balance
  • Represents Lord Kartikeya

Size

22-23mm (Standard authentic bead size)

₹ 1100


×

6 Mukhi Rudraksha Order










/* ================= BASE ================= */
.rudra6-wrapper * {
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
.rudra6-wrapper {
max-width: 520px;
margin: auto;
}
/* ================= CARD ================= */
.rudra6-card {
background: #fff;
border-radius: 18px;
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
overflow: hidden;
}
.rudra6-header {
background: #e8f5e9;
color: #1b5e20;
padding: 22px;
text-align: center;
font-size: 22px;
font-weight: 600;
}
.rudra6-content {
padding: 22px 28px;
}
.rudra6-content h4 {
margin-bottom: 12px;
}
.rudra6-content li {
margin-bottom: 8px;
font-size: 15px;
}
/* ================= FOOTER ================= */
.rudra6-footer {
background: #e8f5e9;
padding: 20px 28px;
display: flex;
justify-content: space-between;
align-items: center;
}
.rudra6-price {
font-size: 24px;
font-weight: 600;
color: #1b5e20;
}
/* ================= BUTTON ================= */
.rudra6-btn {
background: linear-gradient(135deg,#a5d6a7,#66bb6a,#43a047);
border: none;
color: #fff;
padding: 12px 30px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}
.rudra6-btn.full {
width: 100%;
margin-top: 22px;
}
/* ================= POPUP ================= */
.rudra6-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.7);
display: none;
justify-content: center;
align-items: center;
z-index: 99998;
padding: 15px;
}
.rudra6-popup {
background: #fff;
width: 100%;
max-width: 460px;
max-height: 90vh;
overflow-y: auto;
border-radius: 16px;
padding: 25px;
position: relative;
}
.rudra6-close {
position: absolute;
top: 10px;
right: 16px;
font-size: 30px;
cursor: pointer;
}
.rudra6-popup h2 {
text-align: center;
margin-bottom: 20px;
color: #1b5e20;
}
.rudra6-popup label {
display: block;
margin: 14px 0 6px;
font-weight: 500;
}
.rudra6-popup input,
.rudra6-popup textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 15px;
}
/* MOBILE SAFE */
@media (max-width: 480px) {
.rudra6-popup {
max-height: 88vh;
padding: 20px;
}
}


Siddha 7 Mukhi Rudraksha

Benefits

  • Wealth & abundance
  • Financial stability
  • Career growth
  • Removes obstacles to prosperity
  • Good fortune
  • Represents Goddess Lakshmi

Size

22–23mm (Premium authentic bead)

₹ 2100


×

7 Mukhi Rudraksha Order











Siddha 8 Mukhi Rudraksha

Benefits

  • Removes obstacles
  • Success in endeavors
  • Intellectual abilities
  • Analytical thinking
  • Problem-solving
  • Represents Lord Ganesha

Size

22–23mm (Premium authentic bead)

₹ 5100


×

8 Mukhi Rudraksha Order











Siddha 9 Mukhi Rudraksha

Benefits

  • Fearlessness & inner strength
  • Power & confidence
  • Protection from negative energies
  • Spiritual growth
  • Courage in difficult situations
  • Represents Goddess Durga

Size

22–23mm (Premium authentic bead)

₹ 9000


×

9 Mukhi Rudraksha Order











Siddha 10 Mukhi Rudraksha

Benefits

  • Protection from negative energies
  • Resolution of legal issues
  • Security & stability
  • Removes fear of evil spirits
  • Represents Lord Vishnu

Size

22–23mm (Premium authentic bead)

₹ 5100


×

10 Mukhi Rudraksha Order











Siddha 11 Mukhi Rudraksha

Benefits

  • Wisdom & intelligence
  • Leadership qualities
  • Sharp decision-making
  • Spiritual growth
  • Confidence & focus
  • Represents Lord Hanuman

Size

22–23mm (Premium authentic bead)

₹ 9000


×

11 Mukhi Rudraksha Order











Siddha 12 Mukhi Rudraksha

Benefits

  • Leadership qualities
  • Administrative abilities
  • Radiance & vitality
  • Charisma
  • Confidence
  • Success in management
  • Represents Lord Surya (Sun God)

Size

21–23mm (Premium authentic bead)

₹ 21000


×

12 Mukhi Rudraksha Order











Siddha Ganesh Rudraksha

Benefits

  • Removes obstacles
  • Brings success & prosperity
  • Improves wisdom & intelligence
  • Positive beginnings
  • Peace & stability
  • Represents Lord Ganesha

Size

22–24mm (Premium authentic bead)

₹ 1500


×

Ganesh Rudraksha Order











Siddha Gaurishankar Rudraksha

Benefits

  • Harmonizes relationships and marriage
  • Brings love, unity, and strong bonds
  • Promotes peace and harmony in family
  • Balances masculine & feminine energies (Ida–Pingala)
  • Enhances spiritual growth and enlightenment
  • Provides inner tranquility and emotional stability

Size

24mm (Premium authentic bead)

₹ 11000


×

Gaurishankar Rudraksha Order











Siddha 1 Mukhi Rudraksha Nepal (Round Shape)

Benefits

  • Enhances profound meditation and spiritual awakening
  • Brings supreme peace of mind and inner tranquility
  • Provides connection to divine consciousness (Lord Shiva)
  • Boosts focus, concentration, and mental clarity
  • Grants material success, wealth, and worldly pleasures (Bhoga) along with liberation (Moksha)
  • Removes negative energies, sins, and obstacles for enlightenment

Size

Premium authentic round-shaped bead

₹ 21000


×

1 Mukhi Rudraksha (Round Shape) Order










No products were found matching your selection.