/* ==========================================
   SHREE POOJA - PREMIUM CSS DESIGN SYSTEM
   ========================================== */

/* Variables & Theme Tokens */
:root {
    --primary-saffron: #FF7A00;
    --primary-saffron-dark: #E05300;
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4BA;
    --accent-red: #A30000;
    --navy-blue: #0F172A;
    --navy-blue-light: #1E293B;
    --bg-ivory: #FCFAF7;
    --bg-card: #FFFFFF;
    --text-dark: #1E293B;
    --text-light: #FFFFFF;
    --text-muted: #64748B;
    --border-color: #E2E8F0;

    /* Gradients */
    --gradient-saffron: linear-gradient(135deg, #FF9F43 0%, #FF5252 100%);
    --gradient-gold: linear-gradient(135deg, #FAD961 0%, #F76B1C 100%);
    --gradient-divine: linear-gradient(135deg, #FFE082 0%, #FFB300 50%, #FF6F00 100%);
    --gradient-navy: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-soft: linear-gradient(180deg, #FCFAF7 0%, #FFFFFF 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 24px rgba(212, 175, 55, 0.08);
    --shadow-lg: 0 15px 35px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 122, 0, 0.4);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: var(--bg-ivory);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: var(--navy-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-saffron);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}

.btn-outline {
    border-color: var(--primary-gold);
    color: var(--primary-saffron-dark);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Immersive Ambient Music Indicator */
.audio-control {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-gold);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.85rem;
}

.audio-control:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: var(--shadow-glow);
}

.audio-control i {
    color: var(--primary-saffron);
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(252, 250, 247, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
    box-sizing: border-box;
    max-width: 100%;
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: translateY(-2px) scale(1.05);
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(255, 122, 0, 0.25));
}

.logo-text {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.logo-text .highlight {
    background: linear-gradient(135deg, var(--primary-saffron) 0%, #FF3D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Swastika Logo Animations */
@keyframes swastikaBreathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(1.08);
    }
}

.logo-swastika-group {
    transform-origin: 50px 50px;
    animation: swastikaBreathe 4s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.logo:hover .logo-swastika-group {
    animation: none;
    transform: rotate(90deg) scale(1.05);
}

.logo-glow {
    transform-origin: 50px 50px;
    animation: glowPulse 3.5s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 700;
    color: var(--navy-blue-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-saffron-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-saffron);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    padding: 9px 20px;
    font-size: 0.85rem;
    height: 40px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-blue);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 2px solid var(--primary-gold-light);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/* Hero Banner Slider Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 560px;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.hero-slider-overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-slide-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding: 40px 20px;
    z-index: 2;
    position: relative;
    height: 100%;
}

.badge-trust-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: #FFE082;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
}

.hero-slide-title {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #FFFFFF !important;
}

.hero-slide-title .highlight-gold {
    color: #FFD54F;
    background: linear-gradient(135deg, #FFE082 0%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slide-subtitle {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin-bottom: 35px;
    max-width: 580px;
    line-height: 1.6;
}

.hero-slide-buttons {
    display: flex;
    gap: 15px;
}

.hero-slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    max-width: 100%;
    max-height: 380px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: floating 6s ease-in-out infinite;
    object-fit: contain;
}

/* Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.hero-slider-btn:hover {
    background: #ffffff;
    color: var(--navy-blue);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-slider-btn.prev {
    left: 24px;
}

.hero-slider-btn.next {
    right: 24px;
}

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-gold);
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Devotional Shortcuts Section */
.shortcuts-section {
    background-color: #f8fafc;
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.shortcuts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shortcut-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.03);
    overflow: hidden;
    min-height: 250px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.shortcut-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
}

.shortcut-info {
    z-index: 2;
}

.shortcut-info h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 6px;
}

.shortcut-info p {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
}

.shortcut-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}

.shortcut-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.shortcut-card:hover .shortcut-img {
    transform: scale(1.05);
}

.shortcut-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #8E24AA;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    z-index: 2;
    margin-top: auto;
}

.shortcut-card:hover .shortcut-arrow-btn {
    background: #7B1FA2;
    transform: scale(1.1);
}

/* Special styling for dark green card */
.shortcut-card.special-green {
    background-color: #17423c;
}

.shortcut-card.special-green .shortcut-info h3 {
    color: #ffffff;
}

/* Trust Stats Section */
.trust-stats-section {
    background: #0d213f;
    padding: 80px 0;
    color: var(--text-light);
    position: relative;
    z-index: 10;
}

.stats-container-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.stats-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-tagline {
    color: #58a6ff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-title {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    text-align: left;
}

.stats-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
    text-align: left;
}

.stats-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.stat-grid-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.stat-card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-card-icon-wrapper.prayer-icon {
    background: rgba(251, 113, 133, 0.12);
    color: #fb7185;
}

.stat-card-icon-wrapper.star-icon {
    background: rgba(234, 179, 8, 0.12);
    color: #facc15;
}

.stat-card-icon-wrapper.globe-icon {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.stat-card-icon-wrapper.fire-icon {
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
}

.stat-card-text h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Noto Sans', sans-serif;
}

.stat-card-text p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Section Common Styles */
section {
    padding: 54px 0px;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-saffron-dark);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Interactive Hub (Panchang & Horoscope) */
.interactive-hub {
    background-color: #FAF5EE;
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.hub-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.widget-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--primary-saffron);
}

.panchang-date {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-saffron-dark);
    background: rgba(255, 122, 0, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
}

.panchang-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.panchang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--bg-ivory);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.panchang-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.panchang-item .value {
    font-weight: 700;
    color: var(--navy-blue-light);
    font-size: 0.95rem;
}

.panchang-item.auspicious {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.panchang-item.auspicious .value {
    color: #27ae60;
}

.panchang-item.inauspicious {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.panchang-item.inauspicious .value {
    color: #c0392b;
}

.text-green {
    color: #27ae60;
    margin-right: 5px;
}

.text-red {
    color: #c0392b;
    margin-right: 5px;
}

.widget-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-ivory);
    color: var(--primary-saffron-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.widget-action:hover {
    background: var(--primary-gold-light);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

/* Horoscope Widget Details */
.badge-accent {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent-red);
    padding: 5px 12px;
    border-radius: 50px;
}

.zodiac-carousel-wrapper {
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold-light) transparent;
}

.zodiac-carousel-wrapper::-webkit-scrollbar {
    height: 4px;
}

.zodiac-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-gold-light);
    border-radius: 4px;
}

.zodiac-grid {
    display: flex;
    gap: 12px;
}

.zodiac-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 78px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: var(--bg-ivory);
}

.zodiac-item:hover,
.zodiac-item.active {
    background: var(--gradient-saffron);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 12px rgba(255, 122, 0, 0.2);
    transform: translateY(-3px);
}

.zodiac-item i {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--primary-gold);
}

.zodiac-item:hover i,
.zodiac-item.active i {
    color: #fff;
}

.zodiac-item span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.horoscope-content-box {
    background: var(--bg-ivory);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.horoscope-active-sign {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.sign-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-saffron-dark);
}

.sign-date-range {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.horoscope-text {
    font-size: 0.95rem;
    color: var(--navy-blue-light);
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 75px;
}

.horoscope-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    padding-top: 15px;
}

.horo-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.horo-stat-item .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #F1C40F;
    font-size: 0.8rem;
}

/* Special Pujas Cards Grid */
.pujas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.puja-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.puja-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 122, 0, 0.15);
}

.puja-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
}

.puja-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.puja-card:hover .puja-image-container img {
    transform: scale(1.06);
}

.puja-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.72rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.puja-badge.live {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.puja-badge.live i {
    animation: flash 1s infinite alternate;
}

.puja-badge.premium {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.puja-badge.budget {
    background: linear-gradient(135deg, #10b981, #059669);
}

.puja-countdown {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    text-align: center;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.time-block {
    color: #ffb700;
    font-weight: 700;
}

.puja-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.puja-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    align-self: flex-start;
}

/* Category styles match screenshot categories */
.puja-card:nth-child(1) .puja-category {
    background-color: #fff7ed;
    color: #ea580c;
}

.puja-card:nth-child(2) .puja-category {
    background-color: #eff6ff;
    color: #1d4ed8;
}

.puja-card:nth-child(3) .puja-category {
    background-color: #fef2f2;
    color: #b91c1c;
}

.puja-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.puja-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
    min-height: 62px !important;
}


.puja-details {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.puja-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
}

.puja-detail i {
    color: #f97316;
    font-size: 0.9rem;
    width: 16px;
}

.puja-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.puja-price {
    display: block !important;
}

.puja-price .currency {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ea580c !important;
    display: inline !important;
    margin-right: 1px !important;
}

.puja-price .amount {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #ea580c !important;
    display: inline !important;
}

.puja-price .price-desc {
    font-size: 0.72rem !important;
    color: #64748b !important;
    margin-top: 2px !important;
    display: block !important;
}

.puja-card .puja-footer .btn {
    background: linear-gradient(135deg, #ff7a00, #ff5100) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 4px 12px rgba(255, 81, 0, 0.25) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: auto !important;
}

.puja-card .puja-footer .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(255, 81, 0, 0.35) !important;
}

.puja-card .puja-footer .btn i {
    font-size: 0.85rem !important;
    transition: transform 0.2s ease !important;
}

.puja-card .puja-footer .btn:hover i {
    transform: translateX(3px) !important;
}

/* Virtual Temple Room */
.virtual-temple-section {
    background: radial-gradient(circle at center, #2C0F08 0%, #150502 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
}

.virtual-temple-section .section-title {
    color: #FFE082;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.virtual-temple-section .section-desc {
    color: #BCAAA4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.virtual-temple-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
    max-width: 100%;
}

.temple-info {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.temple-instructions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E64A19;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.instruction-step span {
    font-size: 0.95rem;
    color: #D7CCC8;
}

.temple-buttons {
    display: flex;
    gap: 15px;
}

.temple-buttons .btn-outline {
    border-color: #D4AF37;
    color: #D4AF37;
}

.temple-buttons .btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* Virtual Temple Responsive Rules */
@media (max-width: 991px) {
    .virtual-temple-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .virtual-temple-section .section-title {
        font-size: clamp(1.5rem, 5vw, 2.1rem);
        line-height: 1.3;
    }

    .temple-instructions {
        text-align: left;
        max-width: 540px;
        margin: 25px auto;
    }

    .temple-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .temple-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 24px;
    }
}

@media (max-width: 576px) {
    .virtual-temple-section {
        padding: 40px 12px;
    }

    .virtual-temple-section .section-title {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .virtual-temple-section .section-desc {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word;
    }

    .temple-instructions {
        gap: 14px;
        margin: 20px 0;
        padding: 0 4px;
        max-width: 100%;
    }

    .instruction-step {
        gap: 12px;
        align-items: flex-start;
        text-align: left;
    }

    .instruction-step span {
        font-size: 0.86rem;
        line-height: 1.45;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .step-num {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .temple-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .temple-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
        font-size: 0.88rem !important;
        padding: 11px 18px !important;
    }

    .temple-frame-decor {
        width: 100% !important;
        max-width: 310px !important;
        height: 400px !important;
        border-width: 10px !important;
    }
}

/* The Temple Altar Box styling */
.temple-interactive-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.temple-frame-decor {
    position: relative;
    width: 380px;
    height: 480px;
    background: linear-gradient(180deg, #3E2723 0%, #1A0C0A 100%);
    border: 15px solid #5D4037;
    border-image: linear-gradient(to bottom, #8D6E63, #4E342E, #3E2723) 15;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 25px;
    overflow: hidden;
}

.temple-frame-decor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0,0 Q10,15 20,0 Q30,15 40,0 L40,20 L0,20 Z' fill='%235D4037' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
    z-index: 2;
}

/* Hanging Brass Bell */
.virtual-bell-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transform-origin: top center;
}

.virtual-bell-container.ring {
    animation: swingBell 1.6s ease-in-out;
}

.bell-chain {
    width: 4px;
    height: 110px;
    background: linear-gradient(to right, #D4AF37, #AA7C11, #D4AF37);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.4);
}

.bell-body {
    width: 60px;
    height: 54px;
    background: radial-gradient(ellipse at center, #FFE082 0%, #D4AF37 60%, #8C6B00 100%);
    border-radius: 50% 50% 12px 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    position: relative;
    border-bottom: 4px solid #AA7C11;
}

.bell-clapper {
    position: absolute;
    bottom: -15px;
    left: 27px;
    width: 8px;
    height: 20px;
    background: #AA7C11;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transform-origin: top center;
}

.virtual-bell-container.ring .bell-clapper {
    animation: swingClapper 1.6s ease-in-out;
}

.bell-ripple {
    position: absolute;
    top: 140px;
    width: 0px;
    height: 0px;
    border: 3px solid rgba(255, 224, 130, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    left: 50%;
}

.bell-ripple.active {
    animation: rippleRing 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Deity Altar Inside frame */
.deity-altar {
    margin-bottom: 30px;
    z-index: 1;
    opacity: 0.85;
}

.deity-svg {
    width: 140px;
    height: 140px;
}

.altar-halo {
    fill: none;
    stroke: rgba(255, 224, 130, 0.15);
    stroke-width: 2;
    stroke-dasharray: 4, 4;
    animation: spin 30s linear infinite;
    transform-origin: center;
}

.deity-silhouette {
    fill: #E64A19;
    opacity: 0.12;
    filter: blur(1px);
}

/* Diya inside Temple Altar */
.altar-diya-container {
    width: 80px;
    height: 60px;
    position: relative;
    cursor: pointer;
    z-index: 8;
}

.virtual-diya-body {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 32px;
    background: radial-gradient(ellipse at center, #8E24AA 0%, #4A148C 100%);
    border-radius: 50% 50% 12px 12px;
    border-top: 3px solid #D4AF37;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.virtual-diya-wick {
    position: absolute;
    bottom: 27px;
    left: 38px;
    width: 5px;
    height: 10px;
    background: #000;
    border-radius: 2px;
}

.virtual-diya-flame {
    position: absolute;
    bottom: 32px;
    left: 32px;
    width: 16px;
    height: 28px;
    background: linear-gradient(to top, #FF3D00, #FFE082);
    border-radius: 50% 50% 20% 20%;
    transform-origin: bottom center;
    animation: flicker 1.5s ease-in-out infinite alternate;
    box-shadow: 0 0 15px rgba(255, 145, 0, 0.8);
    transition: var(--transition-smooth);
}

.virtual-diya-glow {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 224, 130, 0.4) 0%, rgba(255, 122, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition-smooth);
    animation: glowPulse 2s infinite;
}

/* Altar Incense Sticks */
.incense-stick-left,
.incense-stick-right {
    position: absolute;
    bottom: 25px;
    width: 4px;
    height: 60px;
    z-index: 5;
}

.incense-stick-left {
    left: 40px;
    transform: rotate(-15deg);
}

.incense-stick-right {
    right: 40px;
    transform: rotate(15deg);
}

.stick {
    width: 3px;
    height: 50px;
    background: #5D4037;
    border-radius: 2px;
}

.smoke-stream {
    width: 2px;
    height: 0px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 6px #fff;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: 0;
    animation: riseSmoke 4s infinite linear;
}

/* Services Grid offerings */
.services-grid-section {
    background: var(--bg-ivory);
}

.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-box-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.service-box-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold-light);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.icon-box.saffron {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary-saffron);
}

.icon-box.gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.icon-box.purple {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.icon-box.blue {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.service-box-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.service-box-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* App Promotion Banner */
.app-promo-banner {
    background: var(--gradient-navy);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.promo-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.promo-content h2 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-content p {
    color: #94A3B8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.store-badge.border-light {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.promo-phones-img {
    width: 320px;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.5));
}

/* Testimonials Carousel */
.testimonials {
    background: #ffffff;
    padding: 80px 0;
}

.reviews-slider-outer {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-item-card {
    flex: 0 0 calc(25% - 18px);
    display: flex;
    flex-direction: column;
    min-height: 330px;
}

.review-content-card {
    background: #f1f5f9;
    border-radius: 16px;
    height: 240px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.review-content-card.video-card {
    padding: 0;
    position: relative;
}

.review-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #000000;
}

.review-text-quote {
    font-size: 0.95rem;
    color: #475569;
    font-style: italic;
    line-height: 1.65;
    text-align: left;
    margin: 0;
    font-weight: 500;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-left: 4px;
}

.review-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-meta h4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.review-user-meta span {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    display: block;
}

.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews-ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reviews-ctrl-btn.prev {
    background: #e2e8f0;
    color: #475569;
}

.reviews-ctrl-btn.prev:hover {
    background: #cbd5e1;
}

.reviews-ctrl-btn.next {
    background: #f97316;
    color: #ffffff;
}

.reviews-ctrl-btn.next:hover {
    background: #ea580c;
}

.reviews-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #f97316;
}

/* News Mentions */
.news-mentions {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.news-title-header {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-family: 'Noto Sans', sans-serif;
}

.news-logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.news-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-logo i {
    color: var(--primary-saffron);
}

/* Footer Section */
.footer {
    background: var(--navy-blue);
    color: #94A3B8;
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: #fff;
}

.brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.social-links a:hover {
    background: var(--gradient-saffron);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--primary-saffron);
    padding-left: 5px;
}

.address-col p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.address-col p i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.security-logos {
    font-size: 0.85rem;
    font-weight: 600;
    color: #E2E8F0;
}

.security-logos i {
    color: #2ECC71;
    margin-right: 5px;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */

@keyframes flicker {
    0% {
        transform: scale(1) rotate(-2deg);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.08) rotate(3deg);
        opacity: 1;
    }

    100% {
        transform: scale(0.95) rotate(-1deg);
        opacity: 0.85;
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
}

@keyframes flash {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes swingBell {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    15% {
        transform: translateX(-50%) rotate(18deg);
    }

    30% {
        transform: translateX(-50%) rotate(-15deg);
    }

    45% {
        transform: translateX(-50%) rotate(10deg);
    }

    60% {
        transform: translateX(-50%) rotate(-8deg);
    }

    75% {
        transform: translateX(-50%) rotate(4deg);
    }

    90% {
        transform: translateX(-50%) rotate(-2deg);
    }

    100% {
        transform: translateX(-50%) rotate(0deg);
    }
}

@keyframes swingClapper {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-25deg);
    }

    30% {
        transform: rotate(20deg);
    }

    45% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    90% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes rippleRing {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes riseSmoke {
    0% {
        top: 0;
        opacity: 0;
        transform: scaleX(1) translateX(0);
    }

    10% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.2;
        transform: scaleX(2) translateX(10px);
    }

    100% {
        top: -60px;
        opacity: 0;
        transform: scaleX(3) translateX(-15px);
    }
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .hero-slider-section {
        height: auto !important;
        min-height: 520px !important;
    }

    .hero-slide-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 40px 20px 60px 20px !important;
    }

    .hero-slide-content {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-slide-title {
        font-size: 2.1rem !important;
    }

    .hero-slide-subtitle {
        margin: 0 auto 20px auto !important;
        font-size: 0.95rem !important;
    }

    .hero-slide-buttons {
        justify-content: center !important;
    }

    .hero-slide-visual {
        justify-content: center !important;
    }

    .banner-img-srimandir {
        max-height: 240px !important;
    }

    .hub-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pujas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .services-row {
        grid-template-columns: 1fr 1fr;
    }

    .stats-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 50px 20px;
    }

    .stats-left-content {
        align-items: center;
    }

    .stats-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .stats-desc {
        text-align: center;
        margin: 0 auto;
    }

    .promo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-phones-img {
        width: 100%;
        max-width: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shortcuts-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .review-item-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .header-container {
        height: 64px !important;
        padding-left: 12px;
        padding-right: 12px;
        gap: 8px;
        justify-content: space-between;
    }

    .header-right-actions {
        gap: 6px;
        flex-shrink: 0;
    }

    .header.scrolled .header-container {
        height: 58px !important;
    }

    .logo {
        gap: 8px;
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1.15rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .user-account-pill {
        padding: 5px 10px !important;
        font-size: 0.78rem !important;
        gap: 5px !important;
        flex-shrink: 0;
        border-radius: 16px !important;
    }

    .user-account-pill i {
        font-size: 0.85rem !important;
    }

    .lang-selector-dropdown {
        margin-left: 0 !important;
        flex-shrink: 0;
    }

    .lang-selector-btn {
        padding: 5px 9px;
        font-size: 0.78rem;
        gap: 4px;
    }

    .lang-selector-btn i.fa-globe {
        font-size: 0.82rem;
    }

    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 4px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .mobile-nav {
        top: 64px;
        z-index: 999;
    }

    .header.scrolled + .mobile-nav,
    .header.scrolled ~ .mobile-nav {
        top: 58px;
    }

    .virtual-temple-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }

    .temple-instructions {
        text-align: left;
        max-width: 540px;
        margin: 20px auto;
    }

    .temple-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 58px !important;
        padding-left: 8px;
        padding-right: 8px;
        gap: 6px;
    }

    .header-right-actions {
        gap: 4px !important;
    }

    .header.scrolled .header-container {
        height: 54px !important;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1.02rem;
    }

    .user-account-pill {
        padding: 4px 8px !important;
        font-size: 0.74rem !important;
        gap: 3px !important;
    }

    .lang-selector-btn {
        padding: 4px 7px;
        font-size: 0.74rem;
        gap: 3px;
    }

    .lang-selector-btn i.fa-chevron-down {
        display: none !important;
    }

    .mobile-nav {
        top: 58px;
    }
}

@media (max-width: 375px) {
    .header-container {
        padding-left: 6px;
        padding-right: 6px;
        gap: 4px;
    }

    .header-right-actions {
        gap: 3px !important;
    }

    .logo {
        gap: 5px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .user-account-pill {
        padding: 4px 6px !important;
        font-size: 0.7rem !important;
    }

    .lang-selector-btn {
        padding: 4px 5px;
        font-size: 0.7rem;
    }

    .mobile-nav-toggle {
        font-size: 1.15rem;
        padding: 2px 4px;
    }
}

@media (max-width: 330px) {
    .user-account-pill span {
        display: none !important;
    }

    .user-account-pill {
        padding: 5px !important;
        border-radius: 50% !important;
        width: 28px;
        height: 28px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .pujas-grid {
        grid-template-columns: 1fr;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-right-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-grid-card {
        align-items: center;
        text-align: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-slider-section {
        height: 520px;
    }

    .hero-slide-title {
        font-size: 1.8rem;
    }

    .banner-img {
        max-height: 180px;
    }

    .shortcuts-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .shortcut-card {
        min-height: 220px;
        padding: 20px 16px;
    }

    .review-item-card {
        flex: 0 0 100%;
    }
}

/* Chadhava Page Hero Section styles */
.chadhava-hero-section {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    padding: 60px 0;
    margin-top: 0;
}

.chadhava-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.chadhava-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chadhava-hero-title {
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    /* Slate-900 */
    line-height: 1.4 !important;
    margin: 0 !important;
}

.chadhava-bullet-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chadhava-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}

.chadhava-bullet-icon {
    color: #ff7a00;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
}

.chadhava-buttons-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.btn-chadhava-view {
    background-color: #098263;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(9, 130, 99, 0.15);
}

.btn-chadhava-view:hover {
    background-color: #076b51;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(9, 130, 99, 0.25);
}

.btn-chadhava-works {
    background-color: #ffffff;
    color: #334155 !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-chadhava-works:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
}

.chadhava-hero-image-box {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.chadhava-hero-image {
    max-width: 100%;
    max-height: 380px;
    height: auto;
    object-fit: contain;
}

/* Responsive Chadhava Hero styles */
@media (max-width: 1024px) {
    .chadhava-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chadhava-hero-image-box {
        justify-content: center;
        text-align: center;
    }

    .chadhava-hero-image {
        max-height: 280px;
    }

    .chadhava-hero-title {
        font-size: 1.8rem !important;
    }
}

/* ==========================================================================
   AUTHENTICATION & USER DASHBOARD
   ========================================================================== */

/* Auth Layout */
.auth-wrapper {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 10% 20%, rgba(254, 243, 199, 0.4) 0%, rgba(255, 255, 255, 0) 90%), var(--bg-cream-light);
    padding: 40px 20px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 460px;
    padding: 40px;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.auth-card:hover {
    box-shadow: 0 30px 60px rgba(255, 122, 0, 0.06);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 0.95rem;
    color: var(--navy-blue-light);
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--navy-blue);
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.auth-input:focus {
    border-color: var(--primary-saffron);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.15);
    background: #fff;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-saffron) 0%, #FF5722 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--navy-blue-light);
}

.auth-footer a {
    color: var(--primary-saffron);
    font-weight: 700;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-errors {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #DC2626;
    font-size: 0.85rem;
}

.auth-errors ul {
    margin: 5px 0 0 15px;
    padding: 0;
}

/* Dashboard Layout */
.dashboard-wrapper {
    background: var(--bg-cream-light);
    min-height: calc(100vh - 180px);
    padding: 40px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.dashboard-user-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 6px;
}

.dashboard-user-info p {
    color: var(--navy-blue-light);
    font-size: 0.95rem;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
}

.logout-btn {
    padding: 12px 24px;
    background: #fff;
    color: #DC2626;
    border: 1.5px solid rgba(220, 38, 38, 0.15);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.logout-btn:hover {
    background: rgba(220, 38, 38, 0.05);
    border-color: #DC2626;
}

.dashboard-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.dashboard-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card-title i {
    color: var(--primary-saffron);
}

/* Booking Cards */
.booking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-item {
    background: var(--bg-cream-light);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 600px) {
    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.booking-details h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.booking-details p {
    font-size: 0.9rem;
    color: var(--navy-blue-light);
    margin-bottom: 4px;
}

.booking-details .booking-meta {
    font-size: 0.85rem;
    color: var(--navy-blue-light);
    opacity: 0.8;
}

.booking-status {
    text-align: right;
}

@media (max-width: 600px) {
    .booking-status {
        text-align: left;
    }
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge.confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

/* Horoscope/Rashifal Widget */
.horoscope-widget {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1E293B 100%);
    color: #fff;
}

.horoscope-widget .dashboard-card-title {
    color: #fff;
}

.horoscope-widget .dashboard-card-title i {
    color: #FBBF24;
}

.rashi-tag {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 10px;
}

.horoscope-section {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.horoscope-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.horoscope-section h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94A3B8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horoscope-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #E2E8F0;
}

/* Sidebar Filter Scrollbars */
.filter-options-scroll::-webkit-scrollbar {
    width: 6px;
}

.filter-options-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.filter-options-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.filter-options-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 122, 0, 0.3);
}

/* Category Checkboxes Styles */
.filter-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: #fff;
}

.filter-option input[type="checkbox"]:checked {
    background: var(--primary-saffron);
    border-color: var(--primary-saffron);
}

.filter-option input[type="checkbox"]:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 0.7rem;
}

.filter-option span {
    transition: color 0.2s ease;
}

.filter-option input[type="checkbox"]:checked+span {
    color: var(--primary-saffron);
    font-weight: 700;
}

/* Admin Form Spacing and Layout */
.form-grid {
    margin-bottom: 0px;
}

/* Responsive ePuja Two-column Grid */
@media (max-width: 992px) {
    .epuja-layout {
        grid-template-columns: 1fr !important;
    }

    .epuja-sidebar {
        position: relative !important;
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   SIDEBAR ADMIN DASHBOARD SYSTEM
   ========================================================================== */

/* ==========================================================================
   SIDEBAR ADMIN DASHBOARD SYSTEM
   ========================================================================== */

.db-container {
    display: flex;
    min-height: 100vh;
    background: #F4F7FC;
    position: relative;
}

/* Sidebar Backdrop Overlay for Mobile */
.db-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 25, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.db-container.sidebar-open .db-sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

/* Left Sidebar styling */
.db-sidebar {
    width: 260px;
    background: #09192A;
    color: #A6B9C7;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.db-logo-box {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.db-logo-box .logo-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
}

.db-sidebar-close {
    display: none;
    color: #8C9CAE;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.db-sidebar-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.db-menu-list {
    list-style: none;
    padding: 24px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.db-menu-item a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    color: #8C9CAE;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.db-menu-item a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.db-menu-item a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.db-menu-item.active a {
    color: #fff;
    background: #1890FF;
    border-left-color: #1890FF;
}

/* Right Workspace styling */
.db-workspace {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

.db-top-header {
    height: 70px;
    background: #fff;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.db-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--navy-blue);
    font-size: 1.1rem;
    font-weight: 800;
    min-width: 0;
}

.db-header-left span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.db-sidebar-toggle-btn {
    font-size: 1.25rem;
    color: #7A8B9C;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.db-sidebar-toggle-btn:hover {
    color: var(--navy-blue);
    background: #F4F7FC;
}

.db-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.db-header-icon {
    font-size: 1.15rem;
    color: #7A8B9C;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.db-header-icon:hover {
    color: var(--navy-blue);
}

.db-notification-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #FF4D4F;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-profile-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.db-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(24, 144, 255, 0.2);
}

.db-profile-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-blue);
}

/* Content Area styling */
.db-content-area {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

/* Responsive Page Header */
.db-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.db-page-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive Table Wrapper */
.db-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* Mobile & Tablet Drawer Breakpoints */
@media (max-width: 991px) {
    .db-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 270px;
        transform: translateX(-100%);
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.25);
    }

    .db-container.sidebar-open .db-sidebar {
        transform: translateX(0);
    }

    .db-sidebar-close {
        display: flex;
    }

    .db-top-header {
        padding: 0 20px;
    }

    .db-content-area {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .db-page-header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .db-page-header-actions {
        width: 100%;
    }

    .db-page-header-actions .auth-btn,
    .db-page-header-actions a {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }

    .db-top-header {
        padding: 0 16px;
    }

    .db-header-right {
        gap: 14px;
    }

    .db-profile-name {
        display: none;
    }

    .db-content-area {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .db-header-icon.hide-mobile {
        display: none;
    }

    .db-header-left span {
        font-size: 0.95rem;
    }
}


/* Metrics Row styling */
.db-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .db-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .db-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.db-metric-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.db-metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8C9CAE;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.db-metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.db-metric-ratio {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ratio-up {
    color: #52C41A;
}

.ratio-down {
    color: #FF4D4F;
}

.db-metric-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 12px;
    font-size: 0.85rem;
    color: #595959;
}

/* Chart and lists wrapper */
.db-chart-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 24px;
}

@media (max-width: 992px) {
    .db-chart-grid {
        grid-template-columns: 1fr;
    }
}

.db-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.db-card-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 24px;
}

/* SVG Chart visual styling */
.svg-chart-container {
    width: 100%;
    height: 250px;
    margin-top: 10px;
}

/* Ranking list styling */
.db-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.db-ranking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--navy-blue-light);
}

.db-ranking-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ranking-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F4F7FC;
    color: var(--navy-blue);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-badge.top-rank {
    background: #1890FF;
    color: #fff;
}

.db-ranking-name {
    font-weight: 700;
    color: var(--navy-blue);
}

.db-ranking-value {
    font-weight: 800;
    color: var(--navy-blue);
}

/* --- Custom Pagination Styles for Laravel --- */
.db-pagination nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.db-pagination nav svg {
    width: 16px !important;
    height: 16px !important;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile Pagination View (first child of nav) */
.db-pagination nav>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.db-pagination nav>div:first-child a,
.db-pagination nav>div:first-child span {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.db-pagination nav>div:first-child a:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--primary-saffron);
}

.db-pagination nav>div:first-child span {
    background: #f8fafc;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

/* Hide desktop view by default */
.db-pagination nav>div:last-child {
    display: none;
}

/* Responsive Desktop view styles */
@media (min-width: 640px) {

    /* Hide mobile view on desktop */
    .db-pagination nav>div:first-child {
        display: none !important;
    }

    /* Show desktop view */
    .db-pagination nav>div:last-child {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}

.db-pagination nav>div:last-child>div:first-child p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.db-pagination nav>div:last-child>div:first-child p span {
    font-weight: 700;
    color: var(--navy-blue);
}

/* Container for page numbers & arrows */
.db-pagination nav>div:last-child>div:last-child span.relative.z-0 {
    display: inline-flex;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 2px;
}

/* Page items (links/spans) */
.db-pagination nav>div:last-child>div:last-child a,
.db-pagination nav>div:last-child>div:last-child span.relative.z-0>span,
.db-pagination nav>div:last-child>div:last-child span.relative.z-0>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    margin: 0 2px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    color: #475569;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* Hover effect */
.db-pagination nav>div:last-child>div:last-child a:hover,
.db-pagination nav>div:last-child>div:last-child span.relative.z-0>a:hover {
    background: #f1f5f9;
    color: var(--primary-saffron);
}

/* Active Page */
.db-pagination nav>div:last-child>div:last-child span.relative.z-0 span[aria-current="page"]>span,
.db-pagination nav>div:last-child>div:last-child span.relative.z-0 span[aria-current="page"]>a {
    background: var(--navy-blue) !important;
    color: #fff !important;
    border-color: var(--navy-blue) !important;
}

/* Disabled items (arrows) */
.db-pagination nav>div:last-child>div:last-child span.relative.z-0 span[aria-disabled="true"]>span {
    color: #cbd5e1 !important;
    background: transparent !important;
    cursor: not-allowed;
}

/* Green Full-Width Participate Button */
.btn-participate-green {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    background: #098263 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 13px 20px !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    margin-top: 16px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.btn-participate-green:hover {
    background: #06694f !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(9, 130, 99, 0.25) !important;
}

.btn-participate-green i {
    font-size: 0.9rem !important;
    transition: transform 0.2s ease !important;
}

.btn-participate-green:hover i {
    transform: translateX(4px) !important;
}

.puja-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid #edf2f7 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.puja-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09) !important;
}

.puja-card .puja-image-container img {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

/* ==========================================
   SRI MANDIR FULL PAGE HERO BANNER & RIBBON
   ========================================== */
.btn-srimandir-white {
    display: inline-block !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.25s ease !important;
}

.btn-srimandir-white:hover {
    background: #f8fafc !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
}

.banner-img-srimandir {
    max-width: 100% !important;
    max-height: 440px !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.12) !important;
    transition: all 0.35s ease !important;
}

.banner-img-srimandir:hover {
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65) !important;
}

.hero-slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(6px) !important;
    transition: all 0.25s ease !important;
}

.hero-slider-btn:hover {
    background: #ffffff !important;
    color: #111827 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.hero-slider-btn.prev {
    left: 24px !important;
}

.hero-slider-btn.next {
    right: 24px !important;
}

.indicator-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.indicator-dot.active {
    width: 32px !important;
    border-radius: 10px !important;
    background: #ffffff !important;
}

.srimandir-trust-ribbon {
    background: linear-gradient(90deg, #FF9F00 0%, #FF7A00 100%) !important;
    padding: 14px 0 !important;
    border-bottom: 4px solid #D4AF37 !important;
    position: relative !important;
    z-index: 5 !important;
}

.trust-ribbon-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 25px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    flex-wrap: wrap !important;
}

.ribbon-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.ribbon-item i {
    font-size: 1.1rem !important;
    color: #ffffff !important;
}

.ribbon-dot {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.1rem !important;
}

/* ==========================================
   HEADER LANGUAGE SELECTOR DROPDOWN STYLES
   ========================================== */
.lang-selector-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    z-index: 100;
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.lang-selector-btn:hover {
    border-color: #FF7A00;
    color: #FF7A00;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.15);
}

.lang-selector-btn i.fa-globe {
    color: #FF7A00;
    font-size: 0.95rem;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    min-width: 145px;
    padding: 6px;
    display: none;
    z-index: 1000;
    flex-direction: column;
    gap: 4px;
}

.lang-dropdown-menu.show {
    display: flex !important;
    animation: langFadeIn 0.2s ease forwards;
}

@keyframes langFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-option-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.lang-option-btn:hover,
.lang-option-btn.active {
    background: #FFF5EC;
    color: #FF7A00;
    font-weight: 700;
}

/* Hide default google translate toolbar element */
#google_translate_element,
.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}