@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
}

body
{
    font-family: 'Open Sans', sans-serif;
}

 /* General styles */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* High z-index to ensure it's above other elements */
    background-color: #fff;

}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}
    
    /* Top Nav styles */
    .top-nav {
        padding: 10px 0;
        font-size: 12px;
        border-bottom: 1px solid #e0e0e0;
        font-family: 'Open Sans', sans-serif;
    }
    
    .top-nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .top-nav-links a {
        color: #333;
        text-decoration: none;
        margin-right: 15px;
    }
    
    .call-us {
        color: #F5921D;
    }
    
    .divider {
        color: #ddd;
        margin: 0 10px;
    }
    
    /* Dropdown styles (used in top bar) */
    .myaccount {
        position: relative;
        display: inline-block;
        margin-right: 15px;
    }
    
    .myaccount-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 120px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    
    .myaccount:hover .myaccount-content {
        display: block;
    }
    
    .myaccount-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    
    .myaccount-content a:hover {
        background-color: #f1f1f1
    }
    
    /* Main header styles */
    .main-header {
        padding: 20px 0;
        border-bottom: 1px solid #e0e0e0;
        padding: 10px 0;
    }
    
    .main-header-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .logo img {
        max-height: 50px;
        width: auto;
    }
    
    /* Search container styles */
    .search-container {
        display: flex;
        align-items: center;
        max-width: 500px;
        margin: 20px 75px;
        border: 1px solid #e0e0e0;
        border-radius: 25px;
        overflow: hidden;
        background-color: white;
    }
    
    .category-select {
        padding: 10px 30px 10px 15px;
        border: none;
        background-color: transparent;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23888888%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 10px top 50%;
        background-size: 10px auto;
        color: #888;
        font-size: 14px;
    }
    
    .category-select:focus {
        outline: none;
    }
    
    .category-select option :hover {
        background-color: #F5921D;
    }
    
    .search-input {
        flex-grow: 1;
        padding: 10px 15px;
        border: none;
        outline: none;
        font-size: 14px;
    }
    
    .search-input::placeholder {
        color: #888;
    }
    
    .search-button {
        padding: 10px 5px;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }
    
    .search-icon {
        width: 20px;
        height: 20px;
        fill: #888;
    }
    
    /* Icon styles */
    .icons {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1.5px solid #c2bebea4;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 5px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }
    
    .icon-circle:hover {
        border: 1px solid #F5921D;
        color: white;
    }
    
    /* Main navigation styles */
    .main-nav {
        background-color: #F5921D;
        padding: 10px 0px 0px 0px;
        max-width: 100%;
        z-index: 999;
        position: relative;
        overflow: visible;
    }
    
    .main-nav-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    
    
    .add-space {
        margin-left: 10px;
    }
    
    .main-menu {
        display: flex;
        list-style-type: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }
    .main-menu li {
        padding-right: 5px;
    }
    
    .menu-btn a {
        letter-spacing: 0;
        box-sizing: inherit;
        transition-property: all;
        transition-duration: .4s;
        transition-timing-function: ease-in-out;
        padding-right: 5px;
        transition: transform 0.2s ease-in-out;
        transition: letter-spacing 0.3s ease, color 0.3s ease, background 0.5s ease, font-weight 0.3s ease;
    }
    
    .menu-btn a:hover {
        letter-spacing: 2px;
        color: #F5921D;
        background: #fff;
        font-weight: 500;
        border-radius: 10px 10px 0px 0px;
        
    }
    .menu-btn:active {
        transform: translateY(2px);
      }
      .properwork
      {
        z-index: 100;
      }

    
    .main-menu li {
        position: relative;
    }

    .menu-btn {
        position: relative;
        display: inline-block;
    }
    
    /* Ensure dropdown doesn't affect layout */
    .menu-btn .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        min-width: 180px;
        box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.15);
        z-index: 1000;
        border-radius: 0 0 8px 8px;
        border-top: 2px solid #F5921D;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        white-space: nowrap;
    }
    
    .menu-btn .dropdown-content a {
        color: #333;
        font-size: 15px;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
    }
    
    .menu-btn .dropdown-content a:last-child {
        border-bottom: none;
        border-radius: 0 0 8px 8px;
    }
    
    .menu-btn .dropdown-content a:hover {
        background-color: #F5921D;
        color: white;
        padding-left: 20px;
    }
    
    .menu-btn:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .add-border
    {
        border-bottom: 2px #F5921D solid;
        border-width: 50%;
    }
    .main-menu li:not(:last-child)::after {
        content: '';
        color: rgba(255,255,255,0.3);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-menu li a {
        color: white;
        text-decoration: none;
        padding: 10px 15px;
        display: block;
        font-size: 20px;
    }
    
    
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        background-color: #F5921D;
    }
    
    /* Responsive styles */
    @media (max-width: 991px) {
        .top-nav-content, .main-header-content {
            justify-content: space-between;
            text-align: left;
            padding: 10px;
            align-items: center;
        }
    
        .search-container {
            display: none;
        }
    
        .icons {
            display: flex;
            align-items: center;
            margin: 0;
            gap: 5px;
        }

        .icon-circle {
            width: 35px;
            height: 35px;
            margin: 2px;
        }
        
        .logo {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }
    }
    
    @media (max-width: 768px) {
        .main-nav-content {
            flex-direction: column;
            align-items: stretch;
        }

        .mobile-menu-btn {
            display: block;
            align-self: center;
            margin-bottom: 10px;
        }

        /* Keep icons visible on tablet */
        .main-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .search-container {
            display: none;
        }
    
        .icons {
            display: flex;
            align-items: center;
            margin: 0;
            gap: 5px;
        }

        .icon-circle {
            width: 35px;
            height: 35px;
            margin: 2px;
        }
        
        .logo {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        /* Active */
        button.mobile-menu-btn:active
        {
            transform: translateY(3px);
            background-color: #F5921D;
            border: #fff;
            
        }
        .mobile-menu-btn {
            display: block;
            align-self: start;
            margin-bottom: 10px;
            margin-left: 10px;
        }

        .main-menu {
            display: none;
            flex-direction: column;
        }
    
        .main-menu.active {
            display: flex;
        }
        .mobile-menu-btn {
            display: block;
            align-self: start;
            margin-bottom: 10px;
            margin-left: 20px;
        
        }
    
        .main-menu li a {
            padding: 15px;
            text-align: center;
        }

        /* Mobile dropdown styles */
        .menu-btn .dropdown-content {
            position: static;
            display: none;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
            background-color: rgba(255,255,255,0.95);
            border-radius: 0;
            border-top: none;
            transform: none;
            opacity: 1;
        }
        
        .menu-btn:hover .dropdown-content,
        .menu-btn.active .dropdown-content {
            display: block;
        }
        
        .menu-btn .dropdown-content a {
            color: #F5921D;
            font-weight: 500;
            border-bottom: 1px solid #f0f0f0;
            padding: 10px 25px;
        }
        
        .menu-btn .dropdown-content a:hover {
            background-color: #F5921D;
            color: white;
            padding-left: 30px;
        }

        #dropdownMenu
        {
            z-index: 500;
        }
    }
    
    @media (max-width: 576px) {
        .top-nav-content, .main-header-content {
            justify-content: space-between;
            text-align: left;
            align-items: center;
        }
        
        /* Keep icons visible on mobile */
        .search-container {
            display: none;
        }
    
        .icons {
            display: flex;
            align-items: center;
            margin: 0;
            gap: 3px;
        }

        .icon-circle {
            width: 30px;
            height: 30px;
            margin: 1px;
        }
        
        .logo {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        .logo img {
            max-height: 35px;
        }
    
        .main-nav-content {
            flex-direction: column;
            align-items: stretch;
        }
    
        .mobile-menu-btn {
            display: block;
            align-self: start;
            margin-bottom: 10px;
            margin-left: 10px;
        
        }
        #dropdownMenu
        {
            z-index: 50;
        }
        /* Active */
        button.mobile-menu-btn:active
        {
            transform: translateY(3px);
            background-color: #F5921D;
            border: #fff;
        }

    
        .main-menu {
            display: none;
            flex-direction: column;
        }
    
        .main-menu.active {
            display: flex;
        }
    
        .main-menu li a {
            padding: 15px;
            text-align: center;
        }
        
        /* Mobile dropdown styles for small screens */
        .menu-btn .dropdown-content {
            position: static;
            display: none;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
            background-color: rgba(255,255,255,0.95);
            border-radius: 0;
            border-top: none;
            transform: none;
            opacity: 1;
        }
        
        .menu-btn:hover .dropdown-content,
        .menu-btn.active .dropdown-content {
            display: block;
        }
        
        .menu-btn .dropdown-content a {
            color: #F5921D;
            font-weight: 500;
            border-bottom: 1px solid #f0f0f0;
            padding: 10px 25px;
        }
        
        .menu-btn .dropdown-content a:hover {
            background-color: #F5921D;
            color: white;
            padding-left: 30px;
        }
        
        #dropdown-menu
        {
            z-index: 500;
        }
    }