 /* Footer Styles */
.site-footer {
	color: #ffffff;
	position: relative;
	overflow: hidden;
}
.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	pointer-events: none;
	z-index: 999999;
}
.footer-top {
	padding: 60px 0 40px;
	position: relative;
	z-index: 1;
	background: rgb(0 151 222);
}
.single-widget {
	position: relative;
}
.widget-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #ffffff;
	position: relative;
	padding-bottom: 15px;
}
.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #feddcb, #fb6b1a);
	border-radius: 2px;
}
/* Footer About Section */
.footer-widget-about-description p {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 25px;
	letter-spacing: 1px;
}
/* Social Icons */
.social-icons {
	list-style: none;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.social-icons li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.social-icons li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.3s ease;
	z-index: -1;
}
.social-icons li a:hover::before {
	transform: scale(1);
}
.social-icons li a.facebook {
	background: rgba(59, 89, 152, 0.2);
	border: 2px solid #3b5998;
}
.social-icons li a.facebook::before {
	background: #3b5998;
}
.social-icons li a.linkedin {
	background: rgba(0, 119, 181, 0.2);
	border: 2px solid #0077b5;
}
.social-icons li a.linkedin::before {
	background: #0077b5;
}
.social-icons li a.pinterest {
	background: rgba(189, 8, 28, 0.2);
	border: 2px solid #bd081c;
}
.social-icons li a.pinterest::before {
	background: #bd081c;
}
.social-icons li a.instagram {
	background: rgba(225, 48, 108, 0.2);
	border: 2px solid #e1306c;
}
.social-icons li a.instagram::before {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icons li a.youtube {
	background: rgba(255, 0, 0, 0.2);
	border: 2px solid #ff0000;
}
.social-icons li a.youtube::before {
	background: #ff0000;
}
.social-icons li a:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
/* Footer Links */
.f-link ul {
	list-style: none;
}
.f-link ul li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
	letter-spacing: 1px;
	color: #fff;
}
.f-link ul li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #ffffff;
	font-size: 12px;
	top: 2px;
}
.f-link ul li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
}
.f-link ul li a:hover {
	color: #00d4ff;
	padding-left: 10px;
}
/* Footer Contact */
.address-widget-list {
	list-style: none;
}
.address-widget-list li {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.address-widget-list li i {
	color: #ffffff;
	font-size: 18px;
	margin-top: 2px;
	min-width: 20px;
}
.address-widget-list li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.6;
	transition: color 0.3s ease;
	letter-spacing: 1px;
}
.address-widget-list li a:hover {
	color: #00d4ff;
}
/* Copyright Section */
.copyright {
	background: rgb(0 151 222);
	padding: 15px 0;
	border-top: 1px solid rgb(255 255 255);
}
.copyright-content {
	text-align: center;
}
.copyright-content p {
	color: #ffffff;
	font-size: 18px;
	margin: 0;
	letter-spacing: 1px;
}
/* Responsive Design */
@media (max-width: 991px) {
	.footer-top {
		padding: 50px 0 30px;
	}
}
@media (max-width: 767px) {
	.footer-top {
		padding: 40px 0 20px;
	}        
	.widget-title {
		font-size: 22px;
		margin-bottom: 20px;
	}        
	.social-icons {
		justify-content: start;
	}        
	.address-widget-list li {
		gap: 8px;
	}        
	.address-widget-list li i {
		align-self: center;
	}
	.copyright {
		padding-top: 10px;
        padding-bottom: 50px;
	}
}
@media (max-width: 480px) {
	.copyright {
		padding-top: 10px;
        padding-bottom: 50px;
	}
	.social-icons li a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}        
	.footer-widget-about-description p {
		font-size: 16px;
	}        
	.f-link ul li a,
	.address-widget-list li a {
		font-size: 16px;
	}
}	