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

