/* 🌐 Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Verdana', sans-serif;
  background-color: #fffbe9;
  color: #2c1e3f;
  text-align: center;
  overflow-x: hidden;
}
h2, h3 {
  margin: 20px 0;
}

/* 🌟 Banner Slider */
.banner-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-in;
}
.slide.active {
  opacity: 1;
}
.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✨ Welcome Text */
.welcome-text {
  font-size: 24px;
  font-weight: bold;
  color: #ff4081;
  text-shadow: 0 0 4px #ffa0d2;
}
.blink {
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* 📜 Bio Section */
.bio-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.6;
  background-color: #fef7dc;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 185, 100, 0.4);
}
.bio-section strong {
  font-size: 16px;
}

/* 📸 Portraits Side by Side */
.image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.bio-img {
  width: 45%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 12px #ffc107;
}

/* 🪔 World Record Highlight */
.highlight-text {
  font-size: 28px;
  font-weight: bold;
  color: #e91e63;
  margin-top: 30px;
  text-shadow: 0 0 8px #fff700, 0 0 12px #f44336;
}

/* 📱 Responsive Fix */
@media (max-width: 600px) {
  .image-row {
    flex-direction: row;
    gap: 10px;
  }
  .bio-img {
    width: 48%;
  }
}

/* AWARD GALLERY STYLING */
.award-gallery {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: radial-gradient(circle, #fff8e6, #fbeec1);
  box-shadow: 0 0 20px #ffd700;
  border-radius: 12px;
}

.award-heading {
  font-size: 28px;
  font-weight: bold;
  color: #b8860b;
  text-shadow: 0 0 8px #fff;
  margin-bottom: 20px;
}

.award-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.award-images img {
  width: 220px;
  height: auto;
  border: 4px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px #ffcc00;
  transition: transform 0.3s ease;
}

.award-images img:hover {
  transform: scale(1.05);
}

/* HEADLINE STYLING */
.divine-products-heading {
  text-align: center;
  margin-top: 60px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #fff8dc, #fceabb);
  border-radius: 15px;
  box-shadow: 0 0 25px #ffd700;
}

.divine-products-heading h2 {
  font-size: 32px;
  color: #b8860b;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px #fff5cc;
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { text-shadow: 0 0 8px #fff5cc; }
  50% { text-shadow: 0 0 20px #ffd700; }
  100% { text-shadow: 0 0 8px #fff5cc; }
}

/* DIVINE DESCRIPTION STYLING */
.divine-description {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px 30px;
  background: #fffaf2;
  border: 2px solid #f4e2c2;
  border-radius: 12px;
  box-shadow: 0 0 15px #ffe4b5;
  font-family: 'Georgia', serif;
}

.divine-description p {
  font-size: 20px;
  color: #6b4226;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 0 6px #fff9e6;
}

/* DIVINE PRODUCT CARD */
.product-card {
  max-width: 700px;
  margin: 40px auto;
  padding: 25px;
  background: #fffdf5;
  border: 2px solid #f4e2c2;
  border-radius: 15px;
  box-shadow: 0 0 20px #ffe4b5;
  text-align: center;
}

.product-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 12px #ffc107;
  margin-bottom: 20px;
}

.product-description {
  font-size: 18px;
  color: #6b4226;
  line-height: 1.6;
  text-shadow: 0 0 4px #fff9e6;
}

/* ORDER NOW Button */
.order-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #b8860b;
  border-radius: 8px;
  text-decoration: none;
  animation: blink 1.2s infinite;
  box-shadow: 0 0 12px #ffd700;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.product-card {
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 40px;
}

.product-image img {
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.aura-border {
  border: 3px solid #ffeaa7;
  box-shadow: 0 0 12px #ffdd77;
}

.product-benefits {
  color: #eeeeee;
  font-size: 1em;
  line-height: 1.6;
}

.price-highlight {
  display: inline-block;
  margin-top: 10px;
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2em;
}

.order-now-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background-color: #ffcb00;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #ffe066;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px #ffe066; }
  50% { opacity: 0.6; box-shadow: 0 0 20px #fff688; }
}

/* 🔴 Trishul Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
  animation: pulseRed 2s infinite;
}


/* 🔴 Bal Gopal Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
  animation: pulseRed 2s infinite;
}

/* 🔴 Hanuman Ji Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
  animation: pulseRed 2s infinite;
}
  
  /* 🔴 Hanuman Ji Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Hanuman Ji Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Shiv Ji Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Krishna Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Lucky Mobile number Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 ETR Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Lotus Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 FuturePrediction Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Divine Meditation Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Spiritual Growth Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Vastu Correction Puja Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Energized Magical Five Mukhi Rudraksh Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Energized Divine & Magical Lord Narayan & Sheshnag ji Photo Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Magical Energized 7 chakra Tree Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Cricket Tennis Football Prediction Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 Share & Commodity Prediction Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

/* 🔴 A Blood-Red Title Glow */
.hanuman-highlight {
  font-size: 1.8em;
  color: #ff2b2b;
  font-weight: bold;
  text-shadow: 0 0 12px #ff0000, 0 0 18px #ff4444;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.social-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.2);
  box-shadow: 0 0 12px #ffd700;
}

.footer {
  text-align: center;
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  color: #000; /* 🔥 Bold black for visibility */
}

.footer p {
  font-size: 14px;
  margin: 5px 0;
  font-weight: bold; /* 💥 Now bold for better contrast */
}

.avatar {
  background: linear-gradient(to right, #ffd700, #ff6f00, #ff4081, #7c4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.4; }
  100% { opacity: 1; }
}
  animation: pulseRed 2s infinite;
}


