 /* GENERAL ROOT COLORS - Adapted from first navbar */
        :root {
            --background-color: #f0f0f0;
            --primary-color: #2c2c2c;
            --secondary-color: #4a4a4a;
            --accent-color: #6c6c6c;
            --text-color: #1a1a1a;
            --hover-color: #383838;
            --nav-bg-color: #2c2c2c;
            --nav-hover-bg-color: #555;
            --nav-text-color: #f0f0f0;
            --nav-accent-color: #777;
            --submenu-bg-color: #444;
            --submenu-hover-bg-color: #555;
            --mobile-menu-color: #f0f0f0;
        }

        /* NAVBAR STYLES - Adapted from first navbar design */
        .header {
            background-color: var(--nav-bg-color);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .bobnav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            position: relative;
        }

        .bobnav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .bobnav-logo img {
            height: 40px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .bobnav-logo:hover img {
            transform: scale(1.1) rotate(5deg);
        }

        .bobnav-nav-menu {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: flex-end;
        }

        .bobnav-nav-list {
            display: flex;
            list-style-type: none;
            margin: 0;
            align-items: center;
            gap: 0;
        }

        .bobnav-nav-list > li {
            position: relative;
            perspective: 1000px;
        }

        .bobnav-nav-link {
            display: block;
            padding: 20px 15px;
            color: var(--nav-text-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bobnav-nav-link::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--nav-accent-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .bobnav-nav-link:hover::before {
            transform: scaleX(1);
        }

        .bobnav-nav-link:hover {
            color: var(--nav-text-color);
            background-color: var(--nav-hover-bg-color);
        }

        /* Dropdown Styles */
        .bobnav-dropdown {
            position: relative;
        }

        .bobnav-dropdown-toggle i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            margin-left: 5px;
        }

        .bobnav-dropdown:hover .bobnav-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .bobnav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--submenu-bg-color);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: rotateX(-90deg);
            transform-origin: top;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin: 0;
            padding: 0;
            z-index: 50000;
            list-style: none;
        }

        .bobnav-dropdown:hover .bobnav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: rotateX(0);
        }

        .bobnav-dropdown-menu li {
            list-style-type: none;
        }

        .bobnav-dropdown-menu a {
            display: block;
            padding: 12px 15px;
            color: var(--nav-text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .bobnav-dropdown-menu a:hover {
            background-color: var(--submenu-hover-bg-color);
            color: var(--nav-text-color);
            padding-left: 25px;
        }

        /* Search Icon - Desktop & Mobile */
        .search-icon {
            background: none;
            border: none;
            color: var(--nav-text-color);
            cursor: pointer;
            padding: 20px 15px;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .search-icon::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--nav-accent-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .search-icon:hover::before {
            transform: scaleX(1);
        }

        .search-icon:hover {
            color: var(--nav-text-color);
            background-color: var(--nav-hover-bg-color);
        }

        /* Mobile Toggle */
        .bobnav-nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .bobnav-nav-toggle span {
            height: 3px;
            width: 30px;
            background-color: var(--mobile-menu-color);
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .bobnav-nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .bobnav-nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .bobnav-nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-controls {
            display: none;
            align-items: center;
        }

        /* Search Popup - Enhanced styling for both desktop and mobile */
        .search-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .search-popup.active {
            opacity: 1;
            visibility: visible;
        }

        .search-content {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border-radius: 20px;
            padding: 30px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 8px 32px 0 rgb(231 231 231 / 25%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            transform: scale(0.9);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .search-popup.active .search-content {
            transform: scale(1);
            opacity: 1;
        }

        .search-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .search-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
        }

        .search-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            padding: 4px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .search-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        .search-form {
            display: flex;
            gap: 15px;
        }

        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }

        .search-btn {
            padding: 15px 30px;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }

        .search-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Animation keyframes */
        @keyframes navFadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bobnav-nav-list > li {
            animation: navFadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .bobnav-nav-list > li:nth-child(1) { animation-delay: 0.1s; }
        .bobnav-nav-list > li:nth-child(2) { animation-delay: 0.2s; }
        .bobnav-nav-list > li:nth-child(3) { animation-delay: 0.3s; }
        .bobnav-nav-list > li:nth-child(4) { animation-delay: 0.4s; }
        .bobnav-nav-list > li:nth-child(5) { animation-delay: 0.5s; }

        .bobnav-dropdown-menu li {
            animation: navFadeInUp 0.3s ease forwards;
            opacity: 0;
        }

        .bobnav-dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
        .bobnav-dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
        .bobnav-dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
        .bobnav-dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
        .bobnav-dropdown-menu li:nth-child(5) { animation-delay: 0.5s; }
        .bobnav-dropdown-menu li:nth-child(6) { animation-delay: 0.6s; }

        /* Mobile Responsive */
        @media screen and (max-width: 768px) {
            .bobnav-logo img {
                height: 25px;
                width: auto;
                transition: transform 0.3s ease;
            }
        
            .mobile-controls {
                display: flex;
            }

            .bobnav-nav-toggle {
                display: flex;
            }

            /* Hide desktop search icon in mobile */
            .desktop-search {
                display: none !important;
            }

            .bobnav-nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--nav-bg-color);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            .bobnav-nav-menu.active {
                max-height: 500px;
            }

            .bobnav-nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .bobnav-nav-list li {
                width: 100%;
            }

            .bobnav-nav-link {
                padding: 15px;
                border-radius: 0;
                justify-content: space-between;
            }

            .search-icon {
                padding: 15px;
            }

            .bobnav-dropdown-menu {
                position: static;
                background-color: var(--submenu-bg-color);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .bobnav-dropdown.active .bobnav-dropdown-menu {
                max-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .bobnav-logo img {
                height: 25px;
                width: auto;
                transition: transform 0.3s ease;
            }
            
            .search-form {
                flex-direction: row;
                align-items: center;
            }

            .search-input {
                flex-grow: 1;
                font-size: 14px;
                padding: 10px 15px;
            }

            .search-btn {
                font-size: 14px;
                padding: 10px 15px;
                white-space: nowrap;
            }

            .search-content {
                padding: 20px;
            }
        }
        
    /* ABSOLUTE MINIMAL SCROLLBAR */
html {
    scrollbar-gutter: stable;
}

body::-webkit-scrollbar,
div::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 3px !important;
    height: 3px !important;
    background-color: transparent !important;
    visibility: hidden !important;
}

body::-webkit-scrollbar-track,
div::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    visibility: hidden !important;
}

body::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background: #000 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

body::-webkit-scrollbar-button,
div::-webkit-scrollbar-button,
*::-webkit-scrollbar-button {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

body::-webkit-scrollbar-corner,
div::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
    background: transparent !important;
    visibility: hidden !important;
}

/* Firefox */
* {
    scrollbar-width: thin !important;
    scrollbar-color: #000 transparent !important;
}