.partner-hero{
	background-image: url("/wp-content/uploads/2026/04/grow-banner.webp");
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

.logo-track img {
  margin: 0 40px;
  object-fit: contain;
}
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.qatch-card{
	background-color: #1a1e2b;
	overflow: hidden;
}
.qatch-card::after{
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	right: -70px;
	top: -70px;
	background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(228, 42, 44, 0.25) 0%, rgba(228, 42, 44, 0) 70%);
	opacity: 0.8;
}

.partner-card {
    border: 1px solid #0000001A;
    transition: all 0.3s ease-in-out;
}

.partner-card:hover {
    border-color: #E42A2C;
	border-top-width: 3px;
	box-shadow: 0 0 16px rgba(0, 0, 0, .12);
}

.numbers-section .number-box{
	border-right: 1px solid #ababab;
}

.numbers-section .number-box:last-child{
    border-right: none;
	border-bottom: none;
}

.number-card-container{
	overflow: hidden;
}

.number-card-container::before{
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	left: 10px;
	top: -20px;
	background: #E42A2C;
	filter: blur(50px);	
}

.number-card-container::after{
	content: "";

	position: absolute;
	width: 50px;
	height: 50px;
	right: 10px;
	bottom: -20px;

	background: #E42A2C;
	filter: blur(50px);
}

@media (min-width: 768px) {
  .numbers-section .col-md-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* tab section start */
.features-section {
	background-color: #262A37;
}

.custom-tabs-container {
	border-radius: 10px;
	border: 1px solid #0000001A;
	padding: 10px;
	display: flex;
	justify-content: space-around;
	margin-bottom: 30px;
	gap: 10px;
	background-color: #FFFFFF1A;
}

.nav-pills .nav-link {
	color: #FFFFFF;
	font-weight: 600;
	padding: 12px 25px;
	border-radius: 0;
	background: transparent;
	border: none;
	font-size: 16px;
}

.nav-pills .nav-link.active {
	background-color: #ef3e36;
	color: white;
	clip-path: polygon(7% 0%,100% 0%,100% 0%,100% 67%,91% 100%,1% 100%,0% 100%,0% 32%);
}

.feature-content-wrapper {
	display: flex;
	align-items: center;
	min-height: 400px;
}

.feature-image-side {
	position: relative;
	display: flex;
	justify-content: end;
}

.feature-image-side img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 991px) {
	.custom-tabs-container {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.custom-tabs-container ul{
		flex-direction: column;
		align-items: center;
	}
	
	.feature-text-side {
		text-align: center;
		margin-bottom: 40px;
	}
	
	.feature-text-side ul{
		text-align: start;
	}
	
	.image-bg-decoration {
		display: none;
	}
}
/* tab section end */

/* GETTING STARTED section start */
.getting-started-section {
	padding: 80px 0;
	text-align: center;
}

.section-subtitle {
	color: #d63384; /* Pinkish/Red color from image */
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: #212529;
}

.section-description {
	color: #6c757d;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 60px auto;
	line-height: 1.6;
}

/* Steps Timeline */
.steps-container {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/* The dashed line behind the circles */
.steps-container::before {
	content: "";
	position: absolute;
	top: 60px; /* Aligned with center of the circle */
	left: 10%;
	right: 10%;
	height: 1px;
	border-top: 3px dashed #dee2e6;
	z-index: 1;
}

.step-item {
	position: relative;
	z-index: 2;
	flex: 1;
	padding: 0 20px;
}

.step-icon-wrapper {
	position: relative;
	width: 90px;
	height: 90px;
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px auto;
	transition: all 0.35s ease-in-out;
}

.step-number {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #dc3545;
	color: #ffffff;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ffffff;
}

.step-item:hover .step-icon-wrapper{
	border-color: #E42A2C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.steps-container {
		flex-direction: column;
		align-items: center;
	}
	.steps-container::before {
		display: none; /* Hide dashed line on mobile */
	}
	.step-item {
		margin-bottom: 20px;
	}
	.step-icon-wrapper{
		margin: 0 auto 15px auto;
	}
}
/* GETTING STARTED section end */

.pre-footer-section{
	padding: 70px;
}

.pre-footer-img{
	position: absolute;
    bottom: 0;
    right: 15px;
}

@media (max-width: 1024px){
	.pre-footer-section{
		padding: 30px 30px 480px 30px;
	}
}

@media (max-width: 767px){
	
	.partner-hero{
		background-image: url("/wp-content/uploads/2026/04/partner-hero-bg-m.webp");
		height: 745px;
		aspect-ratio: unset !important;
	}
	
	.logo-track img{
		margin: 0 20px;
	}
	
	.numbers-section .number-box{
		border-right: 0;
		border-bottom: 1px solid #ababab;
	}
	
	.pre-footer-section{
		padding: 30px 30px 380px 30px
	}
	
	.pre-footer-section .pre-footer-img img{
		height: 325px;
	}
}