.dr1042insight {
	background: linear-gradient(135deg, #e3f2fd, #ffffff, #e0f7fa);
	padding: 80px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #1b3c59;
	border-radius: 20px;
	overflow: hidden;
}

.insight-section h2 {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 800;
	color: #1a73e8;
	margin-bottom: 40px;
}

.insight-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
}

.insight-card {
	background: #fff;
	border-left: 6px solid #1a73e8;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	padding: 20px 26px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.insight-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0b4f6c;
	margin-bottom: 10px;
}

.insight-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: #334155;
}

/* Fade-in on scroll */
.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: 2rem;
	}
	.insight-card h3 {
		font-size: 1.1rem;
	}
	.insight-card p {
		font-size: 0.95rem;
	}
}