/* ===============================
   GLOBAL RESET (OPTIONAL)
================================ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===============================
   TOPBAR
================================ */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    background: #0d6efd;
    color: #fff;
    flex-wrap: wrap;
}

/* ===============================
   LOGO
================================ */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* ===============================
   BECOME TECH BUTTON
================================ */
.become-btn {
    background: #ffc107;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.become-btn:hover {
    background: #e0a800;
}

/* ===============================
   RIGHT MENU
================================ */
.right-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===============================
   DROPDOWN
================================ */
.dropdown {
    position: relative;
}

.dropdown .btn {
    padding: 8px 12px;
    border: none;
    background: #fff;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    min-width: 160px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.dropdown-content a:hover {
    background: #f1f1f1;
}

/* Show dropdown */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* ===============================
   LANGUAGE SELECT
================================ */
select {
    padding: 6px 8px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .right-menu {
        width: 100%;
        justify-content: space-between;
    }

    .become-btn {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        right: auto;
        left: 0;
    }
}