    /* ----------------------------------------------------------
    :: Template Name: Roeya TV - News Magazine HTML5 Template
    :: Author: Colorlib
    :: Author URL: https://colorlib.com
    :: Description: Roeya TV is a smart & creative news & magazine template. It's suitable for all news & magazine website.
    :: Version: 1.0.0
    :: Created: 17 January 2018
    :: Last Updated: 17 January 2018
    ---------------------------------------------------------- */

    /* ============ PLACE YOUR CUSTOM CSS HERE ============ */

/* Language Switcher in Navbar */
.nav-lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}
.nav-lang-switcher button {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
.nav-lang-switcher button:hover {
    background: #f0f0f0;
}
.nav-lang-switcher button.active {
    background: #e6193c;
    color: white;
    border-color: #e6193c;
}

/* RTL Mode Overrides */
body.rtl-mode {
    text-align: right;
    direction: rtl;
}
body.rtl-mode .navbar-nav {
    padding-right: 0;
    margin-left: auto;
    margin-right: 0 !important;
}
body.rtl-mode .nav-lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}
body.rtl-mode .header-search-form {
    margin-right: 0 !important;
    margin-left: auto !important;
}
body.rtl-mode .mr-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}
body.rtl-mode .footer-widget-menu {
    padding-right: 0;
}

/* Fix for JS plugins (Owl Carousel, Marquee) breaking in RTL mode */
.owl-carousel, .simple-marquee-container {
    direction: ltr !important;
}
body.rtl-mode .owl-carousel .single-blog-post-content {
    direction: rtl;
    text-align: right;
}
/* ==============================================================
   ANIMATED LOOPING LOGO (HEADER)
   ============================================================== */
.animated-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    filter: none;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}
.animated-logo-container:hover {
    filter: none;
    opacity: 0.88;
}

@keyframes centreLoop {
    0%, 10% { transform: scale(0); opacity: 0; }
    15%     { transform: scale(1.15); opacity: 1; }
    20%, 85% { transform: scale(1); opacity: 1; }
    92%, 100% { transform: scale(0); opacity: 0; }
}

@keyframes slideLeftLoop {
    0%, 25% { transform: translateX(-80px); opacity: 0; }
    35%, 85% { transform: translateX(0); opacity: 1; }
    92%, 100% { transform: translateX(-80px); opacity: 0; }
}

@keyframes slideRightLoop {
    0%, 25% { transform: translateX(80px); opacity: 0; }
    35%, 85% { transform: translateX(0); opacity: 1; }
    92%, 100% { transform: translateX(80px); opacity: 0; }
}

.anim-logo-centre {
    height: 70px;
    width: auto;
    animation: centreLoop 6.5s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-logo-left {
    height: 44px;
    width: auto;
    animation: slideLeftLoop 6.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-logo-right {
    height: 44px;
    width: auto;
    animation: slideRightLoop 6.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
