
.nav-right-btn {
	display: flex;
}

.branding-logo {
	display: flex;
	/*width:100%;*/
	align-items: center;
}

.head-menu-btn {
	display: flex;
	align-items: center;
	background: 0 0;
	border: none;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	border-radius: 50px;
}

.head-menu-btn:hover {
	background-color: rgba(255, 255, 255, .1);
}

.head-menu-btn svg {
	fill: #fff;
	width: 30px;
	height: 30px;
	margin-left: 10px;
}

.head-menu {
	margin-left: 20px;
}

.site-menu {
	display: none;
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}

.site-menu.show {
	display: block;
}

.site-menu .modal-dialog {
	background: #fafbfc;
	height: 100%;
	overflow: auto;
	margin: 0;
	width: 100%;
	transition: all .8s cubic-bezier(.77, .2, .05, 1);
	transform: translateX(100%);
	position: absolute;
	top: 0;
	right: 0;
}

.site-menu.show .modal-dialog {
	transform: none;
}

.modal-backdrop.fade {
	opacity: 0;
	transition: .3s;
}

.modal-backdrop.fade.show {
	opacity: .5;
}

.modal-content {
	border: none;
	height: 100vh;
}

.modal-open {
	overflow: hidden;
}

.menu-item-list {
	padding: 30px 50px;
}

.menu-item-list h3 {
	font-size: 24px;
	font-family: DMSans-Medium;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.menu-item-list h3:hover {
	text-decoration: underline;
}

.menulist-in {
	padding-left: 35px;
	display: none;
}

.menu-item-list .panel {
	margin-bottom: 20px;
}

.menu-item-list .panel.active h3 {
	color: #2f39d3;
}

.menu-item-list .panel.active h3 svg {
	fill: #2f39d3;
}

.menulist-in {
	margin-top: 10px;
}

.menulist-in a {
	padding: 10px 0;
	color: #080f82;
	font-size: 18px;
	display: block;
	font-family: DMSans-Medium;
}

.menulist-in a strong {
	color: #ff5b4a;
}

.menulist-in a:hover {
	text-decoration: underline;
}

.site-menu .modal-content {
	display: flex;
	flex-direction: column;
	background: transparent;
}

.site-menu .modal-body {
	height: 100%;
	overflow: auto;
}

.site-menu .footer-social-icon ul li a {
	background: #ff5b4a;
	border: none;
	line-height: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-menu .footer-social-icon {
	padding: 30px 50px;
}

.site-menu .modal-header {
	padding: 15px 50px;
	display: flex;
	align-items: center;
}

.site-menu .modal-header button {
	margin-left: auto;
	background: 0 0;
	border: none;
}

/* Menu Container Styles */
.menu-container {
	display: flex;
	width: 100%;
	height: calc(100vh - 120px);
	position: relative;
}

/* Tab Menu Styles */
.tab-menu {
	width: 320px;
	min-width: 320px;
	padding: 20px 0;
	height: 100%;
	overflow-y: auto;
}

.tab-menu .nav-tabs {
	display: flex;
	flex-direction: column;
	border: none;
	gap: 5px;
	padding: 0 15px;
}

.tab-menu .nav-item {
	width: 100%;
}

.tab-menu .nav-link {
	width: 100%;
	padding: 15px 20px;
	color: #333;
	font-size: 18px;
	font-family: DMSans-Bold;
	border: none;
	border-radius: 8px;
	transition: all .3s ease;
	position: relative;
	display: flex;
	align-items: center;
}

.tab-menu .nav-link i {
	width: 43px;
	height: 43px;
	flex: 0 0 43px;
	border-radius: 50px;
	background: #fff;
	border: 1px solid #f4f3ff;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, .07);
	border-radius: 100px;
	transform: matrix(-1, 0, 0, 1, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
}

.tab-menu .nav-link span {
	font-family: DMSans-Bold;
	font-size: 18px;
	flex: 1;
	margin-left: 15px;
}

/* Tab Content Styles */
.tab-content-wrapper {
	flex: 1;
	padding: 20px;
	margin-right: 30px;
	height: 100%;
	overflow-y: auto;
	background: #fff;
	box-shadow: 3px 0px 10px rgba(0, 0, 0, .05);
	border-radius: 10px;
}

.tab-content {
	height: 100%;
}

.tab-pane {
	height: 100%;
	display: none;
}

.tab-pane.active {
	display: block;
}

.tab-pane .menu-item-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.tab-pane .menu-item-list li a {
	font-size: 18px;
	color: #424141;
	font-family: DMSans-Medium;
}

.menu-item-head-box {
	margin-top: 20px;
}

.menu-item-head-box h3 {
	margin-bottom: 20px;
}

.menu-item-head-box h3 a {
	font-family: DMSans-Bold;
	font-size: 18px;
	color: #ff5b4a;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.menu-container {
		flex-direction: column;
		height: auto;
	}
	
	.tab-menu {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #e9ecef;
		padding: 15px 0;
	}
	
	.tab-menu .nav-tabs {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 0 15px;
		gap: 10px;
	}
	
	.tab-menu .nav-item {
		width: auto;
	}
	
	.tab-menu .nav-link {
		white-space: nowrap;
		padding: 10px 15px;
	}
	
	.tab-content-wrapper {
		padding: 15px;
		margin: 0px 30px 30px 30px;
	}
}

/* Custom Scrollbar */
.tab-menu::-webkit-scrollbar, .tab-content-wrapper::-webkit-scrollbar {
	width: 6px;
}

.tab-menu::-webkit-scrollbar-track, .tab-content-wrapper::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.tab-menu::-webkit-scrollbar-thumb, .tab-content-wrapper::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 3px;
}

.tab-menu::-webkit-scrollbar-thumb:hover, .tab-content-wrapper::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* Side Tab Menu Styles */
.menu-container {
	display: flex;
	gap: 30px;
}

.tab-menu .nav-tabs {
	border-bottom: 0;
}

.tab-menu .nav-item {
	margin-bottom: 5px;
}

.tab-menu .nav-link {
	border: none;
	color: #333;
	padding: 12px 15px;
	border-radius: 10px;
	position: relative;
	transition: all .3s ease;
}

.tab-menu .nav-link:hover {
	background: #f8f9fa;
	color: #0056b3;
}

.tab-menu .nav-link.active {
	background: #fff;
	box-shadow: -1px -1px 24px rgba(0, 0, 0, .07);
}

.tab-content-wrapper {
	flex: 1;
	min-width: 0;
}

.tab-pane {
	display: none;
	padding: 15px;
}

.tab-pane.active {
	display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.menu-container {
		flex-direction: column;
	}
	
	.tab-menu {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid #dee2e6;
		margin-bottom: 20px;
	}
	
	.tab-menu .nav-link.active:after {
		display: none;
	}
}

@media only screen and (min-width:0px) and (max-width:479px) {
	.menulist-in a {
		padding: 10px 0 !important;
		font-size: 18px !important;
	}
	
	.tab-content-wrapper {
		margin: 0px 15px 15px 15px;
	}
	
	.tab-content-wrapper .tab-pane {
		padding: 0;
	}
	
	.menu-container {
		gap: 0px;
	}
	
	.tab-menu {
		padding-top: 0;
	}
	
	.head-menu-btn svg {
		fill: #fff;
		width: 24px;
		height: 24px;
		margin-left: 0;
	}
	
	.right-nav-bt .btn {
		font-size: 14px;
	}
	
	.head-menu button {
		padding: 5px 8px;
		width: 40px;
		height: 40px;
		margin-left: 5px;
	}
	
	.site-menu .footer-social-icon {
		padding: 20px 15px;
	}
	
	.menu-item-list {
		padding: 0 !important;
	}
	
	.site-menu .modal-header {
		padding: 20px 15px !important;
	}
	
	.modal-header a img {
		max-width: 140px;
	}
}
