.elementor-3320 .elementor-element.elementor-element-8b1c8a3{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e26762f */.header {
	background: linear-gradient(135deg, #DF393A 0%, #e55a5b 100%);
	color: white;
	padding: 60px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.header::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
	animation: float 30s linear infinite;
}

@keyframes float {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.header h2 {
	font-size: 35px;
	margin-bottom: 15px;
	font-weight: 300;color:#fff;
}

.header p {
	font-size: 18px;
	opacity: 0.9;
	margin-bottom: 30px;
}

.stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 36px;
	font-weight: bold;
	display: block;
}

.stat-label {
	font-size: 14px;
	opacity: 0.8;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.review-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}


.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.patient-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #DF393A, #e55a5b);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: bold;
	margin-right: 15px;
	flex-shrink: 0;
}

.patient-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
	color: #333;
}

.patient-details {
	font-size: 14px;
	color: #666;
}

.rating {
	display: flex;
	gap: 3px;
	margin: 15px 0;
}

.star {
	color: #ffc107;
	font-size: 18px;
}

.star.empty {
	color: #ddd;
}

.review-text {
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 15px;
}

.review-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #f0f0f0;
	font-size: 13px;
	color: #888;
}

.service-tag {
	background: #f8f9fa;
	color: #DF393A;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
}

.write-review-section {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
}

.write-review-section h3 {
	font-size: 28px;
	margin-bottom: 15px;
	color: #333;
	text-align: center;
}

.write-review-section p {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.review-form {
	display: grid;
	gap: 20px;
	max-width: 600px;
	margin: 0 auto;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 8px;
	color: #333;
	font-weight: 600;
}

.form-control {
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-control:focus {
	outline: none;
	border-color: #DF393A;
}

.form-control.textarea {
	resize: vertical;
	min-height: 120px;
}

.rating-input {
	display: flex;
	gap: 5px;
	margin-top: 8px;
}

.rating-star {
	font-size: 24px;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s;
}

.rating-star:hover,
.rating-star.active {
	color: #ffc107;
}

.submit-btn {
	background: linear-gradient(45deg, #DF393A, #e55a5b);
	color: white;
	border: none;
	padding: 15px 40px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	justify-self: center;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(223, 57, 58, 0.3);
}

.load-more {
	text-align: center;
	margin-top: 40px;
}

.load-more-btn {
	background: white;
	border: 2px solid #DF393A;
	color: #DF393A;
	padding: 15px 30px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.load-more-btn:hover {
	background: #DF393A;
	color: white;
}

@media (max-width: 768px) {
	.header h1 {
		font-size: 32px;
	}

	.stats {
		gap: 20px;
	}

	.filters-row {
		justify-content: center;
		text-align: center;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.review-card {
		padding: 20px;
	}
}/* End custom CSS */