body {
    font-family: var(--font-nunito);
    line-height: 1.6;
    color: var(--text-color);
}

.nav-container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Navbar Styles */
.navbar {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 12%;
    display: flex;
    align-items: center;
    padding: 10px 0px;
}

    .navbar .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 50px;
    }

.nav-left {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.logo img {
    height: 2rem;
}

.nav-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 23px;
}

.login-btn {
    background: #8873d7;
    color: var(--white);
    padding: 7px 30px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #6b5ba8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(136, 115, 215, 0.3);
}

.demo-btn {
    background: #8873d7;
    color: var(--white);
    padding: 7px 30px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: #6b5ba8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(136, 115, 215, 0.3);
}

.nav-item {
    color: #202328;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    padding: 7px 30px;
    border-radius: 32px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

    .nav-item.has-dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 7px 30px;
    }

    /* Ensure all nav items have the same hover effect */
    .nav-item:hover,
    .nav-item-wrapper:hover .nav-item.has-dropdown {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white);
    }

/* Dropdown Menu Styles */
.nav-item-wrapper {
    position: relative;
}

/* Hover states for dropdown items */
/*.nav-item-wrapper:hover .nav-item.has-dropdown {
        background: linear-gradient(to right, #1C48B2, #CC338D);
        color: var(--white);
    }*/

.dropdown-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    background: var(--white);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    border: none !important;
    box-shadow: none !important;
}

/* Ensure both dropdowns can be visible simultaneously */
.nav-item-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Additional specificity for dropdown visibility */
.nav-item-wrapper:hover .dropdown-menu,
.nav-item.has-dropdown:hover + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-item-wrapper:hover {
    z-index: 1002; /* Higher than dropdown-menu */
}

/* Fix for dropdown hover on desktop */
@media (min-width: 1024px) {
    .nav-item-wrapper:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: block !important;
        max-width: 100%;
    }

    .nav-item-wrapper:hover .nav-item.has-dropdown {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white) !important;
    }

        .nav-item-wrapper:hover .nav-item.has-dropdown::after {
            transform: rotate(180deg) !important;
            filter: brightness(0) invert(1) !important;
        }

    /* Ensure dropdown menu is properly positioned */
    .dropdown-menu {
        position: fixed !important;
        top: 97px !important;
        left: 0 !important;
        width: 100vw !important;
        z-index: 1001 !important;
    }

    /* Prevent mobile styles from interfering */
    .nav-item-wrapper:hover .dropdown-menu .menu-items {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        flex-direction: row !important;
    }
}

/* Dropdown arrow styles */
.nav-item.has-dropdown::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 15px;
    background: url('/assets/navbar/Polygon 1.png') no-repeat center;
    background-size: contain;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Arrow rotation and color change on hover (desktop) */
.nav-item-wrapper:hover .nav-item.has-dropdown::after {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

/* Dropdown menu items */
.dropdown-menu .menu-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 0;
    justify-items: center;
}

    .dropdown-menu .menu-items a {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 20px 15px;
        color: #202328;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
    }

        .dropdown-menu .menu-items a:hover {
            color: #1C48B2;
        }

            .dropdown-menu .menu-items a:hover img {
                filter: brightness(0);
            }

.menu-items img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.menu-items span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

/* Scrollbar styling for dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    /* Hamburger to Cross Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

/* Responsive Styles */
/* Media query for 1024px to 1100px - show hamburger menu */


@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: block;
        flex-direction: column;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 100px);
        background: var(--white);
        padding: 0;
        gap: 0;
        margin: 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        z-index: 998;
    }

    .nav-item {
        width: 100%;
        text-align: left;
        padding: 12px 25px;
        font-size: 16px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-left: 46%;
        margin-top: 0;
        margin-bottom: 0;
        background: var(--white);
    }

        .nav-item.has-dropdown {
            justify-content: flex-start;
            padding: 12px 25px;
        }

    .nav-item-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(75, 80, 123, 0.15);
        background: var(--white);
    }

        .nav-item-wrapper:last-child {
            border-bottom: none;
        }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        margin: 0;
        padding: 0;
        background: var(--white);
    }

    .nav-item-wrapper.active .dropdown-menu {
        display: block;
        margin: 0;
        padding: 0;
    }

    .dropdown-menu .menu-items {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        align-items: flex-start !important;
        text-align: left !important;
        background: var(--white);
    }

        .dropdown-menu .menu-items a {
            padding: 10px 15px;
            text-align: left;
            justify-content: flex-start;
            width: 100%;
            max-width: 300px;
            margin-left: 10%;
            background: var(--white);
            /* border-bottom: 1px solid rgba(75, 80, 123, 0.15); */
        }

            .dropdown-menu .menu-items a:last-child {
                border-bottom: none;
            }

            .dropdown-menu .menu-items a img {
                width: 20px;
                height: 20px;
            }

        .dropdown-menu .menu-items span {
            text-align: left;
        }

    .nav-links.active .nav-right {
        display: block;
        width: 100%;
        padding: 15px 20px;
        margin-top: 10px;
    }

    .nav-links.active .nav-right {
        order: 999;
    }

    /* Position polygon fixed next to Solutions/Products */
    .nav-item.has-dropdown::after {
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: 8px !important;
        vertical-align: middle;
        /* keep width, height, background, etc. */
    }

    /* Remove hover transforms for mobile but allow active state rotation */
    .nav-item.has-dropdown:hover::after,
    .nav-item-wrapper:hover .nav-item.has-dropdown::after {
        filter: none !important;
        transform: none !important;
    }

    /* Allow rotation when dropdown is active in mobile */
    .nav-item-wrapper.active .nav-item.has-dropdown::after {
        transform: rotate(180deg) !important;
        filter: none !important;
    }

    /* Ensure login button is visible in mobile */
    .nav-links.active .nav-right {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 15px 20px;
        margin-top: 10px;
        gap: 10px;
    }

    .nav-links.active .login-btn {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        position: relative;
        bottom: 18px;
    }

    .nav-links.active .demo-btn {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        position: relative;
        bottom: 18px;
    }

    .nav-links.active {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-login {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0 auto;
    }

    .nav-item,
    .nav-item.has-dropdown,
    .nav-item:active,
    .nav-item.has-dropdown:active,
    .nav-item:focus,
    .nav-item.has-dropdown:focus,
    .nav-item:visited,
    .nav-item.has-dropdown:visited {
        color: #202328 !important;
        background: none !important;
    }

    .nav-item-wrapper.active .nav-item,
    .nav-item-wrapper.active .nav-item.has-dropdown {
        color: #202328 !important;
        background: none !important;
    }

    /* Disable hover effects on mobile */
    .nav-item-wrapper:hover .nav-item.has-dropdown {
        background: none !important;
        color: #202328 !important;
    }

        .nav-item-wrapper:hover .nav-item.has-dropdown::after {
            transform: none !important;
            filter: none !important;
        }
}

/* Update dropdown menu top position for desktop */
@media (min-width: 1024px) {
    .hamburger {
        display: none; /* Explicitly hide on desktop */
    }

    .nav-links {
        display: flex; /* Explicitly show on desktop */
        gap: 10px;
    }

    .nav-right {
        display: flex; /* Explicitly show on desktop */
       
    }

    .dropdown-menu {
        top: 100px;
    }

    .nav-item {
        font-size: 20px;
        padding: 12px 25px;
    }

    .dropdown-menu .menu-items {
        padding: 30px 50px;
    }

    .nav-links .nav-right {
        display: none !important;
    }

    /* Force dropdown visibility on desktop hover */
    .nav-item-wrapper:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: block !important;
    }

        /* Force dropdown menu items to display as grid on desktop */
        .nav-item-wrapper:hover .dropdown-menu .menu-items {
            display: grid !important;
            grid-template-columns: repeat(5, 1fr) !important;
            flex-direction: row !important;
        }
}

/* Add padding for specific desktop range */
@media (min-width: 1024px) and (max-width: 1239px) {
    .navbar .nav-container {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 18px;
    }

    .nav-left {
        gap: 15px;
    }

    .nav-links {
        gap: 0px;
    }
}

/* Common Button Styles */
.btn-primary, .btn-secondary {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    border-radius: 38px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #8873d7;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6b5ba8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(136, 115, 215, 0.3);
}
.navbar {
    background: #ECFAFF !important;
}

.btn-secondary {
    background: #8873d7;
    color: white;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: #6b5ba8;
        transform: translateY(-1px);
        box-shadow: #8873d7;
    }

    .btn-primary img, .btn-secondary img, .demo-btn img {
        width: 18px;
        height: 18px;
        transition: all 0.3s ease;
        transform: rotate(-45deg);
    }

    .btn-primary:hover img, .btn-secondary:hover img, .demo-btn:hover img {
        transform: rotate(0deg);
    }


/* Button Responsive Styles */
@media (max-width: 767px) {
    .btn-primary, .btn-secondary {
        padding: 7px 25px;
        font-size: 16px;
    }

        .btn-primary img, .btn-secondary img, .demo-btn img {
            width: 10px;
            height: 10px;
        }


        .btn-primary i {
            display: none;
        }

        .btn-secondary i {
            display: none;
        }
}

@media (max-width: 507px) {
    .nav-item.has-dropdown {
        margin-left: 0%;
    }

    .nav-item {
        margin-left: 0%;
    }

    .dropdown-menu .menu-items a {
        margin-left: 10%;
    }
}

@media (min-width: 1024px) {
    .mobile-login {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .mobile-login {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0 auto;
    }
}

@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: block;
        flex-direction: column;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 100px);
        background: var(--white);
        padding: 20px 0;
        gap: 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        z-index: 998;
    }

    .nav-item {
        width: 100%;
        text-align: left;
        padding: 12px 25px;
        font-size: 16px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-left: 46%;
    }

        .nav-item.has-dropdown {
            justify-content: flex-start;
            padding: 12px 25px;
            margin-left: 46%
        }

    .nav-item-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border-bottom: 1px solid rgba(75, 80, 123, 0.1);
    }

        .nav-item-wrapper:last-child {
            border-bottom: none;
        }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-item-wrapper.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu .menu-items {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 20px 0 !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

        .dropdown-menu .menu-items a {
            padding: 10px 15px;
            text-align: left;
            justify-content: flex-start;
            width: 100%;
            max-width: 300px;
            margin-left: 10%;
        }

            .dropdown-menu .menu-items a img {
                width: 20px;
                height: 20px;
            }

        .dropdown-menu .menu-items span {
            text-align: left;
        }

    .nav-links.active .nav-right {
        display: block;
        width: 100%;
        padding: 15px 20px;
        margin-top: 10px;
    }

    .nav-links.active .nav-right {
        order: 999;
    }

    /* Position polygon fixed next to Solutions/Products */
    .nav-item.has-dropdown::after {
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: 8px !important;
        vertical-align: middle;
        /* keep width, height, background, etc. */
    }

    /* Remove hover transforms for mobile but allow active state rotation */
    .nav-item.has-dropdown:hover::after,
    .nav-item-wrapper:hover .nav-item.has-dropdown::after {
        filter: none !important;
        transform: none !important;
    }

    /* Allow rotation when dropdown is active in mobile */
    .nav-item-wrapper.active .nav-item.has-dropdown::after {
        transform: rotate(180deg) !important;
        filter: none !important;
    }

    /* Ensure login button is visible in mobile */
    .nav-links.active .nav-right {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 15px 20px;
        margin-top: 10px;
        gap: 10px;
    }

    .nav-links.active .login-btn {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-links.active {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-login {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0 auto;
    }

    .nav-item,
    .nav-item.has-dropdown,
    .nav-item:active,
    .nav-item.has-dropdown:active,
    .nav-item:focus,
    .nav-item.has-dropdown:focus,
    .nav-item:visited,
    .nav-item.has-dropdown:visited {
        color: #202328 !important;
        background: none !important;
    }

    .nav-item-wrapper.active .nav-item,
    .nav-item-wrapper.active .nav-item.has-dropdown {
        color: #202328 !important;
        background: none !important;
    }

    /* Disable hover effects on mobile */
    .nav-item-wrapper:hover .nav-item.has-dropdown {
        background: none !important;
        color: #202328 !important;
    }

        .nav-item-wrapper:hover .nav-item.has-dropdown::after {
            transform: none !important;
            filter: none !important;
        }
}

@media (min-width: 1600px) {
    .nav-container {
        padding: 25px 60px;
        max-width: 1800px;
        margin: 0 auto;
    }

    .nav-left {
        gap: 50px;
    }

    .nav-middle {
        gap: 30px;
    }

    .nav-links {
        gap: 35px;
    }

    .nav-item {
        font-size: 22px;
        padding: 8px 35px;
    }

    .login-btn {
        font-size: 22px;
        padding: 6px 30px;
    }

    .demo-btn {
        font-size: 22px;
        padding: 6px 30px;
    }

    .logo img {
        height: 2.2rem;
    }
}

/* Desktop Responsive Design - Medium-large screens (1400px - 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
    .nav-container {
        padding: 20px 50px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .nav-left {
        gap: 45px;
    }

    .nav-middle {
        gap: 25px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-right {
        gap: 15px;
    }

    .nav-item {
        font-size: 20px;
        padding: 7px 32px;
    }

    .login-btn {
        font-size: 20px;
        padding: 7px 32px;
    }

    .demo-btn {
        font-size: 20px;
        padding: 7px 32px;
    }

    .logo img {
        height: 2rem;
    }
}

/* Desktop Responsive Design - Medium screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .nav-container {
        padding: 18px 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .nav-left {
        gap: 35px;
    }

    .nav-middle {
        gap: 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-right {
        gap: 12px;
    }

    .nav-item {
        font-size: 18px;
        padding: 6px 28px;
    }

    .login-btn {
        font-size: 18px;
        padding: 6px 28px;
    }

    .demo-btn {
        font-size: 18px;
        padding: 6px 28px;
    }

    .logo img {
        height: 1.8rem;
    }
}

/* Desktop Responsive Design - Perfect sizing for 1200px - 1315px */
@media (min-width: 1200px) and (max-width: 1315px) {
    .nav-container {
        padding: 16px 35px;
        max-width: 1315px;
        margin: 0 auto;
    }

    .nav-left {
        gap: 30px;
    }

    .nav-middle {
        gap: 18px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-right {
        gap: 10px;
    }

    .nav-item {
        font-size: 17px;
        padding: 6px 26px;
        border-radius: 28px;
    }

    .login-btn {
        font-size: 17px;
        padding: 6px 26px;
        border-radius: 28px;
    }

    .demo-btn {
        font-size: 17px;
        padding: 6px 26px;
        border-radius: 28px;
    }

    .logo img {
        height: 1.7rem;
    }

    /* Optimize dropdown menus for this range */
    .dropdown-menu {
        max-width: 320px;
        top: 85px;
    }

        .dropdown-menu .menu-items {
            padding: 22px 35px;
            gap: 14px;
        }

            .dropdown-menu .menu-items a {
                padding: 12px 18px;
                font-size: 15px;
                gap: 12px;
            }

            .dropdown-menu .menu-items img {
                width: 22px;
                height: 22px;
            }

    /* Ensure active states work perfectly */
    .nav-item.active {
        border-radius: 28px;
        box-shadow: 0 2px 6px rgba(28, 72, 178, 0.25);
    }

        .nav-item.active:hover {
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(28, 72, 178, 0.35);
        }
}

/* Desktop Responsive Design - Small-medium screens (1100px - 1199px) */
@media (min-width: 1100px) and (max-width: 1199px) {
    .nav-container {
        padding: 15px 30px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }

    .nav-left {
        gap: 25px;
    }

    .nav-middle {
        gap: 15px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-item {
        font-size: 18px;
        padding: 5px 24px;
    }

    .login-btn {
        font-size: 16px;
        padding: 5px 24px;
    }

    .demo-btn {
        font-size: 16px;
        padding: 5px 24px;
    }

    .logo img {
        height: 1.6rem;
    }

    /* Adjust dropdown menus for smaller screens */
    .dropdown-menu {
        max-width: 100%;
    }

        .dropdown-menu .menu-items {
            padding: 20px 30px;
            gap: 12px;
        }

            .dropdown-menu .menu-items a {
                padding: 10px 15px;
                font-size: 14px;
            }

            .dropdown-menu .menu-items img {
                width: 20px;
                height: 20px;
            }
}

/* Additional responsive adjustments for very tight screens */
@media (min-width: 1100px) and (max-width: 1150px) {
    .nav-container {
        padding: 12px 25px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-item {
        font-size: 15px;
        padding: 4px 20px;
    }

    .login-btn {
        font-size: 15px;
        padding: 4px 20px;
    }

    .demo-btn {
        font-size: 15px;
        padding: 4px 20px;
    }

    .logo img {
        height: 1.5rem;
    }
}

/* Very small screens - adjust button text for better fit */
@media (max-width: 480px) {
    .demo-btn {
        font-size: 14px;
        padding: 4px 16px;
    }

    .login-btn {
        font-size: 14px;
        padding: 4px 16px;
    }
}

/* Mobile Layout - Below 1100px */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 100px);
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 998;
    }

    /* Hide Demo button in nav-right on screens 1100px and below */
    /* .nav-right .demo-btn {
        display: none !important;
    } */

    /* Hide Demo button when hamburger is active (clicked) on mobile screens */
    .nav-container.hamburger-active .nav-right .demo-btn.mobile-demo {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        margin-left: 15px;
    }

    .nav-middleright {
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #1C48B2;
    }

/*    .nav-links.active {
        display: flex !important;
    }*/

    .nav-item {
        width: 100%;
        text-align: left;
        padding: 12px 50px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-radius: 0;
        margin: 0;
    }

        .nav-item.has-dropdown {
            justify-content: flex-start;
            padding: 12px 50px;
        }

    .nav-item-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }

        .nav-item-wrapper:last-child {
            border-bottom: none;
        }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        margin: 0;
        display: none;
    }

    .nav-item-wrapper.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu .menu-items {
        display: flex !important;
        flex-direction: column !important;
        padding: 15px 25px;
        gap: 8px;
    }

        .dropdown-menu .menu-items a {
            padding: 10px 15px;
            text-align: left;
            justify-content: flex-start;
            border-radius: 8px;
            font-size: 14px;
            gap: 10px;
        }

            .dropdown-menu .menu-items a img {
                width: 20px;
                height: 20px;
            }

        .dropdown-menu .menu-items span {
            text-align: left;
        }

    /* Position polygon fixed next to Solutions/Products */
    .nav-item.has-dropdown::after {
        position: static !important;
        right: auto !important;
        transform: none !important;
        margin-left: 8px !important;
        vertical-align: middle;
        /* keep width, height, background, etc. */
    }

    /* Remove hover transforms for mobile but allow active state rotation */
    .nav-item.has-dropdown:hover::after,
    .nav-item-wrapper:hover .nav-item.has-dropdown::after {
        filter: none !important;
        transform: none !important;
    }

    /* Allow rotation when dropdown is active in mobile */
    .nav-item-wrapper.active .nav-item.has-dropdown::after {
        transform: rotate(180deg) !important;
        filter: none !important;
    }

    /* Ensure login button is visible in mobile */
    .nav-links.active .nav-right {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 15px 20px;
        margin-top: 10px;
        gap: 10px;
    }

    .nav-links.active .nav-right {
        order: 999;
    }

    .nav-links.active .login-btn {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 200px;
        margin: 10px auto;
        order: 999;
        margin-top: 115%;
    }

    .nav-links.active .demo-btn,
    .nav-links.active .demo-btn-clone {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        order: 999;
/*        margin-top: 20%;*/
    }

    .nav-links.active {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        align-items: start;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-login {
        display: block !important;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0 auto;
    }

    /* Disable hover effects on mobile */
    .nav-item,
    .nav-item.has-dropdown,
    .nav-item:active,
    .nav-item.has-dropdown:active,
    .nav-item:focus,
    .nav-item.has-dropdown:focus,
    .nav-item:visited,
    .nav-item.has-dropdown:visited {
        color: #202328 !important;
        background: none !important;
    }

    .nav-item-wrapper.active .nav-item,
    .nav-item-wrapper.active .nav-item.has-dropdown {
        color: #202328 !important;
        background: none !important;
    }

    /* Active button styling when hamburger menu is active */
    .nav-links.active .nav-item.active {
        background: #ECFAFF !important;
        color: black !important;
    }

    .nav-item.has-dropdown.active {
        background: none !important;
        color: #202328 !important;
    }

    .nav-item-wrapper:hover .nav-item.has-dropdown {
        background: none !important;
        color: #202328 !important;
        transform: none !important;
        filter: none !important;
    }
}

.nav-item.active {
    background: linear-gradient(to right, #1C48B2, #8873d7);
    color: var(--white) !important;
    border-radius: 24px;
    transition: all 0.3s ease;
}

    /* Ensure Blog nav item gets the same styling as Home */
    .nav-item.active[href*="Blogs"],
    .nav-item.active[href*="blogs"] {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white) !important;
        border-radius: 24px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(28, 72, 178, 0.3);
    }

    /* Ensure Company nav item gets the same styling as Home */
/*    .nav-item.active[href*="Company"],
    .nav-item.active[href*="company"] {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white) !important;
        border-radius: 24px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(28, 72, 178, 0.3);
    }*/

    /* Ensure active state overrides hover for main nav items */
    .nav-item.active:hover {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(28, 72, 178, 0.4);
    }

    /* Ensure Blog nav item hover gets the same styling as Home */
    .nav-item.active[href*="Blogs"]:hover,
    .nav-item.active[href*="blogs"]:hover {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(28, 72, 178, 0.4);
    }

    /* Ensure Company nav item hover gets the same styling as Home */
    .nav-item.active[href*="Company"]:hover,
    .nav-item.active[href*="company"]:hover {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(28, 72, 178, 0.4);
    }

/* Exclude Solutions and Products from active state (they use dropdown) */
.nav-item.has-dropdown.active {
    background: linear-gradient(to right, #1C48B2, #8873d7) !important;
    color: var(--white) !important;
    border-radius: 24px;
}

    .nav-item.has-dropdown.active:hover {
        background: linear-gradient(to right, #1C48B2, #8873d7) !important;
        color: var(--white) !important;
    }

    /* Arrow styling for active dropdown nav items - white and pointing down */
    .nav-item.has-dropdown.active::after {
        transform: rotate(180deg) !important;
        filter: brightness(0) invert(1) !important;
    }

/* Countdown Timer Styles */
.countdown-container {
    position: fixed;
    top: 80px; /* Position below navbar */
    left: 0;
    right: 0;
    width: 100%;
    background: #ECFAFF; /* Light blue background */
    z-index: 999;
    padding: 35px 50px 10px 50px; /* Adequate height for content visibility */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    min-height: 50px; /* Minimum height to ensure content fits */
    display: flex;
    align-items: center; /* Center content vertically */
    overflow: visible; /* Ensure all content is visible */
    display: flex;
    justify-content: space-between;
}

.countdown-timer {
    display: flex;
    justify-content: flex-start; /* Move to left side */
    align-items: center;
    max-width: 800px;
    margin: 0;
    /* Left padding for positioning */
}

.countdown-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px; /* Adequate width for content */
}

.countdown-label {
    color: #1a1a1a; /* Dark text for better visibility */
    font-size: 11px; /* Good font size for visibility */
    font-weight: 700; /* Bold font weight */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Optimized letter spacing */
    margin-bottom: 5px; /* Adequate margin for spacing */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); /* Light text shadow for contrast */
    font-family: 'Arial', sans-serif;
}

.countdown-number {
    background: linear-gradient(to bottom, #1C48B2, #23a6d5); /* Blue gradient background */
    /* Blue border */
    border-radius: 6px; /* Nice border radius */
    color: #ffffff; /* White text on blue background */
    font-size: 18px; /* Good font size for visibility */
    font-weight: bold;
    font-family: 'Courier New', monospace;
    padding: 6px 12px; /* Adequate padding */
    min-width: 50px; /* Adequate min width */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-text {
    display: flex;
    /*  temporary remove   justify-self: center;*/
    align-items: center;
    justify-content: center;
    flex: 1; /* temporary added to show prime rx log in middle*/
}

.countdown-text-p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.finerr-logo {
    max-width: 100%;
    max-height: 20px; /* Fit within container height */
    height: auto;
    width: auto;
    object-fit: contain; /* Maintain aspect ratio while fitting */
    /* Space between logos */
}

.xplore-logo {
    max-width: 100%;
    max-height: 30px; /* Fit within container height */
    height: auto;
    width: auto;
    object-fit: contain; /* Maintain aspect ratio while fitting */
}

.text-separator {
    font-size: 22px;
    color: #1C48B2; /* Black color */
    /* Space around the @@ symbol */
    font-weight: 800;
}

.year-text {
    font-size: 25px;
    color: #000000;
    font-weight: 900; /* Black color */
    /* Space before the year */
    font-family: nunito;
    color: #1C48B2;
}

.booth-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booth-number {
    background: #ECFAFF; /* Light blue background to match container */
    color: #1a1a1a; /* Dark text for visibility */
    font-size: 16px; /* Good font size */
    font-weight: 600; /* Semi-bold font weight */
    padding: 8px 16px; /* Adequate padding */
    border: 2px solid rgba(28, 72, 178, 0.6); /* Blue border with opacity */
    border-radius: 8px; /* Rounded corners */
    text-align: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 4px rgba(28, 72, 178, 0.2); /* Subtle shadow */
    white-space: nowrap; /* Prevent text wrapping */
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.countdown-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Countdown Styles */
@media (max-width: 768px) {
    .countdown-container {
        padding: 30px 20px 8px 20px; /* Reduced padding for mobile */
        min-height: 40px; /* Reduced height for single line */
        flex-direction: row; /* Keep everything in one line */
        gap: 8px; /* Space between elements */
        align-items: center; /* Center align items */
        justify-content: space-between; /* Distribute space evenly */
    }

    .countdown-timer {
        gap: 6px; /* Reduced gap for mobile */
        padding: 0; /* Remove padding */
        justify-content: flex-start; /* Keep left aligned */
        display: flex;
        align-items: center;
        /* Take available space */
    }

    .booth-info {
        justify-content: flex-end; /* Right align */
        display: flex;
        align-items: center;
        flex: 0 0 auto; /* Don't grow or shrink */
    }

    .countdown-text {
        justify-content: center; /* Center the logos */
        display: flex;
        align-items: center;
        flex: 1; /* added to show prime rx logo in middle temporary */
        margin: 0 10px; /* Small margin on sides */
    }

    .countdown-text-p {
        gap: 3px; /* 3px gap for mobile */
    }

    .finerr-logo {
        max-height: 18px; /* Much smaller height for mobile */
        margin-right: 4px; /* Smaller margin for mobile */
    }

    .xplore-logo {
        max-height: 18px; /* Much smaller height for mobile */
    }

    .text-separator {
        font-size: 10px; /* Smaller font size for mobile */
        margin: 0 3px; /* Smaller margin for mobile */
    }

    .year-text {
        font-size: 10px; /* Smaller font size for mobile */
        margin-left: 3px; /* Smaller margin for mobile */
    }

    .booth-number {
        font-size: 10px; /* Smaller font size for mobile */
        padding: 3px 6px; /* Smaller padding for mobile */
        margin-top: 0; /* Remove top margin */
        border-radius: 2px; /* 2px border radius for mobile */
    }

    .countdown-module {
        min-width: 35px; /* Much smaller width for mobile */
    }

    .countdown-label {
        font-size: 7px; /* Much smaller font size for mobile visibility */
        margin-bottom: 2px; /* Smaller margin for mobile */
        font-weight: 700; /* Bold for mobile */
    }

    .countdown-number {
        font-size: 11px; /* Much smaller font size for mobile */
        padding: 3px 6px; /* Smaller padding for mobile */
        min-width: 28px; /* Much smaller min width for mobile */
        border-radius: 2px; /* 2px border radius for mobile */
    }
}

@media (max-width: 480px) {
    .countdown-container {
        padding: 30px 15px 6px 15px; /* Reduced padding for small mobile */
        min-height: 35px; /* Reduced height for single line */
        flex-direction: row; /* Keep everything in one line */
        gap: 6px; /* Space between elements */
        align-items: center; /* Center align items */
        justify-content: space-between; /* Distribute space evenly */
    }

    .countdown-timer {
        gap: 4px; /* Much smaller gap for small mobile */
        padding: 0; /* Remove padding */
        justify-content: flex-start; /* Keep left aligned */
        display: flex;
        align-items: center;
        flex: 1; /* Take available space */
    }

    .booth-info {
        justify-content: flex-end; /* Right align */
        display: flex;
        align-items: center;
        flex: 0 0 auto; /* Don't grow or shrink */
    }

    .countdown-text {
        justify-content: center; /* Center the logos */
        display: flex;
        align-items: center;
        flex: 1; /* Take available space to center properly */
        margin: 0 8px; /* Small margin on sides */
    }

    .finerr-logo {
        max-height: 15px; /* Much smaller height for small mobile */
        margin-right: 3px; /* Smaller margin for small mobile */
    }

    .xplore-logo {
        max-height: 15px; /* Much smaller height for small mobile */
    }

    .text-separator {
        font-size: 8px; /* Much smaller font size for small mobile */
        margin: 0 2px; /* Smaller margin for small mobile */
    }

    .year-text {
        font-size: 8px; /* Much smaller font size for small mobile */
        margin-left: 2px; /* Smaller margin for small mobile */
    }

    .booth-number {
        font-size: 8px; /* Much smaller font size for small mobile */
        padding: 2px 4px; /* Much smaller padding for small mobile */
        border-radius: 2px; /* 2px border radius for small mobile */
    }

    .countdown-module {
        min-width: 30px; /* Much smaller width for small mobile */
    }

    .countdown-label {
        font-size: 6px; /* Much smaller font size for small mobile visibility */
        margin-bottom: 1px; /* Smaller margin for small mobile */
        font-weight: 700; /* Bold for small mobile */
    }

    .countdown-number {
        font-size: 9px; /* Much smaller font size for small mobile */
        padding: 2px 4px; /* Much smaller padding for small mobile */
        min-width: 24px; /* Much smaller min width for small mobile */
        border-radius: 2px; /* 2px border radius for small mobile */
    }
}

/* Extra small mobile devices (378px - 319px) */
@media (max-width: 378px) and (min-width: 319px) {
    .countdown-container {
        padding: 25px 10px 5px 10px; /* Further reduced padding for very small phones */
        min-height: 30px; /* Even smaller height for very small phones */
        flex-direction: row; /* Keep everything in one line */
        gap: 4px; /* Minimal space between elements */
        align-items: center; /* Center align items */
        justify-content: space-between; /* Distribute space evenly */
    }

    .countdown-timer {
        gap: 3px; /* Minimal gap for very small phones */
        padding: 0; /* Remove padding */
        justify-content: flex-start; /* Keep left aligned */
        display: flex;
        align-items: center;
        flex: 1; /* Take available space */
    }

    .booth-info {
        justify-content: flex-end; /* Right align */
        display: flex;
        align-items: center;
        flex: 0 0 auto; /* Don't grow or shrink */
    }

    .countdown-text {
        justify-content: center; /* Center the logos */
        display: flex;
        align-items: center;
        flex: 1; /* Take available space to center properly */
        margin: 0 5px; /* Minimal margin on sides */
    }

    .finerr-logo {
        max-height: 12px; /* Very small height for very small phones */
        margin-right: 2px; /* Minimal margin for very small phones */
    }

    .xplore-logo {
        max-height: 12px; /* Very small height for very small phones */
    }

    .text-separator {
        font-size: 7px; /* Very small font size for very small phones */
        margin: 0 1px; /* Minimal margin for very small phones */
    }

    .year-text {
        font-size: 7px; /* Very small font size for very small phones */
        margin-left: 1px; /* Minimal margin for very small phones */
    }

    .booth-number {
        font-size: 7px; /* Very small font size for very small phones */
        padding: 1px 3px; /* Minimal padding for very small phones */
        border-radius: 2px; /* 2px border radius for very small phones */
    }

    .countdown-module {
        min-width: 25px; /* Very small width for very small phones */
    }

    .countdown-label {
        font-size: 5px; /* Very small font size for very small phones */
        margin-bottom: 1px; /* Minimal margin for very small phones */
        font-weight: 700; /* Bold for very small phones */
    }

    .countdown-number {
        font-size: 8px; /* Very small font size for very small phones */
        padding: 1px 3px; /* Minimal padding for very small phones */
        min-width: 20px; /* Very small min width for very small phones */
        border-radius: 2px; /* 2px border radius for very small phones */
    }
}

/* Adjust for different navbar heights */


/* Body padding to account for navbar + countdown timer */
body {
    padding-top: 130px; /* Navbar (~80px) + countdown (~50px) = 130px */
}

@media (max-width: 768px) {
    body {
        padding-top: 140px; /* Adjusted for mobile with countdown */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 150px; /* Adjusted for small mobile with countdown */
    }
}


@media (min-width: 1024px) {
    body {
        padding-top: 110px;
    }
}

@media (min-width: 1200px) {
    body {
        padding-top: 115px;
    }
}

@media (min-width: 1400px) {
    body {
        padding-top: 120px;
    }
}
/* Responsive margin-top for login button from 1023px to 300px */
/* @media (min-width: 922px) and (max-width: 1023px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}


@media (min-width: 911px) and (max-width: 921px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 850px) and (max-width: 910px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 800px) and (max-width: 849px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 715px) and (max-width: 799px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 650px) and (max-width: 714px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 600px) and (max-width: 649px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 550px) and (max-width: 599px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 480px) and (max-width: 549px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 400px) and (max-width: 479px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 337px) and (max-width: 399px) {
    .nav-links.active .login-btn {
        margin-top: 10%;
    }
}

@media (min-width: 320px) and (max-width: 400px) {
    .navbar {
        height: 16%;
    }
}

@media (min-width: 300px) and (max-width: 336px) {
    .nav-links.active .login-btn {
        margin-top: 15%;
    }
} */
@media (min-width: 300px) and (max-width: 336px) {
    .nav-links.active .login-btn {
        margin-top: 15%;
    }
}

/* Phone responsive styles */
@media (min-width: 337px) and (max-width: 767px) {
    .nav-links.active .login-btn {
        margin-top: 15%;
    }
}

/* Laptop responsive styles */
@media (min-width: 767px) and (max-width: 999px) {
    .nav-links.active .login-btn {
        margin-top: 15%;
    }
}
@media (min-width: 999px) and (max-width: 1100px) {
    .nav-links.active .login-btn {
        margin-top: 15%;
    }
}

/* Desktop responsive styles */
/* @media (min-width: 1600px) {
    .nav-links.active .login-btn {
        margin-top: 15%;
    }
} */

@media (min-width: 1024px) and (max-width: 1100px) {

     .nav-links.active .nav-right {
        display: block;
        width: 100%;
        padding: 15px 20px;
        margin-top: 10px;
    }

    .nav-links.active .nav-right {
        order: 999;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 112%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
        justify-content: start;
    }

        .nav-links.active .login-btn {
            /* margin-top: 35vh; */
            margin-left: 52vh;
        }

        .nav-links.active .demo-btn {
/*            margin-top: 33vh;*/
            margin-left: 52vh;
        } 

    /* Enable dropdown hover effects for 1024px-1100px */
    .nav-item-wrapper:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: block !important;
    }

    .nav-item-wrapper:hover .nav-item.has-dropdown {
        background: linear-gradient(to right, #1C48B2, #CC338D) !important;
        color: var(--white) !important;
    }

        .nav-item-wrapper:hover .nav-item.has-dropdown::after {
            transform: rotate(180deg) !important;
            filter: brightness(0) invert(1) !important;
        } 

    /* Dropdown styles for hamburger menu (1024px-1100px) */
    .nav-links.active .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
/*        background: #f8f9fa !important;*/
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links.active .nav-item-wrapper.active .dropdown-menu {
        display: block !important;
    }

    .nav-links.active .dropdown-menu .menu-items {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 15px 50px !important;
        align-items: center !important;
        justify-content: start !important;
        text-align: center !important;
    }

        .nav-links.active .dropdown-menu .menu-items a {
            padding: 10px 12px !important;
            text-align: center !important;
            justify-content: center !important;
            width: auto !important;
            min-width: 120px !important;
            max-width: 150px !important;
            margin-left: 0 !important;
            font-size: 13px !important;
            flex-direction: column !important;
            border-radius: 8px !important;
       
        } 

     .nav-links.active .dropdown-menu .menu-items a img {
                width: 24px !important;
                height: 24px !important;
                margin-bottom: 5px !important;
            }

        .nav-links.active .dropdown-menu .menu-items span {
            text-align: center !important;
            font-size: 12px !important;
            line-height: 1.2 !important;
        } 

    /* Arrow rotation for active dropdown in hamburger menu */
    .nav-links.active .nav-item-wrapper.active .nav-item.has-dropdown::after {
        transform: rotate(180deg) !important;
        filter: none !important;
        } 

    /* Disable hover effects when hamburger menu is active */
    .nav-links.active .nav-item-wrapper:hover .dropdown-menu {
        display: none !important;
    } 

     .nav-links.active .nav-item-wrapper:hover .nav-item.has-dropdown {
        background: none !important;
        color: #202328 !important;
        box-shadow: none;
        ;
    }

        .nav-links.active .nav-item-wrapper:hover .nav-item.has-dropdown::after {
            transform: none !important;
            filter: none !important;
        } 
}