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