.web-logo-icon {
    width: 40px;
    position: relative;
    height: 40px;
    object-fit: cover;
}

.logo-text {
    position: relative;
    font-weight: 600;
}

.branding {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 22px;
}

.home {
    position: relative;
    font-weight: 500;
    text-decoration: none;
}

.text-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.button {
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    cursor: pointer;
}

.top-nav-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    gap: 24px;
}

.custom-signup {
    border-radius: 4px;
    background-color: #f36723 !important;
    color: #fff !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    cursor: pointer;
}

.login {
    border-radius: 4px;
    background-color: #fff !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    color: #f36723 !important;
    cursor: pointer;
}

.signup-login {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    text-align: center;
}

.header1 {
    align-self: stretch;
    background-color: #f36723;
    border-bottom: 1px solid #dde1e6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    gap: 0px;
}

.icon-ionicons-sharp-chev {
    width: 15px;
    position: relative;
    height: 15px;
    font-size: 15px;
    color:#B0B0B0;
}

.nav-button {
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 8px;
    gap: 8px;
    cursor: pointer;
}

.icon-ionicons-sharp-sear {
    width: 16px;
    position: relative;
    height: 16px;
}

.search {
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 3px 28px 3px 8px;
    cursor: pointer;
}

.nav-group {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.menu {
    align-self: stretch;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 100px;
    font-size: 16px;
    color: #191919;
}

.header {
    width: 100%;
    position: fixed;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 760px;
    text-align: left;
    font-size: 16px;
    color: #fff;
    font-family: Poppins;
    top: 0;
    left: 0;
    background-color: #f36723;
    /* Ensure the background is visible */
    z-index: 1000;
    /* Keep it above other content */
    transition: transform 0.3s ease-in-out;
    /* Smooth effect */
}

.blur-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(4px); /* or use opacity if you just want dimming */
    background-color: rgba(0, 0, 0, 0.7); /* optional dark overlay */
    z-index: 999;
    pointer-events: none;
}
