.top-header {
    background: #fff;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.th-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.th-logo-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ff4e2e;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.th-logo-badge img {
    width: 115px;
    height: 115px;
    object-fit: cover;
}

.th-center h1 {
    font-size: 30px;
    font-weight: 800;
    color: #ff691b;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.th-center p {
    font-size: 16px;
    color: #ff691b;
    font-weight: 600;
    text-align: center;
}

.th-right {
    text-align: right;
}

.th-contact {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.th-contact span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 3px;
}

.th-contact .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.ic-phone {
    background: #28a745;
    color: #fff;
}

.ic-mail {
    background: #dc3545;
    color: #fff;
}

.social-row {
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    margin-top: 6px;
}

.social-row a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-row a:hover {
    transform: scale(1.12);
}

.s-fb {
    background: #3b5998;
}

.s-tw {
    background: #000;
}

.s-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.s-yt {
    background: #ff0000;
}

/* Hamburger — desktop pe hidden */
.mob-ham {
    display: none;
}

/* ══════════════════════════════════════
   ADDRESS BAR — DESKTOP
══════════════════════════════════════ */
.addr-bar {
    background: #ff691b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 9px 30px;
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 8px;
}

.addr-bar .item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.addr-bar .item .ic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.join-btn {
    background: #fff;
    color: #ff691b;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.join-btn:hover {
    background: #ffe0e0;
}

.lang-dropdown {
    position: relative;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 115%;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: 130px;
    overflow: hidden;
}

.lang-menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.lang-menu a:hover {
    background: #fff4ef;
    color: #ff691b;
}

.lang-menu.open {
    display: block;
}

/* ══════════════════════════════════════
   MAIN NAV — DESKTOP
══════════════════════════════════════ */
nav.main-nav {
    background: #1a1a4e;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    justify-content: space-evenly;
    width: 100%;
}

nav.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.main-nav ul li {
    position: relative;
}

nav.main-nav ul li>a {
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    padding: 13px 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
}

nav.main-nav ul li>a:hover,
nav.main-nav ul li>a.active {
    color: #fff;
    border-bottom-color: #ff691b;
}

/* Desktop dropdown */
nav.main-nav ul li>ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    min-width: 200px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    list-style: none;
    z-index: 999;
}

nav.main-nav ul li:hover>ul {
    display: flex;
}

nav.main-nav ul li>ul li>a {
    padding: 10px 16px;
    border-bottom: 1px solid #333;
    font-size: 13px;
    color: #ccc;
    text-transform: none;
    border-bottom-width: 1px;
}

nav.main-nav ul li>ul li>a:hover {
    color: #ff691b;
    background: rgba(255, 105, 27, 0.08);
}

.nav-toggle {
    display: none;
}

/* ══════════════════════════════════════
   OVERLAY
══════════════════════════════════════ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 8888;
    backdrop-filter: blur(2px);
}

.nav-overlay.show {
    display: block;
}

/* nav-close-bar desktop pe hidden */
.nav-close-bar {
    display: none;
}

/* ══════════════════════════════════════
   MOBILE ≤ 768px
══════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── TOP HEADER: Logo LEFT | Hamburger RIGHT (ek row mein) ── */
    .top-header {
        padding: 10px 14px !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .th-center,
    .th-right {
        display: none !important;
    }

    .th-logo {
        width: auto !important;
    }

    .th-logo-badge {
        width: 50px !important;
        height: 50px !important;
    }

    .th-logo-badge img {
        width: 58px !important;
        height: 58px !important;
    }

    /* Hamburger button */
    .mob-ham {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #ff691b;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 1.2rem;
        cursor: pointer;
        flex-shrink: 0;
    }

    /* ── ADDRESS BAR: 3 buttons ROW wise ── */
    .addr-bar {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        padding: 8px 10px !important;
        gap: 6px !important;
    }

    .addr-bar .item {
        display: none !important;
    }

    .join-btn {
        flex: 1 !important;
        max-width: 110px !important;
        justify-content: center !important;
        padding: 7px 4px !important;
        border-radius: 8px !important;
        font-size: 11px !important;
        gap: 3px !important;
    }

    .lang-dropdown {
        flex: 1 !important;
        max-width: 110px !important;
    }

    .lang-dropdown .join-btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    .lang-menu {
        top: 110% !important;
        bottom: auto !important;
        left: 0 !important;
        right: auto !important;
        min-width: 120px !important;
    }

    /* ── MAIN NAV: slide from RIGHT ── */
    nav.main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -290px !important;
        width: 280px !important;
        height: 100vh !important;
        overflow-y: auto !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        z-index: 9999 !important;
        transition: right 0.3s ease !important;
        box-shadow: -6px 0 24px rgba(0, 0, 0, 0.5) !important;
    }

    nav.main-nav.nav-open {
        right: 0 !important;
    }

    /* Orange close bar inside nav */
    .nav-close-bar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #ff691b;
        padding: 13px 16px;
        flex-shrink: 0;
    }

    .nav-close-bar span {
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .nav-close-bar button {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        line-height: 1;
    }

    /* Nav list */
    nav.main-nav ul {
        flex-direction: column !important;
        width: 100% !important;
        display: flex !important;
    }

    nav.main-nav ul li {
        width: 100%;
    }

    nav.main-nav ul li>a {
        padding: 13px 20px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #2a2a2a !important;
        border-bottom-width: 1px !important;
        color: #ddd !important;
        text-transform: uppercase;
    }

    nav.main-nav ul li>a:hover,
    nav.main-nav ul li>a.active {
        color: #ff691b !important;
        background: rgba(255, 105, 27, 0.07) !important;
        border-bottom-color: #2a2a2a !important;
    }

    /* Sub-menu accordion */
    nav.main-nav ul li>ul {
        position: static !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: #252525 !important;
        padding-left: 10px !important;
        width: 100% !important;
        display: none !important;
        flex-direction: column !important;
    }

    nav.main-nav ul li.sub-open>ul {
        display: flex !important;
    }

    nav.main-nav ul li>ul li>a {
        font-size: 13px !important;
        color: #aaa !important;
        padding: 10px 20px !important;
        border-bottom: 1px solid #2e2e2e !important;
        text-transform: none !important;
    }

    .nav-toggle {
        display: none !important;
    }
}