.ecw-nav {
    width: 100%;
    position: relative;
    z-index: 10;
}
.ecw-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ecw-logo { font-size: 1.5rem; font-weight: 700; }
.ecw-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}
.ecw-menu li a { text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.ecw-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.ecw-toggle span { width: 25px; height: 3px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }


/* Desktop dropdown ---------------------- */
.ecw-menu li {
    position: relative;
}

.ecw-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    z-index: 20;
}

.ecw-menu li:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background-color:#000000;
}

.ecw-menu li .sub-menu li {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
}

.ecw-menu li .sub-menu li a {
    display: block;
    padding: 10px 18px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s ease;
}

.ecw-menu li .sub-menu li a:hover {
    background: #000000;
}



/* Responsive */
@media (max-width:768px) {

    /* Show hamburger normally */
    .ecw-toggle { 
        display: flex; 
    }

    .ecw-nav-container {
        justify-content: center;
    }

    /* ✅ MAIN MENU CONTAINER (Hidden until toggle active) */
    .ecw-menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        /* Initially closed */
        max-height: 0;
        overflow: hidden;

        transition: max-height 0.4s ease;
        background: #000000;
        border-radius:10px;
    }

    /* ✅ WHEN MENU IS OPEN – full height allowed */
    .ecw-menu-container.show {
        max-height: 1000px !important; /* large enough for submenu */
        overflow: visible !important;
    }

    /* ✅ MENU VERTICAL STACK */
    .ecw-menu {
        flex-direction: column;
        text-align: left;
        padding: 10px 15px;
        width: 100%;
        border-radius:10px;
    }

    /* ✅ ALWAYS SHOW SUBMENUS (only when menu is opened) */
    .ecw-menu li .sub-menu {
        display: block !important;
        position: relative;
        opacity: 1 !important;
        visibility: visible !important;

        margin-top: 5px;
        padding: 8px 0;
        background: #000000;

        overflow: visible !important;
    }

    .ecw-menu li .sub-menu li a {
        padding: 10px 25px;
        display: block;
    }
}

.ecw-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(8px) translateX(2px); }
.ecw-toggle.active span:nth-child(2) { opacity: 0; }
.ecw-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px) translateX(4px);; }


/*****************/
.lm-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.lm-marquee-track {
  display: flex;
  width: max-content;
  animation: lm-scroll var(--speed, 20s) linear infinite;
}

@keyframes lm-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lm-logo {
  flex: 0 0 auto;
  padding: 0 2rem;
}

.lm-logo img {
  height: 60px !important;
  width: auto;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.lm-logo img:hover {
  filter: grayscale(0%);
}
/**************************/