/* Testimonials Wrapper */
.dr1016testimonial {
	background: #e0f7fa; /* Soft turquoise background */
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	color: #004d40;
	box-sizing: border-box;
}

/* Container */
.dr1016testimonial .testimonial-container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

/* Heading */
.dr1016testimonial h2 {
	font-size: 2.5rem;
	color: #00695c;
	margin-bottom: 10px;
	position: relative;
}

.dr1016testimonial h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #00bfa5;
	margin: 10px auto 20px;
	border-radius: 2px;
}

/* Intro Paragraph */
.dr1016testimonial .testimonial-intro {
	font-size: 1.1rem;
	color: #00796b;
	margin-bottom: 40px;
}

/* Testimonial Cards Grid */
.dr1016testimonial .testimonial-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 25px;
	margin-bottom: 25px;
	box-shadow: 0 6px 18px rgba(0, 150, 136, 0.1);
	text-align: left;
	transition: transform 0.3s ease;
}

.dr1016testimonial .testimonial-card:hover {
	transform: translateY(-4px);
}

/* Testimonial Text */
.dr1016testimonial .testimonial-text {
	font-size: 1rem;
	color: #333333;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* Author Info */
.dr1016testimonial .testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.dr1016testimonial .testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #00bfa5;
}

.dr1016testimonial .testimonial-author h4 {
	margin: 0;
	font-size: 1rem;
	color: #00695c;
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1016testimonial h2 {
		font-size: 2rem;
	}
	.dr1016testimonial .testimonial-intro {
		font-size: 1rem;
	}
	.dr1016testimonial .testimonial-card {
		padding: 18px;
	}
}

@media ( max-width : 480px) {
	.dr1016testimonial {
		padding: 40px 15px;
	}
	.dr1016testimonial h2 {
		font-size: 1.8rem;
	}
	.dr1016testimonial .testimonial-text {
		font-size: 0.95rem;
	}
	.dr1016testimonial .testimonial-author h4 {
		font-size: 0.95rem;
	}
	.dr1016testimonial .testimonial-author img {
		width: 44px;
		height: 44px;
	}
}