/* Footer Container */
#footer-container {
	width: 100%;
	background-color: #205373;
	color: white;
	padding: 30px 20px 15px;
	margin-top: 40px;
	display: flex;
	flex-direction: column;
}

/* First Row: Logo + Content */
.footer-first-container {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 20px;
}

/* Logo */
.footer-logo-container {
	max-width: 140px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

#footer-logo {
	width: 100%;
	height: auto;
	max-height: 100px;
	object-fit: contain;
}

/* Footer Content (Grid Layout) */
.footer-content-container {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	align-items: flex-start;
	max-width: 70%;
}

/* Links Section */
.footer-links-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-links-container > h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #fff4ea;
	margin-bottom: 10px;
}

.footer-nav-menu-container {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav-menu-container li {
	margin: 6px 0;
}

.footer-nav-menu-container a {
	text-decoration: none;
	color: white;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.footer-nav-menu-container a:hover {
	color: lightskyblue;
}

/* Quick Contact */
#quick-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#quick-contact > h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #fff4ea;
	margin-bottom: 10px;
}

.icon-container {
	display: flex;
	align-items: center;
	margin: 8px 0;
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	word-break: break-word;
	line-height: 1.4;
}

.icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

/* Follow Us */
.follow-box-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.follow-box-container > h5 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	color: #fff4ea;
	margin-bottom: 10px;
}

.social-links-container {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.social-img {
	width: 28px;
	height: 28px;
	transition: transform 0.3s ease;
}

.social-img:hover {
	transform: scale(1.1);
}

/* Footer Bottom */
.footer-second-container {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 12px;
	font-size: 0.85rem;
	color: #eaeaea;
}

#developedby {
	text-decoration: none;
	font-style: italic;
	color: #fbfbfb;
	font-family: 'Open Sans', sans-serif;
	transition: color 0.3s ease;
}

#developedby:hover {
	color: lightskyblue;
}

/* ==============================
   RESPONSIVE 
   ============================== */

@media (max-width: 768px) {
	.footer-content-container {
		max-width: 100%;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.footer-first-container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.footer-content-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-links-container,
	#quick-contact,
	.follow-box-container {
		align-items: center;
	}

	.icon-container {
		justify-content: center;
	}

	.social-links-container {
		justify-content: center;
	}

	.footer-second-container p {
		font-size: 0.75rem;
	}
}
