/* Language Toggle Styles */
.language-toggle {
    display: flex;
    gap: 5px;
    align-items: center;
}

.lang-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-btn:hover {
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.lang-btn.active {
    background: var(--base-color, #ff6600);
    color: white;
    border-color: var(--base-color, #ff6600);
}

.lang-btn.active:hover {
    background: var(--base-color, #ff6600);
    color: white;
}

/* RTL Support for Hindi (if needed) */
[lang="hi"] {
    direction: ltr; /* Keep LTR for now, can be changed to RTL if needed */
}

/* Font support for Hindi text */
[lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Arial Unicode MS', sans-serif;
}

/* Banner overlay for better text visibility */
.banner-overlay {
    position: relative;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));  */
    z-index: 1;
}

.banner-overlay .container {
    position: relative;
    z-index: 2;
}

/* Enhanced text shadow for better readability */
/* .banner-text-enhanced {
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(0, 0, 0, 0.7),
        0 0 16px rgba(0, 0, 0, 0.5);
    font-weight: 700 !important;
    color: #ffffff !important;
} */

/* Add subtle animation to banner text */
/* @keyframes textGlow {
    0%, 100% { 
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.9),
            0 0 8px rgba(0, 0, 0, 0.7),
            0 0 16px rgba(0, 0, 0, 0.5);
    }
    50% { 
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.9),
            0 0 8px rgba(0, 0, 0, 0.7),
            0 0 16px rgba(0, 0, 0, 0.5),
            0 0 24px rgba(255, 255, 255, 0.1);
    }
}

.banner-text-enhanced {
    animation: textGlow 3s ease-in-out infinite;
} */

/* Responsive language toggle */
@media (max-width: 768px) {
    .language-toggle {
        margin-top: 10px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
}
