/* --- StarHost Premium Black & Gold Header --- */
:root {
    --h-gold: #ff9900;
    --h-black: #0a0a0a;
    --h-dark: #141414;
    --h-text: #ffffff;
    --h-gray: #b0b0b0;
}

.sh-main-header {
    background: var(--h-black);
    padding: 15px 0;
    border-bottom: 2px solid var(--h-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sh-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.sh-logo a {
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    color: var(--h-text);
    letter-spacing: -1px;
}

.sh-logo a span {
    color: var(--h-gold);
}

/* Navigation Styles */
.sh-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.sh-nav-list li a {
    text-decoration: none;
    color: var(--h-gray);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s ease;
}

/* Underline Draw Effect on Hover */
.sh-nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--h-gold);
    transition: width 0.3s ease-in-out;
}

.sh-nav-list li a:hover {
    color: var(--h-gold);
}

.sh-nav-list li a:hover::after {
    width: 100%;
}

/* Special Styling for WhatsApp in Nav */
.sh-nav-wa {
    color: #25d366 !important; /* واٹس ایپ کا اپنا رنگ */
}

.sh-nav-wa::after {
    background: #25d366 !important;
}

/* Login Button Styles */
.sh-btn-client {
    background: var(--h-gold);
    color: #000 !important;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    border: 1px solid var(--h-gold);
}

.sh-btn-client:hover {
    background: transparent;
    color: var(--h-gold) !important;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
}

/* Responsive Mobile Header */
@media (max-width: 992px) {
    .sh-nav {
        display: none; /* موبائل کے لیے آپ کو ہیمبرگر مینیو کی ضرورت ہوگی */
    }
}