.main-title-section{
	margin-top: 0px;
}

.main-title-block{
	margin: 0;
	margin-top: 150px;
}

.main-title {
	margin: auto;
	font-size: 45px;
	font-weight: 600;
	text-shadow: 0 0 2px #ffffff1a, 0 0 4px #ffffff4d, 0 0 8px #fff6, 0 0 136px #76b72f47;
	letter-spacing: -2px;
	color: #fff;
	background: linear-gradient(135deg, #fff, #76b72fcc, #436f14cc, #83e517cc, #cdedab, #fff);
	background-size: 200% 200%;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 4s ease-in-out infinite;
}
	.main-title::before {
		content: "";
		width: auto;
		height: 0px;
		box-shadow: -2px 14px 20px 1px #ffffff4d;
		display: flex;
	}

.sub-title-solutions{
	justify-content: flex-start;
}

.main-navigation-container {
	flex: 1 0 200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 100px);
    align-items: center;
    width: 20%;
}

.row {
    flex-direction: row;
    display: flex;
    margin: 0 10%;
	flex-wrap: wrap;
	color: #a39f9f;
}

.row-reverse {
    flex-direction: row-reverse;
}

.col-1 {
	margin:20px;
	box-sizing: border-box;
	flex: 1 0 auto;
}

.col-2 {
    margin: 0 20px;
    box-sizing: border-box;
	 flex: 1 0 40%;
}

.stack-item {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.stack-item-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 200px;
    padding: 0 20px;
}

.stack-item img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
}

.stack-item-2 .img-circle
{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    background-color: #45543E;
}

.stack-item .img-circle
{
	flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    background-color: #45543E;
}

.img-circle img {
    height: 60px;
    width: 60px;
}

.stack-item-2 p {
	text-align:center;
}

.stack-item p {
    color: white;
}

p.stack-item-2-text {
    font-size: 13px;
    color: var(--color-prgray);
}

.stack-container {
	width: 100%;
    margin: 38px 0px;
    display:  flex;
    flex-direction: column;
}

.stack-container-2 {
	width: 100%;
    margin: 38px 0px;
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
}

.col-outsourcing {
	flex: 1 0 300px;
    padding: 20px;
    color: white;
    box-sizing: border-box;
	margin-top: 50px;
}

.row-outsourcing {
    max-width: 100%;
    flex-wrap: wrap;
}

.outsourcing-img-container {
    flex: 1 0 400px;
    display: flex;
    justify-content: center;
}

.outsourcing-img-container img {
    width: 400px;
}

.col-outsourcing li {
    margin: 14px 0;
}

.products-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

	.products-container h2 {
		text-align: center;
		margin-bottom: 20px;
	}

.products-left, .products-right {
	flex: 1;
	padding: 20px;
	background-color: transparent;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

	.products-left span {
		display: inline-block;
		margin-right: 15px;
		font-weight: bold;
		color: #ccc;
	}

.products-container > div:nth-child(2),
.products-container > div:nth-child(3) {
	display: flex;
	flex-direction: row;
	gap: 40px;
}

.main-navigation-container {
	width: 100%;
	max-width: 1200px; 
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding: 30px 20px;
	box-sizing: border-box;
}

.navigation-row {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 900px;
	box-sizing: border-box;
}

.navigation-row a {
		text-decoration: none;
		outline: none;
	}

.section-block {
	background: linear-gradient(135deg, #121212, #1e1e1e);
	position: relative;
	padding: 28px 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
	max-width: 600px;
	text-align: center;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	font-size: 1.4rem;
	font-weight: 600;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	cursor: pointer;
	letter-spacing: 1.5px;
	font-family: 'Montserrat', sans-serif;
	user-select: none;
	overflow: hidden;
	color: #e0e0e0;
}

.section-block p{
	font-weight: 400;
}

.section-block::before {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle at center, rgba(255, 255, 255, 0.07), transparent 70%);
		transform: rotate(25deg);
		pointer-events: none;
		transition: opacity 0.35s ease;
		opacity: 0.3;
}

.section-block:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.2);
}

.section-block:hover::before{
	opacity: 0.5;
}

.solutionsTitle{
	margin-top:80px;
}

.products-container {
	max-width: 1200px;
	margin: auto;
	padding: 2rem;
	font-family: 'Segoe UI', sans-serif;
	color: #f0f0f0;
}

.products-content {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: nowrap;
	
}

.products-left,
.products-right {
	flex: 1 1 48%;
	background-color: transparent;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.tags span {
	display: inline-block;
	background-color: #4CAF50;
	color: #111;
	font-weight: bold;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	margin-right: 0.5rem;
	margin-bottom: 1rem;
}

.products-right h4, .products-left h4 {
	background: linear-gradient(0deg, var(--color-prgreen) 45%, #fff 92%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.3rem;

}

.footer-card {
	align-self: flex-start;
	display: inline-block;
	border: 1px solid var(--modern-green);
	border-radius: 8px;
	padding: 6px 18px;
	background-color: rgba(107, 191, 89, 0.15);
	color: var(--modern-green);
	font-weight: 500;
	white-space: nowrap;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
	cursor: default; 
}

	.footer-card:hover {
		background-color: rgba(94, 169, 79, 0.35); 
		color: #e6f4d9; 
	}

.technology-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
	padding-bottom: 25px;
}

.centered-image {
	max-width: 100%;
	width: 600px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.products-left p {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1.2px;
	font-size: 17px;
	line-height: 1.6;
	color: #ccc;
}

.products-right ul + h4 {
	margin-top: 3rem;
}

.products-right ul {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

	.products-right ul li {
		font-family: 'Montserrat', sans-serif;
		letter-spacing: 1.2px;
		position: relative;
		padding-left: 30px;
		margin-bottom: 1rem;
		font-size: 1rem;
		color: #ccc;
		font-weight: 500;
	}

.products-right ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	width: 0.5rem;
	height: 0.5rem;
	border: solid #28a745; 
	border-width: 0 2px 2px 0;
	display: inline-block;
	margin-right: 0.5rem;
}

		.products-right ul li::after {
			content: "";
			position: absolute;
			left: 0.6rem;
			top: 50%;
			transform: translateY(-50%) rotate(-45deg);
			width: 0.5rem;
			height: 0.5rem;
			border: solid #28a745; 
			border-width: 0 2px 2px 0;
			display: inline-block;
		}


.section-title {
	text-align: center;
	font-size: 2.5rem; 
	margin-bottom: 2rem;
	background: linear-gradient(0deg, var(--color-prgreen) 45%, #fff 92%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.image-center-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
	position: relative;
}

.ecommerce-image {
	max-width: 100%;
	width: 100%;
	max-width: 700px;
	height: auto;
	border-radius: 1rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.ecommerce-image:hover {
		transform: scale(1.02);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	}


.image-center-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 1rem;
	z-index: -1;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.products-left, .products-right {
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	padding: 20px; 
	flex: 1;
}


.solutionsTitle{
	margin-top: 10px;
}

.section-block p {
	color: #cccccc; 
	font-family: 'Montserrat', sans-serif;
	line-height: 1.4;
	font-weight: 100;
	opacity: 0.5;
}




.solutions-nav {
	display: flex;
	justify-content: center;
	gap: 4.5rem;
	padding: 1rem 0;
}

.card {
	position: relative;
	width: 10rem;
	height: 10rem;
	flex: 0 0 auto;
	text-align: center;
	cursor: pointer;
	transition: transform .2s;
}


.card-label {
	color: rgba(255, 255, 255, 0.8); 
}

	.card-label h4 {
		font-size: 18px;
		letter-spacing: 1.1px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 400;
		line-height: 1.4;
	}

		              

.card-icon {
	width: 100%;
	height: 100%;
	filter: invert(1) brightness(2);
}


.card-label h4 {
	padding-top: 0;
	text-align:center;
}


.solutions-nav .card:first-child .card-label h4,
.solutions-nav .card:nth-child(5) .card-label h4 {
	margin-top: 2px;
}


.card-label .learn-more {
	display: inline-block;
	transition: transform 0.2s ease;
}

.card:hover .learn-more {
	transform: rotate(90deg);
}

.solution-title {
	text-align: center;
	width: 100%;
	display: block;
}

@media (max-width: 1500px) {
	.main-navigation-container {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, 100px);
	}
}
@media (max-width: 1440px) {
	.row {
		margin: 0 10%;
	}
}
@media (max-width: 769px){
	.products-container {
		margin-top: -50px;
		max-width: 950px;
	}

	.products-container h2 {
			margin-bottom: 0px;
	}

	.technology-tags {
		margin-top: 0px;
		padding-bottom: 15px;
		gap: 5px;
	}

	.products-left p {
		letter-spacing: 1.1px;
		font-size: 15px;
		line-height: 1.4;
	}

	.products-left span {
		margin-right: 10px;
	}

	span.footer-card{
		font-size: 13px;
	}

	.products-container > div:nth-child(2),
	.products-container > div:nth-child(3) {
		gap: 10px;
	}

	.image-center-wrapper{
		margin-top: -20px;
	}

	.ecommerce-image {
		max-width: 500px;
	}

}
@media (max-width: 768px) {
	.products-container {
		flex-direction: column;
	}

	.products-container > div:nth-child(2),
	.products-container > div:nth-child(3) {
		flex-direction: column;
	}

	.navigation-row {
		flex-wrap: wrap;
		max-width: 450px;
	}

	.products-content {
		flex-direction: column;
	}

	.products-left,
	.products-right {
		flex: 1 1 100%;
	}
}
@media (max-width: 720px) {
	.main-navigation-container {
		margin-top: 20px;
		width: 100%;
		justify-items: center;
		grid-template-rows: repeat(4, 71px);
		gap: 20px;
	}
}
@media (max-width: 501px) {
	.section-block {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 50px; /* or the height you want */
		padding: 0; /* remove extra padding */
		text-align: center;
		overflow: hidden; /* hide overflowing content */
	}

		.section-block p {
			display: none;
		}

		.section-block .solution-title {
			font-size: 1rem; /* adjust as needed */
			margin: 0;
			padding: 0;
			line-height: 1;
		}

	.section-title {
		font-size: 2rem;
		
	}


}
@media (max-width: 500px) {
	.section-block {
		font-size: 12px;
		width: 241px;
		height: 43px;
		border-radius: 10px;
		border: 2px;
		border-style: inset;
		border-color: #89d85d36;
	}

	.col-2 {
		margin: 0px;
	}

	.main-title-section {
		overflow: hidden;
	}

	.main-navigation-container {
		gap: 0px;
	}

	.navigation-row{
		margin-bottom: 30px;
	}

	.solutionsTitle {
		margin-top: -20px;
	}

	.navigation-row {
		margin-top: -20px;
	}
}
@media (max-width: 480px) {
	.navigation-row {
		flex-wrap: wrap;
		max-width: 250px;
		gap: 20px;
	}

	.section-block {
		min-width: 100%;
		box-sizing: border-box;
	}
}
@media (prefers-color-scheme: dark) {
	.ecommerce-image {
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
	}
}
@media (max-width: 450px) {
	.products-left p {
		font-size: 13px;
		line-height: 1.4;
	}

	.products-left span {
		margin-right: 5px;
	}

	span.footer-card {
		font-size: 11px;
	}

	.products-right ul li {
		font-size: 13px;
		letter-spacing: 1px;
		margin-bottom: 0.7rem;
		padding-left: 25px;
	}

		.products-right ul li::before {
			left: 0;
			width: 0.35rem;
			height: 0.35rem;
			margin-right: 0;
		}

		.products-right ul li::after {
			left: 0.3rem; 
			width: 0.35rem;
			height: 0.35rem;
		}

}
@media (max-width: 331px) {
	.products-right ul li::before {
		width: 0.25rem;
		height: 0.25rem;
	}

	.products-right ul li::after {
		width: 0.25rem;
		height: 0.25rem;
	}
}
@media (max-width: 325px) {
		.products-left p {
			font-size: 12px;
			line-height: 1.2;
		}

		.products-left span {
			margin-right: 2px;
		}

		span.footer-card {
			font-size: 10px;
		}

		.products-right ul li {
			font-size: 12px;
			letter-spacing: 1px;
			margin-bottom: 0.5rem;
			padding-left: 20px;
		}


	}

