
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #d4af37;
            --secondary: #8b0000;
            --light: #f8f5e6;
            --dark: #2c1810;
            --accent: #006400;
            --bg-color: #f8f5e6;
            --text-color: #2c1810;
            --card-bg: rgba(255, 255, 255, 0.85);
            --glass-bg: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
            --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
        }

        /* Theme Variables */
        .theme-classic {
            --primary: #d4af37;
            --secondary: #8b0000;
            --light: #f8f5e6;
            --dark: #2c1810;
            --accent: #006400;
            --bg-color: #f8f5e6;
            --text-color: #2c1810;
        }

        .theme-modern {
            --primary: #4a90e2;
            --secondary: #2c3e50;
            --light: #ecf0f1;
            --dark: #34495e;
            --accent: #27ae60;
            --bg-color: #ecf0f1;
            --text-color: #2c3e50;
        }

        .theme-spiritual {
            --primary: #9b59b6;
            --secondary: #8e44ad;
            --light: #f9ebff;
            --dark: #2c1810;
            --accent: #e74c3c;
            --bg-color: #f9ebff;
            --text-color: #2c1810;
        }

        /* Kumkum Drops Animation */
        .kumkum-drops {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9996;
            overflow: hidden;
        }

        .kumkum-drop {
            position: absolute;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, #ff6b6b, #ff4444);
            border-radius: 50%;
            animation: kumkum-fall 6s linear infinite;
            box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
        }

        @keyframes kumkum-fall {
            0% {
                transform: translateY(-20px) rotate(0deg);
                opacity: 0.8;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Sacred Om Animation */
        .sacred-om {
            position: fixed;
            font-size: 30px;
            color: rgba(255, 215, 0, 0.6);
            animation: om-float 10s ease-in-out infinite;
            pointer-events: none;
            z-index: 9995;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        }

        @keyframes om-float {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg) scale(1);
                opacity: 0;
            }
            20% {
                opacity: 0.6;
            }
            50% {
                transform: translateY(-100px) translateX(50px) rotate(180deg) scale(1.2);
                opacity: 0.8;
            }
            80% {
                opacity: 0.6;
            }
        }

        /* Pink Petals Animation */
        #petals-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            overflow: hidden;
        }

        .petal {
            position: absolute;
            font-size: 24px;
            color: #ffb6c1;
            opacity: 0.7;
            animation-name: petal-fall;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        @keyframes petal-fall {
            0% {
                transform: translateY(-50px) rotate(0deg);
                opacity: 0.7;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Flower Fall Animation */
        #flower-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            overflow: hidden;
        }

        .flower {
            position: absolute;
            font-size: 24px;
            color: #ff6b8b;
            opacity: 0.7;
            animation-name: fall;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        @keyframes fall {
            0% {
                transform: translateY(-50px) rotate(0deg);
                opacity: 0.7;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Classic Temple Theme */
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            transition: all 0.5s ease;
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1586348943529-beaae6c28db9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: -1;
        }

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

        /* Header Styles with Glass Effect */
        header {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
            color: white;
            padding: 15px 0;
            box-shadow: var(--glass-shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .logo img {
            height: 60px;
            width: auto;
            animation: logo-glow 3s ease-in-out infinite;
        }

        @keyframes logo-glow {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
            }
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .logo-text p {
            font-size: 0.9rem;
            opacity: 0.9;
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin-left: 15px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        nav ul li a:hover,
        nav ul li a.active {
            background-color: var(--primary);
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            margin-left: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(30deg) scale(1.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Page Content Styles with Glass Effect */
        .page {
            display: none;
            min-height: calc(100vh - 200px);
            padding: 40px 0;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

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

        .page-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
            font-size: 2.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary);
        }

        /* Home Page Styles */
        .hero {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            color: white;
            text-align: center;
            padding: 100px 20px;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
            animation: bounceIn 1s ease;
        }

        @keyframes bounceIn {
            0% { transform: scale(0.8); opacity: 0; }
            70% { transform: scale(1.05); }
            100% { transform: scale(1); opacity: 1; }
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            background-color: #e6c34e;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            text-align: center;
            transition: transform 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .feature-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            animation: icon-pulse 2s ease-in-out infinite;
        }

        @keyframes icon-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }

        /* Temple Highlights Slider */
        .temple-highlights {
            margin: 60px 0;
        }

        .highlights-slider {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
        }

        .highlights-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .highlight-slide {
            min-width: 100%;
            position: relative;
        }

        .highlight-slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .highlight-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px;
        }

        .highlight-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .highlight-nav button {
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .highlight-nav button:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .highlight-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .highlight-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .highlight-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* YouTube Section */
        .youtube-section {
            margin: 60px 0;
        }

        .video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .video-item {
            position: relative;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
            transition: transform 0.3s ease;
        }

        .video-item:hover {
            transform: translateY(-5px);
        }

        .video-item iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Home Gallery Section */
        .home-gallery {
            margin: 60px 0;
        }

        .home-gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .home-gallery .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 180px;
            cursor: pointer;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
        }

        .home-gallery .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .home-gallery .gallery-item:hover img {
            transform: scale(1.1);
        }

        .home-gallery .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .home-gallery .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .view-more {
            text-align: center;
            margin-top: 30px;
        }

        /* About Page Styles */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
        }

        .about-text h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        /* Volunteers Section */
        .volunteers-section {
            margin-top: 50px;
        }

        .volunteers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .volunteer-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--glass-shadow);
            text-align: center;
            transition: transform 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .volunteer-card:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .volunteer-image {
            height: 200px;
            overflow: hidden;
        }

        .volunteer-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .volunteer-info {
            padding: 20px;
        }

        .volunteer-info h4 {
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .volunteer-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .timeline {
            margin-top: 50px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 30px;
        }

        .timeline-year {
            background-color: var(--secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            margin-right: 20px;
            min-width: 120px;
            text-align: center;
        }

        .timeline-content {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            flex: 1;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        /* Events Page Styles */
        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .event-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--glass-shadow);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
            transition: transform 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
        }

        .event-date {
            background-color: var(--secondary);
            color: white;
            padding: 15px;
            text-align: center;
        }

        .event-date .day {
            font-size: 2rem;
            font-weight: bold;
        }

        .event-date .month {
            font-size: 1.2rem;
        }

        .event-content {
            padding: 20px;
        }

        .event-content h3 {
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .event-details {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        /* Gallery Page Styles */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 250px;
            cursor: pointer;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Donation Page */
        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .donation-option {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            text-align: center;
            transition: transform 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .donation-option:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .donation-option i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .donation-option h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }

        .payment-method {
            background: var(--light);
            padding: 15px;
            border-radius: 10px;
            text-align: left;
        }

        .payment-method h4 {
            color: var(--secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .payment-method p {
            margin-bottom: 10px;
        }

        .copy-btn {
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }

        .copy-btn:hover {
            background-color: #e6c34e;
        }

        .qr-code {
            margin: 20px auto;
            width: 150px;
            height: 150px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
        }

        .qr-scanner-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px 0;
        }

        .qr-scanner {
            width: 200px;
            height: 200px;
            border: 2px dashed #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            border-radius: 10px;
            background: #f9f9f9;
        }

        .scan-instructions {
            text-align: center;
            margin-top: 10px;
            font-size: 0.9rem;
            color: #666;
        }

        .donors-list {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .donors-list h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            text-align: center;
        }

        .donor-table {
            width: 100%;
            border-collapse: collapse;
        }

        .donor-table th, .donor-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .donor-table th {
            background-color: var(--light);
            color: var(--secondary);
        }

        .donor-table tr:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        /* Contact Page Styles */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .contact-info h3 {
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-detail i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-form {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.8);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #a30000;
            transform: translateY(-2px);
        }

        .map-container {
            margin-top: 40px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Footer Styles */
        footer {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            color: var(--dark);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Pooja Updates Marquee */
        .pooja-updates {
            width: 100%;
            background: rgba(255, 215, 0, 0.1);
            padding: 10px 0;
            overflow: hidden;
            border-left: 4px solid #ffd700;
            border-right: 4px solid #ffd700;
        }

        .update-container {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 15s linear infinite;
        }

        .update-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: #f5172d;
            padding-left: 100%;
            display: inline-block;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Hover to pause animation */
        .pooja-updates:hover .update-container {
            animation-play-state: paused;
        }

        /* Pooja Timings */
        .pooja-timings-wrapper {
            max-width: 900px;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
            color: #fff;
            font-family: 'Inter', sans-serif;
        }

        .pooja-timings-wrapper h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .timings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .timing-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px) saturate(180%);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.25);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            padding: 20px 15px;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .timing-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .time {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .event {
            font-size: 0.95rem;
            color: var(--text-color);
            line-height: 1.3;
        }

        /* Temple About Section */
        .temple-main {
            font-family: Inter, system-ui, Arial, sans-serif;
            margin: 50px 0;
        }

        .temple-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .temple-image {
            flex: 1 1 300px;
            min-width: 250px;
            text-align: center;
        }

        .temple-image img {
            width: 100%;
            max-width: 350px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .temple-image img:hover {
            transform: scale(1.05);
        }

        .temple-text {
            flex: 2 1 500px;
            min-width: 280px;
        }

        .temple-text h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #6b21a8;
        }

        .temple-text1 {
            font-size: 16px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 12px;
        }

        /* Temple Slider */
        .temple-slider {
            max-width: 1100px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .temple-swiper .swiper-slide img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
            transition: transform 0.3s ease;
        }

        .temple-swiper .swiper-slide img:hover {
            transform: scale(1.05);
        }

        /* Cultural Programmes Styles */
        .festival-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 35px;
            padding: 25px;
            font-family: 'Trebuchet MS', sans-serif;
            margin-bottom: 40px;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
        }

        .festival-event {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .festival-date {
            font-size: 1.2rem;
            font-weight: 700;
            color: #b22222;
            margin-bottom: 8px;
            width: 100%;
        }

        .festival-details {
            flex: 1;
            min-width: 260px;
        }

        .event-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #d43c3c;
            margin-bottom: 4px;
        }

        .event-title.green {
            color: #1e8a3c;
        }

        .highlight {
            background: #e75480;
            color: #fff;
            padding: 5px 10px;
            margin-top: 8px;
            display: inline-block;
            font-weight: bold;
            letter-spacing: 2px;
            border-radius: 5px;
        }

        .festival-img {
            margin-left: 20px;
        }

        .festival-img img {
            width: 150px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        hr {
            border: none;
            border-top: 1px solid #ccc;
            margin: 15px 0;
        }

        /* Event Box with Ribbon */
        .event-box {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 18px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0px 4px 25px rgba(0,0,0,0.3);
            backdrop-filter: blur(15px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeIn 1s ease-in-out;
            overflow: hidden;
        }

        .event-box:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0px 8px 30px rgba(0,0,0,0.5);
        }

        .event-content {
            flex: 1;
        }

        .event-box h3 {
            margin: 0 0 10px;
            font-size: 20px;
            color: #006400;
            font-style: italic;
            animation: slideRight 1s ease-in-out;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-box p {
            margin: 6px 0;
            font-size: 16px;
            color: #fff;
        }

        /* Upcoming Ribbon Right Side */
        .ribbon {
            position: absolute;
            top: 15px;
            right: -35px;
            background: #ff4b2b;
            color: white;
            padding: 6px 60px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0px 3px 8px rgba(0,0,0,0.4);
            letter-spacing: 1px;
            animation: glow 1.5s infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 8px rgba(255,75,43,0.6); }
            to { box-shadow: 0 0 20px rgba(255,75,43,1); }
        }

        .event-img {
            flex-shrink: 0;
            width: 220px;
            height: 160px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0px 6px 15px rgba(0,0,0,0.4);
            animation: float 3s ease-in-out infinite;
        }

        /* Devotees Section */
        .devotees {
            text-align: center;
            margin-top: 60px;
            font-style: italic;
            color: #333;
            padding: 20px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            backdrop-filter: blur(12px);
            animation: fadeUp 1.2s ease-in-out;
        }

        .devotees h3 {
            font-family: 'Times New Roman', serif;
            font-weight: bold;
            margin-bottom: 10px;
            color: #8b0000;
        }

        /* Animations */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideRight {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav ul li {
                margin: 5px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .temple-container {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .logo {
                flex-direction: row;
                justify-content: flex-start;
            }

            .logo img {
                height: 50px;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .page-title {
                font-size: 2rem;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }

            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 10px 0;
            }

            .slide-content h2 {
                font-size: 1.5rem;
            }

            .slide-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 10px;
            }

            .hero {
                padding: 40px 15px;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .events-container {
                grid-template-columns: 1fr;
            }

            .donation-options {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .event-box {
                flex-direction: column;
            }

            .event-img {
                width: 100%;
                height: 200px;
            }
        }
    