/* ===== Navbar Styles ===== */
.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 6%;
    background: #4361ee;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 45px;
    font-size: 0.9rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.top-navbar.show {
    transform: translateY(0);
}

.top-navbar a {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    align-items: center;
}

.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6%;
    background-color: white;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    transition: top 0.3s ease;
    z-index: 999;
    height: 65px;
}

.main-navbar.move-down {
    top: 45px;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #4361ee;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #4361ee;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #333;
    transition: all 0.3s;
}

.dropdown-btn:hover {
    color: #4361ee;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    font-size: 0.9rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background: #4361ee;
    color: white;
    transform: translateX(4px);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.get-connected-btn {
    padding: 8px 20px;
    color: #16213e;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.get-connected-btn:hover {
    color: #4361ee;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    z-index: 1001;
}


/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    margin: 80px 20px 20px;
    padding: 10px 20px;
    background: #4361ee;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.back-button i {
    margin-right: 8px;
}

.back-button:hover {
    transform: translateX(-2px);
    box-shadow: 0 4px 12px rgba(48, 96, 255, 0.2);
}