        body {
            font-family: 'Poppins', sans-serif;
         /*   background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 25%, #f7931e 50%, #ff4757 75%, #c44569 100%); */
            min-height: 100vh;
        }
        .header{
			    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
		}
		.py-8 {
			padding-top: 2rem;
			padding-bottom: 2rem;
		}	
		.mb-6 {
				margin-bottom: 1.5rem;
		}
		.section-header-align {
				text-align: left;
		}
		.detail-card {
			background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
			border-left: 4px solid #ff6b35;
		}
        .hindi-font {
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        
        .festival-card {
         /*   background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,248,220,0.95) 100%); */
            border: 2px solid rgba(255,165,0,0.3);
            box-shadow: 0 20px 40px rgba(255,107,53,0.2);
            transition: all 0.3s ease;
        }
        
        .festival-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(255,107,53,0.3);
        }
        
        .gradient-text {
            background: linear-gradient(45deg, #ff4757, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-card {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,165,0,0.2);
        }
        
        .year-selector {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            border: none;
            box-shadow: 0 10px 25px rgba(255,107,53,0.3);
        }
        
        .icon-circle {
            background: linear-gradient(135deg, #ff4757, #ff6b35);
            box-shadow: 0 8px 16px rgba(255,71,87,0.3);
        }
        
        .date-display {
            background: linear-gradient(135deg, #ff4757 0%, #ff6b35 100%);
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .custom-scrollbar::-webkit-scrollbar {
            width: 8px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #ff4757, #ff6b35);
            border-radius: 4px;
        }
        
        .pattern-bg {
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255,165,0,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,71,87,0.1) 0%, transparent 50%);
        }
        
        @media print {
            body {
                background: white !important;
            }
            .festival-card, .section-card {
                background: white !important;
                box-shadow: none !important;
                border: 1px solid #ddd !important;
            }
        }
		
	.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); }
}