body {
    padding: 0;
    margin: 0;
}
.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fff;
    padding: 24px 0px;
    border-bottom: 1px solid #FFFFFF;
    transition: 0.3s all ease;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.brand-logo .logo {
    display: none;
}

.menu-inner li {
    list-style: none;
}
.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    width: 100%;
    height: 64px;
    margin: 0 auto;
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 10;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: #1A1A1A;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease-in-out;
}
.menu.is-active {
    left: 0;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    margin-top: 112px;
}
.menu-link {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: inherit;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
@media only screen and (min-width: 991px) {
    .menu {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        padding: 0px;
        margin-left: auto;
        background: none;
        box-shadow: none;
        transition: none;
        overflow: visible;
    }
    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 32px;
        margin: 0 auto;
    }
    .menu-link {
        text-transform: capitalize;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: 0;
    z-index: 12;
    width: 25.6px;
    height: 18.4px;
    margin-right: 20px;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}
@media only screen and (min-width: 991px) {
    .burger {
        display: none;
        visibility: hidden;
    }
}
.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 16px;
    transform: rotate(0deg);
    background-color: #4D4D4D;
    transition: 0.25s ease-in-out;
}
.sticky span.burger-line {
    background-color: #000 !important;
}

.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 8px;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 16px;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.brand-logo img {
    width: 350px;
}

.menu-inner li a {
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
}

.menu-inner > li {
    position: relative; /* Position the parent for dropdown positioning */
    cursor: pointer;
    padding: 10px 0px;
}

.menu-inner > li > ul {
    position: absolute;
    left: 0;
    top: 45px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    display: none; /* Hide by default */
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    width: max-content;
    padding: 10px;
}

.menu-inner > li > ul > li {
    padding: 6px 16px;
}

.menu-inner > li > ul > li > a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
}


/* Show dropdown on hover */
.menu-inner > li:hover > ul {
    display: block;
    opacity: 1;
    transform: translateY(0);
    border-top: none;
}

.menu-item-has-children:before {
    content: "";
    position: absolute;
    background-image: url(https://jdsonsgroup.com/wp-content/uploads/2025/01/Arrow-1.svg);
    right: 3px;
    height: 20px;
    width: 20px;
    bottom: 13px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.5s all ease;
}
.menu-item-has-children {
    padding-right: 35px !important;
    padding: 10px 0px;
}

@media(max-width: 991px){
    .menu-inner > li:hover:before {
    transform: rotate(0deg) !important;
    transition: 0.5s all ease;
}
.menu-inner > li:after {
    display: none !important;
}

    .burger.is-active span.burger-line {
    background-color: #000 !important;
}
     .menu-item-has-children:before{
            right: 0px;
    }
    .menu-inner > li {
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #000;
    width: 100%;
    padding-bottom: 15px;
}
.menu-inner {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 120px;
    padding: 0px 50px;
}
.menu-inner > li > ul {
    opacity: 1;
    display: block;
    height: 0px;
    visibility: hidden;
}
    .menu-inner > li ul.sub-menu.active {
        height: max-content;
        visibility: visible;
        width: 100%;
        border-top: 5px solid darkblue;
    }
}

@media(max-width: 1199px){
    .brand-logo img {
    width: 250px;
}
}

@media(max-width: 575px){
  .header {
    padding: 10px 10px 10px 20px !important;
}
    .menu-inner {
        padding: 0px 10px;
    }
        .brand-logo img {
        width: 200px;
    }
}

.menu-inner > li:after {
    position: absolute;
    content: "";
    width: 0%;
    height: 2px;
    bottom: 8px;
    background-color: var(--dark-blue);
    left: 0;
    z-index: 1;
    transition: 0.5s all ease;
}

.menu-item-has-children:after {
    width: 0% !important;
}
.menu-inner > li:hover:after{
    transition: 0.5s all ease;
    width: 100% !important;
}

.menu-inner > li:hover:before {
    transform: rotate(180deg);
    transition: 0.5s all ease;
}