.dr1027footer footer {
	background: linear-gradient(135deg, #2E3A59, #2C3E50);
	color: #F4F7FA;
	padding: 60px 40px 40px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	box-shadow: 0 -8px 40px rgba(46, 58, 89, 0.7);
	border-top: 8px solid #6FCF97;
	border-radius: 32px 32px 0 0;
}

.footer-logo-title {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.footer-logo-title img {
	width: 100px;
	border-radius: 24px;
	background: #ffffff;
	padding: 10px;
	box-shadow: 0 10px 30px rgba(111, 207, 151, 0.6);
	border: 3px solid #6FCF97;
	transition: transform 0.3s ease;
}

.footer-logo-title img:hover {
	transform: rotate(6deg) scale(1.05);
}

.footer-logo-title h3 {
	font-size: 2rem;
	margin: 0;
	color: #6FCF97;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	line-height: 1.3;
	font-weight: 900;
	text-shadow: 2px 2px 8px #2E3A59;
}

.footer-logo-title p {
	font-size: 1.2rem;
	color: #F4F7FA;
	opacity: 0.95;
	margin-top: 8px;
	line-height: 1.6;
	text-shadow: 0 0 3px #2E3A59;
}

.dr1027footer a {
	color: #6FCF97;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.dr1027footer a:hover {
	color: #ffffff;
	text-decoration: underline;
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer ul li {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.7;
}

footer h4 {
	font-size: 1.4rem;
	color: #6FCF97;
	margin-bottom: 16px;
	border-bottom: 3px solid #6FCF97;
	display: inline-block;
	padding-bottom: 8px;
	font-weight: 700;
	letter-spacing: 0.7px;
	text-shadow: 0 0 6px #6FCF97;
}

.social-icons {
	display: flex;
	gap: 25px;
	margin-top: 16px;
}

.social-icons a {
	color: #6FCF97;
	font-size: 1.8rem;
	transition: transform 0.3s ease, color 0.3s ease;
	filter: drop-shadow(0 0 1px #F4F7FA);
}

.social-icons a:hover {
	color: #FF7043;
	transform: scale(1.3) rotate(10deg);
	filter: drop-shadow(0 0 10px #F4F7FA);
}

.contact-buttons {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}

.contact-buttons a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 36px;
	border-radius: 40px;
	font-weight: 800;
	background: linear-gradient(135deg, #2E3A59, #2C3E50);
	box-shadow: 0 8px 28px rgba(46, 58, 89, 0.8);
	color: #F4F7FA;
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s ease;
	border: 2px solid #6FCF97;
}

.contact-buttons a.phone-btn {
	background: linear-gradient(135deg, #6FCF97, #50B87C);
	color: #2C3E50;
	box-shadow: 0 8px 28px rgba(111, 207, 151, 0.8);
	border: 2px solid #2E3A59;
}

.contact-buttons a:hover {
	transform: scale(1.15);
	box-shadow: 0 12px 36px rgba(111, 207, 151, 1);
	color: #2E3A59 !important;
	background: #F4F7FA;
	border-color: #FF7043;
}

.qr {
	grid-column: 1/-1;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 40px;
	text-align: center;
}

.qr h4 {
	margin-bottom: 14px;
	color: #F4F7FA;
	font-weight: 900;
	font-size: 1.2rem;
	text-shadow: 0 0 6px #6FCF97;
}

.qr img {
	width: 120px;
	height: 120px;
	border: 4px dashed #6FCF97;
	border-radius: 20px;
	padding: 10px;
	background: #2E3A59;
	box-shadow: 0 6px 24px rgba(111, 207, 151, 0.6);
	transition: transform 0.3s ease;
}

.qr img:hover {
	transform: rotate(8deg) scale(1.1);
}

.footer-copy {
	text-align: center;
	font-size: 1.1rem;
	margin-top: 30px;
	color: #F4F7FA;
	font-weight: 700;
	text-shadow: 0 0 5px #2E3A59;
}

.footer-copy a {
	color: #6FCF97;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-copy a:hover {
	color: #ffffff;
	text-decoration: underline;
}

@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;
	}
}