.elementor-393 .elementor-element.elementor-element-4bdc31d{--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;}.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-fc9f28c */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 55px;
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: #FF9C0F;
}

/* Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    text-decoration: none;
    font-weight: 600;
    color: #FF9C0F;
}

.btn-quote {
    background: #FF9C0F;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-quote:hover {
    background: #FF9C0F;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ======================
   Responsive Design
====================== */

@media (max-width: 992px) {

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .header-right {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}/* End custom CSS */