.dr1040testimonial {
	background: linear-gradient(135deg, #f9fafb, #e0f2f1, #f0fdf4);
	padding: 100px 20px;
	font-family: 'Poppins', sans-serif;
	color: #1b3c59;
	position: relative;
	overflow: hidden;
	border-top: 5px solid #4caf50;
}

.testimonial-section h2 {
	text-align: center;
	font-size: 2.6rem;
	color: #388e3c;
	font-weight: 800;
	margin-bottom: 50px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1150px;
	margin: 0 auto;
}

.testimonial-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px 25px;
	border: 1px solid #c8e6c9;
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.35s ease;
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 40px rgba(76, 175, 80, 0.2);
	border-color: #81c784;
}

.testimonial-text {
	color: #333;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 15px;
}

.testimonial-stars {
	margin-bottom: 12px;
	font-size: 1.4rem;
	letter-spacing: 3px;
}

/* Buttons inside testimonial card */
.testimonial-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.testimonial-buttons .whatsapp-btn, .testimonial-buttons .call-btn {
	text-decoration: none;
	padding: 8px 18px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.95rem;
	color: #fff;
	transition: 0.3s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-buttons .whatsapp-btn {
	background: linear-gradient(45deg, #25d366, #128c7e);
}

.testimonial-buttons .whatsapp-btn:hover {
	transform: scale(1.05);
}

.testimonial-buttons .call-btn {
	background: linear-gradient(45deg, #f97316, #dc2626);
}

.testimonial-buttons .call-btn:hover {
	transform: scale(1.05);
}

/* Fade-in on scroll */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1040testimonial {
		padding: 70px 15px;
	}
	.testimonial-section h2 {
		font-size: 2.2rem;
	}
}