/*--------------------------------------------------------------
# home select languages
--------------------------------------------------------------*/
.btn-lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #333;
}

.btn-lang:hover {
  transform: scale(1.05);
  background: #fff;
  border-color: #0d6efd;
  color: #0d6efd;
  z-index: 10;
}

.btn-lang strong {
  font-size: 1.15rem;
  margin-bottom: 4px;
  display: block;
}

.btn-lang small {
  font-size: 0.75rem;
  color: #6c757d;
}

.app-logo {
  width: 110px; height: auto; 
  border-radius: 24px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
}