/* Header Section */
.dr1013header {
	margin: 0;
	padding: 0;
}
.dr1013header .header-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	height: 120px;
}

.dr1013header .top-row {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 10px;
}

.dr1013header header {
	background: #fefefe;
	color: #237A9B;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dr1013header .logo img {
	width: 150px;
	height: 100px;
	/* display: block; */
	margin: 15px 20px;
	/* border-image-width: 15px 40px; */
}

/* .dr1013header .header-container {
	max-width: 100%;
	margin: auto;
	padding: 0.3rem 1rem; /* Reduced padding */
/* } */ */


.dr1013header .header-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

.dr1013header .header-subtitle {
	font-size: 0.9rem;
	margin-top: 2px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 0.3px;
}

.dr1013header .menu-toggle-container {
	align-self: center;
}

.dr1013header .menu-toggle {
	display: none;
	font-size: 2rem;
	color: #237A9B;
	cursor: pointer;
	margin-right: 20px;
}

.dr1013header nav {
	/* margin-left: auto; */
    align-items: center;
	align-self: center;
}

.dr1013header nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 20px;
}

.dr1013header nav ul li a {
	color: #237A9B;
	text-decoration: none;
	font-weight: 500;
	padding: 6px 10px;
	transition: background 0.2s ease;
	font-size: 0.95rem;
	border-radius: 4px;
  margin: auto;
	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-ms-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
}

.dr1013header nav ul li a:hover {
	background-color: #f4f8fd;
	border-radius: 5px;
	color: #fcb83a;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.st-effect-1.st-menu::after {
	display: none;
}

/* Mobile View */
@media ( max-width : 632px) {
	.dr1013header .top-row {
		flex-direction: row;
		justify-content: space-between;
	}
	.dr1013header .menu-toggle {
		display: block;
        cursor: pointer;
        font-size: 2rem;
        margin-right: 20px;
        z-index: 10001;
        position: relative;
	}

	.dr1013header nav {
    position: fixed;
        top: 0;
        right: -260px;
        width: 240px;
        height: 100vh;
        background: #FEFEFE;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        transition: right 0.35s ease;
        z-index: 10000;
	}

	.dr1013header nav ul {
		display: flex;
        flex-direction: column;
        gap: 12px;
        padding-left: 16px;
        max-height: 80vh;
        overflow-y: auto;
	}

	.dr1013header nav.show {
		right: 0;
	}
	.dr1013header nav ul.show {
		display: flex;
        max-height: 60vh;
        overflow-y: auto;
		z-index: 1000;
	}
	.dr1013header nav ul li {
		padding: 10px 0;
		/* border-bottom: 1px solid #066; */
	}
	.dr1013header nav ul li:last-child {
		border-bottom: none;
	}
}
