.dr1028insight {
	background: linear-gradient(to bottom, #F4F7F5, #ffffff);
	padding: 80px 20px;
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	color: #2C3E50;
}

.insight-section h2 {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 50px;
	color: #2E3A59;
	font-weight: 700;
	line-height: 1.4;
}

.insight-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #6FCF97;
	margin: 12px auto 0;
	border-radius: 4px;
}

.telugu-sub {
	display: block;
	font-size: 1.1rem;
	color: #FF7043;
	margin-top: 6px;
	font-family: 'Noto Sans Telugu', sans-serif;
}

.telugu {
	display: block;
	font-size: 0.95rem;
	color: #4E5D6C;
	margin-top: 6px;
	font-family: 'Noto Sans Telugu', sans-serif;
	line-height: 1.6;
}

.insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

.insight-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 20px;
	text-align: center;
	border-left: 6px solid #6FCF97;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
}

.insight-icon {
	font-size: 2.8rem;
	margin-bottom: 15px;
	color: #FF7043;
}

.insight-box h3 {
	font-size: 1.3rem;
	color: #2E3A59;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1.4;
}

.insight-box p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
}

.fade-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

@media ( max-width : 768px) {
	.insight-section h2 {
		font-size: 2rem;
	}
	.telugu-sub {
		font-size: 1rem;
	}
	.insight-box h3 {
		font-size: 1.1rem;
	}
	.insight-box p, .telugu {
		font-size: 0.9rem;
	}
}

@media ( max-width : 480px) {
	.dr1028insight {
		padding: 50px 15px;
	}
}