Chitram news
Newspaper Banner
Date of Publish : 02 April 2026, 8:19 pm 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'; }