* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

header {
	padding: 20px;
	background-color: #060604;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	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: "Raleway", serif;
	font-weight: 700;
	font-style: normal;
	transition: ease-in-out .4s;
	text-transform: uppercase;
}

.logo a:hover {
	color: #fff;
}

.logo img {
	width: 120px;
	height: 40px;
	object-fit: contain;
}

.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: "Raleway", serif;
	font-weight: 400;
	font-style: normal;
}

/* .nav-links a:hover {
	color: #FFB500;
} */

/* .crumb {
	font-weight: bold !important;
	font-size: 14px !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, #060604 0%, #060604 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: 1rem 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: "Raleway", 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);
	}


	.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;
	}
}




/* Dropdown base */
.dropdown {
	position: relative;
  }
  
  .dropdown-toggle {
	cursor: pointer;
	position: relative;
  }
  
  .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background-color: #060604;
	padding: 0.5rem 0;
	list-style: none;
	display: none;
	flex-direction: column;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 999;
  }
  
  .dropdown-menu li  {
 padding: 10px 16px; 
	color: #fff;
	display: block;
	text-decoration: none;
	font-size: 14px;
  }
  
  .dropdown-menu li a:hover {
	background-color: #111;
  }
  
  /* Show dropdown */
  .dropdown.open .dropdown-menu {
	display: flex;
  }
  
  /* Mobile-specific override */
  @media (max-width: 992px) {
	.dropdown-menu {
	  position: static;
	  box-shadow: none;
	  background: none;
	  padding-left: 1rem;
	}
  
	.dropdown-menu li a {
		padding: 0; 
	}
	.dropdown-menu li  {
		padding: 0px; 
		
		 }
  }



  @media (max-width: 789px) {

	.dropdown-menu li a {
		padding: 0; 
	}
	.dropdown-menu li  {
		padding: 0px; 
		
		 }
  }



  @media (min-width: 993px) {
	.dropdown:hover .dropdown-menu {
	  display: flex;
	}
  }