Chitram news
Newspaper Banner
Date of Publish : 31 March 2026, 11:29 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'; }