
        :root {
            --saffron: #FF9933;
            --spiritual-green: #0A9E7F;
            --divine-purple: #8A2BE2;
            --temple-gold: #FFD700;
            --sky-blue: #87CEEB;
            --lotus-pink: #FF69B4;
            --earth-brown: #8B4513;
            --white: #FFFFFF;
            --light-bg: #FFFBF0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Playfair Display', serif;
            background-color: var(--light-bg);
            color: #333;
            overflow-x: hidden;
            cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C8.831 3 3 8.831 3 16s5.831 13 13 13 13-5.831 13-13S23.169 3 16 3zm0 2c6.065 0 11 4.935 11 11s-4.935 11-11 11S5 22.065 5 16 9.935 5 16 5z' fill='%23FF9933'/%3E%3Ccircle cx='16' cy='16' r='4' fill='%23FF9933'/%3E%3C/svg%3E") 16 16, auto;
        }
        
        .custom-cursor {
            position: fixed;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: rgba(255, 153, 51, 0.2);
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s, background-color 0.3s;
            mix-blend-mode: difference;
        }
        
        /* Vibrant Background */
        .vibrant-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 153, 51, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 30%, rgba(10, 158, 127, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
                linear-gradient(135deg, #FFFBF0 0%, #FFFAE5 100%);
            z-index: -2;
            animation: bgShift 20s infinite alternate ease-in-out;
        }
        
        @keyframes bgShift {
            0% { background-position: 0% 0%, 100% 30%, 50% 80%, 20% 70%, 0 0; }
            100% { background-position: 10% 20%, 90% 40%, 60% 90%, 30% 80%, 0 0; }
        }
        
        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/images/tvm-temple.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.2;
            z-index: -1;
        }
        
        /* Header with New Font */
        .header {
            padding: 2rem 0 1rem;
            text-align: center;
            position: relative;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 251, 240, 0.7));
            border-bottom: 3px solid transparent;
            border-image: linear-gradient(to right, var(--saffron), var(--spiritual-green), var(--divine-purple), var(--temple-gold)) 1;
        }
        
        .main-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 4rem;
            color: var(--earth-brown);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
            text-shadow: 3px 3px 0px rgba(255, 153, 51, 0.3);
            background: linear-gradient(to right, var(--saffron), var(--divine-purple), var(--spiritual-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: titleGlow 4s infinite alternate;
        }
        
        @keyframes titleGlow {
            0% { 
                text-shadow: 3px 3px 0px rgba(255, 153, 51, 0.3),
                            0 0 20px rgba(255, 153, 51, 0.3);
            }
            100% { 
                text-shadow: 3px 3px 0px rgba(138, 43, 226, 0.3),
                            0 0 30px rgba(138, 43, 226, 0.4),
                            0 0 40px rgba(10, 158, 127, 0.3);
            }
        }
        
        .subtitle {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            color: var(--spiritual-green);
            margin-top: -0.5rem;
            animation: subtitleFloat 6s infinite ease-in-out;
        }
        
        @keyframes subtitleFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        /* Animated Image Section */
        .image-section {
            padding: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            height: 100%;
            border: 5px solid transparent;
            animation: borderFlow 4s infinite linear;
            background: linear-gradient(45deg, var(--saffron), var(--temple-gold), var(--spiritual-green), var(--divine-purple), var(--lotus-pink));
            background-size: 300% 300%;
        }
        
        @keyframes borderFlow {
            0% { 
                border-image: linear-gradient(45deg, var(--saffron), var(--temple-gold), var(--spiritual-green)) 1;
                background-position: 0% 50%;
            }
            50% { 
                border-image: linear-gradient(45deg, var(--spiritual-green), var(--divine-purple), var(--lotus-pink)) 1;
                background-position: 100% 50%;
            }
            100% { 
                border-image: linear-gradient(45deg, var(--lotus-pink), var(--saffron), var(--temple-gold)) 1;
                background-position: 0% 50%;
            }
        }
        
        .ashram-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            animation: imageFloat 8s infinite ease-in-out;
            filter: sepia(0.2) brightness(1.05);
        }
        
        @keyframes imageFloat {
            0%, 100% { transform: scale(1) translateY(0); }
            50% { transform: scale(1.05) translateY(-10px); }
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5));
            border-radius: 15px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 2rem;
        }
        
        .image-text {
            color: white;
            font-size: 1.8rem;
            font-family: 'Cinzel Decorative', cursive;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            animation: textFade 6s infinite alternate;
        }
        
        @keyframes textFade {
            0%, 100% { opacity: 0.9; transform: translateY(0); }
            50% { opacity: 1; transform: translateY(-5px); }
        }
        
        /* Two Column Content - More Colorful */
        .content-section {
            padding: 3rem 0;
            position: relative;
        }
        
        .content-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.9));
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.4s ease;
            border: 3px solid transparent;
            background-clip: padding-box;
            position: relative;
            overflow: hidden;
        }
        
        .content-card:before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--saffron), var(--temple-gold), var(--spiritual-green), var(--divine-purple));
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .content-card:hover:before {
            opacity: 1;
        }
        
        .content-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }
        
        .content-title {
            color: var(--divine-purple);
            border-bottom: 3px solid;
            border-image: linear-gradient(to right, var(--saffron), var(--temple-gold)) 1;
            padding-bottom: 0.8rem;
            margin-bottom: 1.8rem;
            font-size: 2rem;
            font-family: 'Cinzel Decorative', cursive;
            position: relative;
            display: inline-block;
        }
        
        .content-title:after {
            content: '✿';
            position: absolute;
            right: -30px;
            color: var(--lotus-pink);
            animation: flowerSpin 4s infinite linear;
        }
        
        @keyframes flowerSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .tamil-content {
            font-family: 'Noto Sans Tamil', 'Tiro Tamil', serif;
            font-size: 1.15rem;
            line-height: 1.9;
            direction: rtl;
            text-align: right;
        }
        
        .english-content {
            font-size: 1.15rem;
            line-height: 1.9;
        }
        
        .highlight {
            background: linear-gradient(120deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0) 100%);
            padding: 0 5px;
            border-radius: 3px;
            font-weight: bold;
            color: var(--earth-brown);
        }
        
        /* Colorful Donation Table */
        .donation-section {
            padding: 3rem 0;
        }
        
        .donation-card {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(10, 158, 127, 0.1), rgba(138, 43, 226, 0.1));
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border: 3px solid transparent;
            animation: borderPulse 3s infinite alternate;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes borderPulse {
            0% { 
                border-color: rgba(255, 153, 51, 0.5);
                box-shadow: 0 15px 35px rgba(255, 153, 51, 0.2);
            }
            33% { 
                border-color: rgba(10, 158, 127, 0.5);
                box-shadow: 0 15px 35px rgba(10, 158, 127, 0.2);
            }
            66% { 
                border-color: rgba(138, 43, 226, 0.5);
                box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
            }
            100% { 
                border-color: rgba(255, 215, 0, 0.5);
                box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
            }
        }
        
        .donation-title {
            color: var(--earth-brown);
            text-align: left;
            margin-bottom: 2.5rem;
            font-size: 2.5rem;
            font-family: 'Cinzel Decorative', cursive;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .donation-title:before, .donation-title:after {
            content: '❖';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--saffron);
            font-size: 1.8rem;
            animation: symbolFloat 3s infinite ease-in-out;
        }
        
        .donation-title:before {
            left: -50px;
        }
        
        .donation-title:after {
            right: -50px;
        }
        
        @keyframes symbolFloat {
            0%, 100% { transform: translateY(-50%) rotate(0deg); }
            50% { transform: translateY(-50%) rotate(180deg); }
        }
        
        .donation-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 10px;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .donation-table thead tr {
            background: linear-gradient(to right, var(--saffron), var(--divine-purple));
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .donation-table th {
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .donation-table tbody tr {
            background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 251, 240, 0.8));
            transition: all 0.3s ease;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        }
        
        .donation-table tbody tr:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            background: linear-gradient(to right, rgba(255, 153, 51, 0.1), rgba(255, 215, 0, 0.1));
        }
        
        .donation-table td {
            padding: 1.2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .table-icon {
            color: var(--saffron);
            margin-right: 10px;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .donation-table tbody tr:hover .table-icon {
            color: var(--divine-purple);
            transform: scale(1.2);
        }
        
        /* Enhanced WhatsApp Button */
        .whatsapp-btn-container {
            text-align: center;
            margin: 4rem 0;
            position: relative;
        }
        
        .whatsapp-btn {
            background: linear-gradient(45deg, #25D366, #128C7E, #075E54);
            color: white;
            border: none;
            padding: 1.5rem 3rem;
            font-size: 1.8rem;
            font-weight: bold;
            border-radius: 60px;
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: whatsappPulse 2s infinite, buttonFloat 6s infinite ease-in-out;
            z-index: 1;
        }
        
        @keyframes whatsappPulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        @keyframes buttonFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .whatsapp-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .whatsapp-btn:hover:before {
            left: 100%;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-btn:active {
            transform: translateY(0) scale(0.98);
        }
        
        .whatsapp-btn i {
            margin-right: 15px;
            font-size: 2.2rem;
        }
        
        /* Colorful Contact Section */
        .contact-section {
            padding: 3rem 0;
        }
        
        .contact-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.9));
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 3px solid transparent;
            background-clip: padding-box;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card:before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--spiritual-green), var(--sky-blue), var(--lotus-pink));
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .contact-card:hover:before {
            opacity: 1;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }
        
        .contact-title {
            color: var(--spiritual-green);
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2.2rem;
            font-family: 'Cinzel Decorative', cursive;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.8rem;
            padding: 1.2rem;
            border-radius: 15px;
            transition: all 0.4s ease;
            background: linear-gradient(to right, rgba(255, 251, 240, 0.7), rgba(255, 255, 255, 0.5));
            position: relative;
            overflow: hidden;
        }
        
        .contact-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            transition: 0.5s;
        }
        
        .contact-item:hover:before {
            left: 100%;
        }
        
        .contact-item:hover {
            transform: translateX(15px);
            background: linear-gradient(to right, rgba(255, 153, 51, 0.1), rgba(255, 215, 0, 0.1));
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--saffron), var(--temple-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.8rem;
            color: white;
            font-size: 1.8rem;
            transition: all 0.4s ease;
            flex-shrink: 0;
        }
        
        .contact-item:hover .contact-icon {
            transform: rotate(15deg) scale(1.1);
            background: linear-gradient(135deg, var(--divine-purple), var(--lotus-pink));
        }
        
        .contact-text h4 {
            color: var(--earth-brown);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .contact-text p {
            color: #666;
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        /* Enhanced Footer */
        .footer {
            background: linear-gradient(135deg, var(--earth-brown), #1a0f0a);
            color: white;
            padding: 4rem 0 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--saffron), var(--spiritual-green), var(--divine-purple), var(--temple-gold), var(--lotus-pink));
            animation: rainbowFlow 5s infinite linear;
        }
        
        @keyframes rainbowFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        .footer-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--temple-gold), var(--saffron), var(--lotus-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }
        
        .spiritual-quote {
            font-size: 1.3rem;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            padding: 1.5rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .spiritual-quote:before, .spiritual-quote:after {
            content: '"';
            position: absolute;
            font-size: 4rem;
            color: var(--temple-gold);
            opacity: 0.5;
        }
        
        .spiritual-quote:before {
            top: -10px;
            left: 10px;
        }
        
        .spiritual-quote:after {
            bottom: -40px;
            right: 10px;
        }
        
        .tamil-quote {
            font-family: 'Noto Sans Tamil', 'Tiro Tamil', serif;
            direction: rtl;
            margin-top: 1.5rem;
            font-size: 1.2rem;
        }
        
        .copyright {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }
        
        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--saffron), var(--divine-purple));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            animation: scrollTopFloat 4s infinite ease-in-out;
        }
        
        @keyframes scrollTopFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            background: linear-gradient(135deg, var(--divine-purple), var(--saffron));
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .main-title {
                font-size: 3rem;
            }
            
            .donation-title {
                font-size: 2rem;
            }
            
            .donation-title:before, .donation-title:after {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.5rem;
            }
            
            .image-container {
                height: 300px;
            }
            
            .content-title {
                font-size: 1.7rem;
            }
            
            .donation-title {
                font-size: 1.8rem;
            }
            
            .whatsapp-btn {
                padding: 1.2rem 2rem;
                font-size: 1.5rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 1.2rem;
            }
            
            .scroll-top {
                width: 60px;
                height: 60px;
                bottom: 30px;
                right: 30px;
            }
        }
        
        /* Decorative Elements */
        .floating-element {
            position: absolute;
            z-index: -1;
            opacity: 0.1;
            animation: floatAround 20s infinite linear;
        }
        
        @keyframes floatAround {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(100px, 100px) rotate(90deg); }
            50% { transform: translate(0, 200px) rotate(180deg); }
            75% { transform: translate(-100px, 100px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
        
        .om-symbol {
            font-size: 3rem;
            color: var(--saffron);
        }
        
        .lotus {
            font-size: 2.5rem;
            color: var(--lotus-pink);
        }
    