/* ============================= */
/* TESTIMONIAL ROOT              */
/* ============================= */
.dr1017testimonial {
	padding: 90px 24px;
	background: linear-gradient(180deg, #fffaf3, #fff1dc);
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

/* ============================= */
/* SECTION LAYOUT                */
/* ============================= */
.dr1017testimonial .testimonial-section {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

/* ============================= */
/* TITLE                         */
/* ============================= */
.dr1017testimonial .testimonial-title {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: 0.6px;
	background: linear-gradient(90deg, #ff6f00, #ffb74d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1017testimonial .testimonial-subtitle {
	font-size: 18px;
	color: #6d4c41;
	margin-bottom: 60px;
	opacity: 0.95;
}

/* ============================= */
/* GRID                          */
/* ============================= */
.dr1017testimonial .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 34px;
}

/* ============================= */
/* CARD                          */
/* ============================= */
.dr1017testimonial .testimonial-card {
	background: rgba(255, 255, 255, 0.88);
	border-radius: 26px;
	padding: 34px 30px;
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.08),
		inset 0 0 0 1px rgba(255, 224, 178, 0.6);
	position: relative;
	text-align: left;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	backdrop-filter: blur(10px);
}

/* Quotation mark */
.dr1017testimonial .testimonial-card::before {
	content: "“";
	position: absolute;
	top: -18px;
	left: 22px;
	font-size: 70px;
	color: rgba(255, 183, 77, 0.35);
	font-family: serif;
}

/* Hover */
.dr1017testimonial .testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow:
		0 30px 70px rgba(0, 0, 0, 0.14);
}

/* ============================= */
/* TEXT                          */
/* ============================= */
.dr1017testimonial .testimonial-text {
	font-size: 17px;
	color: #4e342e;
	line-height: 1.75;
	font-style: italic;
}

/* ============================= */
/* STARS                         */
/* ============================= */
.dr1017testimonial .testimonial-card .stars {
	font-size: 18px;
	color: #ffb300;
	margin-top: 20px;
	letter-spacing: 4px;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media (max-width: 768px) {
	.dr1017testimonial .testimonial-title {
		font-size: 32px;
	}

	.dr1017testimonial .testimonial-subtitle {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.dr1017testimonial .testimonial-card {
		padding: 26px 22px;
	}
}

@media (max-width: 480px) {
	.dr1017testimonial .testimonial-title {
		font-size: 28px;
	}

	.dr1017testimonial .testimonial-card::before {
		font-size: 56px;
		top: -14px;
	}
}