/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 80px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
   justify-content: space-between;
    align-items: center;}
.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-elements {
    flex: 1;
    gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 4rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.dropbtn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: white;
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

.dropdown-content i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.dropdown-content div {
    display: flex;
    flex-direction: column;
}

.dropdown-content small {
    color: #666;
    font-size: 0.8rem;
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .nav-elements {
        position: fixed;
        top: 80px;
        left: -150%;
        width: 100%;
        height: calc(96.54vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav-elements.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-actions {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 2rem;
        width: 100%;
    }

    .primary-btn {
        width: 94.5%;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .contact-info span {
        display: none;
    }
} 