సబ్ కలెక్టర్ ను సన్మానిస్తున్న జనసేన పార్టీ నాయకులు
చిత్రం న్యూస్, భైంసా: నిర్మల్ జిల్లా భైంసా డివిజన్ లోని సబ్ కలెక్టర్ కార్యాలయంలో నూతనంగా బాధ్యతలు స్వీకరించిన సబ్ కలెక్టర్ అజ్మీర సాంకేత్ కుమార్ ని జనసేన పార్టీ నిర్మల్ జిల్లా నాయకుడు సుంకేట మహేష్ బాబు, నేతలు ఆర్.గంగప్రసాద్, పీ.నారాయణ్ సోమవారం శాలువా కప్పి సన్మానించారు. పుష్పగుచ్ఛం అందజేశారు. ఈ సందర్బంగా భైంసా డివిజన్ లోని పలు ప్రజాసమస్యలపై, బాసర ఆర్జేయూకేటీ విద్యార్థుల స్థితిగతులపై విన్నవించారు. సబ్ కలెక్టర్ మాట్లాడుతూ.. ప్రతి సమస్య ను సామరస్యంగా పరిష్కారం చేస్తామన్నారు. ప్రజలు, ప్రజా ప్రతినిధులు సహకరించాలని కోరారు.
#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';
}

