Chitram news
Newspaper Banner
Date of Publish : 17 July 2025, 9:38 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'; }