/**
 * Paradigma International Limited - Language Switcher Styles
 */

/* .lang-switch {
  position: fixed;
  top: 20px;
  right: 100px;
  display: flex;
  gap: 5px;
  z-index: 9999;
}

.lang-switch button {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.lang-switch button:hover {
  background-color: rgba(0, 175, 239, 0.2);
  border-color: #00afef;
}

.lang-switch button.active {
  background-color: #00afef;
  border-color: #00afef;
  color: #fff;
} */

.lang-switch {
  display: flex;
  margin-right: 20px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid #00afef;
  color: white;
  padding: 5px 10px;
  margin: 0 2px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.lang-switch button.active {
  background-color: #00afef;
}

.lang-switch button:hover {
  background-color: rgba(0, 175, 239, 0.7);
}

/* Mobile styles */
/* @media (max-width: 991px) {
  .lang-switch {
    top: 15px;
    right: 80px;
  }
  
  .lang-switch button {
    padding: 4px 8px;
    font-size: 12px;
  }
} */

/* When scrolled down (header becomes sticky) */
.header.sticked .lang-switch {
  top: 15px;
}
