html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content should grow to fill available space */
main {
    flex: 1;
}

/* Footer fixes */
#footer {
    margin: 0;
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

/* WhatsApp and Phone button fixes */
.whatsapp-container, .phone-container {
    z-index: 999 !important;
}


/* login page animations */
    @keyframes blob {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(20px, -50px) scale(1.1); }
        50% { transform: translate(-20px, 20px) scale(0.9); }
        75% { transform: translate(50px, 50px) scale(1.05); }
    }
    
    .animate-blob {
        animation: blob 7s infinite;
    }
    
    .animation-delay-2000 {
        animation-delay: 2s;
    }
    
    .animation-delay-4000 {
        animation-delay: 4s;
    }

    /* Style Django form inputs  */
    input[type="text"],
    input[type="password"] {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 3rem;
        background: rgba(255, 255, 255, 0.7);
        border: 2px solid rgba(251, 191, 36, 0.3);
        border-radius: 0.75rem;
        color: #78350f;
        font-size: 0.875rem;
        transition: all 0.3s;
        backdrop-filter: blur(10px);
    }
    
    input[type="text"]:focus,
    input[type="password"]:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.9);
        border-color: #f97316;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    }
    
    input[type="text"]::placeholder,
    input[type="password"]::placeholder {
        color: rgba(120, 53, 15, 0.5);
    }

/* form bg image  */
.bg-box {
    background-image: url("/static/images/bgg.a1b8963eb363.jpeg"); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100%;
    height: 100%; 
}


/* navbar end  */


/* github checkitout */
.button-icon {
  display: flex;
  border: 3px #fff solid;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
}

/* .icon {
  background-color: #fff;
  padding: 10px 10px 5px 10px;
} */

/* .icon svg {
  width: 25px;
  height: 25px;
} */

.cube {
  transition: all 0.4s;
  transform-style: preserve-3d;
  width: 200px;
  height: 20px;
}

.button-icon:hover {
  border-color: #ff98a2;
}

.button-icon:hover .cube {
  transform: rotateX(90deg);
}

.side {
  position: absolute;
  height: 47px;
  width: 200px;
  display: flex;
  font-size: 0.8em;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.top {
  background: #ff98a2;
  color: #fff;
  transform: rotateX(-90deg) translate3d(0, 13.5px, 2em);
}

.front {
  background: #222229;
  color: #fff;
  transform: translate3d(0, 0, 1em);
}

.top {
  background: #ff98a2;
  color: #fff;
  transform: rotateX(-90deg) translate3d(0, 13.5px, 2em);
}

.front {
  background: #222229;
  color: #fff;
  transform: translate3d(0, 0, 1em);
}


/* pooja section  */
.pooja1-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #111827, #451a03, #111827);
}

.pooja1-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.pooja1-title {
    font-size: 42px;
    color: #b45309;
    margin-bottom: 16px;
}

.pooja1-subtitle {
    font-size: 18px;
    color: #cdb6ae;
    max-width: 600px;
    margin: 0 auto 50px;
}

.pooja1-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Mobile responsive for pooja cards */
@media (max-width: 768px) {
    .pooja1-cards {
        gap: 16px;
    }
    
    .pooja1-card {
        padding: 20px;
    }
    
    /* Make cards smaller on mobile */
    .pooja1-card h3 {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }
    
    .pooja1-card p {
        font-size: 0.875rem;
    }
    
    .pooja1-card .text-5xl {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
}

.pooja1-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pooja1-card h3 {
    color: #92400e;
    margin-bottom: 8px;
}

.pooja1-btn {
    display: inline-block;
    background: #f97316;
    color: white;
    padding: 14px 40px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.pooja1-btn:hover {
    background: #ea580c;
}

#cinematic-gallery {
    background: linear-gradient(to bottom, #fff7ed, #ffedd5);
}
