* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

.footer {
	background: #030140;
	/* background: linear-gradient(20deg, #030140, #010101); */
	color: #fff;
	padding: 1rem;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}

/* .footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
   animation: gradientShift 10s ease infinite;
} */

@keyframes gradientShift {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}

.footer-row {
	margin: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin: 0 auto;
	max-width: 80vw;
	position: relative;
	z-index: 1;
}
.footflex{
justify-content: space-between;
display: flex;
min-width: 100% !important;
}
.footer-col {

	/* min-width: 200px; */
	transform: translateY(20px);
	opacity: 1;
	/* animation: fadeInUp 0.6s ease forwards; */
}

@keyframes fadeInUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.footer-col:nth-child(1) {
	animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
	animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
	animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
	animation-delay: 0.4s;
}

.footer-col h4 {
	color: #fff;
	font-size: 0.8rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
	transition: all 0.3s ease;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #b6b4f1;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.footer-col:hover h4::after {
	transform: scaleX(1);
}

.links {
	list-style: none;
	padding: 0;
}

.links li {
	font-size: 0.7rem;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	transform: translateX(-10px);
	opacity: 0;
	animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.links li:nth-child(1) {
	animation-delay: 0.5s;
}

.links li:nth-child(2) {
	animation-delay: 0.6s;
}

.links li:nth-child(3) {
	animation-delay: 0.7s;
}

.links li:nth-child(4) {
	animation-delay: 0.8s;
}

.links li:nth-child(5) {
	animation-delay: 0.9s;
}

.links li i {
	margin-right: 10px;
	color: #b6b4f1;
	transition: transform 0.3s ease;
}

.links li:hover i {
	transform: scale(1.2);
}

.links a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	font-size: 0.7rem;
}

.links a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: #b6b4f1;
	transition: width 0.3s ease;
}

.links a:hover {
	color: #b6b4f1;
	padding-left: 5px;
}

.links a:hover::after {
	width: 100%;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.social-icon {
text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(0, 123, 255, 0.1);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
	transform: translateY(0);
}

.social-icon:hover {
	background: #b6b4f1;
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.newsletter {
width: 100%;
	margin-top: 20px;
	animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.newsletter h4 {
font-size: 0.8rem;
	margin-bottom: 15px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form input {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 4px;
	background: rgba(0, 123, 255, 0.1);
	color: #fff;
	transition: all 0.3s ease;
}

.newsletter-form input:focus {
	background: rgba(0, 123, 255, 0.2);
	outline: none;
	transform: translateY(-2px);
}

.newsletter-form button {
	padding: 10px 15px;
	background: #b6b4f1;
	border: none;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.newsletter-form button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: 0.5s;
}

.newsletter-form button:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.newsletter-form button:hover::before {
	left: 100%;
}

.footer-bottom {
	margin-top: 2rem;
	text-align: center;
	/* margin-top: 40px; */
	/* padding-top: 20px; */
}

.copyright {
	color: #fff;
	font-size: 0.5rem;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.copyright:hover {
	opacity: 1;
	transform: scale(1.02);
}
.foot1 {
	min-width: 100%;
	display: flex;
	justify-content: space-between;
}
.foot2 {
	min-width: 100%;
	justify-content: space-between;
	display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
	.footer {
		font-size: 0.8remem;
	}
	.foot1 {
		display: flex;
	}
	.foot2 {
		display: flex;
	}
	.footer-row {
		/* flex-direction: column; */
		gap: 10px; /* reduced gap */
		padding: 0 1rem;
	}

	.footer-col {
		min-width: 50%;
		margin-bottom: 10px;
	}

	.footer-col h4 {
		font-size: 0.8rem;
		margin-bottom: 10px;
	}

	.links li {
		margin-bottom: 6px;
	}

	.links li i {
		font-size: 0.8rem;
	}

	.links a {
		font-size: 0.7rem;
	}

	.social-links {
		gap: 10px;
		margin-bottom: 10px;
	}

	.social-icon {
		width: 20px;
		height: 20px;
		font-size: 0.5rem;
	}

	.newsletter-form {
		max-width: 80%;
		flex-direction: column;
		gap: 8px;
	}

	.newsletter-form input,
	.newsletter-form button {
		padding: 8px;
		font-size: 0.8rem;
	}

	.footer-bottom {
		margin-top: 1rem;
		padding: 0 1rem;
	}

	.copyright {
		font-size: 0.5rem;
	}


}
#hidden1 {
	display: block;
}
#hidden2 {
	display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
	#hidden1 {
		display: none !important;
	}
	#hidden2 {
		display: block !important;
	}
}
