body {
  font-family: 'Inter', sans-serif;
}

.carousel-container {
  transition: transform 0.5s ease-in-out;
}

/* --- Bubble Animation --- */
#background-bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -150px;
  /* Updated Color for Numerology 9 (Mars-based colors) */
  background-color: rgba(150, 0, 24, 0.78); /* Deep Ruby Red - Vastu + Numerology 9 */
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}
