Chitram news
Newspaper Banner
Date of Publish : 15 July 2025, 11:06 am 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'; }