/* Wrapper Styling */
.uc-wrapper {
	position: relative;
	padding: 60px 0;
	overflow: hidden;
}

/* Section Title Area */
.uc-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
	padding: 0 15px;
}

/* Navigation Buttons */
.uc-nav-group {
	display: flex;
	gap: 12px;
}

.uc-nav-btn {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s ease;
}

.uc-nav-btn:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
	transform: translateY(-2px);
}

.uc-nav-btn svg {
	width: 20px;
	height: 20px;
}

/* Swiper Container */
.uc-wrapper .swiper {
	width: 100%;

	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	padding: 20px 0 60px; /* Bottom padding for pagination */
}

.uc-wrapper .swiper-wrapper {
	align-items: center;
}

.uc-wrapper .swiper-slide {
	width: auto; /* Allow auto sizing if needed, or stick to fixed width below */
	display: flex;
	justify-content: center;
	align-items: center;
	transition:
		transform 0.4s ease,
		opacity 0.4s ease;
	opacity: 0.5;
	filter: grayscale(100%);
}

/* Logo Card Styling */
.uc-card {
	width: 200px;
	height: 100px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.uc-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: filter 0.3s ease;
}

/* Active Slide State */
.uc-wrapper .swiper-slide-active {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.1);
	z-index: 2;
}

.uc-wrapper .swiper-slide-active .uc-card {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Pagination Styling */
.uc-swiper-pagination {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

.uc-swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.uc-swiper-pagination .swiper-pagination-bullet-active {
	background: #007bff; /* Active color */
	width: 25px;
	border-radius: 5px;
}
/* this will managae height of bacground of our project id */
.our-team {
	background-size: auto 700px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.uc-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.section-title h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.uc-card {
		width: 160px;
		height: 80px;
	}
}
