/* Hero Section */
.new-hero {
	min-height: 100vh;
	background: url('../njs-bg.png') no-repeat center top;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	padding: 180px 80px 0;
}

.new-hero .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: ] linear-gradient(180deg,
			rgba(26, 26, 26, 0) 0%,
			rgba(26, 26, 26, 0.88) 50.68%,
			#1A1A1A 84.43%,
			rgba(26, 26, 26, 0.98) 100%);
	z-index: 1;
}

.new-hero .hero-content {
	position: relative;
	z-index: 2;
	max-width: 1170px;
	margin: 0;
	text-align: center;
}

.new-hero .hero-meta {
	text-align: center;
	margin-bottom: 2rem;
}

.new-hero .hero-category {
	font-size: 24px;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 500;
	max-width: 1170px;
	line-height: 40px;
}

.new-hero h1 {
	font-size: 64px;
	font-weight: 700;
	line-height: 80px;
	margin-bottom: 1rem;
	max-width: 1170px;
	color: #fff;
}

.new-hero h2 {
	font-weight: 600;
	color: #fff;
}

.new-hero .hero-details {
	display: grid;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	gap: 10px;
	max-width: 900px;
	margin: 0 auto;
	background: #1A1A1A66;
	padding: 10px;
}

.detail-item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 10px;
}

.detail-item .label {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	text-transform: none;
	letter-spacing: normal;
}

.detail-item .value {
	font-size: 1.25rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
}

.new-hero .hero-details .detail-item {
	position: relative;
}

.hero-details .detail-item:nth-child(1)::after {
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 0.5px;
	height: 100%;
	background-color: #C6C6C6;
}

.hero-details .detail-item:nth-child(2)::after {
	content: '';
	position: absolute;
	top: 0;
	right: -10px;
	width: 0.5px;
	height: 100%;
	background-color: #C6C6C6;
}

/* Client Section */
.client-section {
	margin-top: 150px;
	text-align: left;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
}

.client-content {
	display: flex;
	gap: 40px;
	align-items: center;
}

.client-logo {
	flex: 0 0 auto;
	width: 500px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-logo img {
	width: 400px;
	height: 200px;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.client-info {
	flex: 1;
}

.client-info h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.client-info p {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
	padding: 100px 0;
	background-color: var(--light-bg);
}

.services h2 {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.5rem;
	font-weight: 700;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

.service-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

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

.service-icon {
	width: 80px;
	height: 80px;
	background-color: var(--light-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.service-icon i {
	font-size: 2.5rem;
	color: var(--primary-color);
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.service-card p {
	color: var(--gray);
	font-size: 1.1rem;
}

/* About Section */
.about {
	padding: 100px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text {
	padding-right: 2rem;
}

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.about p {
	font-size: 1.2rem;
	color: var(--gray);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.about-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background-color: var(--light-bg);
}

.contact h2 {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.5rem;
	font-weight: 700;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1.1rem;
	transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

/* Footer */
.footer {
	background-color: var(--text-color);
	color: var(--white);
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.footer-section p {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.social-links {
	display: flex;
	gap: 1.5rem;
}

.social-links a {
	color: var(--white);
	font-size: 1.5rem;
	transition: var(--transition);
}

.social-links a:hover {
	color: var(--primary-color);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.new-hero {
		padding: 160px 60px 60px;
	}

	.new-hero h1 {
		font-size: 3.25rem;
	}
}

@media (max-width: 768px) {
	.new-hero {
		padding: 140px 20px 40px;
	}

	.new-hero h1 {
		margin-bottom: 1rem;
	}

	.new-hero .hero-details {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.new-hero .hero-details .detail-item:nth-child(1)::after,
	.new-hero .hero-details .detail-item:nth-child(2)::after {
		display: none;
	}

	.new-hero .hero-details .detail-item:nth-child(1),
	.new-hero .hero-details .detail-item:nth-child(2) {
		border-bottom: 0.5px solid #C6C6C6;
		padding-bottom: 20px;
	}

	.hero-category {
		font-size: 1.1rem;
	}

	.client-section {
		margin-top: 100px;
	}

	.client-content {
		flex-direction: column;
		gap: 30px;
		align-items: center;
		text-align: center;
	}

	.client-logo {
		width: 250px;
		height: 150px;
	}

	.client-info h2 {
		font-size: 28px;
	}

	.client-info p {
		font-size: 16px;
	}

	.problem-section-wrapper {
		padding: 20px 0 !important;
	}

	.problem-content h2 {
		font-size: 28px;
		text-align: center;
	}

	.problem-text {
		gap: 20px;
		padding: 20px;
	}

	.problem-text p {
		font-size: 16px;
		text-align: left;
	}

	.solution-section {
		padding: 80px 0;
	}

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

@media (max-width: 480px) {
	.hero {
		padding: 120px 20px 40px;
	}

	.hero h1 {
		font-size: 2.25rem;
	}

	.new-hero .hero-details {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.new-hero .hero-category {
		font-size: 1rem;
	}

	.service-card {
		padding: 2rem;
	}

	.client-logo {
		width: 200px;
		height: 120px;
	}

	/* .problem-section {
        margin-top: 50px;
    } */

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

	.solution-section {
		padding: 30px 0;
	}

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

/* Problem Section */
.problem-section-wrapper {
	/* background: #1A1A1A; */
	z-index: 1;
	padding: 100px 0;
}

.problem-section {
	text-align: left;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
}

.problem-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 20px;
}

.problem-content h2 {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
}

.problem-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.problem-text p {
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
}

.problem-text ul {
	display: inline-block;
	text-align: left;
	margin: 0 auto;
	padding-left: 1.5rem;
	list-style-type: disc;
	color: #fff;
}

.highlight {
	color: #1A1A1A;
	background-color: #FFE16B;
	border-radius: 1px;
	font-weight: 500;
}

/* 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;
}

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

.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 Section */
.process-cards {
	position: relative;
	background:
		linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url('../black-pattern-bg.png') no-repeat center center;
	background-size: cover;
	padding: 40px 20px;
}

.process-cards .cards-container {
	max-width: 1170px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.process-cards .main-heading {
	font-family: 'IBM Plex Sans';
	font-weight: 500;
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	padding: 0 0 40px;
	color: #fff;
}

.process-cards .process-card {
	display: flex;
	align-items: stretch;
	gap: 0;
	background: #333333;
	padding: 0;
	border-radius: 2px;
}

.process-cards .card-icon {
	flex-shrink: 0;
	width: 150px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.process-cards .card-separator {
	width: 1px;
	background-color: #686868;
}

.process-cards .card-icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.process-cards .card-content {
	flex: 1;
	padding: 30px;
}

.process-cards .card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.process-cards .card-number {
	font-family: 'IBM Plex Sans';
	font-weight: 500;
	font-size: 24px;
	line-height: 40px;
	color: white;
}

.process-cards .card-header h3 {
	font-family: 'IBM Plex Sans';
	font-weight: 500;
	font-size: 32px;
	line-height: 48px;
	color: white;
	margin: 0;
}

.process-card p {
	font-family: 'IBM Plex Sans';
	font-weight: 500;
	font-size: 24px;
	line-height: 40px;
	color: #C6C6C6;
	margin: 0 0 0 40px;
}

/* Responsive adjustments for process cards */
@media (max-width: 768px) {
	.process-cards {
		padding: 60px 20px;
	}

	.process-cards .card-icon {
		width: 70px;
	}

	.process-cards .card-icon img {
		width: 40px;
		height: 40px;
	}

	.process-cards .card-header {
		flex-direction: row;
		align-items: center;
	}

	.process-card p {
		margin: 0 0 0 30px
	}

}

@media (max-width: 480px) {
	.process-cards {
		padding: 40px 15px;
	}

	.process-card {
		padding: 20px;
	}

	.process-cards .card-icon {
		width: 70px;
	}

	.process-cards .card-icon img {
		width: 36px;
		height: 36px;
	}
}

/* Impact Section */
.impact-section {
	padding: 80px 0;
	color: white;
}

.impact-container {
	max-width: 1170px;
	margin: 0 auto;
	text-align: center;
	background: #333333;
}

.impact-container h2 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 32px;
	font-weight: 600;
	padding: 40px 0 10px;
	color: #fff;
}

.impact-subheading {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 18px;
	color: #fff;
	margin-bottom: 40px;
	padding: 0 10px;
}

.impact-metrics {
	display: flex;
	justify-content: space-around;
	gap: 20px;
	padding: 20px;
	margin-bottom: 60px;
}

.impact-section .metric-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	flex: 1;
}

.impact-section .metric-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.15);
}

.metric-value {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 32px;
	font-weight: 500;
	color: #FFE16B;
	line-height: 48px;
}

.metric-description {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
}

hr.testimonial-separator {
	border-bottom: 1px solid #686868;
}

.testimonial {
	padding: 40px;
	border-radius: 8px;
	position: relative;
	text-align: center;
	margin-top: 40px;
}

.quote-icon {
	position: absolute;
	font-size: 72px;
	color: #767676;
	font-family: serif;
	line-height: 1;
}

.quote-icon img {
	width: 36px;
	height: 36px;
}

.start-quote {
	top: 25px;
	left: 20px;
}

.end-quote {
	bottom: 20px;
	right: 20px;
}

.quote-text {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 30px;
	font-style: normal;
	color: white;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	border: none;
}

.author-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.author-image {
	width: 60px;
	height: 60px;
	object-fit: cover;
}

.author-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.author-name {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: white;
}

.author-title {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 14px;
	color: #9F9F9F;
}

/* Responsive adjustments for impact section */
@media (max-width: 768px) {
	.impact-section {
		padding: 60px 20px;
	}

	.impact-section .impact-metrics {
		flex-direction: column;
		gap: 40px;
	}

	.impact-section .metric-item:not(:last-child)::after {
		right: 0;
		top: auto;
		bottom: -20px;
		/* Half of the gap between items */
		width: 100%;
		height: 1px;
	}

	.impact-section .metric-item {
		padding-bottom: 20px;
		/* Add some space for the separator */
	}

	.impact-section .metric-item:last-child {
		padding-bottom: 0;
	}

	.quote-text {
		font-size: 20px;
	}

	.quote-icon {
		font-size: 60px;
	}

	.quote-icon img {
		width: 20px;
		height: 20px;
	}

	.start-quote {
		top: 25px;
		left: 15px;
	}

	.end-quote {
		bottom: 15px;
		right: 15px;
	}
}

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

	.impact-container h2 {
		font-size: 28px;
	}

	.impact-subheading {
		font-size: 16px;
	}

	.metric-value {
		font-size: 24px;
	}

	.metric-description {
		font-size: 13px;
	}

	.testimonial {
		padding: 30px;
	}

	.quote-text {
		font-size: 18px;
	}

	.author-info {
		flex-direction: column;
		gap: 10px;
	}

	.author-details {
		align-items: center;
		text-align: center;
	}

	.author-name {
		font-size: 16px;
	}

	.author-title {
		font-size: 13px;
	}

	.quote-icon {
		font-size: 48px;
	}

	.start-quote {
		top: 20px;
		left: 10px;
	}

	.end-quote {
		bottom: 10px;
		right: 10px;
	}
}

.business-outcomes {
	background-size: cover;
	background-position: center;
	padding: 80px 20px;
}

/* Heading */
.bo-heading {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	text-align: center;
	margin-bottom: 50px;
	color: #fff;
}

/* Cards Grid */
.bo-cards {
	/* display: grid;
    grid-template-columns: repeat(4, 1fr); */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto 50px;
	gap: 10px;
}

/* Card */
.bo-card {
	flex: 0 0 calc(25% - 15px);
	text-align: center;
	padding: 25px 20px;
	border: 1px solid #686868;
	background: #333333;
	border-radius: 2px;
}

.five-col-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.five-col-layout .bo-card {
	flex: 0 0 calc(20% - 10px);
}

/* Yellow Text */
.bo-highlight {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 32px;
	color: #FFCC00;
}

/* White Text */
.bo-title {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
}

/* Description */
.bo-description {
	margin: 0 auto 40px;
	text-align: left;
	color: #fff;
}

/* Two Column */
.bo-two-column {
	display: flex;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	color: #fff;
}

.bo-two-column ul {
	margin-left: 20px;
}

.bo-two-column .column {
	flex: 1;
}

/* Table Wrapper */
.bo-table {
	max-width: 1200px;
	margin: 50px auto 0;
}

/* Row */
.bo-table-row {
	display: flex;
	border-bottom: 1px solid #E1E1E1;
}

/* Left Column */
.bo-table-heading {
	width: 25%;
	color: #1A1A1A;
	background: #FAFAFA;
	border: 1px solid #E1E1E1;
	border-bottom: none;
	padding: 20px;
	font-weight: 600;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

/* Right Column */
.bo-table-logos {
	width: 75%;
	border-top: 1px solid #E1E1E1;
	border-right: 1px solid #E1E1E1;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 15px;
	overflow: hidden;
	background: #FAFAFA;
}

/* Logos */
.bo-table .bo-logo-item img {
	max-height: 50px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Prevent wrapping */
.bo-table-logos {
	white-space: nowrap;
}

.bo-table .bo-logo-item {
	flex: 1 1 0;
	display: flex;
	justify-content: center;
}


/* Mobile */
@media (max-width: 992px) {
	.bo-card {
		flex: 0 0 calc(50% - 10px);
		/* 2 per row */
	}
}

@media (max-width: 768px) {
	.bo-two-column {
		flex-direction: column;
	}

	.bo-table-heading {
		font-size: 14px;
		width: 35%;
		padding: 10px;
	}

	.bo-table-logos {
		width: 65%;
	}

	.bo-heading {
		font-size: 28px;
		line-height: 38px;
	}

	.bo-table-logos {
		flex-wrap: wrap;
		justify-content: center;
	}

	.bo-table .bo-logo-item {
		flex: 0 0 30%;
		margin-bottom: 10px;
	}
}

@media (max-width: 576px) {
	.bo-card {
		flex: 0 0 100%;
		/* 1 per row */
	}
}

.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;
	}
}
