/* Section Styles */
.fc-services {
	padding: 100px 0;
	position: relative;
	background: #fff;
	overflow: hidden;
    z-index: 1;
}
/* Decorative Elements */
.fc-services::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
	border-radius: 50%;
	transform: translate(150px, -150px);
	z-index: 0;
}
.fc-services::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, rgba(0, 162, 255, 0.1) 0%, rgba(0, 162, 255, 0.05) 100%);
	border-radius: 50%;
	transform: translate(-100px, 100px);
	z-index: 0;
}
/* Section Title */
.section-title h2 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 40px;
	position: relative;
	color: #333;
	line-height: 1.1;
	letter-spacing: -1px;
}
.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 80px;
	height: 6px;
	background: linear-gradient(90deg, #0c6716, #18c12b);
	border-radius: 3px;
}
/* Content Styles */
.fc-services-content {
	padding-right: 0px;
}
.fc-services-content p {
	margin-bottom: 25px;
	color: #666;
	font-size: 1.1rem;
	line-height: 1.8;
}
/* Image Styles */
.fc-services-images {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	min-height: 500px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transform: perspective(1000px) rotateY(-5deg);
	transition: all 0.5s ease;
}
.fc-services-images:hover {
	transform: perspective(1000px) rotateY(0deg);
}
.fc-services-images::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(0, 162, 255, 0.2) 100%);
	z-index: 1;
	opacity: 0.7;
	transition: opacity 0.5s ease;
}
.fc-services-images:hover::before {
	opacity: 0.4;
}
.fc-services-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}
.fc-services-images:hover img {
	transform: scale(1.05);
}
/* Service Box Styles */
.fc-services-uppar{
	margin-top:50px;
}
.fc-services-uppar-top{
	margin-bottom:30px;
}
.fc-services-top {
	background: #fff;
	padding: 40px 35px;
	border-radius: 20px;
	height: 100%;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.fc-services-top::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(135deg, #ff6b00 0%, #ff9a44 100%);
	opacity: 0.1;
	transition: height 0.4s ease;
	z-index: -1;
	border-radius: 20px;
}
.fc-services-top:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.fc-services-top:hover::before {
	height: 100%;
}
.fc-services-top i {
	font-size: 3rem;
	margin-bottom: 25px;
	display: inline-block;
	position: relative;
	z-index: 2;
	transition: all 0.4s ease;
	color: #3f8151;
}
.fc-font-xlll {
	font-size: 3rem;
}
.fc-services-top:hover i {
	transform: scale(1.2);
	color: #3d8548;
}
.fc-services-top h5 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
	position: relative;
	transition: all 0.3s ease;
}
.fc-services-top:hover h5 {
	color: #3d8548;
}
.fc-services-top p {
	color: #666;
	font-size: 1rem;
	line-height: 1.7;
	transition: all 0.3s ease;
	margin-bottom: 0px;
}
/* Service Box Number */
.fc-services-top::after {
	content: '';
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgb(63 129 81 / 20%) 0%, rgb(61 133 74 / 19%) 100%);
	z-index: 0;
	transition: all 0.4s ease;
}
.fc-services-top:hover::after {
	transform: scale(3);
	opacity: 0.2;
}
/* Animated Border Effect */
.fc-services-top {
	position: relative;
}
.fc-services-top .border-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.fc-services-top .border-animation::before,
.fc-services-top .border-animation::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border-color: #3d8548;
	border-style: solid;
	transition: all 0.5s ease;
}
.fc-services-top .border-animation::before {
	top: 0;
	left: 0;
	border-width: 3px 0 0 3px;
	transform: translate(-5px, -5px);
	opacity: 0;
}
.fc-services-top .border-animation::after {
	bottom: 0;
	right: 0;
	border-width: 0 3px 3px 0;
	transform: translate(5px, 5px);
	opacity: 0;
}
.fc-services-top:hover .border-animation::before,
.fc-services-top:hover .border-animation::after {
	transform: translate(0, 0);
	opacity: 1;
}
/* Responsive Styles */
@media (max-width: 992px) {
	.fc-services-content {
		padding-right: 0;
		margin-bottom: 60px;
	}        
	.fc-services-images {
		min-height: 400px;
		transform: perspective(1000px) rotateY(0deg);
	}
	.section-title h2 {
		font-size: 2.8rem;
	}
}
@media (max-width: 768px) {
	.section-title h2 {
		font-size: 2.3rem;
	}        
	.fc-services {
		padding: 70px 0;
	}
	.fc-services::before {
        width: 180px;
        height: 180px;
        transform: translate(80px, -80px);
    }
    .fc-services::after {
        width: 120px;
        height: 120px;
        transform: translate(-60px, 60px);
    }
	.fc-services-top {
		padding: 30px 25px;
	}
}