/* Service Details Section */
#ServiceDetails {
	padding: 4rem 0;
	background-color: var(--white);
}

.service__image__container {
	aspect-ratio: 16/9;
	box-shadow: var(--box-shadow);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform 0.5s ease;
}

.service__image__container:hover {
	transform: translateY(-10px);
}

.service__title__container h3 {
	font-size: 24px;
	font-weight: var(--font-bold);
	color: var(--third-color);
	margin-bottom: 0.5rem;
}

.service__title__container h2 {
	font-size: 36px;
	font-weight: var(--font-bold);
	color: var(--primary-color);
	line-height: 1.2;
}

.service__description {
	p {
		font-size: 16px;
		line-height: 1.8;
		color: var(--primary-color);
	}
}

.service__features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service__feature__item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.service__feature__item svg {
	color: var(--secondary-color);
	font-size: 1.25rem;
}

.service__feature__item span {
	color: var(--primary-color);
	font-size: 16px;
	font-weight: var(--font-medium);
}

.service__ctas {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;

	a {
		padding: 1rem;
		text-align: center;
		border-radius: var(--radius-md);
		font-weight: var(--font-bold);
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		transition: all 0.3s ease;
		flex: 1;
	}

	.cta-item:first-child {
		background-color: var(--primary-color);
		color: var(--white);

		&:hover {
			background-color: var(--secondary-color);
		}
	}

	.cta-item:not(:first-child) {
		background-color: var(--white);
		color: var(--primary-color);
		border: 2px solid var(--primary-color);

		&:hover {
			background-color: var(--primary-color);
			color: var(--white);
		}
	}
}

/* Recent Projects Section */
#RecentProjects {
	padding: 4rem 0;
	background-color: #f8f9fa;
}

.section__header {
	text-align: center;
	margin-bottom: 3rem;

	.sub-heading {
		color: var(--primary-color);
		font-size: 30px;
		font-weight: var(--font-bold);
		margin-bottom: 1rem;
	}

	.section__description {
		color: var(--primary-color);
		font-size: 16px;
		max-width: 600px;
		margin: 0 auto;
	}
}

/* Responsive Styles */
@media (max-width: 991px) {
	.service__title__container h3 {
		font-size: 28px;
	}

	.service__title__container h2 {
		font-size: 40px;
	}

	.service__description p {
		font-size: 16px;
	}

	.service__feature__item span {
		font-size: 16px;
	}

	.service__image__container {
		margin-bottom: 2rem;
	}
}

@media (max-width: 768px) {
	.service__title__container h3 {
		font-size: 24px;
	}

	.service__title__container h2 {
		font-size: 32px;
	}

	.service__ctas {
		flex-direction: column;
	}

	.section__header .sub-heading {
		font-size: 24px;
	}
}

@media (max-width: 576px) {
	.service__title__container h3 {
		font-size: 20px;
	}

	.service__title__container h2 {
		font-size: 28px;
	}

	.section__header .sub-heading {
		font-size: 20px;
	}

	.section__header .section__description {
		font-size: 14px;
	}
}