
body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    scroll-behavior: smooth;
}
/* Custom styles for the timer blocks */
.timer-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom modal for alerts */
#custom-alert, #exit-intent-popup {
    transition: opacity 0.3s ease-in-out;
}

/* Added a loading spinner */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #ff6600;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Styles for the scrolling success wall */
#success-wall-container {
    height: 400px; /* Fixed height for the container */
    animation: scroll-wall 30s linear infinite;
}
@keyframes scroll-wall {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Scrolls exactly one half of the content */
}

/* Styles for FAQ accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Simple Fade In Animation */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.5s ease-out forwards;
}
