Chitram news
Newspaper Banner
Date of Publish : 31 July 2025, 2:56 pm Editor : Chitram news

ఘనంగా ఎంఈఓ కోల నరసింహులుకు సన్మానం 

బేలలో ఎంఈఓ కోల నరసింహులు దంపతులను సన్మానిస్తున్న

చిత్రం న్యూస్, బేల: ఆదిలాబాద్ జిల్లా బేల ఉన్నత పాఠశాల ప్రధానోపాధ్యాయుడిగా, మండల విద్యాధికారిగా కోల నర్సింహులు ఉద్యోగ విరమణ పొందారు. గురువారం బేల  మండల కేంద్రంలోని గణేష్ గార్డెన్లో ఏర్పాటుచేసిన సన్మాన కార్యక్రమానికి ఎమ్మెల్యే పాయల్ శంకర్, జిల్లా విద్యాధికారి శ్రీనివాస్ రెడ్డి హాజరై ఆయన్ను ఘనంగా సన్మానించారు.. ఈ సందర్భంగా వారు మాట్లాడుతూ.. మండలంలో విద్యాభివృద్ధికి ఎనలేని కృషి చేశారన్నారు. ఆయన సేవలను కొనియాడారు. కార్యక్రమంలో తహసిల్దార్ రఘునాథ్ రావు ఎంపీడీవో మహేందర్, పీఆర్టీయూ టీఎస్ జిల్లా అధ్యక్ష ప్రధాన కార్యదర్శులు కొమ్ము కృష్ణ కుమార్ టిఎన్ స్వామి, మండల అధ్యక్ష ప్రధాన కార్యదర్శులు దేవరావు నితిన్, రాష్ట్ర, జిల్లా బాధ్యులు, ఎంఈఓ లు, కాంప్లెక్స్ ప్రధాన ఉపాధ్యాయులు, అన్ని యాజమాన్య పాఠశాలల ప్రధానోపాధ్యాయులు, ఉపాధ్యాయులు, విద్యార్థులు తదితరులు పాల్గొన్నారు

#mobileMenu { display: none; position: fixed; top: 0; left: 0; height: 100%; width: 240px; background: #fff; box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2); z-index: 99999; padding: 20px; }

#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; } }

✖ Close
హోం

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'; }