.ecwafe-flip-box {
	perspective: 1000px;
	/* width and height are controlled by Elementor responsive controls */
}
.ecwafe-flip-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.ecwafe-flip-box:hover .ecwafe-flip-inner {
	transform: rotateY(180deg);
}
.ecwafe-flip-front, .ecwafe-flip-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	box-sizing: border-box;
}
.ecwafe-flip-front {
	background: #f5f5f5;
	color: #333;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border-radius: 6px;
}
.ecwafe-flip-back {
	background: #333;
	color: #fff;
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border-radius: 6px;
}
.ecwafe-flip-icon {
	margin-bottom: 10px;
}
.ecwafe-flip-button {
	margin-top: 15px;
	display: inline-block;
	padding: 10px 20px;
	background: #ff5722;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}
.ecwafe-flip-button:hover {
	background-color: #e64a19;
}