:root {
    --bg-dark: #0a0705;
    --bg-card: rgba(25, 15, 10, 0.4);
    --bg-glass: rgba(10, 7, 5, 0.75);
    --primary: #f5a623;
    --primary-hover: #ffb13b;
    --text-main: #fdfbf7;
    --text-muted: #c4b9b0;
    --accent-red: #d32f2f;
    --border-light: rgba(245, 166, 35, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.5px; }
p { line-height: 1.7; color: var(--text-muted); font-weight: 300; }

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f5a623 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.section-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 650px;
    margin-inline: auto;
    font-weight: 400;
}
#gallery .section-subtitle {
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

#gallery {
    padding: 20px 0; /* Minimal padding for the gallery */
}

/* Buttons */
.btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #f1c40f 100%);
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(245, 166, 35, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}
.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: var(--primary); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; }

/* 1. Hero Section (Center Mockup) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(192, 57, 43, 0.15) 0%, var(--bg-dark) 70%);
    padding-top: 100px;
    overflow: hidden;
    text-align: center;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero h1 { font-size: 4rem; margin-bottom: 20px; line-height: 1.1; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; margin-bottom: 40px; }
.hero-mockup-wrapper {
    position: relative;
    width: 300px;
    margin: 0 auto;
    perspective: 1000px;
}
.hero-mockup {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 8px solid #333;
    animation: float-mockup 6s ease-in-out infinite;
}
@keyframes float-mockup {
    0%, 100% { transform: translateY(0) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}
/* Floating Elements */
.floating-el {
    position: absolute;
    font-size: 3rem;
    color: rgba(243, 156, 18, 0.4);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}
.el-1 { top: 20%; left: 10%; animation-delay: 0s; }
.el-2 { top: 60%; left: 15%; animation-delay: 2s; font-size: 4rem; }
.el-3 { top: 30%; right: 10%; animation-delay: 4s; }
.el-4 { top: 70%; right: 15%; animation-delay: 1s; font-size: 3.5rem; }
.el-5 { top: 10%; right: 30%; animation-delay: 3s; font-size: 2.5rem; }


/* 2. About Us (3D Look) */
.about-3d-wrapper {
    background: linear-gradient(135deg, rgba(30,20,15,0.8) 0%, rgba(10,5,3,0.9) 100%);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(245, 166, 35, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform;
}
.about-3d-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    transform-style: preserve-3d;
}
.about-3d-text {
    transform: translateZ(50px);
}
.about-3d-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
}
.bhajan-features-3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.b-feat-3d {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateZ(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}
.b-feat-3d::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary); transform: scaleY(0); transition: transform 0.4s;
}
.b-feat-3d:hover::before { transform: scaleY(1); }
.b-feat-3d:hover {
    transform: translateZ(40px) translateX(5px);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}
.b-feat-3d .icon-wrap {
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(245, 166, 35, 0.1);
    display: flex; justify-content: center; align-items: center;
    color: var(--primary); font-size: 1.2rem; flex-shrink: 0;
}
.b-feat-3d .feat-info h4 { font-size: 1.1rem; margin: 0 0 4px 0; color: #fff; }
.b-feat-3d .feat-info p { font-size: 0.85rem; margin: 0; color: #aaa; }
.about-3d-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    transform: translateZ(80px);
}
.badge-3d {
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid var(--primary);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(245, 166, 35, 0.2);
}
.badge-3d i { color: var(--primary); font-size: 1.5rem; }
.about-3d-image {
    position: relative;
    transform: translateZ(60px);
}
.about-3d-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.floating-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: #000;
    padding: 20px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 15px 30px rgba(245, 166, 35, 0.5);
    transform: translateZ(120px);
}

/* 3. Interactive Pooja Section (Tabs) */
.pooja-tab-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--bg-card), rgba(20,10,5,0.2));
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform;
}
.pooja-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
    transform: translateZ(40px);
}
.pooja-tab-btn {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.pooja-tab-btn::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 ease;
}
.pooja-tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.2);
    border-color: rgba(245, 166, 35, 0.3);
}
.pooja-tab-btn:hover::before {
    left: 100%;
}
.pooja-tab-btn.active {
    background: linear-gradient(135deg, #f39c12, #e67e22, #c0392b);
    color: white;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(230, 126, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}
.pooja-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    transform: translateZ(30px);
}
.pooja-tab-content.active { display: block; }
.pooja-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.pooja-tab-text h3 { font-size: 2rem; margin-bottom: 15px; color: var(--primary); }
.pooja-tab-text p { font-size: 1.1rem; }
.pooja-image-box {
    position: relative;
    height: 350px;
}
.pooja-image-box img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}
.pooja-image-box img:nth-child(1) {
    width: 65%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.pooja-image-box img:nth-child(2) {
    width: 50%;
    top: 10%;
    left: 0;
    z-index: 2;
    transform: rotate(-10deg);
}
.pooja-image-box img:nth-child(3) {
    width: 50%;
    bottom: 10%;
    right: 0;
    z-index: 1;
    transform: rotate(15deg);
}
.pooja-image-box img:hover { transform: translate(-50%, -60%) scale(1.05) !important; z-index: 10; }
.pooja-image-box img:nth-child(2):hover { transform: rotate(-5deg) scale(1.05) !important; }
.pooja-image-box img:nth-child(3):hover { transform: rotate(10deg) scale(1.05) !important; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* 4. Screenshot Gallery (3D Coverflow) */
.slider-container {
    position: relative;
    max-width: 1200px;
    height: 550px; /* Reduced base height */
    margin: 0 auto;
    overflow: hidden;
    padding: 10px; /* Reduced internal padding */
    perspective: 1200px;
}
.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}
.slide {
    position: absolute;
    width: 320px; /* Much larger image width */
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.slide.active { opacity: 1; transform: translateX(0) scale(1.15) translateZ(0); z-index: 10; pointer-events: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); }
.slide.prev-1 { opacity: 0.8; transform: translateX(-220px) scale(0.9) translateZ(-100px) rotateY(25deg); z-index: 9; }
.slide.next-1 { opacity: 0.8; transform: translateX(220px) scale(0.9) translateZ(-100px) rotateY(-25deg); z-index: 9; }
.slide.prev-2 { opacity: 0.5; transform: translateX(-400px) scale(0.75) translateZ(-200px) rotateY(35deg); z-index: 8; }
.slide.next-2 { opacity: 0.5; transform: translateX(400px) scale(0.75) translateZ(-200px) rotateY(-35deg); z-index: 8; }
.slide img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}
.slider-btn.prev, .slider-btn.prev-feature { left: 0; }
.slider-btn.next, .slider-btn.next-feature { right: 0; }

/* 5. Bhajans Section (3D) */
.bhajan-3d-wrapper {
    background: linear-gradient(135deg, rgba(20,10,5,0.9) 0%, rgba(30,20,15,0.8) 100%);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(245, 166, 35, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform;
}
.bhajan-3d-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    transform-style: preserve-3d;
}
.bhajan-3d-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}
.bhajan-placeholder-img {
    width: 100%;
    border-radius: 24px;
    transition: opacity 0.4s ease;
    display: block;
}
.bhajan-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}
.bhajan-3d-image.playing .bhajan-placeholder-img {
    opacity: 0;
}
.bhajan-3d-image.playing .bhajan-hover-video {
    opacity: 1;
}
.bhajan-3d-image.playing .floating-play-btn {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
}
.floating-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(60px);
    background: var(--primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 15px 30px rgba(245, 166, 35, 0.5);
    cursor: pointer;
    transition: transform 0.3s;
}
.floating-play-btn:hover { transform: translate(-50%, -50%) translateZ(90px) scale(1.1); }
.bhajan-3d-text {
    transform: translateZ(50px);
}
.category-badges-3d {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
    transform: translateZ(60px);
}
.badge-3d-item {
    background: rgba(255,255,255,0.08);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateZ(30px);
}
.badge-3d-item:hover, .badge-3d-item.active {
    background: linear-gradient(135deg, #f39c12, #e67e22, #c0392b);
    color: white;
    border-color: transparent;
    transform: scale(1.15) translateZ(40px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.5);
}
.bhajan-features-3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    transform: translateZ(70px);
}
.b-feat-3d {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    background: rgba(245, 166, 35, 0.05);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(245, 166, 35, 0.2);
}
.b-feat-3d i { color: var(--primary); font-size: 1.5rem; }





/* 8. How It Works */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.steps-container::before {
    content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
    height: 2px; background: var(--border-light); z-index: 0;
}
.step-box {
    position: relative; z-index: 1; text-align: center; width: 22%;
}
.step-icon {
    width: 80px; height: 80px; background: var(--bg-dark); border: 2px solid var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary); margin: 0 auto 20px auto;
}
.step-box h4 { margin-bottom: 10px; color: white; }

/* 9. Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.testi-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(20,10,5,0.2));
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.testi-card:hover { transform: translateY(-5px); }
.testi-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    transform: translateZ(30px);
}
.testi-header img { width: 55px; height: 55px; border-radius: 50%; border: 2px solid var(--primary); }
.testi-header h4 { margin: 0; color: white; font-size: 1.1rem; }
.stars { color: #f5a623; font-size: 0.95rem; margin-top: 4px; display: inline-block; }
.testi-card p { font-size: 1.05rem; font-style: italic; opacity: 0.9; transform: translateZ(20px); }

/* 10. Contact Us */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: linear-gradient(145deg, var(--bg-card), rgba(20,10,5,0.2));
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform;
}
.contact-info, .contact-form { transform: translateZ(40px); }
.contact-info h3 { font-size: 2rem; color: white; margin-bottom: 15px; }
.contact-info p { margin-bottom: 30px; }
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
}
.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 1.05rem;
    font-family: inherit;
    transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}

/* 11. FAQ (Accordion) */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 20px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 600; font-size: 1.1rem;
}
.faq-icon { color: var(--primary); transition: transform 0.3s; }
.faq-answer {
    padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; color: var(--text-muted);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { padding: 0 20px 20px 20px; max-height: 200px; }

/* 11. Download CTA */
.download-section { padding: 80px 0; margin-bottom: 0px; position: relative; z-index: 10; margin-top: 50px; }
.download-box {
    background: linear-gradient(135deg, #f39c12, #e67e22, #c0392b);
    border-radius: 40px;
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 30px 60px rgba(192, 57, 43, 0.5);
    border: 2px solid rgba(255,255,255,0.2);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    will-change: transform;
}
.download-text, .store-btns, .qr-code { transform: translateZ(50px); }
.download-text h2 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 800; line-height: 1.1; }
.download-text p { color: rgba(255,255,255,0.9); font-size: 1.3rem; margin-bottom: 30px; }
.store-btns { display: flex; gap: 15px; }
.store-btn {
    background: #000; color: white; padding: 12px 25px; border-radius: 15px;
    display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.1rem; font-weight: 600;
}
.store-btn i { font-size: 1.8rem; }
.qr-code { background: white; padding: 15px; border-radius: 15px; }
.qr-code img { width: 120px; height: 120px; }

/* 12. Footer */
footer {
    background: #0a0605;
    padding: 80px 0 60px 0; /* Reduced top and bottom spacing */
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 { color: white; font-size: 1.2rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--primary); }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: white; transition: background 0.3s;
}
.social-links a:hover { background: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; font-size: 0.9rem; }

/* Media Queries */
@media (max-width: 992px) {
    .about-3d-content { grid-template-columns: 1fr; }
    .floating-stat { left: 20px; }
    .pooja-tab-grid { grid-template-columns: 1fr; }
    .pooja-image-box { height: 300px; margin-top: 20px; }
    .pooja-tabs { flex-wrap: wrap; }
    .bhajan-3d-content { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; padding: 30px; }
    .download-box { flex-direction: column; text-align: center; gap: 40px; }
    .store-btns { justify-content: center; }
    .steps-container { flex-direction: column; gap: 40px; }
    .steps-container::before { display: none; }
    .step-box { width: 100%; }
    .slider-container { height: 450px; }
}
@media (max-width: 768px) {
    section { padding: 40px 0; }
    .hero { padding-top: 100px; }
    .about-3d-wrapper, .bhajan-3d-wrapper { padding: 30px 20px; }
    .pooja-tab-container { padding: 25px 15px; }
    .contact-layout { padding: 25px 15px; }
    .download-box { padding: 30px 20px; }
    footer { padding: 50px 0 30px 0; }
    .page-header { padding: 120px 0 30px; }
    .page-content { padding: 20px 15px 50px; }
    .slider-container { height: 350px; }
    .nav-links {
        display: none; position: absolute; top: 80px; left: 0; width: 100%;
        background: var(--bg-glass); backdrop-filter: blur(15px); flex-direction: column;
        align-items: center; padding: 20px 0;
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .nav-container .btn-cta { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .floating-el { display: none; }
    .feature-card { min-width: calc(50% - 15px); } /* Show 2 on tablet */
    .stat-box { width: 45%; }
}
@media (max-width: 480px) {
    .feature-card { min-width: 100%; }
    .stat-box { width: 100%; }
    .store-btns { flex-direction: column; }
    .slider-container { height: 300px; }
}

/* Inner Pages */
.page-header {
    padding: 140px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(20,10,5,0.9), var(--bg-color));
}
.page-header h1 { font-size: 3.5rem; color: var(--primary); margin-bottom: 15px; }
.page-header p { font-size: 1.2rem; opacity: 0.8; }
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 80px;
    font-size: 1.1rem;
    line-height: 1.8;
}
.page-content h2 { color: white; margin-top: 40px; margin-bottom: 20px; font-size: 1.8rem; }

/* Media Cards for Bhajan Sandhya */
.audio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 50px; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.media-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden; padding: 20px; transition: transform 0.3s; }
.media-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); border-color: rgba(245, 166, 35, 0.2); }
.audio-card { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.audio-card .media-icon { width: 50px; height: 50px; background: rgba(245, 166, 35, 0.1); color: var(--primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }
.audio-card .media-info { flex: 1; min-width: 150px; }
.audio-card .media-info h4 { margin: 0 0 5px 0; color: #fff; font-size: 1.1rem; }
.audio-card .media-info p { margin: 0; color: #888; font-size: 0.9rem; }
.audio-card audio { width: 100%; margin-top: 15px; height: 40px; border-radius: 20px; }
.audio-card audio::-webkit-media-controls-panel { background: rgba(245, 166, 35, 0.1); color: white; }

.video-card { padding: 0; }
.video-card video { width: 100%; height: 250px; object-fit: cover; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); }
.video-card .video-info { padding: 20px; }
.video-card .video-info { padding: 20px; }
.video-card .video-info h4 { margin: 0; color: #fff; font-size: 1.2rem; }

/* Full Page Gallery */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.gallery-overlay span {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .video-grid { grid-template-columns: 1fr; }
    .full-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
}
