Chitram news
Newspaper Banner
Date of Publish : 06 August 2025, 8:33 am Editor : Chitram news

ధర్నాలో పాల్గొననున్న సొనాల మండల కాంగ్రెస్ నాయకులు

 ఢిల్లీలో జంతర్ మంతర్ వద్ద మహా ధర్నాలో  సొనాల మండల కాంగ్రెస్ నాయకులు

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

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