/* Footer General Styles */
footer {
	background: linear-gradient(145deg, #000, #222);
	color: #fff;
	font-family: "Lato", sans-serif;
	position: relative;
	overflow: hidden;
	overflow-x: hidden; /* Prevent horizontal scrolling */
	margin-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%; /* Full width */
	opacity: 0; /* Start invisible */
	transition: opacity 0.5s ease; /* Smooth transition for visibility */
}

/* Footer Container */
.footer-container {
	max-width: 1200px;
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

/* Footer Column Styles */
/* Footer Column Styles */
.footer-column {
	flex: 1;
	min-width: 220px; /* Ensures columns are visible on resize */
	margin-bottom: 20px;
	opacity: 0; /* Start invisible */
	transform: translateY(20px); /* Initial translate */
	transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition for visibility and position */
}

.footer-column.visible {
	opacity: 1; /* Make visible */
	transform: translateY(0); /* Reset translate */
}

/* Other CSS styles here... */

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.footer-column:nth-child(1) {
	animation-delay: 0.2s;
}

.footer-column:nth-child(2) {
	animation-delay: 0.4s;
}

.footer-column:nth-child(3) {
	animation-delay: 0.6s;
}

.footer-column:nth-child(4) {
	animation-delay: 0.8s;
}

.footer-column:nth-child(5) {
	animation-delay: 1s;
}

.footer-column h2 {
	font-size: 20px;
	color: #ff9900;
	margin-bottom: 15px;
	position: relative;
}

.footer-column h2::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: #ff9900;
	margin-top: 8px;
	transition: width 0.3s ease;
}

.footer-column h2:hover::after {
	width: 60px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-column a {
	color: #ccc;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.footer-column a:hover {
	color: #ff9900;
	transform: translateX(10px);
}

.contact-icon {
	width: 20px;
	margin-right: 10px;
	vertical-align: middle;
	transition: transform 0.3s ease;
}

.footer-column a:hover .contact-icon {
	transform: rotate(15deg);
}

/* Hover effects for footer button */
.footer-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #ff9900;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
	margin-top: 10px;
}

.footer-button:hover {
	background-color: #e2bb56;
	transform: scale(1.05);
}

/* Location Map */
.location-map {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 15px 0;
}

.location-map iframe {
	width: 100%;
	height: 180px; /* Adjusted height for the location map */
	margin: 10px 0;
	border-radius: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, filter 0.3s ease;
}

.location-map iframe:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUpColumn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */

/* For Tablets and Medium Screens */
@media (max-width: 1024px) {
	.footer-container {
		flex-wrap: wrap;
	}

	.footer-column {
		flex: 1 1 45%; /* Two columns per row */
		max-width: 100%;
		margin-bottom: 20px;
	}

	.footer-column.locations {
		order: 1; /* Location column moves to the end */
	}

	.location-map iframe {
		height: 160px;
	}
}

/* For Mobile Phones */
@media (max-width: 768px) {
	.footer-container {
		flex-wrap: wrap;
	}

	.footer-column {
		flex: 1 1 100%; /* Full width for each column */
		max-width: 100%;
		margin-bottom: 20px;
	}

	.footer-column h2 {
		font-size: 16px;
	}

	.footer-column ul {
		margin-bottom: 10px;
	}

	.footer-button {
		width: 100%; /* Full-width button for mobile */
		text-align: center;
		padding: 15px;
	}

	.location-map iframe {
		height: 140px;
	}
}

/* For Small Mobile Screens */
@media (max-width: 480px) {
	.footer-column h2 {
		font-size: 14px;
	}

	.footer-column a {
		font-size: 14px;
	}

	.footer-button {
		padding: 12px;
		font-size: 14px;
	}
}
/* Small Screen Footer Styling */
.small-screen-footer {
	display: none; /* Initially hidden */
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #111; /* Darker shade for a premium look */
	padding: 5px 0;
	text-align: center;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-top: 2px solid #ddd; /* Subtle border */
}

/* Contact Icons Wrapper */
.contact-icons {
	display: flex;
	justify-content: space-between; /* Distributes elements */
	align-items: center;
	width: 100%;
	max-width: 400px; /* Adjust width */
	margin: 0 auto;
	padding: 0 20px;
}

/* Individual Contact Icon Containers */
.contact-icons a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #ffffff;
	transition: transform 0.3s ease, opacity 0.3s ease;
	flex: 1; /* Even spacing */
}

/* Call Us - Left */
.call-us {
	justify-content: flex-start;
	text-align: left;
}

/* Email - Center */
.email {
	justify-content: center;
	text-align: center;
}

/* WhatsApp - Right */
.whatsapp {
	justify-content: flex-end;
	text-align: right;
}

/* Hover Effect */
.contact-icons a:hover {
	transform: translateY(-5px);
	opacity: 0.8;
}

/* Icon Styling */
.contact-icons img {
	width: 30px;
	height: auto;
	margin-bottom: 6px;
}

/* Text Styling */
.contact-icons p {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Footer Container Styling */
.somnath-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	padding-bottom: 10px;
}

#somnath-footer-text {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #ffffff;
}

#somnath-footer-text a {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #ffffff;
	text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 600px) {
	.small-screen-footer {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.contact-icons {
		gap: 1rem;
		width: 100%;
	}
	.contact-icons img {
		width: 26px;
	}
	.contact-icons p {
		font-size: 11px;
	}
	.somnath-footer-container {
		padding-bottom: 90px;
	}
}


