చిత్రం న్యూస్, బాసర: దక్షిణ భారతదేశంలోని ప్రసిద్ధ పుణ్యక్షేత్రమైన నిర్మల్ జిల్లా బాసరలోని శ్రీ జ్ఞాన సరస్వతి అమ్మవారి దర్శనానికి శుక్రవారం పెద్దసంఖ్యలో భక్తులు తరలివచ్చారు. హనుమాన్ జయంతి ఉత్సవాలు సందర్భంగా వివిధ ప్రాంతాల నుంచి వచ్చిన భక్తులు పవిత్ర గోదావరి నదిలో పుణ్యస్నానాలు ఆచరించి అమ్మవారికి ప్రత్యేక పూజలు నిర్వహించారు. తమ చిన్నారులకు అమ్మవారి సన్నిధిలో అక్షర శ్రీకార పూజలను చేశారు. అమ్మవారి దర్శనం కోసం ఉమ్మడిఆంధ్రప్రదేశ్ నుంచే కాకుండా మహారాష్ట్ర, కర్ణాటక నుంచి రైలు, రోడ్డు మార్గాల ద్వారా భక్తులు తరలివచ్చారు. భక్తులకు ఇబ్బందులు కలగకుండా ఆలయ అధికారులు ఈవో విజయ రామారావు, ఆలయ సిబ్బంది. బాసర సీఐ కిరణ్, ఏర్పాట్లు చేశారు.
#mobileMenu a { display: block; padding: 12px 10px; color: #000; text-decoration: none; font-weight: bold; border-bottom: 1px solid #ddd; }
#mobileMenuClose { font-size: 20px; font-weight: bold; cursor: pointer; display: block; margin-bottom: 20px; }
@media (max-width: 768px) { #horizontalScrollMenu { font-size: 14px; } }
const header = document.getElementById('customStickyHeader'); const placeholder = document.createElement('div'); let isFixed = false;
window.addEventListener('scroll', function () {
if (window.scrollY > 10 && !isFixed) {
header.style.position = 'fixed';
header.style.top = '0';
header.style.left = '0';
header.style.right = '0';
header.style.zIndex = '9999';
header.style.boxShadow = '0 2px 5px rgba(0,0,0,0.2)';
placeholder.style.height = header.offsetHeight + 'px';
header.parentNode.insertBefore(placeholder, header);
isFixed = true;
} else if (window.scrollY <= 10 && isFixed) {
header.style.position = 'relative';
header.style.boxShadow = 'none';
if (placeholder.parentNode) {
placeholder.parentNode.removeChild(placeholder);
}
isFixed = false;
}
});
function toggleMenu() {
const menu = document.getElementById('mobileMenu');
menu.style.display = menu.style.display === 'block' ? 'none' : 'block';
}

