/* 🌟 Diwali Animation - Fixed Bottom Left (Footer ke upar) */
.diwali-left {
  position: fixed !important; /* Fix it to viewport */
  left: 10px !important;      /* Left corner */
  bottom: 60px !important;       /* Footer ke upar */
  z-index: 9999 !important;   /* Always visible above footer */
  pointer-events: auto;
  overflow: visible;
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 300px;
  animation: fadeIn 0.8s ease-in-out;
}

/* ✨ Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ❌ Close Button */
.diwali-close {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #F44336;
  color: #fff;
  border: none;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  z-index: 10000;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
.diwali-close:hover {
  background: red;
  transform: scale(1.1);
}

/* 🧒 Character */
.diwali-img {
  width: 200px;
  height: auto;
  animation: bheemGlow 2.5s infinite ease-in-out;
  display: block;
  max-width: 100%;
}
@keyframes bheemGlow {
  0%,100% { filter: drop-shadow(0 0 10px gold); }
  50% { filter: drop-shadow(0 0 25px orange); }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .diwali-left {
    left: 5px !important;
    bottom: 85px !important;
    max-width: 200px;
  }
  .diwali-img {
    width: 160px;
  }
}
@media (max-width: 480px) {
  .diwali-left {
    left: 2px !important;
    bottom: 75px !important;
    max-width: 150px;
  }
  .diwali-img {
    width: 120px;
  }
}
