/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 20 2026 | 15:43:35 */
.hideit {
	display: none;
}
.service-top-form input[type="submit"] {
	padding: 10px 30px;
	line-height: 22px;
	text-transform: uppercase;
	background: #c62e2b;
	color: #ffffff!important;
	border: 2px solid #c62e2b;
	font-size: 14px;
	font-weight: 500;
	border-radius: 3px;
	font-family: 'Poppins',sans-serif;

	&:hover {
		background: #1b3dad;
		border-color: #1b3dad;
	}
}
.video-section {
	display: none;
}

.video-section h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: #333;
	text-align: center;
}

.video-section .section-subtitle {
	text-align: center;
	font-size: 18px;
	color: #666;
	margin-bottom: 40px;
}

.video-content {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 30px;
	align-items: center;
	background: #f9f9f9;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgb(0 0 0 / .1);
	margin-top: 30px;
}

.video-player {
	position: relative;
	width: 100%;
	max-width: 400px;
	aspect-ratio: 9/16;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-player iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.video-description {
	padding: 20px 0;
}

.video-description h3 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #333;
}

.video-description p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
}

.video-description ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.video-description ul li {
	padding: 12px 0 12px 30px;
	position: relative;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.video-description ul li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #4CAF50;
	font-weight: bold;
	font-size: 18px;
}

.video-cta {
	margin-top: 30px;
}

.video-cta .cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: #c62e2b;
	color: #fff !important;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	font-size: 16px;
	transition: background 0.3s;
}

.video-cta .cta-button:hover {
	background: #1b3dad;
}

.service-bottom-form {
	.wpcf7-form {
		display: flex;
		align-items: flex-start;
		gap: 15px;
		flex-wrap: wrap;

		> p {
			margin: 0;
			flex: 1;
			min-width: 200px;
		}

		label {
			display: block;
			font-size: 14px;
			margin-bottom: 5px;
			font-weight: 500;
		}

		input[type="text"],
		input[type="email"],
		textarea {
			width: 100%;
			padding: 12px 15px;
			border: 1px solid #ddd;
			border-radius: 5px;
			font-size: 14px;
			line-height: 20px;
			transition: border-color 0.3s;

			&:focus {
				outline: none;
				border-color: #4CAF50;
			}
		}

		textarea {
			resize: vertical;
			height: 45px;
			font-family: inherit;
		}

		input[type="submit"] {
			padding: 12px 30px;
			background: #c62e2b;
			color: #fff;
			border: none;
			border-radius: 5px;
			font-size: 16px;
			font-weight: 600;
			cursor: pointer;
			transition: background 0.3s;
			margin-top: 24px;
			line-height: 22px;

			&:hover {
				background: #1b3dad;
			}
		}

		.wpcf7-spinner {
			margin-left: 10px;
		}

		.wpcf7-response-output {
			flex-basis: 100%;
			margin: 0 !important;
		}
	}
}

.service-testimonials {
	.testimonials-section .slide-item .slide-header {
		padding: 20px;
		min-height: unset;
	}
}

.wpcf7[data-wpcf7-id="1344"] textarea {
	resize: vertical;
	height: 70px;
}

.how-it-works-section {
	padding: 30px 0;
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.step-box {
	position: relative;
	display: block;
	padding-left: 90px;
}

.step-number {
	color: #b4b7cd;
	background-color: #1d1f36;
	position: absolute;
	left: 0;
	top: 0;
	width: 70px;
	height: 70px;
	line-height: 40px;
	padding: 15px 0;
	font-size: 32px;
	text-align: center;
	border-radius: 50%;
}

.step-box h3 {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 7px;
	color: #1f1f1f;
	font-weight: 400;
}

.step-box p {
	line-height: 1.5;
	margin: 0;
}

.comparison-table-wrapper {
	width: 100%;
	overflow-x: auto;
	padding: 30px 0;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
	margin: 0;

	th {
		background: #1d1f36;
		color: white;
		padding: 20px;
		text-align: left;
		font-size: 18px;
		font-weight: 600;
	}

	td {
		padding: 20px;
		border: 1px solid #ddd;
		vertical-align: top;
		line-height: 1.6;

		&:first-child {
			font-weight: bold;
			background: #f0f0f0;
			width: 20%;
		}

		&:nth-child(2) {
			background: #e8f5e9;
		}
	}

	tr:nth-child(even) {
		background: #f9f9f9;
	}
}

.what-you-get-list {
	ul {
		list-style: none;
		margin: 0;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 15px;
		padding: 30px 0 !important;
	}

	li {
		padding: 15px 15px 15px 35px;
		background: #f9f9f9;
		border-radius: 5px;
		position: relative;
		line-height: 1.5;
		box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 20%);

		&:before {
			content: "●";
			position: absolute;
			left: 15px;
			color: #1d1f36;
			font-size: 18px;
			line-height: 1;
		}
	}
}

.footer-widget input:not(submit), .footer-widget textarea {
	max-width: 100%;
}

@media (max-width: 968px) {
	.video-content {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 30px 20px;
	}

	.video-player {
		max-width: 100%;
		margin: 0 auto;
	}

	.video-description {
		text-align: center;
	}

	.video-description ul li {
		text-align: left;
	}
}

@media (max-width: 768px) {
	.service-bottom-form .wpcf7-form {
		flex-direction: column;

		> p {
			width: 100%;
		}

		input[type="submit"] {
			margin-top: 10px;
			width: 100%;
		}
	}
	.how-it-works-section h2 {
		font-size: 28px;
	}

	.steps-container {
		grid-template-columns: 1fr;
	}
	.comparison-table {
		font-size: 14px;
		min-width: 500px;

		th,
		td {
			padding: 12px;
		}

		td:first-child {
			width: 25%;
		}
	}
	.what-you-get-list ul {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.video-section h2 {
		font-size: 28px;
	}

	.video-description h3 {
		font-size: 24px;
	}
	.comparison-table {
		font-size: 12px;

		th,
		td {
			padding: 10px;
		}
	}
}