.full-navbar {
    position: sticky;
    height: auto;
    top: 0;
    z-index: 20;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background-color: var(--primary-background-color);
    position: sticky;
    height: 80px;
    top: 0;
    z-index: 20;
    /* margin-top: 20px; */
}

.navbar-logo-main-class {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;

}

.logo img {
    max-height: 50px;
    width: auto;
}

.navbar-company-name-link {
    text-decoration: none;
}


.navbar-company-name {
    font-size: 24px;
    /*font-size: var(--desktop-paragraph-font-size-active);*/
    font-weight: var(--desktop-subheading-font-weight);
    line-height: var(--desktop-paragraph-line-height);
    text-align: left;
    color: var(--secondary-color);
}

.navbar-creative-agency {
    font-size: small;
    font-weight: 500;
    text-align: left;
    color: var(--secondary-color);
}


.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu .navbarlink {
    color: #fff;
    text-decoration: none;
    font-size: var(--desktop-paragraph-font-size);
    font-weight: var(--desktop-subparagraph-font-weight);
}

.nav-menu .navbarlink-active {
    color: var(--primary-color);
    font-size: var(--desktop-paragraph-font-size-active);
    font-weight: var(--desktop-subheading-font-weight);
    line-height: var(--desktop-paragraph-line-height);
    text-underline-offset: 5px;
    /* Optional: Adjusts the distance of the underline from the text */

}

.nav-menu-navbarlinks,
.nav-menu-icons-contact {
    display: flex;
}



.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle i {
    font-size: 25px;
    color: #fff;
    display: block;
}

#closeIcon {
    display: none;
}

.enq {
    position: fixed;
    right: 0;
    bottom: 42%;
    width: 34px;
    margin-top: -2.5em;
    z-index: 999999;
}

.enq img {
    width: 100%;
    object-fit: contain;
}


@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0 0 0 2rem;
        width: 100%;
    }

    .navbar-logo-side-parent {
        width: 100%;
    }

    .logo {
        order: 2;
        width: 20%;
        text-align: center;
    }

    .nav-menu {
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        width: 50%;
        background-color: var(--primary-background-color);
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        gap: 0;
        height: 100vh;
        padding: 2%;
    }

    .nav-menu li {
        margin: 1rem 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle #menuIcon {
        display: block;
    }

    .menu-toggle #closeIcon {
        display: none;
    }

    .nav-menu.active+.menu-toggle #menuIcon {
        display: none;
    }

    .nav-menu.active+.menu-toggle #closeIcon {
        display: block;
    }

    .navbar-logo-main-class {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 0px;
        /* or column-reverse for vertical */
    }


    .logo img {
        max-height: 30px;
        width: auto;
    }

    .navbar-company-name {
        font-size: 16px;
        font-weight: 400;
        line-height: var(--desktop-paragraph-line-height);
        text-align: left;
        color: var(--secondary-color);
    }

    .navbar-creative-agency {
        font-size: xx-small;
    }

    .nav-menu-navbarlinks {
        display: flex;
        flex-direction: column;
    }

    .nav-menu-icons-contact {
        width: 100%;
        justify-content: space-around;
    }


    .enq {
        bottom: 40%;
        width: 24px;
    }


}