* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

header {
	padding: 20px;
	background-color: #000345;
	box-shadow: 0 2px 5px rgba(223, 201, 5, 0.91);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.logo a {
	display: flex;
	align-items: center;
	font-size: 25px;
	color: #fff;
	font-family: "Be Vietnam Pro", serif;
	font-weight: 700;
	font-style: normal;
	transition: ease-in-out .4s;
}

.logo a:hover {
	color: #fff;
}

.logo {
	width: 200px;
	/* height: 40px; */
	object-fit: contain;
}
.logo img {
	width: 100%;
	object-fit: cover;
}

.nav-links {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.nav-links a {
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	transition: ease-in-out .4s;
	font-family: "Be Vietnam Pro", serif;
	font-weight: 400;
	font-style: normal;
}

.nav-links a:hover {
	color: #FFB500;
}

.call-btn {
	background-color: #000345;
	border: 1px solid #FFB500;
	color: #FFB500 !important;
	padding: 20px 20px;
	border-radius: 5px;
	transition: ease-in-out .4s;
}

.call-btn:hover {
	background-color: #FFB500;
	color: #000345 !important;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	z-index: 1001;
	position: relative;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #fff;
	transition: 0.3s;
	border-radius: 3px;
}

@media (max-width: 992px) {
	.hamburger {
		display: flex;
	}

	.nav-links {
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		height: 100vh;
		background: linear-gradient(135deg, #000345 0%, #000345 100%);
		padding: 6rem 2rem 2rem;
		transition: 0.5s ease-in-out;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		opacity: 0;
		margin: 1.5rem 0;
		text-align: right;
		transform: translateX(50px);
	}

	.nav-links.active li {
		opacity: 1;
		transform: translateX(0);
		transition: all 0.4s ease;
	}

	.nav-links.active li:nth-child(1) {
		transition-delay: 0.3s;
	}

	.nav-links.active li:nth-child(2) {
		transition-delay: 0.4s;
	}

	.nav-links.active li:nth-child(3) {
		transition-delay: 0.5s;
	}

	.nav-links.active li:nth-child(4) {
		transition-delay: 0.6s;
	}

	.nav-links.active li:nth-child(5) {
		transition-delay: 0.7s;
	}

	.nav-links a {
		color: white;
		font-size: 16px;
		line-height: 28px;
		transition: ease-in-out .4s;
		font-family: "Be Vietnam Pro", serif;
		font-weight: 400;
		font-style: normal;
		display: inline-block;
		position: relative;
	}

	.nav-links a::before {
		content: '';
		position: absolute;
		top: 50%;
		left: -30px;
		width: 20px;
		height: 2px;
		background: #FFB500;
		transform: scaleX(0);
		transition: transform 0.3s ease;
		transform-origin: right;
	}

	.nav-links a:hover::before {
		transform: scaleX(1);
	}

	.call-btn {
		/* background: rgba(255,255,255,0.2); */
		backdrop-filter: blur(10px);
		/* border: 1px solid rgba(255,255,255,0.3);
		color: white !important; */
		/* padding: 1rem 2rem; */
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		background-color: #000345;
		border: 1px solid #FFB500;
		color: #FFB500 !important;
		padding: 20px 20px;
		border-radius: 5px;
	}

	.call-btn:hover {
		background: #FFB500;
		color: #000345;
		transform: translateY(-2px);
	}

	.nav-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: 0.3s ease;
	}

	.nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}
}










/* Add to existing CSS */
.nav-links .dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000345;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background-color: #1a1a1a;
    color: #FFB500;
}

/* Mobile styles */
@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .nav-links .dropdown > a:after {
        content: '+';
        margin-left: 5px;
    }
    
    .nav-links .dropdown.active > a:after {
        content: '-';
    }
}













