/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher .lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.language-switcher .lang-btn:hover {
    background: rgba(255, 193, 7, 0.9);
    border-color: #ffc107;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.language-switcher .lang-btn.active {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 700;
}

.language-switcher .lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .language-switcher .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* RTL Support */
[dir="rtl"] .language-switcher {
    right: auto;
    left: 20px;
}

@media (max-width: 768px) {
    [dir="rtl"] .language-switcher {
        left: 10px;
        right: auto;
    }
}

/* Keep hero section centered regardless of language */
#home,
.top-header,
.rev_slider_wrapper,
.rev_slider {
    direction: ltr !important;
}

/* Keep Instagram icon on left for both languages */
.slider-icons {
    direction: ltr !important;
}