Chitram news
Newspaper Banner
Date of Publish : 04 August 2025, 7:13 am Editor : Chitram news

నీరు వృధా..రైతులకు వ్యథ

కరత్వాడ ప్రాజెక్ట్ నుంచి వృధాగా పోతున్న నీరు

చిత్రం న్యూస్, బోథ్: ఒకవైపు వర్షాలు తక్కువ ఉండడంతో వర్షాకాలం రెండు నెలలు గడిచిపోయిన ఇప్పటివరకు ప్రాజెక్టులు నిండలేదు. ఆదిలాబాద్ జిల్లా బోథ్ కరత్వాడ ప్రాజెక్ట్ కుడి వైపు కెనాల్ గేట్ మొరాయించడంతో గత 10 రోజులుగా నీరు వృధాగా  పోతుంది. అసలే వర్షాలు లేక చిన్న చిన్న  ఒర్రెలలో, వాగులలో చుక్క నీరు కూడా లేదు. రాబోయే రబీ పంటలకి కరత్వాడ ప్రాజెక్ట్ నీరే రైతుల పంటలకు ఆధారం.  సంరంక్షించాల్సిన నీటిని ఇలా వృధా చేస్తే కరత్వాడ ప్రాజెక్ట్ లో నీరు ఖాళీ అయ్యే అవకాశం ఉంది. కరువు పరిస్థితులు రాకముందే అధికారులు వృధా నీటిని అరికట్టాలని ఆ ప్రాంత రైతులు కోరుతున్నారు.

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