.dr1040insight {
	background: linear-gradient(135deg, #e0f7fa, #f1f8e9, #fffde7);
	padding: 80px 20px;
	font-family: 'Poppins', sans-serif;
	color: #1b3c59;
	border-radius: 20px;
}

.insight-section h2 {
	text-align: center;
	font-size: 2.6rem;
	color: #0d9488;
	font-weight: 800;
	margin-bottom: 20px;
}

.insight-intro {
	text-align: center;
	font-size: 1.05rem;
	margin-bottom: 50px;
	color: #334155;
	line-height: 1.6;
}

.insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1150px;
	margin: 0 auto;
}

.insight-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 28px 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insight-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.insight-card h3 {
	font-size: 1.4rem;
	color: #f97316;
	font-weight: 700;
	margin-bottom: 12px;
}

.insight-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: #374151;
}

.insight-contact {
	text-align: center;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.whatsapp-btn, .call-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.whatsapp-btn {
	background-color: #25D366;
	color: #fff;
}

.whatsapp-btn:hover {
	background-color: #1da851;
}

.call-btn {
	background-color: #f97316;
	color: #fff;
}

.call-btn:hover {
	background-color: #dc2626;
}

/* Fade Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.insight-section h2 {
		font-size: 2.2rem;
	}
	.insight-card h3 {
		font-size: 1.25rem;
	}
	.insight-card p {
		font-size: 0.95rem;
	}
}