/* Enhanced Custom styles for Sri Anjaneya Nitya Annadaan Trust */

:root {
    --hanuman-orange: #ff8c00;
    --hanuman-red: #dc143c;
    --hanuman-yellow: #ffd700;
    --hanuman-green: #228b22;
    --hanuman-saffron: #ff9933;
    --primary-color: #ff6b35;
    --secondary-color: #dc2626;
    --accent-color: #f59e0b;
    --success-color: #059669;
    --warning-color: #d97706;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans Telugu', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.telugu-text {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-weight: 500;
}

/* Enhanced Click Animations with Ripple Effect */
.clickable, .btn, .nav-link, .card, .gallery-item, .category-card, a, .event-card-compact {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.clickable:active, .btn:active, .nav-link:active, .card:active, .event-card-compact:active {
    transform: scale(0.95);
}

.btn:active {
    transform: scale(0.92) translateY(2px);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Navbar with Hanuman Logo */
.navbar {
    background: linear-gradient(135deg, var(--hanuman-orange) 0%, var(--hanuman-red) 100%);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    transition: transform 0.3s ease;
    color: white !important;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--hanuman-yellow) !important;
}

/* Animated Hanuman Logo */
.animated-logo {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.hanuman-logo {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hanuman-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--hanuman-yellow) 0%, var(--hanuman-saffron) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: hanuman-glow 4s ease-in-out infinite;
}

.hanuman-figure {
    width: 25px;
    height: 30px;
    position: relative;
}

.hanuman-body {
    width: 15px;
    height: 20px;
    background: #2d1810;
    border-radius: 8px 8px 4px 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hanuman-dance 3s ease-in-out infinite;
}

.hanuman-body::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #2d1810;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.hanuman-body::after {
    content: '';
    width: 6px;
    height: 12px;
    background: #2d1810;
    border-radius: 4px;
    position: absolute;
    top: -2px;
    right: -8px;
    animation: arm-wave 2s ease-in-out infinite;
}

.hanuman-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.hanuman-rays::before,
.hanuman-rays::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 30px;
    background: linear-gradient(to top, transparent, var(--hanuman-yellow), transparent);
    transform-origin: bottom center;
    animation: rays-rotate 8s linear infinite;
}

.hanuman-rays::before {
    transform: translate(-50%, -100%) rotate(0deg);
}

.hanuman-rays::after {
    transform: translate(-50%, -100%) rotate(45deg);
}

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

@keyframes hanuman-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    }
}

@keyframes hanuman-dance {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(3deg); }
    75% { transform: translate(-50%, -50%) rotate(-3deg); }
}

@keyframes arm-wave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(25deg); }
}

@keyframes rays-rotate {
    0% { transform: translate(-50%, -100%) rotate(0deg); }
    100% { transform: translate(-50%, -100%) rotate(360deg); }
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 2px;
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: var(--hanuman-yellow) !important;
}

/* Hanuman Logo for Navigation */
.hanuman-logo {
    display: inline-block;
    animation: gentle-float 4s ease-in-out infinite;
}

.hanuman-circle-nav {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
    overflow: hidden;
}

.hanuman-figure-nav {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.hanuman-body-nav {
    width: 8px;
    height: 12px;
    background: #2d1810;
    border-radius: 4px 4px 2px 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hanuman-dance 3s ease-in-out infinite;
}

.hanuman-body-nav::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #2d1810;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.hanuman-arm-nav {
    width: 3px;
    height: 8px;
    background: #2d1810;
    border-radius: 2px;
    position: absolute;
    top: 35%;
    right: 20%;
    transform-origin: top center;
    animation: arm-wave 2s ease-in-out infinite;
}

.hanuman-tail-nav {
    width: 2px;
    height: 10px;
    background: #2d1810;
    border-radius: 1px;
    position: absolute;
    top: 45%;
    left: 15%;
    transform-origin: top center;
    animation: tail-sway 2.5s ease-in-out infinite;
}

.hanuman-rays-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ray-nav {
    position: absolute;
    width: 1px;
    height: 12px;
    background: linear-gradient(to top, transparent, #ffd700, transparent);
    transform-origin: bottom center;
    animation: rays-rotate 8s linear infinite;
}

.ray-1 { top: 5px; left: 50%; transform: translateX(-50%) rotate(0deg); }
.ray-2 { top: 8px; right: 8px; transform: rotate(45deg); }
.ray-3 { bottom: 5px; left: 50%; transform: translateX(-50%) rotate(180deg); }
.ray-4 { top: 8px; left: 8px; transform: rotate(315deg); }

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

@keyframes hanuman-dance {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(2deg); }
    75% { transform: translate(-50%, -50%) rotate(-2deg); }
}

@keyframes arm-wave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
}

@keyframes tail-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-10deg); }
}

@keyframes rays-rotate {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Enhanced Buttons */
.btn {
    font-weight: 600;
 
    box-shadow: var(--shadow-light);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--hanuman-orange) 0%, var(--hanuman-red) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e67e00 0%, #b91c1c 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--hanuman-green) 0%, #047857 100%);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--hanuman-yellow) 0%, #b45309 100%);
    color: var(--text-dark);
}

/* Enhanced Cards */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
  
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.8s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Optimized Event Cards for Homepage - Better Proportions */
.event-card-compact {
    border-left: 5px solid var(--hanuman-orange);
    max-height: 320px;
    overflow: hidden;
    
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-card-compact:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.event-card-compact .card-img-top {
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card-compact:hover .card-img-top {
    transform: scale(1.1);
}

.event-card-compact .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 180px;
}

.event-card-compact .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--hanuman-orange);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-compact .card-text {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-light);
}

.event-card-compact .event-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-card-compact .btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-top: auto;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-card-compact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #7c2d12 0%, var(--hanuman-red) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer .contact-info-item {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer .contact-info-item i {
    color: var(--hanuman-yellow) !important;
}

.footer h5, .footer h6 {
    color: var(--hanuman-yellow) !important;
}

.footer ul li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer p, .footer span {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Section Titles */
.section-title {
    color: var(--hanuman-orange);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--hanuman-orange), var(--hanuman-yellow));
    border-radius: 2px;
}

/* Form Enhancements */
.form-control {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.form-control:focus {
    border-color: var(--hanuman-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
    transform: translateY(-2px);
}

/* Gallery Enhancements */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;

}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid var(--hanuman-orange);
}

.contact-info-item:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.contact-info-item i {
    color: var(--hanuman-orange);
    margin-right: 1rem;
    width: 25px;
    font-size: 1.2rem;
}

/* Services Grid */
.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-light);

    border-top: 4px solid var(--hanuman-orange);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--hanuman-orange), var(--hanuman-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

/* Alert Enhancements */
.alert {
    border-radius: 15px;
    border: none;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--hanuman-orange);
}

/* Carousel Enhancements */
.carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
    transition: transform 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.02);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

/* Donation Highlights */
.donation-highlight {
    background: linear-gradient(135deg, #fef7f0 0%, #fed7aa 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.donation-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: float-glow 6s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.qr-code-container {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qr-code-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.qr-code-container:hover::before {
    opacity: 1;
}

.qr-code-container:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);

}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--hanuman-orange), var(--hanuman-red));
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e67e00, #b91c1c);
}

/* File Upload Styles */
.file-upload-area {
    border: 2px dashed var(--hanuman-orange);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 140, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.file-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.8s;
}

.file-upload-area:hover::before {
    left: 100%;
}

.file-upload-area:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--hanuman-red);
    transform: scale(1.02);
}

.file-upload-area.dragover {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--hanuman-red);
    transform: scale(1.05);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .animated-logo {
        width: 40px;
        height: 40px;
    }
    
    .hanuman-circle {
        width: 35px;
        height: 35px;
    }
    
    .carousel-item img {
        height: 250px;
    }
    
    .event-card-compact {
        max-height: 320px;
    }
    
    .event-card-compact .card-body {
        height: 180px;
    }
    
    .contact-info-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .event-card-compact .card-body {
        padding: 1.2rem;
        height: 170px;
    }
    
    .event-card-compact .card-title {
        font-size: 1rem;
    }
    
    .event-card-compact .card-text {
        font-size: 0.8rem;
    }
    
    .donation-highlight {
        padding: 1.5rem;
    }
    
    .qr-code-container {
        padding: 20px;
    }
    
    .event-card-compact .card-img-top {
        height: 120px;
    }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    body {
        background: white !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--text-dark);
    }
    
    .btn-primary {
        background: var(--text-dark);
        color: white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--hanuman-orange);
    outline-offset: 2px;
}

/* Enhanced hover effects for better UX */
.clickable-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clickable-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clickable-item:active {
    transform: translateY(0) scale(0.98);
}

/* Smooth page transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}



.animated-logo {
    /* animation: gentle-pulse 3s ease-in-out infinite; */
}

.hanuman-circle {
    animation: none;
}

.hanuman-body {
    animation: none;
}

.hanuman-body::after {
    animation: none;
}

.hanuman-rays::before,
.hanuman-rays::after {
    animation: none;
}

.hanuman-logo {
    animation: none;
}

.hanuman-body-nav {
    animation: none;
}

.hanuman-arm-nav {
    animation: none;
}

.hanuman-tail-nav {
    animation: none;
}

.ray-nav {
    animation: none;
}

.service-card:hover::before {
    /* opacity remains */
    transform: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05); /* Keep hover transform */
    box-shadow: var(--shadow-heavy);
}

.donation-highlight::before {
    animation: none;
}

.page-transition {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

.loading-spinner {
    animation: none;
}


body *:not(.clickable):not(.btn):not(.nav-link):not(.card):not(.gallery-item):not(.event-card-compact) {
    animation: none !important;
    transition: none !important;
}
