.navigation ul,
li{
    color: white;
    text-decoration: none;
    list-style: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

ul li {
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
  }
  
ul li a {
    position: relative;
    padding-bottom: 5px;
}

ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    transition: width 0.3s ease;
}

ul li:hover a::after {
    width: 100%;
}

ul li:hover a {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


.card-img-top {
    width: 150px; 
    height: 150px; 
    object-fit: contain;
  }

.navigation ul {
    display: flex;
    gap: 25px;
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    padding: 1rem 2rem;
    box-shadow: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

header{
    margin: 0;
    padding: 0;
    background-image: url('../images/header.jpg ');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;   
}

.text-bas{
    color:white;
    font-size: 25px;
    font-weight: bold;
}


.center-text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; 
    margin: 0 auto; 
    margin-top: 100px;
    padding-top: 2.5rem;
    font-size: 5rem;
    color: white;

}

#span{
    vertical-align: middle;
}

footer{
    padding-top: 10vw;
    background-color: #030303;
}

.language-switcher {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 25px;
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.language-switcher:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.language-switcher .btn {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.language-switcher .btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.05);
}

.language-switcher .btn.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
  color: white;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  transform: scale(1);
}

.language-switcher .separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 4px;
  font-weight: 300;
  font-size: 16px;
}
