.work-section {
	padding: 60px 0;
	background: #f8f9fa;
}
.work-details {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s;
}
.work-details:hover {
	transform: translateY(-5px);
}
.work-img img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	margin-bottom: 20px;
}
/* Headings and Paragraphs */
.work-details h2 {
	font-size: 28px;
	color: #333;
	margin-bottom: 20px;
	font-weight: 700;
}
.work-details p {
	font-size: 16px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 16px;
	font-family: "Josefin Sans", sans-serif;
}
.work-details ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.work-details ul li {
	font-size: 16px;
	color: #444;
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
	font-family: "Josefin Sans", sans-serif;
}
.work-details ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #800020;
	font-weight: bold;
}
/* Sidebar */
.work-sidebar {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	margin-top: 0px;
}
.work-title-box h3 {
	font-size: 22px;
	color: #800020;
	margin-bottom: 15px;
	font-weight: 600;
}
.work-category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.work-category-list li {
	margin-bottom: 12px;
	transition: all 0.3s ease;
	font-family: "Josefin Sans", sans-serif;
}
.work-category-list li i {
	color: #800020;
	margin-right: 8px;
	transition: all 0.3s ease;
}
.work-category-list li a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
}
.work-category-list li.active,
.work-category-list li:hover {
	background: #e7f1ff;
	padding: 10px 15px;
	border-radius: 8px;
}
.work-category-list li.active a,
.work-category-list li:hover a {
	color: #800020;
}
/* Call to Action */
.work-call-to-action {
	background-color: #800020;
	color: white;
	padding: 30px;
	border-radius: 16px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.work-call-to-action-bg {
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.work-call-to-action-sub-title {
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	position: relative;
	z-index: 1;
	color: #f1f1f1;
	font-family: "Josefin Sans", sans-serif;
}
.work-call-to-action-title {
	font-size: 22px;
	font-weight: 700;
	margin: 10px 0;
	position: relative;
	z-index: 1;
	color: #ffffff;
}
.work-call-to-action-btn-box {
	position: relative;
	z-index: 1;
}
.work-call-to-action-btn {
	background: white;
	color: #800020;
	font-family: "Josefin Sans", sans-serif;
	padding: 10px 25px;
	font-size: 15px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
}
.work-call-to-action-btn:hover {
	background: #e0ecff;
	color: #da5910;
	font-family: "Josefin Sans", sans-serif;
}
@media (max-width: 991px) {
	.work-sidebar {
		margin-top: 40px;
	}
	.work-details, .work-sidebar {
		padding: 20px;
	}
	.work-details h2 {
		font-size: 24px;
	}
	.work-call-to-action-title {
		font-size: 20px;
	}	
	.work-call-to-action-btn {
		font-size: 14px;
		padding: 8px 20px;
	}
}

@media (max-width: 576px) {
	.work-details h2 {
		font-size: 20px;
	}
	.work-details p,
	.work-details ul li {
		font-size: 14px;
	}
	.work-title-box h3,
	.work-call-to-action-title {
		font-size: 18px;
	}
	.work-call-to-action-sub-title {
		font-size: 12px;
	}
	.work-call-to-action-btn {
		font-size: 13px;
		padding: 7px 18px;
	}
	.work-category-list li {
		padding: 8px 10px;
	}
	.work-category-list li a {
		font-size: 14px;
	}
}