/* Header Styles */
header {
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(12px);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.header-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 25px 20px;
	display: flex;
	gap: 15px;
	align-items: center;
	position: relative;
	z-index: 1000;
}

.navbar-wrapper {
	background: white;
	border-radius: 50px;
	padding: 3px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
	font-size: 1.3rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	margin-right: 40px;
}

.logo_head {
	width: 130px;
}

.logo_head img {
	width: 100%;
	object-fit: cover;
	padding: 3px 0px;
}

.nav-links {
	display: flex;
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-links li a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 15px;
	line-height: 25px;
	display: block;
	padding: 5px;
}

.nav-links li a:hover {
	color: #000;
	font-weight: 600;
}

.has-dropdown {
	position: relative;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
	padding-right: 16px !important;
	position: relative;
}

.dropdown-toggle::after {
	display: none;
}

.arrow {
	width: 8px;
	height: 8px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	display: inline-block;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	position: absolute;
	right: 0;
	top: 35%;
}

.has-dropdown:hover .arrow,
.has-dropdown.active .arrow {
	transform: rotate(-135deg);
	top: 45%;
}

.dropdown-content {
	position: absolute;
	top: 110%;
	left: 0;
	background: #fff;
	min-width: 220px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.has-dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-content a {
	display: block;
	padding: 10px 20px !important;
	color: #333;
	font-size: 14px !important;
	transition: all 0.3s ease !important;
	white-space: nowrap;
}

.dropdown-content a:hover {
	background: #f5f5f5;
	padding-left: 25px !important;
}

.call-now-wrapper {
	background: white;
	border-radius: 50px;
	padding: 10px 30px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	border: 1px solid #fff;
}

.call-now-btn {
	color: #000;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 15px;
	line-height: 25px;
}

.call-now-btn iconify-icon {
	font-size: 22px;
}

.call-now-wrapper:hover {
	background: #000;
}

.call-now-wrapper:hover .call-now-btn {
	color: #fff;
}

/* Hamburger Menu */
/* .hamburger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
	padding: 5px;
	margin-left: auto;
	z-index: 1001;
}

.hamburger div {
	width: 22px;
	height: 2px;
	background: #333;
	transition: all 0.3s ease;
} */

.hamburger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
	padding: 5px;
	margin-left: auto;
	z-index: 1001;
	width: 24px;
	height: 24px;
	position: relative;
	border-radius: 5px;
}

.hamburger div {
	width: 22px;
	height: 2px;
	background: #333;
	transition: all 0.3s ease;
	position: absolute;
	left: 1px;
	border-radius: 5px;
}

.mobile-overlay {
	display: none;
	position: fixed;
	/* top: 0; */
	left: 0;
	width: 100%;
	/* height: 100%; */
	height: 100vh;
	background: rgba(0, 0, 0, 0.9);
	z-index: 99;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-overlay.active {
	opacity: 1;
}

@media (max-width: 1050px) {
	.nav-links li a {
		font-size: 14px;
		line-height: 25px;
		padding: 2px;
	}
}

@media (max-width: 992px) {
	.header-container {
		flex-wrap: wrap;
	}

	.navbar-wrapper {
		justify-content: space-between;
	}

	.hamburger {
		display: flex;
	}

	.mobile-overlay {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 5%;
		left: 50%;
		transform: translate(-50%, 25%);
		width: 90%;
		max-width: 400px;
		background: white;
		flex-direction: column;
		align-items: center;
		padding: 30px 20px;
		border-radius: 20px;
		gap: 15px;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
		max-height: 80vh;
		overflow-y: auto;
	}

	.nav-links.active {
		opacity: 1;
		visibility: visible;
	}

	.nav-links li {
		width: 100%;
		text-align: center;
	}

	.nav-links li a {
		font-size: 16px;
		font-weight: 600;
		padding: 10px 0;
	}

	.has-dropdown {
		width: 100%;
	}

	.dropdown-toggle {
		justify-content: center;
		padding: 10px 25px !important;
	}

	.arrow {
		position: relative;
		top: -3px;
		right: -5px;
		margin-left: 5px;
	}

	.dropdown-content {
		position: static;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: hidden;
		height: 0;
		padding: 0;
		margin: 0;
		transform: none;
		overflow: hidden;
		transition: all 0.3s ease;
		max-height: 0;
	}

	.has-dropdown.active .dropdown-content {
		visibility: visible;
		height: auto;
		padding: 10px 0;
		/*max-height: 300px;*/
		max-height: 100%;
	}

	/* .dropdown-content a {
		text-align: center;
		padding: 8px 0 !important;
	}

	.dropdown-content a:hover {
		background: none;
		padding-left: 0 !important;
	} */

	.dropdown-content a {
		text-align: center;
		padding: 8px 20px !important;
		opacity: 0.9;
	}

	.dropdown-content a:hover {
		background: none;
		padding-left: 20px !important;
		opacity: 1;
	}

	/* Hamburger Animation */
	/* .hamburger.active .line1 {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger.active .line2 {
		opacity: 0;
	}

	.hamburger.active .line3 {
		transform: rotate(-45deg) translate(5px, -5px);
	} */

	.hamburger .line1 {
		top: 4px;
	}

	.hamburger .line2 {
		top: 11px;
	}

	.hamburger .line3 {
		top: 18px;
	}

	.hamburger.active .line1 {
		transform: rotate(45deg);
		top: 11px;
	}

	.hamburger.active .line2 {
		opacity: 0;
		transform: translateX(-20px);
	}

	.hamburger.active .line3 {
		transform: rotate(-45deg);
		top: 11px;
	}

	.navbar-wrapper {
		position: relative;
		z-index: 1001;
	}
}

@media (max-width: 500px) {
	.header-container {
		gap: 10px;
		padding: 15px 10px;
	}

	.navbar-wrapper {
		padding: 12px 15px;
		border-radius: 30px;
	}

	.call-now-wrapper {
		padding: 12px 15px;
		border-radius: 30px;
	}

	.logo {
		font-size: 1.1rem;
		margin-right: 20px;
	}

	.call-now-btn {
		font-size: 0.9rem;
	}
}