/* Underline for active nav tab */
.active-nav {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    color: #203B14 !important;
    font-weight: 600;
}
/* Navbar Component Styles */

/* Main navbar styles */
.navbar {
    /* background: transparent; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* width: 300px; */
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 1000;
    /* box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); */
}

.mobile-menu.active {
    right: 0;
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu item hover effects */
.menu-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(-5px);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: #667eea;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-item:hover::before {
    transform: scaleY(1);
}

/* Icon animations */
.icon-rotate {
    transition: transform 0.3s ease;
}

.icon-rotate:hover {
    transform: rotate(90deg);
}

/* Desktop navbar items */
.desktop-nav-item {
    position: relative;
    transition: all 0.3s ease;
}

.desktop-nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #203B14;
    transition: width 0.3s ease;
}

.desktop-nav-item:hover::after {
    width: 100%;
}
.scrolled{
    background: white !important;
}

/* Navbar scroll effect */
/* .navbar.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
} */

/* Mobile responsiveness */
/* @media (max-width: 768px) {
    .mobile-menu {
        width: 280px;
    }
}
*/
@media (max-width: 480px) {
    .active-nav{
        text-decoration: none;
    }
} 