/* header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
} */

.header-top-bar {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 8px 0;
    border-bottom: 2px solid #f28c1b;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    z-index: 10001; /* Above main header */
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: flex;
}

.top-bar-socials a:hover {
    color: #f28c1b;
    transform: scale(1.1);
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar-contact {
    display: flex;
    align-items: center;
}

.top-contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.top-contact-link:hover {
    color: #f28c1b;
}

.top-icon {
    font-size: 1.1rem !important;
    color: #f28c1b;
}

.top-txt {
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    .top-bar-flex {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header-top-bar {
        padding: 5px 0;
    }
    .top-txt {
        font-size: 0.75rem;
    }
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-right {
    justify-content: flex-end;
    gap: 10px;
}

.top-bar-center {
    display: flex;
    justify-content: center;
}

.social-links-top {
    display: flex;
    gap: 15px;
}

.social-links-top a {
    color: #cbd5e0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links-top a:hover {
    color: #f28c1b;
    transform: translateY(-1px);
}

.top-bar-right {
    font-weight: 500;
}

.info-icon {
    font-size: 1rem !important;
    color: #f28c1b;
}

/* Google Translate Stylings */
#google_translate_element {
    display: none !important;
}
/* Language Toggle Switch (Smaller Version) */
.lang-switch-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 50px;
    height: 26px;
    margin: 0;
    cursor: pointer;
}

.lang-switch-inner input {
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.slider-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0d1b2a;
    transition: 0.4s;
    border-radius: 34px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.slider-inner:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.lang-switch-inner input:checked + .slider-inner {
    background-color: #f28c1b;
}

.lang-switch-inner input:checked + .slider-inner:before {
    transform: translateX(24px);
}

.lang-txt {
    position: absolute;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    letter-spacing: 0.05em;
}

.off-txt {
    right: 6px;
}

.on-txt {
    left: 6px;
    opacity: 0;
}

.lang-switch-inner input:checked ~ .off-txt {
    opacity: 0;
}

.lang-switch-inner input:checked ~ .on-txt {
    opacity: 1;
}
/* Hide Google Translate Banner completely */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame,
#goog-gt-tt, 
.goog-te-balloon-frame,
div[id^="goog-gt-"],
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0 !important; 
    position: static !important;
}

/* TICKER CAROUSEL (Right to Left) */
.top-bar-ticker-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 100px; /* Space between message sets */
    animation: marquee-carousel 30s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    flex-shrink: 0;
}

.ticker-icon {
    font-size: 1rem !important;
    color: #f28c1b;
}

@keyframes marquee-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.ticker-item a {
    color: inherit;
    text-decoration: none;
}

.top-info-text {
    opacity: 0.9;
}

/* MAIN HEADER */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* LOGO */
.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

/* NAV */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #0d1b2a;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f28c1b;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f28c1b;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* CTA BUTTON + LANGUAGE SWITCH */
.header-action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f28c1b;
    color: #ffffff;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(242, 140, 27, 0.3);
}

.nav-cta-btn:hover {
    background-color: #0d1b2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.2);
}

.nav-cta-btn span {
    font-size: 1.1rem;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: #0d1b2a;
    font-size: 32px;
}

/* MOBILE VIEW */
@media(max-width: 1150px) {
    .nav-wrapper {
        padding: 0 1.5rem; /* Give hamburger and logo more breathing room */
    }
    /* .nav-links mobile transition starts here */
    .menu-toggle {
        display: block;
    }
    
    .header-action {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 85px; 
        left: 5%;
        width: 90%;
        height: auto;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 1.25rem 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        z-index: 3000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.4s ease;
        border-radius: 1rem;
        display: flex; /* Kept display flex, removed display none from line 197 */
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
}

/* SMALL DEVICES */
@media(max-width: 900px) {
    .top-bar-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .top-bar-left, .top-bar-center, .top-bar-right {
        justify-content: center;
        width: 100%;
    }

    .top-bar-center {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 0;
    }
}

@media(max-width: 600px) {

    .logo img {
        height: 50px;
    }
}

/* LARGE SCREENS (Desktops & TVs) */
@media(min-width: 1600px) {
    .nav-links {
        gap: 3.5rem;
    }
    .main-header {
        padding: 1.5rem 0;
    }
    .logo img {
        height: 70px;
    }
    .nav-cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media(min-width: 2000px) {
    .nav-links {
        gap: 5rem;
    }
    .main-header {
        padding: 2rem 0;
    }
    .logo img {
        height: 80px;
    }
    .nav-cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
}