.dr1041insight {
	background: linear-gradient(135deg, #e0f7fa, #fffde7, #f1f8e9);
	padding: 80px 20px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	border-radius: 20px;
	color: #1b3c59;
}

.insight-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

.insight-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #0d9488;
	margin-bottom: 15px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

.insight-title span {
	color: #f97316;
}

.insight-subtitle {
	font-size: 1.1rem;
	color: #334155;
	margin-bottom: 40px;
	line-height: 1.6;
}

.insight-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.insight-card {
	background: white;
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.insight-card h3 {
	font-size: 1.3rem;
	color: #0d9488;
	margin-bottom: 12px;
}

.insight-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: #334155;
}

/* Fade-in Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.2s;
}

.delay-2 {
	transition-delay: 0.4s;
}

@media ( max-width :992px) {
	.insight-title {
		font-size: 2rem;
	}
	.insight-cards {
		grid-template-columns: 1fr;
	}
}