Chitram news
Newspaper Banner
Date of Publish : 15 August 2025, 10:19 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'; }