@font-face {
  font-family: 'Outfit';
  src: url('/assets/Outfit-SemiBold-CBS6SVyu.woff') format('woff');
  font-weight: 600; /* SemiBold weight for Outfit */
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('/assets/SpaceMono-Regular-DSixkDVr.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('/assets/SpaceMono-Bold-Dzvo6-IE.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

/* NEW — ticker sentence styling */
.logo-ticker {
  overflow: hidden;
  background-color: #0066cc; /* keep existing blue */
  white-space: nowrap;
}
.logo-ticker-track {
  display: inline-block;
  animation: tickerScroll 40s linear infinite; /* same timing as original logo bar */
}
.ticker-item {
  font-family: 'Roboto', sans-serif; /* New modern font */
  font-size: 2.2rem; /* Increased font size */
  color: #ffffff;
  white-space: nowrap;
  display: inline-block;
  padding: 0 1rem; /* Adjusted padding */
  font-weight: bold; /* Bold text */
  font-style: italic; /* Italic text */
  margin-right: 1rem; /* Reverted margin */
  position: relative; /* Needed for pseudo-element positioning */
}

.ticker-item::after {
  content: '•'; /* Bullet point character */
  color: #ffffff; /* Color of the bullet point */
  margin: 0 0.5rem 0 2rem; /* Adjusted margins: top, right, bottom, left */
}
@keyframes tickerScroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
/* Styles for the new Company section */
#company {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, #000f5e, #00a2ff); /* New vertical gradient */
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  .ticker-item {
    font-size: 1.5rem; /* Smaller font size for mobile */
  }
}

/* Language Switcher Styles */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 20px; /* Adjust as needed for spacing */
}

.lang-toggle {
  background-color: #0066cc; /* Keep as circular button for toggle */
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.lang-toggle:hover {
  background-color: #0056b3;
}

.lang-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent; /* REMOVED background */
  border-radius: 10px; /* Keep rounded corners for overall shape */
  box-shadow: none; /* REMOVED shadow */
  z-index: 1000;
  min-width: 60px;
  display: none;
  overflow: hidden;
}

.lang-dropdown.show {
  display: block;
}

  .lang-dropdown li {
    /* text-align: center; */ /* Remove this line */
    margin: 0 5px; /* Add horizontal spacing between items */
  }

.lang-dropdown li a {
  display: block;
  padding: 5px 10px; /* Adjusted padding to visually match header links */
  color: white; /* Match header link color */
  text-decoration: none;
  font-family: 'Outfit', sans-serif; /* Match header font */
  font-weight: 600; /* Match header font weight */
  font-size: 1rem; /* CHANGE: Match the font size of the circular toggle button */
  /* Match header transitions for smooth hover effects */
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.lang-dropdown li a:hover {
  background-color: transparent; /* Remains transparent */
  color: white; /* CHANGE: Text remains white on hover */
  transform: scale(1.2); /* CHANGE: More noticeable enlargement */
  text-shadow: 0 0 15px white; /* CHANGE: Stronger white glow effect */
}


/* Media query for mobile screens - adjust nav for language switcher */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  .language-switcher {
    display: flex; /* Make it a flex container on mobile */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    width: 100%; /* Ensure it takes full width */
    margin-top: 10px; /* Keep top margin */
    margin-left: 0; /* Reset inherited left margin */
  }
  .lang-dropdown {
    position: static; /* Allow dropdown to flow naturally on mobile */
    transform: none;
    width: auto;
  }
  .lang-dropdown.show { /* ADD this new rule */
    display: flex; /* Make it a flex container when shown */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    flex-wrap: wrap; /* Allow items to wrap */
    width: 100%; /* Ensure it takes full width */
  }
}
