/* Solution Section */
.solution-section {
	padding: 100px 0;
	/* background: #F6F6F6F5; */
}

.solution-content {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.solution-content h2 {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 60px;
	margin-top: 0;
}

.solution-image-wrapper {
	position: relative;
	max-width: 1170px;
	margin: 0 auto;
}

.solution-image {
	position: relative;
	overflow: hidden;
}

.solution-image .main-solution-image {
	max-width: 700px;
	margin: 0 auto;
}

.solution-image img {
	width: 70%;
	height: auto;
	display: block;
}

/* Icon styling */
.solution-image .top-right-icon,
.solution-image .bottom-left-icon {
	position: absolute;
	width: 80px;
	height: auto;
	z-index: 2;
}

.solution-image .top-right-icon {
	top: 10px;
	left: 10px;
}

.solution-image .bottom-left-icon {
	bottom: 10px;
	right: 10px;
	left: unset;
}

.solution-text-content {
	margin: 50px 0 0;
	text-align: left;
	color: #fff;
}

.solution-text-content h2 {
	color: #000;
	margin-bottom: 20px;
}

.solution-text-content ul {
	margin-left: 20px;
}

.full-width-text {
	margin-bottom: 30px;
}

.two-column-text {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}

.two-column-text img {
	max-width: 100%;
	height: auto;
	display: block;
}

.two-column-text .column {
	width: 50%;
}

.trending-section {
	padding-top: 80px;
}

/* Mobile */
@media (max-width: 768px) {
	.two-column-text {
		flex-direction: column;
	}

	.two-column-text .column {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.solution-section {
		padding: 80px 0;
	}

	.solution-content h2 {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.problem-text ul {
		padding-left: 1.25rem;
	}

	.solution-image .main-solution-image {
		max-width: 600px;
		margin: 0 auto;
	}

	.solution-image .top-right-icon,
	.solution-image .bottom-left-icon {
		width: 45px;
	}

	.problem-content {
		gap: 24px;
		padding: 0;
	}
}

@media (max-width: 480px) {
	.solution-section {
		padding: 0 0 60px;
	}

	.solution-content h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.solution-image .main-solution-image {
		max-width: 300px;
		margin: 30px auto;
	}

	.solution-image .top-right-icon,
	.solution-image .bottom-left-icon {
		width: 24px;
	}
}

.process-cards .card-content{
	color: #c6c6c6;
}
.process-cards .card-content ul{
	color: #c6c6c6;
	margin: 10px 0 0 60px;
}

.contact-banner-combine {
	max-width: 1170px;
	margin: 0 auto;
	padding: 100px 0;
}

.innovation-service {
	max-width: 1170px;
	/* margin: 150px auto 0; */
	text-align: center;
	background: #F6F6F6;
	padding-top: 20px;
	padding-bottom: 40px;
}

.innovation-service h2 {
	font-weight: 600;
	margin-bottom: 10px;
}

.innovation-service p {
	max-width: 900px;
	margin: 0 auto 50px;
}

.stats-container {
	display: flex;
	justify-content: space-between;
	gap: 0;
	flex-wrap: wrap;
	margin-top: 40px;
	align-items: center;
}

.stat-item {
	flex: 1;
	text-align: center;
	position: relative;
	padding: 0 30px;
	display: flex;
	flex-direction: column;
}

/* Add vertical lines between items */
.stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 40%;
	width: 1px;
	background-color: #E5E5E5;
}

.stat-number {
	font-weight: 600;
	color: #E2001B;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	/* Stack the elements vertically */
	align-items: flex-start;
}

.up-to {
	color: #000;
}

.stat-title {
	font-weight: 500;
	color: #000;
	/* margin: 0 auto; */
	white-space: nowrap;
	text-align: left;
}

/* Update mobile styles */
@media (max-width: 991px) {
	.stats-container {
		flex-wrap: wrap;
		gap: 30px;
	}

	.stat-item {
		flex: 1 1 calc(50% - 20px);
	}

	.stat-item:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 767px) {
	.stats-container {
		flex-direction: column;
		align-items: start;
		gap: 20px;
	}

	.stat-item {
		flex: 1 1 100%;
		padding: 0;
		align-items: start;
	}

	.innovation-service {
		padding: 40px 20px;
	}
}

.work-banner {
	background: linear-gradient(90deg, #E2001B 0%, #7B1FA2 100%);
	padding: 40px 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.work-banner::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	width: 75px;
	height: 100%;
	background-image: url('../circleIcon.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	opacity: 0.4;
}

.work-banner::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 0;
	width: 75px;
	height: 100%;
	background-image: url('../iconArrow.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
	opacity: 0.4;
}

.work-banner h2 {
	color: #fff;
	font-weight: 500;
	margin: 0;
	position: relative;
	z-index: 1;
}

.contact-button {
	background: #fc0;
	color: #000;
	padding: 12px 24px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: JetBrains Mono;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.contact-button:hover {
	background: #fc0;
	text-decoration: none;
	color: #000;
}

@media (max-width: 768px) {
	.contact-banner-combine {
		padding: 0;
	}

	.work-banner {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.work-banner::before,
	.work-banner::after {
		width: 60px;
	}

	.stat-title {
		white-space: normal;
	}
}

.service_logos {
    /* margin: 100px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px; */
	
	display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 100px auto 0;
    /* background: #FAFAFAe6; */
    padding: 15px;
}
.service_logos img{
	width: 200px;
}
.client-section{
	margin-top: 100px;
}