/* Talent Trail Footer */
.dr1042footer {
	background: linear-gradient(135deg, #0d47a1, #00796b);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	padding: 60px 20px 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

/* Footer Grid Container */
.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Logo & About */
.footer-logo {
	height: 120px; /* increased logo size */
	width: auto;
	margin-bottom: 15px;
	transition: height 0.3s ease;
}

.footer-about h2 {
	margin: 5px 0;
	font-size: 1.8rem;
	font-weight: 700;
}

.footer-about p {
	font-size: 0.95rem;
	line-height: 1.5;
	opacity: 0.9;
}

/* Section Headings */
.footer-links h3, .footer-contact h3, .footer-social h3, .footer-qr h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

/* Quick Links */
.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 8px;
}

.footer-links ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links ul li a:hover {
	color: #ffd700;
}

/* Floating Buttons */
.footer-fab-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	transition: transform 0.3s, box-shadow 0.3s;
}

.fab-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.fab-btn.whatsapp {
	background: linear-gradient(145deg, #25D366, #128C7E);
}

.fab-btn.phone {
	background: linear-gradient(145deg, #ffd700, #ffb700);
}

/* Social Media Links */
.footer-social a {
	display: inline-block;
	margin-right: 12px;
	color: #fff;
	font-size: 1.2rem;
	transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
	color: #ffd700;
	transform: scale(1.1);
}

/* QR Code */
.footer-qr img {
	height: 120px;
	width: auto;
	margin-top: 10px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease;
}

.footer-qr img:hover {
	transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 30px;
	padding-top: 15px;
	text-align: center;
	font-size: 0.85rem;
	opacity: 0.85;
}

.footer-bottom a {
	color: #ffd700;
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.footer-container {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
	.footer-logo {
		height: 90px; /* smaller on mobile */
	}
	.footer-qr img {
		height: 100px;
	}
}