/* Watr Service Providers Styles */

.watr-service-providers-section {
	width: 97%;
	background: #000;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 50px auto;
	border-radius: 40px;
	padding:50px 0;
	border:1px solid #000;
	
}

/* Each item takes 75vh of screen height */
.watr-service-item {
	min-height: 65vh;
	height: 65vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 40px 0 40px 0;
}

.watr-service-item-content {
	display: flex;
	max-width: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 60px;
	align-items: center;
	position: relative;
}

/* Left Side: Text Blocks */
.watr-service-left.change-style {
	flex: 1;
	max-width: 50%;
	position: relative;
	z-index: 2;
}

.watr-service-tem-main-2 {
	opacity: 1;
	transition: opacity 0.4s ease;
}

.watr-service-item-wrapper {
	margin-bottom: 20px;
}

.heading-style-h2 {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0;
}

.text-color-linear-gradient {
	background: linear-gradient(270deg, #5a606c, #ffffff 50%, #5a606c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.watr-service-item-paragraph {
	margin-top: 20px;
}

.watr-service-item-paragraph p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.change-color-grey {
	color: #999;
}

/* Right Side: Images with Tablet Mockup */
.watr-service-left.change-width {
	flex: 1;
	position: relative;
	height: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	margin: 0;
	margin-left:-20px;
}

.watr-tablet-mockup {
	width: 100%;
	max-width: 1000px;
	min-width: 600px;
	display: block;
	position: relative;
	transform: rotate(0deg);
	transform-origin: center center;
	will-change: transform;
}

.watr-tablet-frame {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 62.5%; /* 16:10 aspect ratio (10/16 = 0.625) */
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	border-radius: 20px;
	box-sizing: border-box;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.6),
		0 0 0 4px #0a0a0a,
		inset 0 0 0 2px #3a3a3a;
}

.watr-tablet-screen {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 12px;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
}

.watr-service-item-image-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.watr-service-item-image-2.is-active {
	opacity: 1;
	visibility: visible;
}

.watr-service-item-image-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.border-radius-thirty {
	border-radius: 30px;
}

.image-full-width {
	width: 100%;
}

.auto-fit {
	object-fit: cover;
}

/* Responsive Design */
@media (max-width: 991px) {
	.watr-service-item-content {
		flex-direction: column;
		gap: 40px;
	}
	
	.watr-service-left.change-style {
		max-width: 100%;
	}
	
	.watr-service-left.change-width {
		min-height: 300px;
		height: 300px;
		width: 100%;
		justify-content: flex-start;
	}
	
	.watr-tablet-mockup {
		min-width: 100%;
		max-width: 100%;
	}
	
	.watr-tablet-frame {
		height: 0;
		padding-bottom: 62.5%;
	}
	
	.heading-style-h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.watr-service-item {
		padding: 30px 0 30px 0;
	}
	
	.watr-service-left.change-width {
		min-height: 250px;
		height: 250px;
		justify-content: flex-start;
	}
	
	.watr-tablet-mockup {
		min-width: 100%;
		max-width: 100%;
	}
	
	.watr-tablet-frame {
		height: 0;
		padding-bottom: 62.5%;
	}
	
	.watr-tablet-screen {
		top: 8px;
		left: 8px;
		right: 8px;
		bottom: 8px;
	}
	
	.heading-style-h2 {
		font-size: 24px;
	}
	
	.watr-service-item-paragraph p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.watr-service-item {
		padding: 20px 0 20px 0;
	}
	
	.watr-service-left.change-width {
		min-height: 200px;
		height: 200px;
		justify-content: flex-start;
	}
	
	.watr-tablet-mockup {
		min-width: 100%;
		max-width: 100%;
	}
	
	.watr-tablet-frame {
		height: 0;
		padding-bottom: 62.5%;
	}
	
	.watr-tablet-screen {
		top: 6px;
		left: 6px;
		right: 6px;
		bottom: 6px;
	}
	
	.heading-style-h2 {
		font-size: 20px;
	}
}
