/* ================= INSIGHT SECTION ================= */
.dr1050insight {
	padding: 100px 20px;
	background: linear-gradient(135deg, #ffffff, #f3f7ff);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	color: #1a1a1a;
}

.dr1050insight .insight-container {
	max-width: 1200px;
	margin: auto;
}

/* ================= HEADINGS ================= */
.dr1050insight h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #0a3cff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.dr1050insight .english-heading {
	display: block;
	font-size: 1rem;
	color: #355cff;
	margin-top: 6px;
}

.dr1050insight .intro {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 60px;
	max-width: 900px;
}

.dr1050insight .english-desc {
	display: block;
	font-size: 0.95rem;
	color: #555;
	margin-top: 6px;
}

/* ================= GRID ================= */
.dr1050insight .insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 26px;
}

/* ================= CARD ================= */
.dr1050insight .insight-card {
	background: #ffffff;
	padding: 30px 24px;
	border-radius: 20px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.dr1050insight .insight-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.dr1050insight .insight-card .icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0a3cff, #0032a8);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Card text */
.dr1050insight .insight-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0a3cff;
	margin-bottom: 10px;
}

.dr1050insight .insight-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
}

/* ================= CTA ================= */
.dr1050insight .insight-cta {
	margin-top: 70px;
	background: linear-gradient(135deg, #0a3cff, #0032a8);
	color: #ffffff;
	padding: 38px 26px;
	border-radius: 22px;
	text-align: center;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.dr1050insight .insight-cta p {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 22px;
}

/* ================= BUTTONS ================= */
.dr1050insight .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dr1050insight .btn {
	padding: 14px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1050insight .btn.call {
	background: #ff9800;
}

.dr1050insight .btn.whatsapp {
	background: #25d366;
}

.dr1050insight .btn:hover {
	transform: scale(1.07);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1050insight {
		padding: 80px 16px;
	}
	.dr1050insight h2 {
		font-size: 2.1rem;
	}
	.dr1050insight .intro {
		font-size: 1.05rem;
	}
	.dr1050insight .insight-cta p {
		font-size: 1.1rem;
	}
}