.dr1021footer footer {
	background: linear-gradient(135deg, #0d1b2a, #1e3c72);
	/* Dark navy to blue */
	color: #f8f9fa;
	padding: 60px 30px 30px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.4);
	border-top: 6px solid #fdd835; /* Golden Yellow */
	border-radius: 24px 24px 0 0;
}

/* Grid */
.dr1021footer .footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: auto;
}

/* Logo + Title */
.footer-logo-title {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.footer-logo-title img {
	width: 85px;
	border-radius: 50%;
	background: #ffffff;
	padding: 6px;
	box-shadow: 0 6px 18px rgba(255, 213, 79, 0.4);
	border: 2px solid #ffeb3b;
}

.footer-logo-title h3 {
	font-size: 1.6rem;
	margin: 0;
	color: #ffee58;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.4;
	font-weight: 700;
}

.footer-logo-title p {
	font-size: 1rem;
	color: #f0f4c3;
	font-style: italic;
	opacity: 0.9;
	margin-top: 6px;
	line-height: 1.5;
}

/* Links */
.dr1021footer a {
	color: #81d4fa;
	text-decoration: none;
	transition: color 0.3s ease;
}

.dr1021footer a:hover {
	color: #ffffff;
	text-decoration: underline;
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer ul li {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.6;
}

/* Section Titles */
footer h4 {
	font-size: 1.15rem;
	color: #ffee58;
	margin-bottom: 12px;
	border-bottom: 2px dashed #ffeb3b;
	display: inline-block;
	padding-bottom: 4px;
}

/* Social Icons */
.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}

.social-icons a {
	color: #ffeb3b;
	font-size: 1.4rem;
	transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
	color: #ffffff;
	transform: scale(1.15);
}

/* Contact Buttons */
.contact-buttons {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.contact-buttons a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 26px;
	border-radius: 30px;
	font-weight: 600;
	background: linear-gradient(135deg, #fbc02d, #fdd835);
	box-shadow: 0 4px 12px rgba(255, 214, 0, 0.5);
	color: #0d1b2a;
	font-size: 15px;
	transition: all 0.3s ease;
}

.contact-buttons a.phone-btn {
	background: linear-gradient(135deg, #ffd54f, #fbc02d);
}

.contact-buttons a:hover {
	transform: scale(1.05);
}

/* QR Code */
.qr {
	grid-column: 1/-1;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 30px;
	text-align: center;
}

.qr h4 {
	margin-bottom: 10px;
	color: #ffee58;
	font-weight: 600;
	font-size: 1rem;
}

.qr img {
	width: 100px;
	height: 100px;
	border: 2px dashed #ffee58;
	border-radius: 14px;
	padding: 6px;
	background: #ffffff;
	box-shadow: 0 2px 12px rgba(255, 214, 0, 0.3);
}

/* Footer Copy */
.footer-copy {
	text-align: center;
	font-size: 0.9rem;
	margin-top: 20px;
	color: #e0f7fa;
}

.footer-copy a {
	color: #ffd740;
	font-weight: 600;
	text-decoration: none;
}

.footer-copy a:hover {
	text-decoration: underline;
}

/* Mobile Responsive */
@media ( max-width : 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-logo-title {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-logo-title h3, .footer-logo-title p {
		text-align: center;
	}
	.social-icons {
		justify-content: center;
	}
	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}
}