.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#06752E;--e-global-color-e221eba:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1440px;}.e-con{--container-max-width:1440px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* =========================================
   BENCH ELECTRIC - CONSOLIDATED MASTER SYSTEM
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Roboto:wght@700;900&display=swap');

:root {
    /* --- Brand Colors (Industrial Update) --- */
    --be-primary: #1BAE70;
    --be-secondary: #06752E;
    --be-dark: #14261C;
    --be-black: #000000;
    --be-light: #ffffff;
    --be-gray: #f8f9f8;
    --be-text: #4E5652;
    
    /* --- Spacing & Layout System --- */
    --pad-x: clamp(20px, 5vw, 80px);
    --pad-y: clamp(80px, 10vw, 140px);
    --gutter: 30px;
    --be-border-radius: 4px;
}

/* --- Global Resets --- */
.be-master-wrapper {
    font-family: 'Lato', sans-serif;
    color: var(--be-text);
    background: var(--be-light);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Roboto', sans-serif; 
    color: var(--be-dark);
    text-transform: uppercase; 
    letter-spacing: -1px; 
    margin: 0 0 20px 0;
}

p, a, span, li {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

/* --- The 12-Column Grid System --- */
.be-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

.be-section { padding: var(--pad-y) 0; }

/* --- Premium Button Styles --- */
.be-btn-premium {
    display: inline-block;
    background: var(--be-primary);
    color: #fff;
    padding: 20px 45px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}
.be-btn-premium:hover { 
    background: var(--be-dark); 
    transform: translateX(10px); 
    color: #fff;
}

/* --- Header Styling (Fixed & Functional) --- */
.be-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.be-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px var(--pad-x);
}

.be-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.be-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.be-nav a {
    font-weight: 700;
    color: var(--be-dark);
    text-decoration: none;
    font-size: 1.05rem;
    position: relative;
}

.be-nav a:hover { color: var(--be-primary); }

.be-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--be-dark);
    cursor: pointer;
}

/* --- Footer Styling (Black & Authority) --- */
.be-footer-wrapper {
    width: 100%;
    background-color: var(--be-black);
    padding: 80px 0 20px;
    margin-top: 0;
}

.be-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.be-footer-wrapper h4 {
    color: var(--be-primary);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.be-footer-wrapper p, .be-footer-wrapper a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.be-footer-wrapper a:hover { color: var(--be-primary); }

.be-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px var(--pad-x) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .be-footer-container { grid-template-columns: 1fr 1fr; }
    .be-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 30px 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    .be-nav.active { display: flex; }
    .be-menu-toggle { display: block; }
}

@media (max-width: 768px) {
    .be-footer-container { grid-template-columns: 1fr; }
    .be-footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}

/* --- ASTRA SCROLL TO TOP OVERRIDE --- */
    #ast-scroll-top.ast-scroll-top-icon {
        background-color: #1BAE70 !important; /* Bench Primary Green */
        transition: background-color 0.3s ease !important;
    }

    #ast-scroll-top.ast-scroll-top-icon:hover {
        background-color: #06752E !important; /* Bench Dark Green */
    }

    /* Force the arrow icon to be white */
    #ast-scroll-top .ast-icon svg path,
    #ast-scroll-top .ast-arrow-svg {
        fill: #ffffff !important;
        color: #ffffff !important;
    }/* End custom CSS */