.dr1040footer {
	background: linear-gradient(135deg, #0d47a1, #00796b);
	color: white;
	font-family: 'Poppins', sans-serif;
	padding: 40px 20px 20px;
	margin-top: 40px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: auto;
}

.footer-brand {
	text-align: center;
}

.footer-logo {
	height: 70px;
	margin-bottom: 10px;
	background: #ffffff; /* white background */
	padding: 8px; /* some padding around logo */
	border-radius: 12px; /* optional rounded corners */
}

.footer-brand h2 {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 700;
}

.footer-brand p {
	margin: 6px 0;
	font-size: 0.95rem;
}

.footer-brand .gst {
	font-size: 0.85rem;
	opacity: 0.8;
}

/* Quick Links */
.footer-links h3, .footer-contact h3, .footer-social h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin: 6px 0;
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #ffeb3b;
	text-decoration: underline;
}

/* Contact Section */
.footer-contact p {
	margin: 6px 0;
	font-size: 0.95rem;
}

.footer-contact a {
	color: #ffeb3b;
	font-weight: 600;
}

.footer-actions {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.footer-btn {
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: 0.3s ease;
}

.footer-btn.call {
	background: #ffc107;
	color: #000;
}

.footer-btn.call:hover {
	background: #ffb300;
}

.footer-btn.whatsapp {
	background: #25d366;
	color: white;
}

.footer-btn.whatsapp:hover {
	background: #1ebe57;
}

/* Social Icons & QR */
.social-icons {
	display: flex;
	gap: 12px;
	margin-bottom: 10px;
}

.social-icons a {
	color: white;
	font-size: 1.3rem;
	transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
	transform: scale(1.1);
	color: #ffeb3b;
}

.footer-qr {
	width: 110px;
	margin: 10px 0;
	border-radius: 8px;
}

.scan-text {
	font-size: 0.85rem;
	opacity: 0.8;
}

/* Bottom Bar */
.footer-bottom {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 30px;
	padding-top: 15px;
	font-size: 0.85rem;
	opacity: 0.85;
}

.footer-bottom .powered a {
	color: #ffeb3b;
	font-weight: 600;
	text-decoration: none;
}

.footer-bottom .powered a:hover {
	text-decoration: underline;
}

/* Responsive */
@media ( max-width : 480px) {
	.footer-logo {
		height: 50px;
	}
	.footer-brand h2 {
		font-size: 1.3rem;
	}
	.footer-links h3, .footer-contact h3, .footer-social h3 {
		font-size: 1rem;
	}
}