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

