/* Navigation Bar */
.hero-robotics-navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.hero-robotics-navbar-content-wrapper {
    width: max-content;
    padding: 20px 30px;
    border-radius: 40px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Logo and Links Combined */
.hero-robotics-navbar-left-combined-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Navigation Links */
.hero-robotics-navbar-links-container {
    display: flex;
    align-items: center;
    gap: 35px;
}

.hero-robotics-navbar-link-item {
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-robotics-navbar-link-item:hover {
    color: #ffffff;
}

.hero-robotics-navbar-link-active {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile Hamburger */
.hero-robotics-navbar-mobile-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    margin-left: auto;
}

.hero-robotics-hamburger-line {
    width: 28px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-robotics-navbar-mobile-hamburger.active .hero-robotics-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px) translateX(3px);
}

.hero-robotics-navbar-mobile-hamburger.active .hero-robotics-hamburger-line:nth-child(2) {
    opacity: 0;
}

.hero-robotics-navbar-mobile-hamburger.active .hero-robotics-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px) translateX(3px);
}

/* Mobile Menu */
.hero-robotics-navbar-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(138, 43, 226, 0.3);
    padding: 100px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.hero-robotics-navbar-mobile-menu.active {
    right: 0;
}

.hero-robotics-navbar-mobile-link {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-robotics-navbar-mobile-link:hover {
    color: #ffffff;
    padding-left: 10px;
    border-bottom-color: rgba(138, 43, 226, 0.6);
}

/* Responsive */

@media (max-width: 992px) {

    .hero-robotics-navbar-links-container {
        gap: 25px;
    }

    .hero-robotics-navbar-link-item {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-robotics-navbar-content-wrapper {
        padding: 20px 30px;
    }

    .hero-robotics-navbar-logo-image {
        height: 35px;
    }

    .hero-robotics-navbar-left-combined-section {
        gap: 20px;
        padding: 10px 20px;
        display: none;
    }

    .hero-robotics-navbar-links-container {
        display: none;
    }

    .hero-robotics-navbar-mobile-hamburger {
        display: flex;
    }
}