 /* Modern Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* Attractive Team Section */
.fc-team {
	padding: 100px 0;
	background: #ffffff;
	position: relative;
}
/* Stunning Card Design */
.fc-team-content {
	position: relative;
	margin-bottom: 40px;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	border-radius: 20px;
	overflow: hidden;
	height: 300px;
	perspective: 1000px;
}
.fc-team-content:hover {
	transform: translateY(-15px);
}
/* Card Inner Container with 3D Effect */
.fc-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.fc-team-content:hover .fc-card-inner {
	transform: rotateY(10deg);
}
/* Card Front Design */
.fc-card-front {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background: linear-gradient(145deg, #ffffff, #f0f0f0);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 
		0 15px 35px rgba(0, 0, 0, 0.1),
		0 5px 15px rgba(0, 0, 0, 0.05);
}
/* Decorative Elements */
.fc-card-front::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 0%, rgba(255, 49, 83, 0.05) 30%, rgba(255, 49, 83, 0.1) 40%, transparent 60%);
	transform: rotate(-45deg);
	animation: shimmer 6s linear infinite;
	z-index: 1;
}
@keyframes shimmer {
	0% { transform: translateX(-50%) rotate(-45deg); }
	100% { transform: translateX(100%) rotate(-45deg); }
}
/* Colorful Border Effect */
.fc-card-front::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 2px;
	background: linear-gradient(135deg, #FF3153, #FF8F1C, #FFDE59, #7ED957, #00C2CB, #4D61FF, #B85DFF);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 2;
}
.fc-team-content:hover .fc-card-front::after {
	opacity: 1;
}
.fc-agent-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	padding: 30px 20px;
	height: 100%;
	z-index: 3;
}
/* Stunning Avatar Design */
.fc-agent-avatar {
	margin-bottom: 25px;
	position: relative;
	z-index: 2;
}
.fc-avatar-xllll {
	width: 160px;
	height: 160px;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	border-radius: 50%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* Animated Gradient Border */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.fc-avatar-xllll::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	padding: 4px;
	background: linear-gradient(135deg, #FF3153, #FF8F1C, #FFDE59, #7ED957, #00C2CB, #4D61FF, #B85DFF);
	background-size: 400% 400%;
	animation: spin 4s linear infinite;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.8;
	transition: opacity 0.5s ease;
}
.fc-team-content:hover .fc-avatar-xllll::before {
	opacity: 1;
}
/* Image Styling */
.fc-rounded-circle {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: contrast(1.05) saturate(1.1);
}
.fc-team-content:hover .fc-rounded-circle {
	transform: scale(1.1);
}
/* Info Section Styling */
.fc-agent-info {
	width: 100%;
	position: relative;
	z-index: 2;
}
/* Name Styling with Gradient */
.fc-agent-info h6 {
	margin-bottom: 12px;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.5px;
}
.fc-agent-info h6 a {
	text-decoration: none;
	background: linear-gradient(to right, #FF3153, #4D61FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	margin-top: 20px;
}
/* Animated Underline */
.fc-agent-info h6 a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -6px;
	left: 0;
	background: linear-gradient(to right, #FF3153, #4D61FF);
	transition: width 0.4s ease;
	border-radius: 3px;
}
.fc-team-content:hover .fc-agent-info h6 a::after {
	width: 100%;
}
/* Role/Position Styling */
.fc-font-sm {
	font-size: 14px;
	color: #555;
	display: block;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
	margin-top: 5px;
	position: relative;
	padding-bottom: 15px;
}
/* Decorative Line */
.fc-font-sm::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 3px;
	background: linear-gradient(to right, #FF3153, #4D61FF);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 3px;
}
/* Decorative Elements */
.shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 49, 83, 0.1), rgba(77, 97, 255, 0.1));
	z-index: 1;
	transition: all 0.8s ease;
}
.shape-1 {
	width: 80px;
	height: 80px;
	top: 20px;
	right: -20px;
}
.shape-2 {
	width: 60px;
	height: 60px;
	bottom: 30px;
	left: -15px;
}
.fc-team-content:hover .shape-1 {
	transform: translateY(-15px) scale(1.2);
}
.fc-team-content:hover .shape-2 {
	transform: translateY(15px) scale(1.2);
}
@media (max-width: 576px) {
	.fc-team {
		padding: 60px 0;
	}
}