.footer-01 {
	position: relative;
	color: #fff;
	padding: 70px 0 20px;
	background: #111;
	overflow: hidden;
}
/* Animated background */
.footer-01::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(255, 0, 0, 0.05), rgba(0, 255, 0, 0.05), rgba(0, 0, 255, 0.05), rgba(255, 255, 0, 0.05));
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
	z-index: 0;
}
@keyframes gradientBG {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
/* Geometric shapes */
.geo-shape {
	position: absolute;
	opacity: 0.1;
	z-index: 1;
}
.geo-shape-1 {
	top: 10%;
	left: 5%;
	width: 200px;
	height: 200px;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	background: #ff3e3e;
	animation: morphing 15s linear infinite alternate;
}	
.geo-shape-2 {
	bottom: 10%;
	right: 5%;
	width: 250px;
	height: 250px;
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	background: #4e54c8;
	animation: morphing 20s linear infinite alternate-reverse;
}
@keyframes morphing {
	0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
	25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
	50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
	75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
	100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}
/* Neon heading effect */
.footer-heading {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
	color: #fff;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.footer-heading::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #ff3e3e, #4e54c8);
	border-radius: 3px;
}
.footer-01 p {
	line-height: 1.8;
	margin-bottom: 0px;
	font-size: 1rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.8);
}	
/* Social media icons */
.ftco-footer-social {
	list-style: none;
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	margin-top: 20px;
}
.ftco-footer-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.ftco-footer-social li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #ff3e3e, #4e54c8);
	opacity: 0;
	z-index: -1;
	transition: opacity 0.4s ease;
}
.ftco-footer-social li a:hover {
	transform: translateY(-8px) scale(1.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.ftco-footer-social li a:hover::before {
	opacity: 1;
}
.ftco-animate {
	animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
/* Quick links */
.footer-list-styled {
	list-style: none;
	padding-left: 0;
}
.footer-list-styled li {
	margin-bottom: 15px;
	transition: all 0.3s ease;
	position: relative;
}
.footer-list-styled li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	display: flex;
	align-items: center;
	font-size: 1rem;
	transition: all 0.3s ease;
	padding: 5px 0;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.footer-list-styled li a i {
	margin-right: 12px;
	font-size: 0.8rem;
	color: #ff3e3e;
	transition: all 0.3s ease;
}
.footer-list-styled li::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, #ff3e3e, transparent);
	transition: width 0.3s ease;
}
.footer-list-styled li:hover::after {
	width: 100%;
}
.footer-list-styled li:hover a {
	color: #fff;
	transform: translateX(8px);
}
.footer-list-styled li:hover a i {
	transform: translateX(3px);
	color: #4e54c8;
}
/* Contact section */
.footer-contact ul {
	list-style: none;
	padding-left: 0;
}
.footer-contact ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.footer-contact ul li i {
	margin-right: 15px;
	margin-top: 5px;
	color: #ff3e3e;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}
.footer-contact ul li span {
	flex: 1;
	font-size: 1rem;
	line-height: 1.6;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.8);
}
.footer-contact ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.footer-contact ul li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: #4e54c8;
	transition: width 0.3s ease;
}
.footer-contact ul li:hover i {
	transform: scale(1.2);
}
.footer-contact ul li a:hover {
	color: #fff;
}
.footer-contact ul li a:hover::after {
	width: 100%;
}
/* Copyright section */
.copyright-wrapper {
	position: relative;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright {
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	position: relative;
}
.copyright::before {
	content: "•";
	display: inline-block;
	margin: 0 8px;
	color: #ff3e3e;
	animation: pulse 1.5s infinite;
}
.copyright::after {
	content: "•";
	display: inline-block;
	margin: 0 8px;
	color: #4e54c8;
	animation: pulse 1.5s infinite reverse;
}
@keyframes pulse {
	0% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.3); }
	100% { opacity: 0.5; transform: scale(1); }
}
.text-center {
	text-align: center;
}
/* Responsive styles */
@media (max-width: 991px) {
	.footer-01 {
		padding: 70px 0 50px;
	}
	.footer-heading {
		font-size: 1.5rem;
	}
	.geo-shape-1, .geo-shape-2 {
		width: 150px;
		height: 150px;
	}
}
@media (max-width: 767px) {
	.footer-heading {
		font-size: 1.3rem;
	}
	.ftco-footer-social li a {
		width: 45px;
		height: 45px;
	}
	.geo-shape-1 {
		top: 5%;
		left: -50px;
	}
	.geo-shape-2 {
		bottom: 5%;
		right: -50px;
	}
}