.dr1048insight {
	background: linear-gradient(to bottom, #1a1a1a, #292929);
	padding: 90px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #f4e2c2;
	background-image:
		url('https://www.transparenttextures.com/patterns/gold-scale.png');
}

.insight-section h2 {
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 50px;
	color: #FFD700;
	font-weight: 800;
	line-height: 1.5;
	text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.insight-section h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #d4af37;
	margin: 12px auto 0;
	border-radius: 4px;
}

.telugu-sub {
	display: block;
	font-size: 1.15rem;
	color: #f7d96f;
	font-weight: 500;
	margin-top: 8px;
}

.telugu {
	display: block;
	font-size: 0.95rem;
	color: #f2d9a5;
	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(280px, 1fr));
	gap: 32px;
	max-width: 1100px;
	margin: 0 auto;
}

.insight-box {
	background: linear-gradient(to bottom, #252525, #333);
	border-radius: 18px;
	padding: 32px 24px;
	text-align: center;
	border-left: 5px solid #FFD700;
	box-shadow: 0 10px 24px rgba(255, 215, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 38px rgba(255, 215, 0, 0.25);
}

.insight-icon {
	font-size: 3rem;
	margin-bottom: 15px;
	color: #FFD700;
	text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.insight-box h3 {
	font-size: 1.3rem;
	color: #ffecc0;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 1.5;
}

.insight-box p {
	font-size: 0.95rem;
	color: #f0d4a5;
	line-height: 1.6;
}

/* Scroll Fade */
.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);
}

/* Responsive */
@media ( max-width : 768px) {
	.insight-section h2 {
		font-size: 2.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) {
	.dr1048insight {
		padding: 60px 15px;
	}
}