Chitram news
Newspaper Banner
Date of Publish : 31 March 2026, 7:15 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'; }