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

