/* Mega Menu Column Border */
.mega-menu-column {
flex: 0 0 16%; /* 6 columns without wrapping */
min-width: 150px;
border-right: 1px solid none; /* Right border for partition */
border-left: 1px solid none; /* Left border to create a full partition look */
}

.mega-menu-column:first-child {
border-left: none; /* Remove the left border for the first column */
}

.mega-menu-column:last-child {
border-right: none; /* Remove the right border for the last column */
}

/* Shadow Border for Items Row */
.mega-menu-column ul li {
padding: 5px 0;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for item rows */
border-bottom: 1px solid #ccc; /* Bottom border for partition between rows */
}

.mega-menu-column ul li:last-child {
border-bottom: none; /* Remove the bottom border for the last item */
}


/* Scoped Styles for Custom header */
.custom-header .logo-strip {
background-color: #fef2e2;
padding: 10px;
text-align: center;
}

.custom-header .header-logo-container {
display: flex;
justify-content: center;
align-items: center;
}

.custom-header .header-logo {
max-width: 100%;
height: auto;
width: 270px;
}

.custom-header .visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}

.custom-header .link-list-strip {
background-color: #131A22;
padding: 1px;
text-align: center;
}

.custom-header .header-nav {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.custom-header .header-nav li {
margin: 5px 15px;
position: relative;
}

.custom-header .header-nav a {
color: #FFFFFF;
text-decoration: none;
transition: color 0.3s ease;
}

.custom-header .header-nav a:hover {
color: #ff9900;
}

/* Mega Menu Strip */
.mega-menu-strip {
background-color: #F6F4FF;
padding: 10px;
display: none;
}

/* Mega Menu Styles */
.mega-menu {
overflow-x: scroll;
padding: 20px;
box-sizing: border-box;
}

.mega-menu-grid {
display: flex;
flex-wrap: nowrap; /* Prevent wrapping */
gap: 20px;
}

.mega-menu-column {
flex: 0 0 16%; /* 6 columns without wrapping */
min-width: 150px;
}

.mega-menu-column h3 {
font-size: 16px;
margin-bottom: 5px;
}

.mega-menu-column ul {
list-style: none;
padding: 0;
margin: 0;
}

.mega-menu-column li {
margin-bottom: 3px;
}

.mega-menu-column a {
color: #000080;
text-decoration: none;
}

.mega-menu-column a:hover {
color: #ff9900;
}

.custom-header .menu-toggle {
background: none;
border: none;
color: #FFFFFF;
font-size: 20px;
cursor: pointer;
margin-bottom: 10px;
display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
.custom-header .header-logo {
width: 120px;
}

.custom-header .header-nav {
display: none;
flex-direction: column;
}

.custom-header .header-nav.active {
display: flex;
}

.custom-header .menu-toggle {
display: block;
}

.mega-menu-column {
flex: 1 1 100%; /* Stack columns vertically on small screens */
}
}

@media (max-width: 480px) {
.custom-header .header-logo {
width: 200px;
}

.custom-header .header-nav li {
margin: 5px 10px;
}

.mega-menu-column {
flex: 1 1 100%; /* Stack columns vertically on extra small screens */
}
}