.header-desktop .top-bar {
	padding: 8px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	color: #666;
}

.header-desktop .location {
	display: flex;
	align-items: center;
	color: #000;
	gap: 0px 10px;
}

.header-desktop .location-icon {
	color: #28a745;
	margin-right: 5px;
	font-size: 16px;
}

.header-desktop .auth-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-desktop .auth-btn {
	display: flex;
	align-items: center;
	color: rgb(40, 51, 130);
	text-decoration: none;
	font-size: 14px;
}

.header-desktop .auth-btn::before {
	content: "👤";
	margin-right: 5px;
}

.header-desktop .main-header {
	background-color: white;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-desktop .logo-section {
	display: flex;
	align-items: center;
}

.header-desktop .logo {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #28a745, #20c997);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	position: relative;
}

.header-desktop .logo::before {
	content: "✚";
	color: white;
	font-size: 24px;
	font-weight: bold;
}

.header-desktop .hospital-name {
	color: #28a745;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
}

.header-desktop .hospital-name .line1 {
	display: block;
	font-size: 16px;
}

.header-desktop .hospital-name .line2 {
	display: block;
	color: #2c5aa0;
	font-size: 20px;
}

.header-desktop .search-section {
	flex: 1;
	max-width: 500px;
	margin: 0 40px;
	display: flex;
	position: relative;
	background: rgb(250, 250, 250);
	border-radius: 3px;
	overflow: hidden;
}

.header-desktop .search-input {
	flex: 1;
	padding: 10px 15px;
	outline: none;
	font-size: 14px;
	background: #f8f9fa;
}

.header-desktop .specialty-dropdown {
	padding: 10px 15px;
	border-left: none;
	background-color: #f8f9fa;
	color: rgb(40, 51, 130);
	cursor: pointer;
	display: flex;
	align-items: center;
	min-width: 120px;
	border-left: 1px dashed #cdcdcd;
}

.header-desktop .specialty-dropdown::after {
	content: "▼";
	margin-left: 8px;
	font-size: 12px;
}

.header-desktop .search-btn {
	padding: 10px 14px;
	background-color: rgb(217, 217, 217);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.header-desktop .search-btn::before {
	content: "🔍";
	color: white;
	font-size: 16px;
}

.header-desktop .contact-section {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-desktop .hotline {
	display: flex;
	align-items: center;
	color: #666;
}

.header-desktop .hotline-icon {
	width: 30px;
	height: 30px;
	background-color: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.header-desktop .hotline-icon::before {
	content: "📞";
	color: white;
	font-size: 14px;
}

.header-desktop .hotline-text {
	font-size: 14px;
	line-height: 1.2;
	color: rgb(0, 0, 0);
}

.header-desktop .hotline-number {
	font-weight: bold;
	color: rgb(40, 51, 130);
	font-size: 16px;
}

.header-desktop .appointment-btn {
	background: linear-gradient(135deg, #2c5aa0, #1e4880);
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.header-desktop .appointment-btn::before {
	content: "📅";
	margin-right: 8px;
}

.header-desktop .nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-desktop .nav-item {
	position: relative;
}

.header-desktop .nav-link {
	display: block;
	padding: 10px 25px;
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: background-color 0.3s;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-desktop .nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.header-desktop .nav-item:first-child .nav-link::before {
	content: "🏠";
	margin-right: 8px;
}

.item-header-top {
	background: #f2f2f2;
}

.nav-menu-header-desktop {
	background: linear-gradient(135deg, #28a745, #2c5aa0);
	padding: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-desktop .logo-section img {
	height: 56px;
	width: auto;
}



.header-mobile .top-bar {
	background-color: #f8f9fa;
	padding: 8px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: #666;
}

.header-mobile .location {
	display: flex;
	align-items: center;
	flex: 1;
	overflow: hidden;
}

.header-mobile .location-icon {
	color: #28a745;
	margin-right: 5px;
	font-size: 14px;
	flex-shrink: 0;
}

.header-mobile .location-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 11px;
}

.header-mobile .auth-mobile {
	display: flex;
	align-items: center;
	color: #666;
	font-size: 12px;
	text-decoration: none;
}

.header-mobile .auth-mobile::before {
	content: "👤";
	margin-right: 3px;
	font-size: 12px;
}

.header-mobile .main-header {
	background-color: white;
	padding: 12px 15px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.header-mobile .logo-section {
	display: flex;
	align-items: center;
	flex: 1;
}

.header-mobile .logo {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #28a745, #20c997);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	flex-shrink: 0;
}

.header-mobile .logo::before {
	content: "✚";
	color: white;
	font-size: 18px;
	font-weight: bold;
}

.header-mobile .hospital-name {
	color: #28a745;
	font-weight: bold;
	line-height: 1.2;
	flex: 1;
}

.header-mobile .hospital-name .line1 {
	display: block;
	font-size: 12px;
}

.header-mobile .hospital-name .line2 {
	display: block;
	color: #2c5aa0;
	font-size: 15px;
}

.header-mobile .header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-mobile .search-toggle {
	width: 35px;
	height: 35px;
	background-color: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: unset;
}

.header-mobile .search-toggle::before {
	content: "🔍";
	font-size: 14px;
	color: #666;
}

.header-mobile .menu-toggle {
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #28a745, #2c5aa0);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
}

.header-mobile .menu-toggle span {
	width: 16px;
	height: 2px;
	background-color: white;
	border-radius: 1px;
	transition: all 0.3s;
}

.header-mobile .search-mobile {
	background-color: white;
	padding: 15px;
	border-bottom: 1px solid #eee;
	display: none;
	position: relative;
}

.header-mobile .search-mobile.active {
	display: block;
}

.header-mobile .search-input-mobile {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 25px;
	outline: none;
	font-size: 14px;
	margin-bottom: 10px;
}

.header-mobile .search-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.header-mobile .filter-btn {
	padding: 8px 12px;
	background-color: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 15px;
	color: #666;
	font-size: 12px;
	cursor: pointer;
	white-space: nowrap;
}

.header-mobile .filter-btn.active {
	background: linear-gradient(135deg, #28a745, #2c5aa0);
	color: white;
	border-color: transparent;
}

.header-mobile .quick-contact {
	background: linear-gradient(135deg, #28a745, #2c5aa0);
	color: white;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-mobile .hotline-mobile {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: white;
}

.header-mobile .hotline-icon-mobile {
	width: 25px;
	height: 25px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
}

.header-mobile .hotline-icon-mobile::before {
	content: "📞";
	font-size: 12px;
}

.header-mobile .hotline-info {
	font-size: 12px;
	line-height: 1.2;
}

.header-mobile .hotline-number-mobile {
	font-weight: bold;
	font-size: 14px;
}

.header-mobile .appointment-btn-mobile {
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 15px;
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.header-mobile .appointment-btn-mobile::before {
	content: "📅";
	margin-right: 5px;
	font-size: 10px;
}

.header-mobile .mobile-menu {
	background-color: white;
	position: fixed;
	top: 0;
	left: -100%;
	width: 80%;
	height: 100vh;
	z-index: 1000;
	transition: left 0.3s;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.header-mobile .mobile-menu.active {
	left: 0;
}

.header-mobile .menu-header {
	background: linear-gradient(135deg, #28a745, #2c5aa0);
	color: white;
	padding: 20px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-mobile .menu-title {
	font-weight: bold;
	font-size: 16px;
}

.header-mobile .close-menu {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-mobile .menu-items {
	list-style: none;
	padding: 0;
}

.header-mobile .menu-item {
	border-bottom: 1px solid #f0f0f0;
}

.header-mobile .menu-link {
	display: block;
	padding: 15px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-mobile .menu-link:hover {
	background-color: #f8f9fa;
	color: #28a745;
}

.header-mobile .menu-link::after {
	content: "›";
	color: #ccc;
	font-size: 18px;
}

.header-mobile .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

.header-mobile .overlay.active {
	display: block;
}

.header-mobile .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.header-mobile .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.header-mobile .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}
.header-mobile .logo-section img {
    height: 40px;
}
@media(min-width:990px) {
	header.header-mobile {
		display: none;
	}
}

@media(max-width:990px) {
	.header-desktop {
		display: none;
	}
}