/* Load Custom Fonts (if self-hosting) */
@font-face {
  font-family: 'Riviera Nights';
  src: url('../fonts/riviera-nights-regular.woff2') format('woff2'),
    url('../fonts/riviera-nights-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Riviera Nights';
  src: url('../fonts/riviera-nights-bold.woff2') format('woff2'),
    url('../fonts/riviera-nights-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gill Alt One MT';
  src: url('../fonts/gill-alt-one-mt-regular.woff2') format('woff2'),
    url('../fonts/gill-alt-one-mt-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Language Dropdown Styles */
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 120px;
  overflow: hidden;
  transform-origin: top right;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-dropdown a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.language-dropdown a:hover {
  background: linear-gradient(135deg, #ED9455, #f97316);
  color: white;
  transform: translateX(4px);
}

.language-dropdown a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.language-dropdown a:hover::before {
  left: 100%;
}

/* Simple Sidebar - No Animations */
#side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px; /* Increased from 320px */
  height: 100vh;
  background: rgba(255, 255, 255, 0.15); /* More transparent */
  backdrop-filter: blur(20px); /* Enhanced blur effect */
  -webkit-backdrop-filter: blur(20px); /* For Safari support */
  z-index: 60;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
  border-right: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
  overflow-y: auto;
}

#side-menu.open {
  transform: translateX(0);
}

/* Menu overlay */
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button */
#side-menu-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(237, 148, 85, 0.1);
  border: 1px solid rgba(237, 148, 85, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#side-menu-close-button:hover {
  background: rgba(237, 148, 85, 0.2);
  border-color: rgba(237, 148, 85, 0.4);
}

/* Sidebar content */
.sidebar-content {
  padding: 80px 30px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Logo */
.sidebar-logo {
  text-align: center;
  margin-bottom: 30px;
}

/* Navigation */
#side-menu nav {
  flex: 1;
}

/* Menu items */
.side-menu-item {
  display: block;
  padding: 12px 16px;
  margin: 8px 0;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1); /* Subtle glass background */
  position: relative;
  padding-bottom: 0.25rem;
  backdrop-filter: blur(5px); /* Subtle blur for glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
}

.side-menu-item:hover {
  background: rgba(237, 148, 85, 0.2); /* Enhanced hover with glass effect */
  color: #ED9455;
  transform: translateX(5px); /* Slight movement on hover */
  box-shadow: 0 4px 15px rgba(237, 148, 85, 0.2); /* Glow effect */
}

/* Underline hover effect */
.side-menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #ED9455;
  transition: width 0.3s ease-in-out;
}

.side-menu-item:hover::after {
  width: 80%;
}

/* Menu icons */
.side-menu-item .menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 1.1em;
  width: 20px;
  color: #ED9455;
  transition: all 0.3s ease;
}

.side-menu-item:hover .menu-icon {
  color: #ED9455;
  transform: scale(1.1);
}

/* Active state */
.side-menu-item.active {
  background: rgba(237, 148, 85, 0.25); /* Enhanced active state */
  color: #ED9455;
  box-shadow: 0 4px 15px rgba(237, 148, 85, 0.3); /* Active glow */
  border: 1px solid rgba(237, 148, 85, 0.3); /* Active border */
}

/* Special item (Dham) */
.side-menu-item.special {
  background: rgba(237, 148, 85, 0.15); /* Enhanced special background */
  border: 1px solid rgba(237, 148, 85, 0.2); /* Special border */
}

/* Menu toggle button */
#menu-toggle-button {
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px;
}

#menu-toggle-button:hover {
  background: rgba(237, 148, 85, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  #side-menu {
    width: 340px; /* Slightly smaller on tablets but still wider */
  }
  
  .sidebar-content {
    padding: 70px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  #side-menu {
    width: 320px; /* Even smaller on mobile phones but still wider than original */
  }
  
  .sidebar-content {
    padding: 60px 15px 15px 15px;
  }
  
  .side-menu-item {
    padding: 10px 12px;
    margin: 6px 0;
    font-size: 0.95rem;
  }
  
  .side-menu-item .menu-icon {
    margin-right: 10px;
    font-size: 1em;
  }
}

/* ===================================================================== */
/* Custom Mouse Cursor */
/* ===================================================================== */

/* 1. Hide the default cursor for the whole page and interactive elements */
body, a, button, [data-cursor-hover] {
  cursor: none;
}
.text-divine-orange{
  color: #ED9455;
}

/* FULL HEADER STYLE   */
    /* ===================================================================== */
/* Custom Mouse Cursor */
/* ===================================================================== */

/* 1. Hide the default cursor for the whole page and interactive elements */
body, a, button, [data-cursor-hover] {
  cursor: none;
}

/* 2. Style the custom cursor element */
#custom-cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid black;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out, background-color 0.2s ease-out;
  z-index: 9999;
}

/* 3. Define the "hover" or "grow" state */
#custom-cursor.cursor-grow {
  transform: translate(-50%, -50%) scale(2);
  
  background-color: transparent;
  
  border: 1px solid #000;
}

/* Waterdrop cursor effect styles */
.waterdrop {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 3px solid #ed9455;
  /* Use new accent color */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: drop-animation 0.6s ease-out forwards;
  z-index: 9999;
}

@keyframes drop-animation {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}


        /* === EXISTING STYLES (PRESERVED) === */
        .font-teko { font-family: 'Teko', sans-serif; }
        .font-roboto { font-family: 'Roboto', sans-serif; }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .hero-text-shadow { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); }
        .quote-button {
            display: inline-block; padding: .7rem 1.5rem; font-size: 1rem; border-radius: 5px; font-weight: 700;
            color: white; background-color: #ed9455; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateY(0);
        }
        .quote-button:hover, .quote-button:focus {
            transform: translateY(-6px); background-color: #dd8442; outline: none;
        }
        .all-button::before {
            content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 0; height: 0; background: rgba(255, 255, 255, 0.25); border-radius: 100%; opacity: 0;
        }
        .all-button:hover::before { animation: circle-expand 0.75s; }

        /* === STYLES FOR HEADER AND MENU (PRESERVED & CLEANED) === */
        html { scroll-behavior: smooth; }
        body { max-width: 100%; overflow-x: hidden; }
        .glassmorphic-container {
            background-color: rgba(248, 245, 240, 0.5); backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(209, 213, 219, 0.2);
        }
        #side-menu { transition: transform 0.5s ease-in-out; }
        .header-logo {
            transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
            display: inline-block;
        }
        .header-logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 5px rgba(237, 148, 85, 0.7)); 
        }
/* ALL BUTTONS HOVER VAWING CSS */

/* START : SLIDE question section */
#revealing-questions-section {
  position: relative;
  min-height: 500vh;
  /* For ScrollTrigger pinning behavior */
  /* Tailwind classes `bg-gray-100 dark:bg-gray-800` handle outer section bg if needed before pinning */
}

/* This class might be used elsewhere; here we override its effect within this section */
.main-text-color {
  color: #334155;
  /* Default dark text from your styles */
}

.questions-slide-pinned-container {
  /* Tailwind classes `h-screen w-screen flex...` handle its core layout */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Your existing shadow */
}


.slide-background {
  /* --- UPDATED: Background Image, Overlay, and Bottom White Gradient --- */

  background-image:
    /* Layer 1 (topmost): White gradient fading upwards from the bottom */
    /* This makes the bottom edge of the image fade to white. */
    linear-gradient(to top,
      /* Gradient direction: from bottom to top */
      rgba(255, 255, 255, 1) 0%,
      /* Solid white at the very bottom (0%) */
      rgba(255, 255, 255, 0.95) 4%,
      /* Still very white, 4% from bottom */
      rgba(255, 255, 255, 0.7) 8%,
      /* Becoming more transparent, 8% from bottom */
      rgba(255, 255, 255, 0.3) 12%,
      /* Quite transparent, 12% from bottom */
      rgba(255, 255, 255, 0) 20%
      /* Fully transparent at 20% from the bottom */
      /* Adjust these percentages to control the height and softness of the white fade.
                                               Smaller final percentage (e.g., 10%) = shorter, quicker fade.
                                               Larger final percentage (e.g., 25%) = taller, softer fade. */
    ),
    /* Layer 2: Dimming overlay (blackish) for the main image area */
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),

    /* Layer 3 (bottommost): Actual background image */
    url('../images/black-white.jpg');
  /* <<< YOUR IMAGE PATH HERE - MAKE SURE THIS IS CORRECT */

  /* These properties apply to all layers defined in background-image: */
  background-size: cover;
  /* Ensures layers fill the container. For gradients, this is fine. */
  background-position: center center;
  /* Centers layers. For gradients, this is fine. */
  background-repeat: no-repeat;
  /* Important for all layers, especially the image. */

  /* The Tailwind class `-z-10` on this div in HTML keeps it behind content. */
}


#questions-main-title {
  /* Original dark color from your CSS is overridden by Tailwind text color,
       but we force white here for better contrast with the background image. */
  color: #FFFFFF;
  /* UPDATED: White text for contrast */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  /* Optional: enhances readability */
  /* Tailwind classes handle font size, weight, margins. */
}

.questions-stack {
  min-height: 100px;
  /* Your existing style */
  /* Tailwind classes `relative w-full max-w... text-center` handle layout. */
}


.question-text {
  color: #000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(100, 100, 100, 0.06);
  border-left: 4px solid #ED9455;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.70rem 1.25rem;
}

/* Dark Mode Specific Overrides */
/* Ensures text remains white in this section even if dark mode defaults text to a light gray */
.dark #revealing-questions-section #questions-main-title,
.dark #revealing-questions-section .question-text {
  color: #FFFFFF;
}


/* Responsive adjustments (from your provided CSS) */
@media (max-width: 640px) {

  /* sm breakpoint (Tailwind default) */
  #questions-main-title {
    font-size: 1.5rem;
    /* Your existing style (Tailwind: text-2xl) */
    margin-bottom: 1.5rem;
    /* Your existing style (Tailwind: mb-6) */
  }

  .question-text {
    font-size: 1.125rem;
    /* Your existing style (Tailwind: text-lg) */
    padding: 0.5rem 0.75rem;
    /* Your existing style */
  }

  .questions-slide-pinned-container {
    padding: 1rem;
    /* Your existing style (Tailwind: p-4) */
  }
}

/* END : SLIDE question section */


/* <!-- ▼▼▼ YOUR NEW DEVOTIONAL SECTION STARTS HERE ▼▼▼ --> */

/* Initial hidden states */
#divine-shades,
#goddess-idol,
.answer-item {
  opacity: 0;
}

.answer-item {
  transform: translateY(20px);
}

/* Main answer column */
#answers-column {
  position: relative;
  overflow: hidden;
}

/* Vibrant Background with animated aura */
#answers-column::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;

  /* background-image:
    radial-gradient(circle at 20% 30%, #ED9455 0%, rgba(255, 213, 153, 0.3) 30%),
    radial-gradient(circle at 80% 60%, #FAD0C4 0%, rgba(255, 193, 123, 0.2) 25%),
    radial-gradient(circle at 50% 90%, #FFE6B4 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 60% 10%, #FFB347 0%, rgba(255, 255, 255, 0) 45%); */

  filter: blur(90px);
  -webkit-filter: blur(90px);

  animation: swirl-energy 30s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Starfield */
#answers-column::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: radial-gradient(circle at center, #ffffff 1px, transparent 1px); */
  background-size: 60px 60px;
  animation: drift-stars 80s linear infinite;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* GSAP Active Trigger */
#answers-column.gsap-active-state::before,
#answers-column.gsap-active-state::after {
  opacity: 1;
}

/* Keyframes */
@keyframes swirl-energy {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.2);
  }
}

@keyframes drift-stars {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1000px 500px;
  }
}




/* <!-- ▼▼▼ YOUR NEW DEVOTIONAL SECTION ends HERE ▼▼▼ --> */

/* --- PNG Moving Background --- */
#answers-column {
  position: relative;
  overflow: hidden;
  background-color: white;
  /* fallback if image doesn't load */
}

/* Moving PNG background */
#answers-column::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200%;
  height: 200%;
  background-image: url('../images/sunlight.png');
  /* your PNG file here */
  background-size: cover;
  background-repeat: repeat;
  background-position: 0 0;
  animation: move-bg 80s linear infinite;
  opacity: 0.25;
  /* tweak to blend with white theme */
  z-index: 1;
  pointer-events: none;
}

/* Overlay glow particles (optional) */
#answers-column::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: drift-particles 60s linear infinite;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

/* Make sure text stays on top */
#answers-column>div {
  position: relative;
  z-index: 2;
}

/* Keyframe animations */
@keyframes move-bg {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -400px -200px;
  }

  /* diagonally moving left-top */
}

@keyframes drift-particles {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100px, -100px);
  }
}


/* ============================================= */
/* ==  Expanding Circle Hover Effects         == */
/* ============================================= */

/* --- For the Dham Image --- */
#dham-image-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#dham-image-container::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100%;
  opacity: 0;
}

#dham-image-container:hover::before {
  animation: circle-expand 0.75s;
}

/* --- For the "Read More" Button --- */
.dham-button-container a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  /* background: rgba(255, 255, 255, 0.25);  */
  border-radius: 100%;
  opacity: 0;
}

.dham-button-container a:hover::before {
  animation: circle-expand 0.75s;
}

/* --- The Shared Animation Keyframes --- */
@keyframes circle-expand {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

/* 3. The @keyframes circle-expand is already defined, so we don't need to add it again! */



/* <!-- ▼▼▼ ENDS YOUR NEW DEVOTIONAL SECTION  HERE ▼▼▼ --> */



/* START : ANIMATED UNDERLINE (Scoped and Refined) */

.animated-underline-heading {
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  width: fit-content;
}

.animated-underline-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #ED9455;
  display: block;
  animation: makeline1 1.5s ease forwards, makeline2 1.5s ease 1.5s forwards;
  animation-iteration-count: infinite;
}

@keyframes makeline1 {
  0% {
    width: 30%;
    background: transparent;
  }

  50% {
    width: 30%;
    background: #ED9455;
  }

  100% {
    width: 30%;
    background: #ED9455;
  }
}

@keyframes makeline2 {
  0% {
    width: 10%;
    background: #ED9455;
  }

  50% {
    width: 20%;
    background: #ED9455;
  }

  100% {
    width: 30%;
    background: transparent;
  }
}

/* ✅ END: ANIMATED UNDERLINE */

/* ✅ Make content justified on all screen sizes */
#gallery-content-section .content-right-animated p {
  text-align: justify;
}

/* ✅ Optional: Fix image flip transition */
.flip-img:hover {
  transform: rotateY(180deg);
  transition-duration: 1sec;
  ;
  /* transform: rotateY(45deg); */
}

/* // START : ORIGINAL BHAKTI */
@layer utilities {
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-in {
    animation: fadeIn 1.2s ease forwards;
  }

  .delay-300 {
    animation-delay: 0.3s;
  }
}

/* // END : ORIGINAL BHAKTI */


/* Vedic Quotes Carousel Styles */
#vedic-quotes-section {
  position: relative;
  z-index: 1;
}

#vedic-quotes-section::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/dham23.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Remove old carousel styles */
.quote-slide,
.quote-content,
.nav-arrow {
  /* These styles are now handled by Tailwind classes */
}

/* Add any custom styles that can't be handled by Tailwind */
.quote-slide {
  will-change: transform, opacity;
}

/* Ensure smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Prevent scroll chaining on mobile */
.quotes-wrapper {
  overscroll-behavior: contain;
}


/* START ; VEDIC SECTION */


/* END ; VEDIC SECTION */

/* ======================================= */
/* == " starts Ghar Mandir" Section Background == */
/* ======================================= */


/* The background image layer */
#ghar-mandir-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* (top: 0; right: 0; bottom: 0; left: 0;) */
  z-index: 0;

  /* CHOOSE YOUR IMAGE: Replace with your image path */
  background-image: url('./images/serene-background.jpg');
  background-size: cover;
  background-position: center;

  /* This makes the image darker */
  opacity: 0.25;
}

/* The dark gradient overlay layer for readability */
#ghar-mandir-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;

}

/* Ends "Ghar Mandir" Section Background == */
*/

/* Carousel Section Styles */
.carousel-section {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/dham23.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-content {
  max-width: 800px;
  text-align: center;
  color: white;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.carousel-slide.active .slide-content {
  transform: translateX(0);
  opacity: 1;
}

.slide-number {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10rem;
  color: #ffffff;
}

.slide-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
  /* font-weight: 600; */
}

.slide-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.carousel-button {
  /* background: rgba(255, 255, 255, 0.2); */
  /* border: 2px solid white; */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-button svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ED9455;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slide-content {
    padding: 0 1rem;
  }

  .slide-number {
    font-size: 2rem;
  }

  .slide-heading {
    font-size: 1.5rem;
  }

  .slide-text {
    font-size: 1rem;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
  }
}

/*
 * Parallax Background for the Pillars Section
 * This creates a pseudo-element that holds the fixed background image,
 * creating a parallax effect as the user scrolls.
*/
/* ===================================================================== */
/* Animated Floating Circles Background */
/* ===================================================================== */

/* General style for all circles */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  /* The animation is defined here */
  animation: float 20s infinite ease-in-out;
  filter: blur(5px);
  /* Softens the edges for a dreamy look */
}

/* Keyframes for the floating animation */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, -40px);
  }

  50% {
    transform: translate(-30px, 30px);
  }

  75% {
    transform: translate(40px, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Individual circle styling */
/* We give each circle a unique size, position, color, and animation delay */
/* This makes the background look organic and not repetitive */

.circle-1 {
  width: 110px;
  height: 110px;
  top: 10%;
  left: -1%;
  background-color: #fae3d3;
  /* amber-400 */
  animation-duration: 25s;
  animation-delay: -5s;
}

.circle-1-1 {
  width: 50px;
  height: 50px;
  top: 15%;
  left: 42%;
  background-color: #fae3d3;
  /* amber-400 */
  animation-duration: 25s;
  animation-delay: -5s;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 65%;
  left: 50%;
  background-color: #fae3d3;
  /* sky-400 */
  animation-duration: 30s;
  animation-delay: -10s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  top: 80%;
  left: 5%;
  background-color: #fae3d3;
  /* orange-500 */
  animation-duration: 18s;
  animation-delay: -2s;
}

.circle-4 {
  width: 70px;
  height: 70px;
  top: 21%;
  right: 12%;
  background-color: #fae3d3;
  /* sky-400 */
  animation-duration: 28s;
  animation-delay: 0s;
}

.circle-5 {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 15%;
  background-color: #fae3d3;
  /* amber-400 */
  animation-duration: 22s;
  animation-delay: -15s;
}

.circle-6 {
  width: 60px;
  height: 60px;
  top: 45%;
  right: 50%;
  background-color: #fae3d3;
  /* orange-500 */
  animation-duration: 35s;
  animation-delay: -8s;
}

.circle-7 {
  width: 60px;
  height: 60px;
  top: 55%;
  right: 30%;
  background-color: #fae3d3;
  /* orange-500 */
  animation-duration: 35s;
  animation-delay: -8s;
}

.circle-8 {
  width: 60px;
  height: 60px;
  top: 76%;
  right: 20%;
  background-color: #fae3d3;
  /* orange-500 */
  animation-duration: 35s;
  animation-delay: -8s;
}

.circle-9 {
  width: 60px;
  height: 60px;
  top: 45%;
  right: 10%;
  background-color: #fae3d3;
  /* orange-500 */
  animation-duration: 35s;
  animation-delay: -8s;
}

.circle-10 {
  width: 60px;
  height: 60px;
  top: 90%;
  right: 50%;
  background-color: #fae3d3;
  /* orange-500 */
  animation-duration: 35s;
  animation-delay: -8s;
}

/* === RESPONSIVE STYLING === */
/* On mobile screens, we make the circles smaller and hide some to avoid clutter */
@media (max-width: 768px) {
  .circle-2, .circle-4 {
    display: none;
    /* Hide the largest circles on mobile */
  }

  .circle-1 {
    width: 80px;
    height: 80px;
  }

  .circle-3 {
    width: 50px;
    height: 50px;
  }

  .circle-5 {
    width: 70px;
    height: 70px;
  }
}

/*
 * CSS for the mouse-move parallax effect on the content.
 * This is still active and works on top of the new background.
*/
#pillars-section [data-depth] {
  transition: transform 0.3s ease-out;
}

/* Card specific initial state - can also be done with Tailwind classes directly */
/* .card-item {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.card-item.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
} */

/* Alternative for card items without extra CSS, by applying initial state via Tailwind
   and then JS removes these:
   Initial classes on card-item: opacity-0 transform scale-90 translate-y-5
   JS on intersect: card.classList.remove('opacity-0', 'scale-90', 'translate-y-5');
                    card.classList.add('opacity-100', 'scale-100', 'translate-y-0');
   The approach below uses the .animate-on-scroll with data-attributes for flexibility.
*/


/* Add to your global CSS or in a <style> tag */

/* 9 manaka */
/* custom-styles.css */

/* Hide scrollbar for the bead navigator */
/* .no-scrollbar::-webkit-scrollbar {
  display: none; 
}
.no-scrollbar {
  -ms-overflow-style: none;  
  scrollbar-width: none;  
} */



/* ======================================================= */
/* ==  STYLES FOR THE Waving Parallax SECTION           == */
/* ======================================================= */

#waving-parallax-section {
  position: relative;
  /* Make the section taller than the viewport to allow for pinning and scrolling */
  height: 230vh;
  overflow: hidden;
  /* Important to contain the distorted background */
}

/* 1. Styling the Waving Background */
#waving-background {
  position: absolute;
  /* inset: -2%; */
  /* Make it slightly larger than the container to hide distorted edges */
  width: 100%;
  height: 110%;
  z-index: 1;

  /* The single background image */
  background-image: url('../images/001.jpg');
  background-size: contain;
  /* background-position: center; */
  background-repeat: no-repeat;

  /* The magic line that applies the SVG filter */
  filter: url(#waving-filter);
}

/* 2. Styling the Scaling Heading */
#waving-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 20;
  /* On top of everything */
  pointer-events: none;
}

/* 3. Styling the Content Wrapper */
#waving-content-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Hide the content initially; GSAP will reveal it */
  opacity: 0;
  visibility: hidden;
}


/* Parallax Background Styles */
.parallax-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.parallax-bg {
  background: radial-gradient(circle at center, rgba(237, 148, 85, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.spiritual-pattern {
  background-image: url('../images/spiritual-pattern.svg');
  background-size: 200px 200px;
  opacity: 0.1;
}

/* Stars Background for PATHSHALA */
.pathshala-stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/stars.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transition: transform 0.3s ease-out;
  pointer-events: none;
  z-index: 0;
}

.pathshala-content {
  position: relative;
  z-index: 1;
}

.pathshala-container {
  position: relative;
  overflow: hidden;
}

/* Animation for stars */
@keyframes starsFade {
  0% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 0.1;
  }
}

.pathshala-stars-bg {
  animation: starsFade 4s ease-in-out infinite;
}

/* Responsive adjustments for parallax */
@media (max-width: 768px) {
  .parallax-container {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  }
}

@media (max-width: 480px) {
  .parallax-container {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  }
}


/* START MOKSHA SECTION */

/* ================================================================ */
/* ========= NEW: CSS FOR DYNAMIC DIVINE BACKGROUND =============== */
/* ================================================================ */

/* Main container for the effect */
.has-divine-background {
  /* A soft, glowing radial gradient instead of a flat color */
  background-color: #f8f9fa;
  /* Fallback color */
  background-image: radial-gradient(circle, #ffffff 0%, #f0f2f5 100%);
  position: relative;
  /* Essential for positioning pseudo-elements */
}

/* Create the two particle layers using pseudo-elements */
.has-divine-background::before,
.has-divine-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Ensures they are behind the content */
  pointer-events: none;
  /* Makes them non-interactive */

  /* The "particles" are created with a repeating radial gradient */
  /* This creates a field of tiny, soft dots */
  background-image: radial-gradient(circle at center, rgba(237, 148, 85, 0.25) 0, rgba(237, 148, 85, 0) 3px);
  background-repeat: repeat;
  background-size: 25px 25px;
  /* Adjust the density of particles here */

  /* Apply the animation */
  animation-name: float-particles;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* The first layer of particles (slower) */
.has-divine-background::before {
  background-size: 30px 30px;
  /* Slightly larger, less dense */
  animation-duration: 45s;
  /* Slower animation */
}

/* The second layer of particles (faster) */
.has-divine-background::after {
  background-size: 15px 15px;
  /* Smaller, more dense */
  animation-duration: 20s;
  /* Faster animation creates depth */
  animation-direction: alternate-reverse;
  /* Moves in the opposite direction */
}

/* The Keyframe Animation that makes the particles float */
@keyframes float-particles {
  from {
    transform: translateY(0);
  }

  to {
    /* Moves the background position vertically, creating an endless loop */
    transform: translateY(-100%);
  }
}

/* END MOKSHA SECTION */


/* ======================================= */
/* == starts "Nav Manka" Timeline Section CSS == */
/* ======================================= */

/* The central vertical line "thread" */
.timeline-container::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #ffd8a9;
  /* A light, divine orange for the thread */
  top: 250px;
  bottom: 0;
  left: 50%;
  /* Center on desktop */
  margin-left: -1.5px;
  z-index: 0;
  box-shadow: 0 0 10px rgba(237, 148, 85, 0.5);
  /* Add a soft glow */
}

/* The content box that the arrow attaches to */
.timeline-content {
  position: relative;
}

/* The CSS Arrow/Pointer for items on the RIGHT side */
.timeline-item-right .timeline-content::before {
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  top: 2rem;
  /* Position the arrow vertically */
  right: 100%;
  /* Position it on the left edge of the box */
  margin-top: -10px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  /* Creates a triangle pointing left */
  border-color: transparent #fefce8 transparent transparent;
  /* fefce8 is bg-amber-50 */
}

/* The CSS Arrow/Pointer for items on the LEFT side */
.timeline-item-left .timeline-content::before {
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  top: 2rem;
  left: 100%;
  /* Position it on the right edge of the box */
  margin-top: -10px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  /* Creates a triangle pointing right */
  border-color: transparent transparent transparent #fefce8;
}

/* --- RESPONSIVE STYLES FOR MOBILE --- */
@media (max-width: 767px) {

  /* Move the central line to the left on mobile */
  .timeline-container::after {
    left: 24px;
  }

  /* Make all arrows point from the left on mobile */
  .timeline-item-left .timeline-content::before,
  .timeline-item-right .timeline-content::before {
    left: -10px;
    /* Position arrow to the left of the box */
    right: auto;
    border-width: 10px 10px 10px 0;
    /* All triangles point left */
    border-color: transparent #fefce8 transparent transparent;
  }
}

/* ======================================= */
/* == ends "Nav Manka" Timeline Section CSS == */
/* ======================================= */
/* ===================================================================== */
/* start: Dham Events Section Styling */
/* ===================================================================== */

/* Base styling for each event card */
.event-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.5rem;
  /* 8px */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
  /* Ensures content respects the rounded corners */
}

/* Hover & Focus state for the card */
.event-card:hover {
  transform: translateY(-8px);
  /* Lifts the card up */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base styling for the buttons */
.event-button {
  display: inline-block;
  padding: 0.75rem .5rem;
  /* py-3 px-6 */
  border-radius: 9999px;
  /* rounded-full */
  font-weight: 700;
  /* font-bold */
  text-align: center;
  transition: background-color 0.3s ease;
}

/* Accessibility focus ring for the buttons */
.event-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  /* box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  --tw-shadow: 0 0 #0000;
  --tw-ring-color: var(--focus-ring-color); */
}

.event-button.focus\:ring-amber-500 {
  --focus-ring-color: #ed9455;
}

.event-button.focus\:ring-red-500 {
  --focus-ring-color: #ed9455;
}


/* Styling for the LIVE badge */
.live-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* 8px */
  background-color: rgba(239, 68, 68, 0.9);
  /* red-500 with slight transparency */
  color: white;
  padding: 0.25rem 0.75rem;
  /* py-1 px-3 */
  border-radius: 9999px;
  /* rounded-full */
  font-weight: 700;
  /* font-bold */
  font-size: 0.875rem;
  /* text-sm */
  border: 2px solid white;
}

/* Pulsing dot animation for the LIVE badge */
.pulse-animation {
  width: 0.75rem;
  /* 12px */
  height: 0.75rem;
  background-color: white;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* end: Dham Events Section Styling */

/* ===================================================================== */
/* Quotes Section Styling */
/* ===================================================================== */

/* Main section container for the animated gradient background */
.animated-gradient-bg {
  background: linear-gradient(-45deg, #0f172a, #1e293b, #334155, #082f49);
  background-size: 400% 400%;
  animation: animated-gradient 15s ease infinite;
}

@keyframes animated-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Container for the shooting stars */
.stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Base style for a single star */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 5px white, 0 0 10px white, 0 0 20px #ed9455;
  animation: shooting-star 10s linear infinite;
}

/* The star's tail, created with a pseudo-element */
.star::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  /* Length of the tail */
  height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
}

@keyframes shooting-star {
  0% {
    transform: translateX(-250px);
    /* Start off-screen */
    opacity: 1;
  }

  100% {
    transform: translateX(calc(100vw + 250px));
    /* End off-screen */
    opacity: 0;
  }
}

/* Unique positions and animation delays for each star to look random */
.star-1 {
  top: 20%;
  left: 0;
  animation-duration: 8s;
  animation-delay: 0s;
}

.star-2 {
  top: 40%;
  left: 0;
  animation-duration: 12s;
  animation-delay: -3s;
}

.star-3 {
  top: 65%;
  left: 0;
  animation-duration: 7s;
  animation-delay: -7s;
}

.star-4 {
  top: 80%;
  left: 0;
  animation-duration: 10s;
  animation-delay: -1s;
}

.star-5 {
  top: 5%;
  left: 0;
  animation-duration: 15s;
  animation-delay: -5s;
}


/* Styling for the content text to make it readable */
.text-shadow-lg {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}


/* --- The "Drastic" Button Animation --- */
.quote-button {
  display: inline-block;
  padding: .7rem 1.5rem;
  /* py-4 px-10 */
  font-size: 1rem;
  /* text-lg */
  font-weight: 700;
  color: white;
  background-color: #ed9455;
  /* amber-600 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

/* Hover and Focus state - This is where the drastic animation happens */
.quote-button:hover,
.quote-button:focus {
  transform: translateY(-6px);
  /* Lifts the button up significantly */
  background-color: #ed9455;
  /* amber-700 */

  outline: none;
  /* Removes default focus outline for a cleaner look */
}

/* A subtle press-down effect when the button is actively clicked */
.quote-button:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

/* <!-- =============================================
     NEW FEATURES SECTION (SYMBOLS OF THE DHAM)
     ============================================= --> */
/* --- CSS for Divine Background Effect --- */
.divine-background {
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(237, 148, 85, 0.15), rgba(254, 243, 233, 0));
  animation: pulse-background 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-background {
  0%, 100% {
    background-size: 100% 100%;
  }

  50% {
    background-size: 120% 120%;
  }
}

/* <!-- =============================================
    end  NEW FEATURES SECTION (SYMBOLS OF THE DHAM)
     ============================================= --> */

     /* Save this in your main CSS file (e.g., your-style.css) */
/* ======================================= */
/*    STARTS:     Go to Top Button Styles         */
/* ======================================= */

#goToTopBtn {
    /* Positioning and Stacking */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999; /* High z-index to stay on top */
    
    /* Appearance */
    width: 48px;
    height: 48px;
    border-radius: 50%; /* Fully rounded */
    background-color: #ed9455; /* Your accent color */
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    
    /* Centering the icon */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Initial Hidden State */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    
    /* Smooth Transitions */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, background-color 0.2s;
}

#goToTopBtn:hover {
    background-color: #e37e38; /* A slightly darker shade for hover */
    transform: translateY(0) scale(1.05); /* Add a subtle hover effect */
}

/* The class added by JavaScript to make the button visible */
#goToTopBtn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Icon style */
#goToTopBtn i {
    font-size: 32px;
    line-height: 1;
}

/* ======================================= */
/*        ENDS : Go to Top Button Styles         */
/* ======================================= */


/* <!-- ▼▼▼ SRART BACK TO TOP BUTTON ▼▼▼ --> */
/* Smooth transition for the back-to-top button visibility */
#backToTopBtn {
  opacity: 1;
}
#backToTopBtn.hidden {
  opacity: 0;
}


/* <!-- ▼▼▼ ENDS BACK TO TOP BUTTON ▼▼▼ --> */

#desktop-video, #mobile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-video-section {
  height: 70vh;
}
@media (max-width: 768px) {
  #hero-video-section {
    height: 40vh;
  }
}

.mahapatra-bg-animated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: url('../images/patr-back.png');
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-position: 0% 50%;
  opacity: 0.18;
  animation: mahapatra-bg-move 40s linear infinite alternate;
}

@keyframes mahapatra-bg-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .mahapatra-bg-animated {
    background-size: 120% auto;
    opacity: 0.12;
  }
}

.questions-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient( to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.7) ), url('../images/black-white.jpg') center center / cover no-repeat;
  background-blend-mode: darken;
  opacity: 0.85;
}

#revealing-questions-section > .questions-bg-image {
  z-index: 0;
}

#revealing-questions-section > *:not(.questions-bg-image) {
  position: relative;
  z-index: 1;
}

.answers-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient( to bottom, rgba(255,255,255,0.7), rgba(237,148,85,0.12) ), url('./images/patr-back.png') center center / cover no-repeat;
  background-blend-mode: lighten;
  opacity: 0.85;
}

#vishvambhari-section > .answers-bg-image {
  z-index: 2;
}

#vishvambhari-section > *:not(.answers-bg-image) {
  position: relative;
  z-index: 3;
}

#divine-shades {
  z-index: 1 !important;
}
  .answers-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Optional: Add a subtle background pattern or image */
    /* background-image: url('./images/your-background.png'); */
    background-color: #ffffff; /* Fallback color */
    opacity: 0.5;
    z-index: 0;
  }
    /* #vishvambhari-section {
    opacity: 0;
    visibility: hidden;
  } */

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  header.fixed.top-0.left-0.right-0.z-50.w-full.glassmorphic-container.shadow-md.h-20.px-2.sm\:px-0.overflow-hidden,
  header.glassmorphic-container {
    min-width: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 4px !important;
    padding-right: 4px !important;
    overflow-x: hidden !important;
  }
  header .container,
  header .flex.items-center.justify-between {
    min-width: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }
  header .flex.flex-col.items-end.gap-2.md\:flex-row.md\:items-center.md\:gap-4.min-w-0.max-w-full.overflow-hidden {
    min-width: 0;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
  #language-switcher-button {
    margin-right: 0 !important;
    position: relative;
    z-index: 30;
  }
  #language-dropdown {
    right: 0 !important;
    left: auto !important;
    min-width: 120px;
    max-width: 90vw;
  }
}