/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 28 2025 | 21:15:52 */
:root {
	--gap:20px;
	--left-sec-width: calc(80% - var(--gap));
	--right-sec-width: calc(20% - var(--gap));
}

section.service-hero {
	height: 450px;
	display: flex;
	align-items: center;
	justify-content:center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.service-hero-overlay {
	background: rgba(0, 0, 0, 0.25);
	width: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	text-align: left;
	padding-top: 106px;
}

.container {
	max-width: 90%;
	margin: 0px auto;
	width: 100%;
}

h1.service-title {
	font-family: 'Sora';
	color: #fff;
	font-size: 55px;
	font-weight: 400;
	line-height: 1.15;
}

.service-description {
	color: #fff;
	font-family: 'Sora';
	font-size: 16px;
	line-height: 1.25;
}

section.service-main-content {
	padding: 80px 0px;
}

.content--wrapper {
	display: flex;
	gap: var(--gap);
	justify-content:space-between;
}

.content--wrapper .left-sec {
	flex: 0 0 var(--left-sec-width);
	max-width: var(--left-sec-width);
}

.content--wrapper .right-sec {
	flex: 0 0 var(--right-sec-width);
	max-width: var(--right-sec-width);
}

.service-content {
	background: #fff;
	padding: 40px 30px;
	border-radius: 20px;
	font-family: 'Sora', sans-serif;
	color: #646562;
	line-height: 1.6;
	/* display: flex; */
	/* flex-direction: column; */
	/* gap: 15px; */
}

/* ===== TYPOGRAPHY STYLES ===== */

/* Headings */

h1,h2,h3,h4,h5,h6 {
	margin: 0 0px 10px;
}


.service-content h1.wp-block-heading,
.service-content h1 {
	font-size: 42px;
	color: #000000;
	font-weight: 600;
	line-height: 1.2;
}

.service-content h2.wp-block-heading,
.service-content h2 {
	font-size: 30px;
	color: #000000;
	font-weight: 600;
	line-height: 1.3;
}

.service-content h3.wp-block-heading,
.service-content h3 {
	font-weight: 600;
	font-size: 30px;
	color: #000000;
	line-height: 1.3;
}

.service-content h4.wp-block-heading,
.service-content h4 {
	font-size: 22px;
	color: #000000;
	font-weight: 400;
	line-height: 1.4;
	margin: 25px 0px;
}

.service-content h5.wp-block-heading,
.service-content h5 {
	font-size: 20px;
	color: #000000;
	font-weight: 400;
	line-height: 1.4;
}

.service-content h6.wp-block-heading,
.service-content h6 {
	font-size: 18px;
	color: #000000;
	font-weight: 400;
	line-height: 1.4;
}

/* Paragraphs */
.service-content p {
	font-size: 16px;
	color: #646562;
	line-height: 30px;
}

/* Lists - Keeping your custom styles */
.service-content ul.wp-block-list,
.service-content ul {
	color: #646562;
	padding-left: 30px;
	list-style: disc;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 15px;
}

.service-content ul.wp-block-list li {
	padding-bottom: 20px;
	position: relative;
	line-height: 1.6;
}

.service-content ul.wp-block-list li:last-child {
	padding-bottom: 0;
}

/* .service-content ul.wp-block-list li:before {
	content: '';
	background-image: url('/wp-content/uploads/2025/11/checkcircle.webp');
	position: absolute;
	top: 0;
	left: -30px;
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: 20px;
} */

/* Ordered Lists */
.service-content ol.wp-block-list,
.service-content ol {
	color: #646562;
	padding-left: 30px;
	font-size: 16px;
	line-height: 20px;
}

.service-content ol li {
	padding-bottom: 20px;
	line-height: 1.6;
}

.service-content ol li:last-child {
	padding-bottom: 0;
}

/* Links */
.service-content a {
	color: #1986D8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.service-content a:hover {
	color: #1569b3;
	text-decoration: underline;
}

/* Blockquotes */
.service-content blockquote.wp-block-quote,
.service-content blockquote {
	border-left: 4px solid #1986D8;
	padding: 20px 30px;
	margin: 30px 0;
	background: #f8f9fa;
	font-style: italic;
	color: #555;
}

.service-content blockquote p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #555;
}

/* Tables */
.service-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
}

.service-content table th {
	background: #1986D8;
	color: white;
	padding: 12px 15px;
	text-align: left;
	font-weight: 600;
}

.service-content table td {
	padding: 10px 15px;
	border-bottom: 1px solid #e9ecef;
	color: #646562;
}

.service-content table tr:hover {
	background: #f8f9fa;
}

/* Images */
.service-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	/*     margin: 20px 0; */
}

/* .service-content figure.wp-block-image {
margin: 25px 0;
} */

.service-content figcaption {
	text-align: center;
	font-style: italic;
	color: #888;
	margin-top: 8px;
	font-size: 14px;
}

/* Separator */
.service-content hr.wp-block-separator,
.service-content hr {
	border: none;
	border-top: 2px solid #e9ecef;
	margin: 40px 0;
}

/* Buttons */
.service-content .wp-block-button__link {
	background: #1986D8;
	color: white;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.service-content .wp-block-button__link:hover {
	background: #1569b3;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

h2.more-services-title {
	font-weight: 600;
	font-family: 'Sora';
	font-size: 22px;
	color: #333333;
	margin: 0 0 20px;
}

.related-services-grid {
	background: #fff;
	border-radius: 20px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.related-services-grid a.related-service-link {
	color: #333333;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 16px;
	font-family: 'Sora';
	font-weight: 500;
	background: #F5F5F5;
	padding: 10px;
	border-radius: 10px;
	transition: 250ms all linear;
}

.related-services-grid a.related-service-link:hover {
	background: #1986D8;
	color: #fff;
}

.contact-info-wrapper {
	text-align: center;
	margin-top: 40px;
	position: sticky;
	top: 160px;
	padding: 30px;
	border-radius: 20px;
	background: #0598B1;
	background: linear-gradient(180deg,rgba(5, 152, 177, 1) 0%, rgba(25, 134, 216, 1) 100%);
}

.contact-info-wrapper h3 {
	font-family: 'Sora';
	color: #fff;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.25;
	margin:0px;
}
.contact-info-wrapper a.contact-button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	height: 50px;
	gap: 10px;
	font-family: 'Sora';
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: #1986D8;
	transition: 250ms all ease-in-out;
	margin: 40px 0px;
}

.contact-info-wrapper a.contact-button svg {
	transform: translateY(-1px);
}

.contact-info-wrapper a.contact-button:hover {
	transform: scale(1.02);
}

.contact-info-wrapper p.phone-magnet {
	display: flex;
	flex-direction: column;
	font-family: 'Sora';
	color: #fff;
}

.contact-info-wrapper p.phone-magnet span {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
}

.contact-info-wrapper p.phone-magnet a {
	color: #fff;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.5;
}



.wp-block-media-text {
	margin: 25px 0px 25px;
}

.service-main-content details > p {
	margin: 0px !important;
}

/* Base details block */
.service-main-content details {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #ffffff;
	padding: 0;
	margin: 1rem 0;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover / focus state */
.service-main-content details:hover {
	border-color: #d1d5db;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Summary (clickable header) */
.service-main-content details > summary {
	list-style: none;
	cursor: pointer;
	padding: 1rem 1.25rem;
	font-weight: 600;
	font-size: 1rem;
	background: #f9fafb;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Remove default arrow (Chrome/Safari) */
.service-main-content details > summary::-webkit-details-marker {
	display: none;
}

/* Custom arrow */
.service-main-content details > summary::after {
	content: "›";
	font-size: 1.4rem;
	line-height: 1;
	transform: rotate(0deg);
	transition: transform 0.25s ease;
	color: #6b7280;
}

/* Rotate arrow when open */
.service-main-content details[open] > summary::after {
	transform: rotate(90deg);
}

/* Open state styling */
.service-main-content details[open] {
	border-color: #c7d2fe;
	background: #ffffff;
}

/* Content inside details */
.service-main-content details > :not(summary) {
	padding: 1rem 1.25rem 1.25rem;
	color: #374151;
	line-height: 1.6;
}

/* Smooth open animation */
.service-main-content details[open] > :not(summary) {
	animation: fadeIn 0.25s ease;
}


/* Animation keyframes */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wp-block-list li > ul.wp-block-list {
	margin-top: 15px;
	margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1500px) {
	.container {
		max-width: 95%;
	}
}
@media (max-width: 1024px) {
	section.service-main-content {
		padding: 25px 0px;
	}
	.contact-info-wrapper {
		margin-top: 20px;
	}
	.content--wrapper {
		flex-direction: column;
	}

	.content--wrapper .left-sec,
	.content--wrapper .right-sec {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.service-content h1.wp-block-heading,
	.service-content h1 {
		font-size: 36px;
	}

	.service-content h2.wp-block-heading,
	.service-content h2 {
		font-size: 30px;
	}

	.service-content h3.wp-block-heading,
	.service-content h3 {
		font-size: 26px;
	}

	.service-content h4.wp-block-heading,
	.service-content h4 {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.wp-block-spacer {
		height: 15px !important;
	}
	section.service-hero {
		height: 400px;
	}
	.service-hero-overlay {padding-top: 50px;}
	h1.service-title {
		font-size: 42px;
	}

	.service-content {
		padding: 30px 20px;
	}

	.service-content h1.wp-block-heading,
	.service-content h1 {
		font-size: 32px;
		margin: 30px 0 15px 0;
	}

	.service-content h2.wp-block-heading,
	.service-content h2 {
		font-size: 28px;
		margin: 25px 0 12px 0;
	}

	.service-content h3.wp-block-heading,
	.service-content h3 {
		font-size: 24px;
		margin: 20px 0 10px 0;
	}

	.service-content h4.wp-block-heading,
	.service-content h4 {
		font-size: 20px;
	}

	.service-content p {
		font-size: 15px;
		line-height: 28px;
	}

	.service-content ul.wp-block-list,
	.service-content ul,
	.service-content ol.wp-block-list,
	.service-content ol {
		padding-left: 25px;
		font-size: 15px;
	}

	.service-content ul.wp-block-list li:before {
		left: -25px;
	}

	.service-content blockquote.wp-block-quote,
	.service-content blockquote {
		padding: 15px 20px;
		margin: 20px 0;
	}

	.service-content table {
		font-size: 14px;
	}

	.service-content table th,
	.service-content table td {
		padding: 8px 10px;
	}
	.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
		padding: 20px 0 0;
	}
	.service-main-content details {
		margin: 0.75rem 0;
		border-radius: 8px;
	}

	/* Summary header */
	.service-main-content details > summary {
		padding: 0.9rem 1rem;
		font-size: 0.85rem;
		background: #f3f4f6;
	}

	/* Larger tap target for arrow */
	.service-main-content details > summary::after {
		font-size: 1.6rem;
	}

	/* Content spacing */
	.service-main-content details > :not(summary) {
		padding: 0.75rem 1rem 1rem;
		font-size: 0.95rem;
		line-height: 1.65;
	}

	/* Reduce animation movement on small screens */
	@keyframes fadeIn {
		from {
			opacity: 0;
			transform: translateY(-2px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

@media (max-width: 480px) {
	section.service-hero {
		height: 375px;
	}

	h1.service-title {
		font-size: 32px;
	}

	.service-content {
		padding: 20px 15px;
	}

	.service-content h1.wp-block-heading,
	.service-content h1 {
		font-size: 28px;
	}

	.service-content h2.wp-block-heading,
	.service-content h2 {
		font-size: 24px;
	}

	.service-content h3.wp-block-heading,
	.service-content h3 {
		font-size: 22px;
	}

	.service-content h4.wp-block-heading,
	.service-content h4 {
		font-size: 18px;
	}

	.service-content p {
		font-size: 14px;
		line-height: 26px;
	}

	.service-content ul.wp-block-list,
	.service-content ul,
	.service-content ol.wp-block-list,
	.service-content ol {
		padding-left: 20px;
	}

	.service-content ul.wp-block-list li:before {
		left: -20px;
		background-size: 18px;
		width: 20px;
		height: 20px;
	}

	.service-content blockquote.wp-block-quote,
	.service-content blockquote {
		padding: 12px 15px;
		font-size: 16px;
	}

	.service-content .wp-block-button__link {
		padding: 10px 20px;
		font-size: 14px;
	}
}