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

ఆధునిక వ్యవసాయ యంత్రాలతో రైతులకు మేలు: కలెక్టర్ అభిలాష అభినవ్ 

* రూ.3.85 లక్షల సబ్సిడీతో డ్రోన్, పనిముట్లు పంపిణీ

చిత్రం న్యూస్, నిర్మల్ :ఆధునిక వ్యవసాయ యంత్రాల వినియోగం రైతులకు పనులను సులభతరం చేస్తుందని, సమయం, డబ్బు ఆదా అవుతుందని జిల్లా కలెక్టర్ అభిలాష అభినవ్ తెలిపారు. బుధవారం కలెక్టరేట్ లో సారంగాపూర్ మండలం కౌట్ల (బి) రైతు సంఘానికి రూ.3.85 లక్షల సబ్సిడీతో డ్రోన్, పనిముట్లు పంపిణీ చేశారు. ఈ యంత్రాల వల్ల తక్కువ సమయంలో, తక్కువ శ్రమతో పనులు పూర్తవుతాయని పేర్కొన్నారు.సారంగాపూర్ మండలం కౌట్ల (బి) రైతు సంఘానికి చెందిన రైతులకు రూ.3.85 లక్షల సబ్సిడీతో ఆధునిక డ్రోన్, వ్యవసాయ పనిముట్లను కలెక్టర్ అభిలాష అభినవ్ పంపిణీ చేశారు. ఈ సందర్భంగా ఆమె మాట్లాడుతూ, యంత్రాల వినియోగం వల్ల వ్యవసాయ పనులు మరింత సమర్థవంతంగా జరుగుతాయని తలిపారు

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