.elementor-3759 .elementor-element.elementor-element-86dc636{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-7132a46 *//* --- Bharat Engineering Supplies - Header CSS --- */

:root {
    --bh-navy: #002d5b;
    --bh-gold: #ffcc00;
    --bh-light-gray: #f8f9fa;
    --bh-white: #ffffff;
    --bh-text: #333333;
    --bh-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header Container Styling */
.bh-header {
    background: var(--bh-white);
    box-shadow: var(--bh-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
}

.bh-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Fix */
.bh-logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}
.bh-logo img:hover {
    transform: scale(1.05);
}

/* Main Menu List */
.bh-menu-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 15px;
    align-items: center;
}

.bh-menu-list li {
    position: relative;
}

.bh-menu-list li a {
    text-decoration: none;
    color: var(--bh-text);
    font-weight: 600;
    font-size: 14px;
    padding: 15px 10px;
    display: block;
    transition: all 0.3s ease;
}

.bh-menu-list li a:hover {
    color: var(--bh-navy);
}

/* Submenu Dropdown Styling */
.bh-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bh-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 260px; /* Width thodi badhai hai taaki labels fit ho sakein */
    border-radius: 0 0 10px 10px;
    border-top: 4px solid var(--bh-navy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

/* Show Submenu on Hover */
.bh-has-sub:hover .bh-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bh-sub-menu li a {
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
}

.bh-sub-menu li:last-child a {
    border-bottom: none;
}

.bh-sub-menu li a:hover {
    background-color: var(--bh-light-gray);
    color: var(--bh-navy);
    padding-left: 30px; /* Chota sa animation effect */
}

/* Special Contact Us Button */
.bh-contact-btn {
    background-color: var(--bh-navy) !important;
    color: var(--bh-white) !important;
    padding: 10px 22px !important;
    border-radius: 5px;
    margin-left: 10px;
    transition: background 0.3s ease !important;
}

.bh-contact-btn:hover {
    background-color: #001f3f !important;
    box-shadow: 0 4px 8px rgba(0, 45, 91, 0.3);
}

/* --- Mobile Menu & Responsive --- */

.bh-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bh-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--bh-navy);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .bh-menu-toggle {
        display: flex;
    }

    .bh-nav {
        position: absolute;
        top: 100%;
        left: -100%; /* Hidden off-screen */
        width: 100%;
        background: var(--bh-white);
        height: calc(100vh - 85px);
        transition: 0.4s ease-in-out;
        overflow-y: auto;
        box-shadow: 10px 0 20px rgba(0,0,0,0.1);
    }

    .bh-nav.active {
        left: 0;
    }

    .bh-menu-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 0;
    }

    .bh-menu-list li {
        width: 100%;
    }

    .bh-menu-list li a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .bh-sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        width: 100%;
        border-top: none;
        padding-left: 20px;
        display: none; /* Controlled by JS toggle */
        transform: none;
        background: var(--bh-light-gray);
    }

    .bh-has-sub.open .bh-sub-menu {
        display: block;
    }

    .bh-contact-btn {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }
}/* End custom CSS */