.dr1017testimonial {
	padding: 60px 20px;
	background: linear-gradient(to right, #fff3e0, #fffde7);
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
}

.testimonial-section {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

.testimonial-title {
	font-size: 2.4rem;
	color: #e65100;
	font-weight: 800;
	margin-bottom: 10px;
	background: linear-gradient(90deg, #ff6f00, #ffa000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.testimonial-subtitle {
	font-size: 18px;
	color: #6d4c41;
	margin-bottom: 40px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 25px 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	position: relative;
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
	font-size: 16.5px;
	color: #4e342e;
	line-height: 1.6;
	font-style: italic;
}

.testimonial-card .stars {
	font-size: 20px;
	color: #ffc107;
	margin-top: 15px;
	letter-spacing: 3px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
	.testimonial-title {
		font-size: 2rem;
	}
	.testimonial-subtitle {
		font-size: 16px;
	}
	.testimonial-card {
		padding: 20px 15px;
	}
}

@media screen and (max-width: 480px) {
	.testimonial-title {
		font-size: 1.8rem;
	}
	.testimonial-subtitle {
		font-size: 15px;
	}
	.testimonial-card {
		padding: 18px 12px;
	}
	.testimonial-card .stars {
		font-size: 18px;
	}
}