/*------- Desktop Menu Starts -------*/
.header-main-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 0px;
    margin: 0px;
    z-index: 999;
}

.header-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.header-menu {
    display: inline-flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.header-menu li a {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.header-menu li:hover a {
    color: #ec6c25;
}

.header-sidebar-icon {
    background-color: #ffffff;
}

/*------- Desktop Menu Ends -------*/

/*------- Mega Menu Starts -------*/
.mega-menu {
    position: fixed;
    top: 50px;

    left: 50vw;
    transform: translateX(-50%) translateY(12px);

    width: 1200px;
    max-width: calc(100vw - 40px);

    background: #fff;
    padding: 30px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}


.has-mega:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega columns */
.mega-column h6 {
    margin-bottom: 12px;
    color: #ec6c25;
    width: fit-content;
    font-size: 21px !important;
    padding: 1px;
}

.mega-column p {
    color: #00000060;
    width: fit-content;
    font-size: 14px !important;
    padding: 1px;
}

.mega-column a {
    display: block;
    width: fit-content;
    font-size: 17px !important;
    text-decoration: none;
    color: #000000 !important;
}

.mega-column a:hover {
    color: #ec6c25;
}

.mega-column.highlight {
    background: #000000;
    padding: 20px;
    border-radius: 10px;
}

.mega-column.highlight p {
    font-size: 14px;
    color: #f5f5f5;
    font-weight: 500;
    margin-bottom: 15px;
}

.mega-column a.mega-cta {
    font-weight: 600;
    color: #f5f5f5 !important;
}

/*------- Mega Menu Ends -------*/

/*------- Modile Menu Starts -------*/
.mobile-header-main {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 9999;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
}

.mobile-header-main.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-wrapper {
    padding: 10px;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-items li a {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
}

.mobile-logo-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile dropdown */
.mobile-has-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-dropdown-toggle {
    width: 100%;
    background: none;
    color: #000000;
    border: none;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 10px; */
}

.mobile-dropdown {
    list-style: none;
    padding: 10px 0px;
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-dropdown li {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.mobile-dropdown li span {
    font-size: 11px;
    font-weight: 700;
    padding: 10px;
    color: #8c8c8c;
}

.mobile-dropdown li a {
    font-size: 15px;
    font-weight: 700;
    padding: 10px;
    color: #000000;
}

.mobile-dropdown-toggle img {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open {
    display: flex;
}

.mobile-dropdown-toggle.active img {
    transform: rotate(180deg);
}

.bg-orange {
    background-color: #ec6c25;
}

.bg-light-gray {
    background-color: #f5f5f5;
}

.rounded-mobile-menu {
    border-radius: 5px !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

/*------- Mega Menu Ends -------*/


@media only screen and (min-width: 1025px) {
    .mobile-header-main {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .header-menu-wrapper {
        display: none;
    }

    .mega-menu {
        display: none !important;
    }
}