/* Modern Navigation Styles */

/* Desktop - Top Navigation Bar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: #e8f5e8 !important;
    z-index: 1000;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    box-shadow: 
        inset 8px 8px 16px rgba(115, 188, 123, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.7),
        4px 4px 10px rgba(115, 188, 123, 0.15) !important;
    border: none;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation Links - Bottom Bar Style */
.nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.2rem;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-link i {
    font-size: 1rem;
    opacity: 0.8;
    color: #000000;
}

.nav-link:hover {
    background: transparent;
    color: #73bc7b;
    transform: translateY(-1px);
    box-shadow: none;
}

.nav-link span {
    display: inline-block;
}

/* CTA Box */
.cta-box {
    display: flex;
    align-items: center;
}

.hire-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: #73bc7b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: inset 0 2px 4px rgba(115, 188, 123, 0.3);
}

.hire-btn i {
    font-size: 1rem;
}

.hire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Hamburger Menu (for mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero adjustments for new navbar */
.hero {
    margin-top: 120px !important;
}

/* Tablet - Reduce text */
@media (max-width: 1024px) {
    .nav-link span {
        display: none;
    }
    
    .nav-link {
        padding: 0.8rem;
    }
    
    .nav-link i {
        font-size: 1.2rem;
    }
}

/* Mobile - Bottom Navigation Bar */
@media (max-width: 768px) {
    /* Bottom Navigation Bar - Mobile App Style */
    .navbar {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        box-shadow: 
            0 -2px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border: none;
    }
    
    .nav-container {
        padding: 0;
        max-width: 100%;
    }
    
    .nav-links {
        display: flex !important;
        position: relative;
        background: transparent;
        padding: 0;
        box-shadow: none;
        gap: 0;
        width: 100%;
        justify-content: space-around;
    }
    
    .nav-link {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.2rem;
        flex: 1;
        color: #666;
        background: transparent;
        border-radius: 0;
    }
    
    .nav-link i {
        font-size: 1.3rem;
        color: #666;
    }
    
    .nav-link span {
        display: block !important;
        font-size: 0.7rem;
        margin-top: 2px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        color: #73bc7b;
    }
    
    .nav-link:hover i,
    .nav-link.active i {
        color: #73bc7b;
    }
    
    /* Hide hamburger menu - not needed for bottom nav */
    .hamburger {
        display: none !important;
    }
    
    /* Adjust hero and content for bottom nav */
    .hero {
        margin-top: 20px !important;
        margin-bottom: 80px;
    }
    
    section:last-of-type {
        padding-bottom: 100px !important;
    }
}

/* Remove old nav styles conflicts */
.nav-menu {
    display: none !important;
}

/* Animation for status indicator */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Smooth scroll adjustment */
html {
    scroll-padding-top: 120px;
}