 body {
	overflow-x: hidden;
}
 /* Top Header */
.top-header {
	background: #29166f;
	color: #fff;
	padding: 10px 0;
}
.top-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-contact-info {
	display: flex;
	align-items: center;
}
.top-contact-info-item {
	margin-right: 20px;
	display: flex;
	align-items: center;
}
.top-contact-info-item i {
	margin-right: 8px;
	color: #ffffff;
}		
.top-contact-info-item span {
	color: #ffffff;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.top-contact-info-item span a{
	color: #ffffff;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	text-decoration: none;
}
/* Right Section (Add News + Social Icons) */
.top-right-section {
	display: flex;
	align-items: center;
	gap: 15px;
}
/* Add News Button */
.animated-add-news {
	background: linear-gradient(135deg, #da251c, #da251c);
	color: white;
	border: none;
	padding: 6px 14px;
	border-radius: 30px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
	animation: glowPulse 2s infinite;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.animated-add-news:hover {
	background: linear-gradient(135deg, #da251c, #da251c));
	transform: scale(1.05);
}
@keyframes glowPulse {
	0% { box-shadow: 0 0 0px rgba(40, 167, 69, 0.6); }
	50% { box-shadow: 0 0 10px rgba(40, 167, 69, 0.9); }
	100% { box-shadow: 0 0 0px rgba(40, 167, 69, 0.6); }
}

.social-icons a {
	color: #fff;
	text-decoration: none;
	margin-left: 15px;
	font-size: 16px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
}
.social-icons a:hover {
	background-color: #da251c;
	transform: translateY(-2px);
}
/* Main Header */
.main-header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}
.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}
.logo {
	display: flex;
	align-items: center;
}
.logo img {
	height: auto;
	margin-right: 0;
	width: 100px;
}
.logo-text {
	font-size: 24px;
	font-weight: 700;
	color: #2f7246;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.logo-text span {
	color: #da251c;
}
.nav-menu {
	display: flex;
	list-style: none;
	margin-bottom: 0;
}
.nav-menu li {
	margin-left: 30px;
	position: relative;
	list-style: none;
}
.nav-menu li a {
	color: #333;
	text-decoration: none;
	font-weight: 400;
	transition: all 0.3s ease;
	padding: 10px 0;
	position: relative;
	display: block;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.nav-menu li a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: #da251c;
	bottom: 0;
	left: 0;
	transition: all 0.3s ease;
}
.nav-menu li a:hover {
	color: #da251c;
}
.nav-menu li a:hover:after,
.nav-menu li a.active:after {
	width: 100%;
}
.nav-menu li a.active {
	color: #da251c;
}
/* All News Dropdown */
.nav-menu .all-news-dropdown {
	position: relative;
}
.all-news-toggle {
	background: #da251c;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 30px;
	cursor: pointer;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background 0.3s ease, transform 0.3s ease;
}
.all-news-toggle:hover {
	background: #b51f18;
	transform: scale(1.05);
}
.all-news-menu {
	position: absolute;
	top: 110%;
	left: 0px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 1001;
	min-width: 180px;
	padding-left: 0;
}
/* Click to Open */
.all-news-dropdown.active .all-news-menu {
	max-height: 500px;
	opacity: 1;
	visibility: visible;
}
/* Inner Links */
.all-news-menu li {
	border-bottom: 1px solid #eee;
	margin-left: 0;
}
.all-news-menu li:last-child {
	border-bottom: none;
}
.all-news-menu li a {
	display: block;
	padding: 12px 16px;
	color: #333;
	text-decoration: none;
	font-family: "Roboto Condensed", sans-serif;
	transition: background 0.3s ease;
}
.all-news-menu li a:hover {
	background: #f6f6f6;
	color: #da251c;
}
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #29166f;
}
@media (max-width: 768px) {
	.top-header {
		display:none;
	}
	.contact-info {
		justify-content: center;
		flex-wrap: wrap;
	}
	.social-icons {
		margin-top: 10px;
	}
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		padding: 20px;
		max-height: 70vh; /* Enable scroll */
		overflow-y: auto;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		z-index: 9999;
	}
	.nav-menu.active {
		display: flex;
		border-bottom: 0;
	}
	.nav-menu li{
		margin: 5px 0;
	}
	.nav-menu li a{
		margin: 5px 0;
		border-bottom: 1px solid #eee;
	}
	.nav-menu li a.active {
		border-bottom: 0;
	}
	.all-news-menu {
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		transition: all 0.3s ease;
		background: #f9f9f9;
		padding-left: 10px;
	}
	.all-news-dropdown.active .all-news-menu {
		max-height: 500px;
		opacity: 1;
		visibility: visible;
		overflow-y: auto;
		background: none;
		box-shadow: none;
		border-radius: 0;
		width: 100%;
		padding-bottom: 25px;
	}
	.all-news-menu li a {
		padding: 10px;
		font-size: 14px;
		border-bottom: 0;
	}
	.all-news-toggle {
		width: 100%;
		justify-content: space-between;
		background: none;
		color: #333;
		padding: 10px 0;
	}
	.all-news-toggle:hover {
		background: none;
		color: #da251c;
		transform: none;
	}
	.mobile-menu-btn {
		display: block;
	}
}
@media (max-width: 600px) {
	.top-header {
		display:none;
	}
}
@media (max-width: 576px) {
	.top-header {
		display:none;
	}
}