* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* Top Header */
.header-top {
	background-color: #bd2d2e;
	color: white;
	padding: 10px 0;
	font-size: 14px;
}
.header-top-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.contact-info {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}
.contact-info span {
	color: #fff20f;
	margin-right: 5px;
}
.contact-info a {
	color: white;
	text-decoration: none;
}
.contact-info a:hover {
	color: #fff20f;
}
.social-links {
	display: flex;
	gap: 10px;
}
.social-links a {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s;
}
.social-links a:hover {
	background-color: #fff20f;
	color: #1e3c72;
}
/* Main Header */
.header-main {
	background-color: white;
	padding: 10px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-main-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.logo {
	text-decoration: none;
	display: flex;
	align-items: center; 
	gap: 10px;
}
.logo img{
	width: 250px;
}
.header-info {
	display: flex;
	gap: 30px;
	align-items: center;
	flex-wrap: wrap;
}
.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
}
.info-icon {
	width: 50px;
	height: 50px;
	background-color: #1e3c72;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.info-text h4 {
	color: #1e3c72;
	font-size: 18px;
	margin-bottom: 2px;
	letter-spacing: 1px;
}
.info-text p {
	color: #666;
	font-size: 14px;
	margin-bottom: 0;
	letter-spacing: 1px;
}
.info-logo {
	display: flex;
	align-items: center;
	gap: 15px;
}
.info-logo-group{
	display: flex;
	gap: 15px;
	align-items: center;
}
.info-logo-one img{
	width: 100px;
}
.info-logo-two img{
	width: 100px;
}
.download-btn {
	background: linear-gradient(45deg, #1e3c72, #bd2d2e);
	color: white;
	padding: 12px 25px;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s;
	letter-spacing: 1px;
}
.download-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
/* Navigation */
.navigation {
	background-color: #bd2d2e;
	padding: 0;
}
.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-menu li {
	position: relative;
}
.nav-menu li a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 20px 20px;
	font-weight: 500;
	transition: all 0.3s;
	font-size: 16px;
	letter-spacing: 1px;
}
.nav-menu li:hover a,
.nav-menu li.active a {
	background-color: rgba(255, 255, 255, 0.1);
}
.nav-menu li:hover a::after,
.nav-menu li.active a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 3px;
	background-color: #fff20f;
}
/* Dropdown */
.dropdown ul {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	min-width: 220px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s;
	z-index: 1000;
	list-style: none;
	padding: 0;
	margin: 0;
}
.dropdown:hover ul,
.dropdown.active ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown ul li {
	position: relative;
}
.dropdown ul li a {
	color: #333;
	padding: 12px 20px;
	border-bottom: 1px solid #eee;
	display: block;
	font-size: 16px;
}
.dropdown ul li:last-child a {
	border-bottom: none;
}
.dropdown ul li a:hover {
	background-color: #f8f9fa;
	color: #1e3c72;
}
.dropdown ul li a::after {
	display: none;
}
/* Mobile Menu */
.mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #bd2d2e;
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
}
.mobile-download-btn {
	display: none;
	background: linear-gradient(45deg, #2e2b60, #bd2d2e);
	color: white;
	padding: 8px 15px;
	text-decoration: none;
	border-radius: 20px;
	font-weight: 600;
	font-size: 12px;
	transition: all 0.3s;
}
.mobile-download-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: #000000;
	transition: right 0.4s ease;
	z-index: 9999;
	overflow-y: auto;
}
.mobile-menu.show {
	right: 0;
}
.mobile-header {
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	position: relative;
}
.mobile-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}
.mobile-logo img{
	width:150px;
}
.mobile-nav {
	list-style: none;
	padding: 20px 0;
}
.mobile-nav li a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 15px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}
.mobile-nav li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.mobile-nav .dropdown > a::after {
	content: '\25BC';
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s;
	font-size: 12px;
}
.mobile-nav .dropdown.active > a::after {
	transform: translateY(-50%) rotate(180deg);
}
.mobile-nav .dropdown ul {
	max-height: 0;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.3);
	transition: max-height 0.4s ease;
	list-style: none;
	padding: 0;
	margin: 0;
	position: static;
	width: 100%;
}
.mobile-nav .dropdown.active ul {
	max-height: 500px;
}
.mobile-nav .dropdown ul li a {
	padding: 12px 40px;
	font-size: 16px;
	border-bottom: 1px solid rgb(255 255 255 / 17%);
	color: #fff;
	letter-spacing: 1px;
}
.mobile-nav .dropdown ul li:last-child a {
	border-bottom: none;
}
.mobile-contact {
	padding: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	background-color: rgba(0, 0, 0, 0.2);
}
.mobile-contact h4 {
	color: #fff20f;
	margin-bottom: 15px;
	font-size: 20px;
	letter-spacing: 1px;
}
.mobile-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: white;
	font-size: 14px;
}
.mobile-contact-item a {
	color: white;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
}
.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.mobile-overlay.show {
	opacity: 1;
	visibility: visible;
}
/* Sticky Header */
.sticky-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgb(255 255 255 / 73%);
	z-index: 1000;
	padding: 10px 0;
	transform: translateY(-100%);
	transition: transform 0.3s;
}
.sticky-header.active {
	transform: translateY(0);
}
.sticky-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sticky-logo {
	display: flex; 
	align-items: center; 
	gap: 8px;
}
.sticky-logo img{
	width: 150px;
}
.sticky-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.sticky-nav li a {
	color: #2e2b60;
	text-decoration: none;
	padding: 15px 20px;
	transition: all 0.3s;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}
.sticky-nav li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #1e3c72, #2a5298);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}
.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.back-to-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}
/* Responsive */
@media (max-width: 991px) {
	.header-top-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
		text-align: left;
	}
	.contact-info {
		flex-direction: column;
		gap: 5px;
	}
	.contact-info > div:not(:last-child) {
		display: none;
	}
	.contact-info > div:last-child {
		display: block;
	}
	.header-main-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 15px;
		text-align: left;
	}
	.header-info {
		display: none;
	}
	.navigation {
		display: none;
	}
	.nav-menu {
		display: none;
	}
	.mobile-toggle {
		display: block;
	}
	.mobile-download-btn {
		display: block;
	}
	.sticky-nav {
		display: none;
	}
}
@media (max-width: 768px) {
	.mobile-menu {
		width: 280px;
	}
	.logo img{
		width: 120px;
	}
	.info-item {
		flex-direction: column;
		text-align: center;
	}
	.back-to-top {
		bottom: 0px;
		right: 5px;
		width: 45px;
		height: 36px;
		font-size: 18px;
		border-radius: 0;
	}
}