.elementor-623 .elementor-element.elementor-element-aff95d9{--display:grid;--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--gap:0px 0px;--row-gap:0px;--column-gap:0px;--grid-auto-flow:row;--align-items:stretch;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-623 .elementor-element.elementor-element-aff95d9.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-623 .elementor-element.elementor-element-a76d0c6{--display:flex;--min-height:110px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-623 .elementor-element.elementor-element-a76d0c6:not(.elementor-motion-effects-element-type-background), .elementor-623 .elementor-element.elementor-element-a76d0c6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-623 .elementor-element.elementor-element-68cd3ec{width:var( --container-widget-width, 102.325% );max-width:102.325%;--container-widget-width:102.325%;--container-widget-flex-grow:0;}.elementor-623 .elementor-element.elementor-element-68cd3ec.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-623 .elementor-element.elementor-element-aff95d9{--grid-auto-flow:row;}}@media(min-width:768px){.elementor-623 .elementor-element.elementor-element-aff95d9{--width:100.935%;}}@media(max-width:767px){.elementor-623 .elementor-element.elementor-element-aff95d9{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for html, class: .elementor-element-22083b7 *//* ===== TOP BAR ===== */
.top-bar {
    background: #1A1A1A;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.divider {
    margin: 0 8px;
    color: #555;
}

/* Social Icons */
.social-icon {
    margin-left: 12px;
    border: 1px solid #2A2A2A;
    padding: 6px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    transition: .25s ease;
}

.social-icon:hover {
    color: #D4AF37;
    border-color: #D4AF37;
}

/* Mobile/Tablet */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 10px;
    }

    .top-left {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .divider { display: none; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-68cd3ec */<header class="bottom-bar">
    <div class="bottom-container">
        <!-- Logo -->
        <div class="bottom-logo">
            <a href="https://imasindustries.com/">
                <img src="http://imasindustries.com/wp-content/uploads/2026/02/Imas-Industries-Header-Logo.png" alt="Logo">
            </a>
        </div>
        <!-- Hamburger (mobile/tablet) -->
        <div class="hamburger" onclick="toggleBottomMenu()">
            <span></span><span></span><span></span>
        </div>
        <!-- Navigation -->
        <nav class="bottom-nav">
            <ul>
                <li><a href="https://imasindustries.com/">Home</a></li>
                <li><a href="https://imasindustries.com/about/">About Us</a></li>
                <li class="dropdown">
                    <a href="https://imasindustries.com/product-category/" class="dropdown-toggle" onclick="toggleDropdown(event, this)">
                        Products <span class="arrow">&#9660;</span>
                    </a>
                    <ul class="dropdown-menu">
                        <li><a href="https://imasindustries.com/product-category/sportswear/">Sportswear</a></li>
                        <li><a href="https://imasindustries.com/product-category/casual-wear/">Casual Wear</a></li>
                        <li><a href="https://imasindustries.com/product-category/street-wear/">Street Wear</a></li>
                    </ul>
                </li>
                <li><a href="https://imasindustries.com/catalogue/">Catalogue</a></li>
                <li><a href="https://imasindustries.com/blog/">Blog</a></li>
                <li><a href="https://imasindustries.com/contact/">Contact Us</a></li>
            </ul>
        </nav>
    </div>
</header>

<style>
/* ── Base ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bottom-bar {
    position: relative;
    z-index: 1000;
    background: #000;
    width: 100%;
}

/* Golden line under header */
.bottom-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: radial-gradient(circle at center, #D4AF37 0%, rgba(212,175,55,0.6) 30%, rgba(212,175,55,0.2) 60%, transparent 100%);
}

/* ── Layout ── */
.bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

/* ── Logo ── */
.bottom-logo img {
    display: block;
    max-height: 50px;
    width: auto;
}

/* ── Nav base ── */
.bottom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bottom-nav > ul {
    display: flex;
    align-items: center;
}

.bottom-nav > ul > li {
    position: relative;
}

/* ── Nav links with underline animation ── */
.bottom-nav > ul > li > a {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline pseudo-element */
.bottom-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background: #D4AF37;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover */
.bottom-nav > ul > li > a:hover {
    color: #D4AF37;
}

.bottom-nav > ul > li > a:hover::after {
    transform: scaleX(1);
}

/* ── Arrow indicator ── */
.arrow {
    font-size: 10px;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* ── Dropdown menu — desktop ── */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.08);
    z-index: 9999;
    border-top: 2px solid #D4AF37;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 15px;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: block;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 15px;
    width: calc(100% - 30px);
    height: 1px;
    background: #D4AF37;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.dropdown-menu li a:hover {
    color: #D4AF37;
    background: #111;
}

.dropdown-menu li a:hover::after {
    transform: scaleX(1);
}

/* Desktop hover only */
@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ── Hamburger ── */
.hamburger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 25px;
    background: #fff;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.hamburger:hover span {
    background: #D4AF37;
}

/* ── Mobile ── */
@media screen and (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .bottom-container {
        height: 60px;
        flex-wrap: nowrap;
        position: relative;
    }

    .bottom-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #000;
        z-index: 999;
        border-top: 2px solid #D4AF37;
    }

    .bottom-nav.open {
        display: block;
    }

    .bottom-nav > ul {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .bottom-nav > ul > li {
        width: 100%;
    }

    .bottom-nav > ul > li > a {
        padding: 14px 20px;
        font-size: 15px;
        border-bottom: 1px solid #222;
        color: #fff;
    }

    .bottom-nav > ul > li > a::after {
        display: none;
    }

    .bottom-nav > ul > li > a:hover {
        color: #D4AF37;
        background: #111;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        background: #1a1a1a;
        border-top: none;
        border-left: 3px solid #D4AF37;
        margin-left: 20px;
    }

    .dropdown-menu li a::after {
        display: none;
    }

    .dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown.open > .dropdown-toggle .arrow {
        transform: rotate(180deg);
        color: #D4AF37;
    }

    .dropdown.open > .dropdown-toggle {
        color: #D4AF37;
    }
}
</style>

<script>
function toggleBottomMenu() {
    const nav = document.querySelector('.bottom-nav');
    nav.classList.toggle('open');
}

function toggleDropdown(e, el) {
    if (window.innerWidth <= 991) {
        e.preventDefault();
        const parentLi = el.closest('.dropdown');
        parentLi.classList.toggle('open');
    }
}
</script>/* End custom CSS */