body { font-family: 'Poppins', sans-serif; }

/*.main-header {*/
/*  background:#fff;*/
/*  padding:10px 0;*/
/*  box-shadow:0 2px 10px rgba(0,0,0,.1);*/
/*}*/
/* ================= FIXED HEADER ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 999;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* MAIN TEXT LOGO */
.text-logo {
  font-family: 'Poppins', 'Noto Serif Devanagari', serif;
  text-align: left;
  cursor: pointer;
  animation: fadeSlide 1.2s ease-in-out;
}

/* शिव */
.text-logo .shiv {
  font-size: 30px;
  font-weight: 700;
  color: #7b2cbf;
  text-shadow: 0 0 12px rgba(123, 44, 191, 0.4);
  animation: glowPulse 2.5s infinite;
}

/* चैतन्य */
.text-logo .chaitanya {
  font-size: 30px;
  font-weight: 700;
  margin-left: 4px;
  background: linear-gradient(90deg, #ff9f1c, #ffbf69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TAGLINE */
.text-logo .tagline {
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: -4px;
  color: #555;
}

/* FADE SLIDE ENTRY */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GLOW PULSE */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(123,44,191,0.4);
  }
  50% {
    text-shadow: 0 0 18px rgba(123,44,191,0.8);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .text-logo .shiv,
  .text-logo .chaitanya {
    font-size: 22px;
  }
  .text-logo .tagline {
    font-size: 10px;
  }
}


.astro-container {
  width: 320px;
  height: 320px;
  margin: auto;
}

.astro-svg {
  width: 100%;
  height: 100%;
}

/* Rings */
.outer-glow {
  fill: none;
  stroke: rgba(255, 215, 0, 0.4);
  stroke-width: 6;
  filter: blur(3px);
}

.zodiac-ring {
  fill: none;
  stroke: gold;
  stroke-width: 2;
}

/* Zodiac lines */
.zodiac-lines line {
  stroke: rgba(255, 215, 0, 0.5);
  stroke-width: 1;
}

/* Planet orbit */
.planet-orbit {
  transform-origin: 50% 50%;
  animation: rotateOrbit 20s linear infinite;
}

.planet {
  fill: gold;
  box-shadow: 0 0 10px gold;
}

/* Center */
.inner-core {
  fill: radial-gradient(circle, #ffd700, #b8860b);
}

/* Animation */
@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/********************/
body {
  background: radial-gradient(circle at center, #050b1e, #02040d);
}

/* Section center alignment */
.zodiac-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  
  padding: 80px 0;
  background: radial-gradient(circle at top, #0b0f2a, #020316);
  color: #fff;
  overflow: hidden;
}
.zodiac-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}

/* LEFT */
.zodiac-left {
  flex: 1;
  text-align: center;
}

/* Wrapper with glow */
.zodiac-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
}

/* Zodiac wheel */
.zodiac-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /*animation: rotateZodiac 60s linear infinite;*/
  /*filter: drop-shadow(0 0 20px rgba(255, 215, 150, 0.4));*/
  transition: all 0.6s ease;
  
  max-width: 420px;
  animation: rotateZodiac 40s linear infinite;
  filter: drop-shadow(0 0 25px rgba(138, 96, 255, 0.6));
  
}
/* RIGHT */
.zodiac-right {
  flex: 1;
}

.zodiac-right h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #b48cff, #6f7cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zodiac-right p {
  font-size: 18px;
  line-height: 1.7;
  color: #d6d6ff;
  margin-bottom: 15px;
}

.zodiac-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7b5cff, #b48cff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.zodiac-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(123, 92, 255, 0.5);
}

/* ROTATION */
@keyframes rotateZodiac {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .zodiac-container {
    flex-direction: column;
    text-align: center;
  }

  .zodiac-right h2 {
    font-size: 32px;
  }
}


/* Glow ring */
.zodiac-wrapper::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,215,150,0.4),
    rgba(255,215,150,0.05),
    rgba(255,215,150,0.4)
  );
  animation: glowRotate 12s linear infinite;
  filter: blur(18px);
  z-index: -1;
}

/* Hover effect */
.zodiac-wrapper:hover .zodiac-wheel {
  animation-duration: 20s;
  transform: scale(1.05);
  filter: drop-shadow(0 0 35px rgba(255, 220, 160, 0.8));
}

/* Keyframes */
@keyframes rotateZodiac {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Responsive */
@media (max-width: 480px) {
  .zodiac-wrapper {
    width: 260px;
    height: 260px;
  }
}


/* ================= CENTER FIXED CIRCLE ================= */

.zodiac-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, #eae6ff);
  padding: 6px;
  z-index: 10;

  /* Divine glow */
  box-shadow:
    0 0 18px rgba(180, 140, 255, 0.6),
    0 0 40px rgba(123, 92, 255, 0.5);
}

/* Person Image */
.zodiac-center img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Soft breathing animation (NO ROTATION) */
.zodiac-center {
  animation: centerPulse 3.5s ease-in-out infinite;
}

@keyframes centerPulse {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

/* Mobile size */
@media (max-width: 480px) {
  .zodiac-center {
    width: 125px;
    height: 125px;
  }
}




/******************/
.stars {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 80% 60%, #fff, transparent),
    radial-gradient(1px 1px at 50% 80%, #fff, transparent);
  animation: starsMove 120s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes starsMove {
  from { transform: translateY(0); }
  to { transform: translateY(-1000px); }
}



/* Push page content below fixed header */
body {
  padding-top: 75px; /* adjust if logo height changes */
}

@media(max-width:991px) {
  body {
    padding-bottom: 65px;
  }
}

.logo { height:45px; }

.main-menu {
  list-style:none;
  display:flex;
  justify-content:center;
  gap:25px;
}

.main-menu li { position:relative; }
.main-menu li a { text-decoration:none; color:#333; }

.submenu {
  display:none;
  position:absolute;
  background:#fff;
  padding:10px;
  top:100%;
}

.has-sub:hover .submenu { display:block; }

.header-icons i {
  margin-left:15px;
  font-size:18px;
  cursor:pointer;
}

/* MOBILE SIDEBAR */
.mobile-sidebar {
  position:fixed;
  left:-100%;
  top:0;
  width:250px;
  height:100%;
  background:#fff;
  padding:20px;
  transition:.3s;
  z-index:1001;
}


.mobile-sidebar ul { list-style:none; padding:0; }
.mobile-sidebar a { display:block; padding:10px; }

.mobile-sidebar.active { left:0; }

.close-btn { background:none;border:none;font-size:24px; }

/* HOME */
.hero-slide {
  height:350px;
  background:#ccc;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* HERO SLIDER IMAGES */
.hero-img {
  height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-img {
    height: 220px;
  }
}


.category-box {
  background:#f2f2f2;
  padding:20px;
  margin:5px;
  border-radius:10px;
}

.product-card {
  background:#fff;
  padding:15px;
  border-radius:15px;
  text-align:center;
}

.offer-section {
  background:#ff9800;
  color:#fff;
  padding:40px;
  text-align:center;
}

.blog-card {
  background:#fff;
  padding:20px;
  border-radius:15px;
}

/* FOOTER */
.main-footer {
  background:#111;
  color:#fff;
  padding:40px 0;
}

/* MOBILE BOTTOM NAV */
/*.mobile-bottom-nav {*/
/*  position:fixed;*/
/*  bottom:0;*/
/*  width:100%;*/
/*  background:#fff;*/
/*  display:flex;*/
/*  justify-content:space-around;*/
/*  border-top:1px solid #ddd;*/
/*  padding:8px 0;*/
/*}*/

/* ================= MOBILE BOTTOM NAV (IMPROVED) ================= */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}

.mobile-bottom-nav a {
  flex: 1;
  text-align: center;
  color: #666;
  font-size: 11px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.mobile-bottom-nav i {
  font-size: 20px;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
  color: #ff9800;
}

.mobile-bottom-nav a.active i {
  transform: translateY(-2px);
}


.mobile-bottom-nav a {
  text-align:center;
  color:#333;
  font-size:12px;
}
.mobile-bottom-nav i { font-size:18px; }

#audioToggle {
  font-size: 18px;
  color: #7b5cff;
  cursor: pointer;
  transition: 0.3s ease;
}

#audioToggle.muted {
  color: #999;
}

#audioToggle:hover {
  transform: scale(1.15);
}


/* ================= DIVINE SYMBOL RAIN ================= */

.symbol-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1; /* above background, below content */
}

/* Common symbol */
.symbol-rain span {
  position: absolute;
  top: -10%;
  animation: divineFall linear infinite;
  opacity: 0;
}

/* OM */
.symbol-rain .om {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 28px;
  color: rgba(255, 215, 150, 0.6);
  text-shadow: 0 0 14px rgba(255, 200, 120, 0.7);
  animation-duration: 18s;
}

/* Trishul */
.symbol-rain .trishul {
  font-size: 22px;
  color: rgba(255, 170, 90, 0.55);
  text-shadow: 0 0 12px rgba(255, 150, 80, 0.6);
  animation-duration: 24s;
}

/* Rudraksha bead */
.symbol-rain .rudraksha {
  font-size: 14px;
  color: rgba(160, 90, 40, 0.55);
  text-shadow: 0 0 6px rgba(140, 80, 40, 0.6);
  animation-duration: 30s;
}

/* Positioning & delays */
.symbol-rain span:nth-child(1)  { left: 8%;  animation-delay: 0s; }
.symbol-rain span:nth-child(2)  { left: 18%; animation-delay: 4s; }
.symbol-rain span:nth-child(3)  { left: 28%; animation-delay: 7s; }
.symbol-rain span:nth-child(4)  { left: 38%; animation-delay: 2s; }
.symbol-rain span:nth-child(5)  { left: 48%; animation-delay: 6s; }
.symbol-rain span:nth-child(6)  { left: 58%; animation-delay: 10s; }
.symbol-rain span:nth-child(7)  { left: 68%; animation-delay: 3s; }
.symbol-rain span:nth-child(8)  { left: 78%; animation-delay: 8s; }
.symbol-rain span:nth-child(9)  { left: 88%; animation-delay: 5s; }
.symbol-rain span:nth-child(10) { left: 95%; animation-delay: 11s; }

/* Falling animation */
@keyframes divineFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(120vh) rotate(360deg);
    opacity: 0;
  }
}

/* Mobile: softer */
@media (max-width: 768px) {
  .symbol-rain .om { font-size: 20px; }
  .symbol-rain .trishul { font-size: 16px; }
  .symbol-rain .rudraksha { font-size: 10px; }
}


/* ================= COSMIC BACKGROUND ================= */
.zodiac-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #0b1d3a, #000);
}

#cosmicStars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Keep content above animation */
.zodiac-container,
.symbol-rain {
  position: relative;
  z-index: 2;
}

/* Slight glow enhancement */
.zodiac-wheel {
  animation: zodiacRotate 60s linear infinite;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
}

@keyframes zodiacRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Smooth spiritual feel */
.zodiac-right h2,
.zodiac-right p {
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
}


