/* ===================== Footer Main ===================== */
.dr1041footer {
	background: linear-gradient(135deg, #0d47a1, #00796b);
	color: white;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	padding: 60px 5% 30px;
}

/* Remove underline from all footer links */
.dr1041footer a {
	text-decoration: none; /* disables underline */
	color: inherit;
	transition: color 0.3s ease, transform 0.3s ease;
}

.dr1041footer a:hover {
	color: #ffc107;
	transform: translateX(3px);
}

/* Footer Container Grid */
.footer-container {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

/* Left Column: Brand */
.footer-brand {
	flex: 1;
	min-width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer-brand img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 10px;
	border: 2px solid #ffc107;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-brand h2.english {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffeb3b;
	margin: 5px 0;
}

.footer-brand h3.telugu {
	font-size: 1.3rem;
	color: #c8e6c9;
	margin-bottom: 10px;
}

.footer-brand p {
	font-size: 0.95rem;
	color: #e0f7fa;
	line-height: 1.5;
}

/* Middle Column */
.footer-middle {
	flex: 1;
	min-width: 250px;
}

/* Quick Links */
.footer-links h4, .footer-address h4 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	font-weight: 700;
	color: #ffeb3b;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	font-size: 0.95rem;
	color: #e0f7fa;
	display: inline-block;
}

/* Address */
.footer-address p {
	font-size: 0.95rem;
	color: #e0f7fa;
	margin: 5px 0;
}

.footer-address a {
	color: #e0f7fa;
}

/* Right Column */
.footer-right {
	flex: 1;
	min-width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

/* Contact Buttons */
.footer-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.footer-actions .fab-btn {
	padding: 12px 25px;
	border-radius: 35px;
	font-weight: 600;
	display: inline-block;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.footer-actions .whatsapp {
	background: linear-gradient(145deg, #25D366, #128C7E);
	color: white;
}

.footer-actions .call {
	background: linear-gradient(145deg, #ffc107, #ff9800);
	color: #0d47a1;
}

.footer-actions .fab-btn:hover {
	transform: translateY(-3px) scale(1.05);
}

/* Social Media */
.footer-social {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.footer-social h4 {
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffeb3b;
}

.social-links {
	display: flex;
	gap: 12px;
}

.footer-social .social {
	font-size: 1.5rem;
	color: #e0f7fa;
	transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social:hover {
	color: #ffc107;
	transform: scale(1.2);
}

/* QR Code */
.footer-qr {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-qr h4 {
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffeb3b;
}

.footer-qr img {
	max-width: 130px;
	border-radius: 12px;
	margin-top: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding-top: 18px;
	text-align: center;
	font-size: 0.9rem;
	color: #c8e6c9;
}

.footer-bottom a {
	color: #ffeb3b;
	font-weight: 600;
}

/* ===================== Responsive ===================== */
@media ( max-width : 768px) {
	.footer-container {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}
	.footer-actions {
		flex-direction: row;
		justify-content: center;
	}
	.footer-actions .fab-btn {
		margin: 0 5px;
	}
	.social-links {
		justify-content: center;
	}
	.footer-qr {
		margin-top: 20px;
	}
}