.footer {
	background: linear-gradient(145deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
	color: #ffffff;
	padding: 5rem 0 0;
	position: relative;
	overflow: hidden;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #8A2BE2, #00FFFF, #FF00FF);
	background-size: 200% 200%;
	animation: gradientShift 5s ease infinite;
}

@media (min-width: 1200px) {
	.footer .container {
		max-width: 1280px
	}
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.footer-heading {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 1.8rem;
	position: relative;
	padding-bottom: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 1.2rem;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #8A2BE2, #00FFFF);
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}
@media (min-width: 1000px) {
.footer-twp{
	padding-left:60px
}
}
.footer-jion::after {
	width: 50%;
	left: 25%;
}

.footer-link {
	color: #b8c2cc;
	display: block;
	margin-bottom: 0.9rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	padding-left: 0;
	font-weight: 500;
}

.footer-link::before {
	content: '»';
	position: absolute;
	left: -20px;
	opacity: 0;
	color: #00FFFF;
	transition: all 0.3s ease;
}

.footer-link:hover {
	color: #ffffff;
	text-decoration: none;
	padding-left: 20px;
	transform: translateX(5px);
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-link:hover::before {
	opacity: 1;
	left: 0;
}
        
        /* Social Icons with Glow */
.social-icons-container {
	display: flex;
	margin-top: 2rem;
}

.social-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-size: 1.2rem;
	position: relative;
	transition: all 0.4s ease;
	transform-style: preserve-3d;
	box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.2);
}

.social-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: inherit;
	filter: blur(5px);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.social-icon:hover {
	transform: translateY(-5px) rotateY(15deg);
	box-shadow: 0 15px 20px -10px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
	opacity: 0.7;
}

.facebook {
	background: #3b5998;
}

.twitter {
	background: #1DA1F2;
}

.instagram {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube {
	background: #FF0000;
}
        
        /* Contact Info with Icons */
.footer .contact-info {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: flex-start;
	transition: all 0.3s ease;
}

.footer .contact-info:hover {
	transform: translateX(5px);
}

.footer .contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(0, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: #00FFFF;
	font-size: 1.1rem;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.footer .contact-icon i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
        
        /* Newsletter Form */
.footer .newsletter-container {
	position: relative;
	margin-top: 2rem;
}

.footer .newsletter-input {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border-radius: 50px;
	padding: 15px 25px;
	width: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .newsletter-input:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(0, 255, 255, 0.3);
	box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25), 0 5px 20px rgba(0, 0, 0, 0.2);
	outline: none;
}

.footer .newsletter-btn {
	position: absolute;
	right: 0;
	top: 1px;
	background: linear-gradient(45deg, #8A2BE2, #00FFFF);
	color: white;
	border: none;
	border-bottom-right-radius: 50px;
	border-top-right-radius: 50px;
	padding: 10px 25px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.footer .newsletter-btn:hover {
	background: linear-gradient(45deg, #00FFFF, #8A2BE2);
	transform: translateX(20px) scale(1.02);
	box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
	color: #00FFFF;
}
        
.footer .policy-container {
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 2rem;
	margin: 3rem 0;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
}

.footer .policy-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
	z-index: -1;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.footer .policy-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	padding: 15px;
	border-radius: 10px;
}

.footer .policy-item:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer .policy-icon {
	min-width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	color: #00FFFF;
	font-size: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .policy-text h5 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
	font-weight: 600;
}

.footer .policy-text p {
	color: #b8c2cc;
	font-size: 0.9rem;
	margin-bottom: 0;
	line-height: 1.5;
}
        
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 2rem 0;
	background: rgba(0, 0, 0, 0.2);
}

.footer-bottom .footwidth {
	max-width: 1280px;
	margin: 0 auto
}

.payment-icons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.payment-icon {
	width: 50px;
	height: 30px;
	margin: 0 8px;
	object-fit: contain;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.payment-icon:hover {
	opacity: 1;
	transform: translateY(-3px);
}
        
        /* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #8A2BE2, #00FFFF);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	transform: translateY(20px);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}
        
        /* Responsive Adjustments */
@media (max-width: 991.98px) {
	.footer {
		padding: 4rem 0 0;
	}

	.policy-item {
		margin-bottom: 1rem;
	}

	.policy-icon {
		min-width: 50px;
		height: 50px;
		font-size: 1.3rem;
	}
}

@media (max-width: 767.98px) {
	.footer-heading {
		margin-top: 2rem;
	}

	.policy-container {
		padding: 1.5rem;
	}

	.policy-item {
		flex-direction: column;
		text-align: center;
		padding: 1rem;
	}

	.policy-icon {
		margin-right: 0;
		margin-bottom: 1rem;
	}

}