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

