/* Services Grid Compact Design */
.services-grid-section {
	background: #f8f9fa;
}
.section-title-compact h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #1d2c4d;
	margin-bottom: 0.5rem;
}
.section-title-compact p {
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
}
.service-card-compact {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.service-card-compact:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}
.service-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.service-card-compact:hover .service-image img {
	transform: scale(1.08);
}
.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(2, 49, 111, 0.9), transparent);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	padding: 2rem;
}
.service-card-compact:hover .image-overlay {
	opacity: 1;
}
.view-details {
	color: white;
	font-weight: 600;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.service-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.service-title a {
	color: #1d2c4d;
	text-decoration: none;
	transition: color 0.3s ease;
}
.service-title a:hover {
	color: #02316f;
}
.service-description {
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	flex-grow: 1;
}
.read-more-link {
	color: #02316f;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}
.read-more-link:hover {
	color: #0b5ed7;
}
.read-more-link i {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}
.read-more-link:hover i {
	transform: translateX(4px);
}
.breadcrumb-section {
	padding: 160px 0 60px;
	background-size: cover;
	background-position: center;
}
.breadcrumb-section h1 {
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
@media (max-width: 768px) {
	.service-image {
		height: 220px;
	}
	.service-content {
		padding: 1.25rem;
	}
	.service-title {
		font-size: 1.1rem;
	}
	.service-description {
		font-size: 0.9rem;
	}
	.breadcrumb-section h1 {
		font-size: 1.75rem;
	}
}
/* Service Hero Section */
.service-hero-section {
	padding: 140px 0 80px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.hero-content h1 {
	color: white;
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* Post Meta */
.post-meta-compact {
	display: flex;
	gap: 2rem;
	align-items: center;
	padding: 1.25rem;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #6c757d;
	font-size: 0.95rem;
}
.meta-item i {
	color: #02316f;
	font-size: 1.1rem;
}
/* Service Content */
.service-content-wrap {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 2.5rem;
	line-height: 1.8;
	font-size: 1.05rem;
	color: #495057;
}
.service-content-wrap h2,
.service-content-wrap h3,
.service-content-wrap h4 {
	color: #1d2c4d;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.service-content-wrap h2 {
	font-size: 1.75rem;
}
.service-content-wrap h3 {
	font-size: 1.5rem;
}
.service-content-wrap h4 {
	font-size: 1.25rem;
}
.service-content-wrap p {
	margin-bottom: 1.25rem;
}
.service-content-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1.5rem 0;
}
.service-content-wrap ul,
.service-content-wrap ol {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}
.service-content-wrap li {
	margin-bottom: 0.75rem;
}
/* Share Section */
.share-section-compact {
	background: white;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.share-title {
	margin: 0;
	color: #1d2c4d;
	font-weight: 600;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.share-title i {
	color: #02316f;
}
.social-share-list {
	display: flex;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #f8f9fa;
	border-radius: 50%;
	color: #495057;
	text-decoration: none;
	transition: all 0.3s ease;
}
.social-link:hover {
	background: #02316f;
	color: white;
	transform: translateY(-3px);
}
.social-link i {
	font-size: 1.25rem;
}
/* CTA Section */
.service-cta-section {
	margin-top: 3rem;
}
.cta-card {
	background: linear-gradient(135deg, #02316f 0%, #0b5ed7 100%);
	padding: 2.5rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	box-shadow: 0 4px 16px rgba(2, 49, 111, 0.2);
}
.cta-content h3 {
	color: white;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.cta-content p {
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-size: 1.05rem;
}
.cta-card .btn-primary {
	background: white;
	color: #02316f;
	border: none;
	padding: 0.875rem 2rem;
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.3s ease;
}
.cta-card .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	background: #f8f9fa;
}
/* Responsive Design */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 1.875rem;
	}
	.post-meta-compact {
		gap: 1rem;
	}
	.service-content-wrap {
		padding: 1.5rem;
		font-size: 1rem;
	}
	.share-section-compact {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.25rem 1.5rem;
	}
	.cta-card {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
	}
	.cta-card .btn-primary {
		width: 100%;
	}
}