కిడ్నీ వ్యాధితో బాధపడుతున్న యువకుడికి సామ రూపేష్ రెడ్డి రక్తదానం
చిత్రం న్యూస్, బేల: ఆదిలాబాద్ జిల్లా బేల మండలంలోని భవాని గూడ గ్రామానికి చెందిన టేకం సంతోష్ అనే యువకుడుకిడ్నీ వ్యాధితో బాధపడుతూ శుక్రవారం రిమ్స్ ఆసుపత్రిలో చేరారు. బాధితుడిని పరీక్షించిన వైద్యులు రక్తం 6.7 గ్రాం ఉండడంతో వెంటనే ఓ పాజిటివ్ రక్తం అత్యవసరమని వైద్యులు సూచించారు. దీంతో కుటుంబ సభ్యులు యువజన కాంగ్రెస్ ఆదిలాబాద్ అసెంబ్లీ ఉపాధ్యక్షుడు సామ రూపేష్ రెడ్డిని సంప్రదించారు. విషయం తెలుసుకున్న సామ రూపేష్ రెడ్డి యువకుడికి అవసరమైన ఓ పాజిటివ్ రక్తాన్ని అత్యవసర సమయంలో అందజేశాడు. ఈ రక్తం అందించడంతో యువకుడికి వైద్యులు రక్తం ఎక్కించారు. అత్యవసర సమయంలో అందరికీ అందుబాటులో ఉంటూ అవసరమైన వారికి సహాయ సహకారాలు అందిస్తున్న సామ రూపేష్ రెడ్డిని పలువురు అభినందిస్తున్నారు. ఆయన వెంట యువ నాయకుడు మేకల జితేందర్,కుటుంబ సభ్యులు విజయ్ తదితరులు ఉన్నారు.
#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; } }
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';
}

