ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
a{
	text-decoration: none !important;
}
/* Header */
.hgi_navbar a img {
	width: 260px;
}
header {
	background-color: var(--white);
	position: sticky;
	top: 0px;
	z-index: 999;
}
.hgi_navbar {
	display: flex;
	justify-content: space-between;
	padding: 20px 0px;
}
.nav_items_hgi {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.nav_items_hgi ul {
	display: flex;
	justify-content: end;
	gap: 20px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 12px !important;
	margin-bottom: 0px;
	padding: 0px;
}
.nav_items_hgi ul:last-child {
	border-bottom: none;
	padding-top: 12px !important;
	padding-bottom: 0px !important;
	margin-bottom: 0px;
}
.hgi_topnav li a {
	font-size: 16px;
	line-height: 26px;
	color: var(--black);
}
.hgi_bottomnav li a {
	font-size: 18px;
	line-height: 26px;
	color: var(--black);
}
header .container-fluid {
	padding: 0px 50px;
}
header.header-scrolled {
	position: fixed !important;
	background: #fff;
	animation: header 0.5s ease 1;
	width: 100%;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@keyframes header {
	0%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(0);
	}
}
.header_line {
	width: 100%;
	height: 5px;
	display: flex;
	gap: 8px;
	position: sticky;
	top: 0px;
}
.header_line::before {
	content: "";
	width: 50%;
	background-color: var(--red);
	border-radius:8px;
}
.header_line::after {
	content: "";
	width: 50%;
	background-color: #000000;
	margin-left: auto;
	border-radius:8px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
	color: var(--black);
	position: relative;
	z-index: 1001;
	transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
	color: var(--red);
	transform: scale(1.1);
}

/* Hamburger Icon Animation */
.hamburger {
	display: inline-block;
	width: 25px;
	height: 20px;
	position: relative;
	transform: rotate(0deg);
	transition: 0.5s ease-in-out;
}

.hamburger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--black);
	border-radius: 0px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 0px;
}

.hamburger span:nth-child(2) {
	top: 8px;
}

.hamburger span:nth-child(3) {
	top: 16px;
}

.hamburger.active span:nth-child(1) {
	top: 8px;
	transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.hamburger.active span:nth-child(3) {
	top: 8px;
	transform: rotate(-135deg);
}

/* Mobile Overlay */
.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive Design - 991px and below */
@media (max-width: 991px) {
	header .container-fluid {
		padding: 0px 20px;
	}

	.hgi_navbar {
		flex-direction: row;
		position: relative;
		padding: 15px 0px;
		align-items: center;
	}

	.hgi_navbar .logo_image {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.hgi_navbar a img {
		width: 200px;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.nav_items_hgi {
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		height: 100vh;
		background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		padding: 80px 0 30px 0;
		z-index: 1000;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		overflow-y: auto;
		backdrop-filter: blur(10px);
	}

	.nav_items_hgi.active {
		right: 0;
	}

	.nav_items_hgi ul {
		flex-direction: column;
		gap: 0px;
		justify-content: flex-start;
		padding: 0px 30px;
		margin-bottom: 20px;
	}

	.nav_items_hgi ul li {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		transform: translateX(50px);
		opacity: 0;
		animation: slideInRight 0.3s ease forwards;
	}

	.nav_items_hgi.active ul li {
		animation: slideInRight 0.5s ease forwards;
	}

	.nav_items_hgi ul li:nth-child(1) { animation-delay: 0.1s; }
	.nav_items_hgi ul li:nth-child(2) { animation-delay: 0.2s; }
	.nav_items_hgi ul li:nth-child(3) { animation-delay: 0.3s; }
	.nav_items_hgi ul li:nth-child(4) { animation-delay: 0.4s; }
	.nav_items_hgi ul li:nth-child(5) { animation-delay: 0.5s; }
	.nav_items_hgi ul li:nth-child(6) { animation-delay: 0.6s; }
	.nav_items_hgi ul li:nth-child(7) { animation-delay: 0.7s; }
	.nav_items_hgi ul li:nth-child(8) { animation-delay: 0.8s; }

	.nav_items_hgi ul li:last-child {
		border-bottom: none;
	}

	.nav_items_hgi ul li a {
		display: block;
		padding: 18px 0;
		font-size: 16px;
		position: relative;
		transition: all 0.3s ease;
		color: var(--black);
	}

	.nav_items_hgi ul li a:hover {
		color: var(--red);
		padding-left: 10px;
		transform: translateX(5px);
	}

	.nav_items_hgi ul li a::before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 2px;
		background: var(--red);
		transition: width 0.3s ease;
	}

	.nav_items_hgi ul li a:hover::before {
		width: 30px;
	}

	.hgi_topnav li a {
		font-size: 15px;
		font-weight: 500;
	}

	.hgi_bottomnav li a {
		font-size: 16px;
		font-weight: 600;
		color: var(--red);
	}

	.nav_items_hgi ul {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		padding-bottom: 15px !important;
		margin-bottom: 15px;
	}

	.nav_items_hgi ul:last-child {
		border-bottom: none;
		padding-top: 15px !important;
		padding-bottom: 0px !important;
		margin-bottom: 0px;
	}

	/* Close button in mobile menu */
	.mobile-close-btn {
		position: absolute;
		top: 20px;
		right: 20px;
		background: none;
		border: none;
		font-size: 28px;
		cursor: pointer;
		color: var(--black);
		z-index: 1001;
		transition: all 0.3s ease;
	}

	.mobile-close-btn:hover {
		color: var(--red);
		transform: rotate(90deg);
	}

	.hgi_bottomnav {
		display: none !important;
	}
}

/* Keyframes for animations */
@keyframes slideInRight {
	from {
		transform: translateX(50px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Tablet and smaller screens */
@media (max-width: 768px) {
	.hgi_navbar a img {
		width: 180px;
	}

	header .container-fluid {
		padding: 0px 15px;
	}

	.hgi_navbar {
		padding: 12px 0px;
	}
}

/* Small mobile screens */
@media (max-width: 480px) {
	.hgi_navbar a img {
		width: 160px !important;
	}

	.nav_items_hgi ul {
		padding: 0px 15px;
	}

	.nav_items_hgi ul li a {
		padding: 12px 0;
		font-size: 15px;
	}

	.hgi_topnav li a {
		font-size: 14px;
	}

	.hgi_bottomnav li a {
		font-size: 15px;
	}
}