.dr1007footer footer {
	background: #ff5722;
	color: white;
	padding: 30px 20px;
	text-align: center;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.footer-inner {
	max-width: 900px;
	margin: auto;
}

.footer-logo img {
	width: 150px;
	height: auto;
	margin-bottom: 15px;
	transition: transform 0.3s ease-in-out;
}

.footer-logo img:hover {
	transform: scale(1.1);
}

.footer-title {
	font-size: 28px;
	font-weight: bold;
	color: #fffde7;
	margin-top: 0;
}

.footer-tagline {
	font-size: 18px;
	color: #ffe0b2;
	max-width: 650px;
	margin: 15px auto 30px;
	line-height: 1.6;
}

.qrcode-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #fff8e1;
}

/* Infolinks Styling */
.dr1007footer .infolinks {
	margin: 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.dr1007footer .infolinks a {
	color: #ffe0b2;
	text-decoration: none;
	padding: 6px 12px;
	font-size: 16px;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.dr1007footer .infolinks a:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Pipe separator between links (desktop only) */
.dr1007footer .infolinks a::after {
	content: "|";
	margin-left: 10px;
	color: #ffe0b2;
}

.dr1007footer .infolinks a:last-child::after {
	content: "";
}

/* Social Icons */
.dr1007footer .social-icons {
	margin: 20px 0;
}

.dr1007footer .social-icons a {
	font-size: 24px;
	margin: 0 8px;
	color: #fff9c4;
}

.dr1007footer .social-icons a:hover {
	color: #fff176;
}

/* Footer Copy */
.footer-copy {
	font-size: 14px;
	margin-top: 10px;
	color: #ffecb3;
}

.footer-copy a {
	color: #fff;
	text-decoration: underline;
}

.footer-copy a:hover {
	color: #ffe082;
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1007footer .infolinks {
		flex-direction: column;
		gap: 8px;
	}
	.dr1007footer .infolinks a::after {
		content: "";
	}
}