/* ===== TESTIMONIAL SECTION ===== */
.dr1042testimonial {
	padding: 70px 20px;
	background: linear-gradient(135deg, #e3f2fd, #e8f5e9, #fff8e1);
	font-family: 'Poppins', sans-serif;
	overflow: hidden;
}

.testimonial-container {
	max-width: 1200px;
	margin: auto;
}

.testimonial-header h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #1a73e8;
	margin-bottom: 10px;
	text-align: center;
}

.testimonial-header p {
	font-size: 1.1rem;
	color: #333;
	text-align: center;
	margin-bottom: 50px;
}

/* Cards Grid */
.testimonial-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

/* Testimonial Card */
.testimonial-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Rating Stars */
.testimonial-rating {
	font-size: 1.2rem;
	color: #facc15;
	margin-bottom: 12px;
}

/* Testimonial Text */
.testimonial-text {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}

/* Fade-in Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.testimonial-header h2 {
		font-size: 2.2rem;
	}
	.testimonial-text {
		font-size: 0.95rem;
	}
}