/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 18 2026 | 17:00:32 */
/* Reset (scoped for Elementor) */
.team-carousel-wrapper * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Wrapper (acts like body but safe) */
.team-carousel-wrapper {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	padding: 20px 0;
	position: relative;
}

/* Allow page scroll */
html, body {
	overflow-x: hidden;
	overflow-y: auto;
}

/* Floating button */
#super-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1000;
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    width: 56px;
    height: 56px;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}
#super-btn:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.28);
    transform: scale(1.07);
}
#super-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Layout */
.team-carousel-wrapper .main-container {
	display: flex;
	width: 100%;
	max-width: 1200px;
	min-height: 80vh; /* IMPORTANT FIX */
	gap: 60px;
	align-items: center;
	justify-content: center;
}

.team-carousel-wrapper .carousel-section {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.team-carousel-wrapper .controls-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding-left: 40px;
}

/* Carousel */
.team-carousel-wrapper .carousel-container {
	width: 100%;
	max-width: 500px;
	height: 70vh;
	position: relative;
	perspective: 1000px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-carousel-wrapper .carousel-container .nav-arrow {
	display: none;
}

.team-carousel-wrapper .carousel-track {
	width: 450px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Cards */
.team-carousel-wrapper .card {
	position: absolute;
	width: 400px;
	height: 225px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.team-carousel-wrapper .card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s ease;
}

/* Positions (same as CodePen) */
.team-carousel-wrapper .card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.team-carousel-wrapper .card.center img {
	filter: none;
}

.team-carousel-wrapper .card.up-2 {
	z-index: 1;
	transform: translateY(-300px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}
.team-carousel-wrapper .card.up-2 img {
	filter: grayscale(100%);
}

.team-carousel-wrapper .card.up-1 {
	z-index: 5;
	transform: translateY(-150px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}
.team-carousel-wrapper .card.up-1 img {
	filter: grayscale(100%);
}

.team-carousel-wrapper .card.down-1 {
	z-index: 5;
	transform: translateY(150px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}
.team-carousel-wrapper .card.down-1 img {
	filter: grayscale(100%);
}

.team-carousel-wrapper .card.down-2 {
	z-index: 1;
	transform: translateY(300px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}
.team-carousel-wrapper .card.down-2 img {
	filter: grayscale(100%);
}

.team-carousel-wrapper .card.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Member Info */
.team-carousel-wrapper .member-info {
	text-align: center;
	margin-top: 20px;
	transition: all 0.5s ease-out;
}

.team-carousel-wrapper .member-name {
	color: rgb(8, 42, 123);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 8px;
	position: relative;
	display: inline-block;
}

.team-carousel-wrapper .member-name::before,
.team-carousel-wrapper .member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 80px;
	height: 2px;
	background: rgb(8, 42, 123);
}

.team-carousel-wrapper .member-name::before {
	left: -100px;
}
.team-carousel-wrapper .member-name::after {
	right: -100px;
}

.team-carousel-wrapper .member-role {
	color: #848696;
	font-size: 1.2rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 5px 0;
	margin-top: -10px;
}

/* Dots */
.team-carousel-wrapper .dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.team-carousel-wrapper .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.team-carousel-wrapper .dot.active {
	background: rgb(8, 42, 123);
	transform: scale(1.2);
}

/* Arrows */
.team-carousel-wrapper .nav-arrow {
	background: transparent;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
}

.team-carousel-wrapper .nav-arrow img {
	width: 60px;
	height: 60px;
}

/* Scroll indicator */
.scroll-indicator {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: rgba(8, 42, 123, 0.8);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.8rem;
	z-index: 1000;
	animation: scrollFadeOut 5s ease-in-out forwards;
}

@keyframes scrollFadeOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { opacity: 0; }
}

/* Mobile */
@media (max-width: 768px) {

	.team-carousel-wrapper .main-container {
		flex-direction: column;
		gap: 20px;
	}

	.team-carousel-wrapper .controls-section {
		padding-left: 0;
		gap: 20px;
	}

	.team-carousel-wrapper .carousel-container {
		height: 60vh;
		max-width: 350px;
	}

	.team-carousel-wrapper .card {
		width: 320px;
		height: 180px;
	}

	.team-carousel-wrapper .carousel-track {
		width: 350px;
	}

	.team-carousel-wrapper .member-name {
		font-size: 1.8rem;
	}

	.team-carousel-wrapper .member-role {
		font-size: 1rem;
	}
}