Chitram news
Newspaper Banner
Date of Publish : 01 April 2026, 9:08 pm Editor : Chitram news

కేంద్ర మంత్రి నితిన్ గడ్కరిని కలిసిన ఎమ్మెల్యే పవార్ రామారావ్ పటేల్P

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

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