       .festival-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .festival-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }
		.gradient-text {
			background: linear-gradient(135deg, #dc2626, #f59e0b);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}
        .date-box {
            background: linear-gradient(135deg, #ff6b35, #ffa500);
            color: white;
            font-weight: bold;
            border-radius: 8px;
            padding: 12px;
            text-align: center;
            margin-bottom: 16px;
        }
        .day-indicator {
            background: #dc143c;
            color: white;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 8px;
        }
        .festival-icon {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 40px;
            color: white;
        }
        .dhanteras-icon { background: linear-gradient(135deg, #ffd700, #ffb347); }
        .kali-icon { background: linear-gradient(135deg, #2c3e50, #34495e); }
        .lakshmi-icon { background: linear-gradient(135deg, #e74c3c, #f39c12); }
        .govardhan-icon { background: linear-gradient(135deg, #27ae60, #2ecc71); }
        .bhaiya-icon { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
        .govatsa-icon { background: linear-gradient(135deg, #3498db, #2980b9); }
        .labh-icon { background: linear-gradient(135deg, #f39c12, #e67e22); }
        
        body {
            font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
            background: #f8fafc;
        }
        .hindi-text {
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        .main-container {
            background: white;
            min-height: 100vh;
        }
        .section-heading {
            color: #dc143c;
            border-bottom: 3px solid #ffa500;
            padding-bottom: 8px;
            margin-bottom: 24px;
        }
        .info-card {
            background: linear-gradient(135deg, #fff9f0, #fef7ed);
            border-left: 4px solid #ffa500;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
		.header-nav {
			background: #ff6b35;
			color: white;
			padding: 6px 0;
		}
		
		        /* Mobile Menu Styles */
        .mobile-menu {
            transition: all 0.3s ease-in-out;
            max-height: 0;
            overflow: hidden;
        }
        
        .mobile-menu.active {
            max-height: 500px;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 40;
            display: none;
        }
        
        .menu-overlay.active {
            display: block;
        }
		
		
		/* Loader Overlay */
#loadingOverlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid gold;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}