.dr1028footer footer {
	background: linear-gradient(135deg, #f0fdf4, #dcedc8);
	color: #2E3A59;
	padding: 60px 40px 40px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	border-top: 8px solid #4CAF50;
	border-radius: 32px 32px 0 0;
	box-shadow: 0 -8px 60px rgba(76, 175, 80, 0.25);
}

/* Layout Grid */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
}

/* Logo and Title */
.footer-logo-title {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.footer-logo-title img {
	width: 90px;
	border-radius: 50%;
	background: #ffffff;
	padding: 8px;
	box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
	border: 3px solid #4CAF50;
	transition: transform 0.3s ease;
}

.footer-logo-title img:hover {
	transform: rotate(-5deg) scale(1.05);
}

.footer-logo-title h3 {
	font-size: 1.8rem;
	color: #4CAF50;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: 1px 1px 6px rgba(76, 175, 80, 0.3);
}

.footer-logo-title p {
	font-size: 1.1rem;
	color: #2E3A59;
	margin-top: 6px;
	opacity: 0.9;
}

/* Links and Headings */
footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer ul li {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.6;
	display: flex;
	align-items: center;
	gap: 8px;
}

footer h4 {
	font-size: 1.3rem;
	color: #388E3C;
	margin-bottom: 14px;
	border-bottom: 2px solid #4CAF50;
	display: inline-block;
	padding-bottom: 6px;
	font-weight: 700;
}

/* Link Colors */
.dr1028footer a {
	color: #4CAF50;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.dr1028footer a:hover {
	color: #FF7043;
	text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.social-icons a {
	color: #388E3C;
	font-size: 1.6rem;
	transition: transform 0.3s ease, color 0.3s ease;
	filter: drop-shadow(0 0 1px #81C784);
}

.social-icons a:hover {
	color: #FF7043;
	transform: scale(1.25) rotate(6deg);
	filter: drop-shadow(0 0 6px #81C784);
}

/* Contact Buttons */
.contact-buttons {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.contact-buttons a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 700;
	background: linear-gradient(135deg, #4CAF50, #66BB6A);
	box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
	color: #ffffff;
	font-size: 16px;
	letter-spacing: 0.5px;
	transition: all 0.4s ease;
	border: 2px solid transparent;
}

.contact-buttons a.phone-btn {
	background: #ffffff;
	color: #388E3C;
	border: 2px solid #4CAF50;
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
}

.contact-buttons a:hover {
	transform: scale(1.1);
	background: #FF7043;
	color: #ffffff !important;
	border-color: #FF7043;
}

/* QR Section */
.qr {
	grid-column: 1/-1;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 40px;
	text-align: center;
}

.qr h4 {
	margin-bottom: 12px;
	color: #2E3A59;
	font-weight: 800;
	font-size: 1.1rem;
}

.qr img {
	width: 110px;
	height: 110px;
	border: 4px dashed #66BB6A;
	border-radius: 20px;
	padding: 10px;
	background: #ffffff;
	box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4);
	transition: transform 0.3s ease;
}

.qr img:hover {
	transform: rotate(6deg) scale(1.1);
}

/* Copyright */
.footer-copy {
	text-align: center;
	font-size: 1rem;
	margin-top: 30px;
	color: #2E3A59;
	font-weight: 600;
}

.footer-copy a {
	color: #4CAF50;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-copy a:hover {
	color: #FF7043;
	text-decoration: underline;
}

/* Responsive Adjustments */
@media ( max-width : 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-logo-title {
		flex-direction: column;
		align-items: center;
	}
	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}
}