  /* === ✈️ FLIGHT PRELOADER (izolyatsiya qilingan) === */
  #flightPreloaderWrapper,
  #flightPreloaderWrapper * {
    box-sizing: border-box;
  }
<style>
  /* === ✈️ FLIGHT PRELOADER (to‘liq izolyatsiyalangan) === */
  #flightPreloaderWrapper,
  #flightPreloaderWrapper * {
    box-sizing: border-box;
  }

  #flightPreloaderWrapper {
    position: fixed;
    inset: 0;
    background: #87CEEB;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99999;
    overflow: hidden;
    font-family: Arial, sans-serif;
    user-select: none;
    animation: flightFadeOut 0.8s ease 2.6s forwards;
  }

  /* ☁️ Bulutlar */
  .flightCloud {
    position: absolute;
    opacity: 0.8;
    animation: flightCloudMove linear infinite;
    pointer-events: none;
    z-index: 2;
  }

  @keyframes flightCloudMove {
    from { transform: translateX(-100%); }
    to   { transform: translateX(120%); }
  }

  /* ✈️ Samolyot */
  .flightPlane {
    position: absolute;
    left: -400px;
    top: 55%;
    width: clamp(600px, 40vw, 1000px); /* 🔥 responsiv o‘lcham */
    transform: translateY(-50%);
    animation: flightPlaneFly 3s linear forwards;
    z-index: 3;
    pointer-events: none;
  }

  @keyframes flightPlaneFly {
    0%   { left: -400px; top: 60%; }
    50%  { top: 45%; }
    100% { left: 120%; top: 50%; }
  }

  /* 🌀 Logotip */
  .flightLogo {
    position: relative; 
    z-index: 4; 
    margin-top: 60px;
    animation: flightPulse 1s infinite;
    transform-origin: center center;
  }

  .flightLogo img {
    width: clamp(200px, 35vw, 340px); /* 🔥 ham responsiv */
  }

  @keyframes flightPulse {
    0%   { transform: scale(1); opacity: 1; }
    25%  { transform: scale(1.05); opacity: 0.95; }
    50%  { transform: scale(1.1); opacity: 1; }
    75%  { transform: scale(1.05); opacity: 0.98; }
    100% { transform: scale(1); opacity: 1; }
  }

  /* 🌫️ Fade out animatsiyasi */
  @keyframes flightFadeOut {
    to { opacity: 0; visibility: hidden; }
  }

  /* 📱 Mobil optimizatsiya */
  @media (max-width: 768px) {
    .flightLogo { margin-top: 30px; }
    .flightPlane { top: 60%; }
  }
  
  
  
  
  #header {
  position: absolute;   /* sahifaning yuqorisiga yopishadi */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;  /* orqa fon shaffof */
  z-index: 1000;
}

/* === Asosiy holat (kompyuter uchun) === */
.language-switcher {
  position: absolute;
  top: 4px;
  right: -80px;
  z-index: 2000;
}

.language-switcher button {
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 11px 19px;
  border: 1px solid #fff;
  border-radius: 15px;
  cursor: pointer;
  color: #fff;
}

.language-switcher ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 9px 9px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  right: -1px;
  top: 50px;
  min-width: 47px;
}

.language-switcher ul li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.language-switcher ul li a:hover {
  background: #f2f2f2;
}

.language-switcher ul.show {
  display: block;
}

/* === MOBIL UCHUN (pastdan chiqadigan versiya) === */
@media (max-width: 768px) {
  .language-switcher {
    position: fixed !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translate(-50%, 455px) !important; /* 🔽 Umumiy pastga tushirildi */
    z-index: 9999 !important;
    text-align: center !important;
  }

  .language-switcher button {
    background: #007bff;
    color: #fff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  }

  /* === Pastdan chiqadigan mini oyna === */
  .language-switcher ul {
    display: none;
    position: fixed;
    bottom: 80px; /* tugmadan yuqorida chiqadi */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    flex-direction: row;
    justify-content: center;
    align-items: center;

    /* 🟢 Mana bu joylarda siz razmerni o'zgartirasiz */
    width: 80px;         /* ← oyna eni */
    height: 130px;         /* ← oyna eni */
    padding: 0px 2px;    /* ← ichki bo‘shliq */
    gap: 20px;            /* ← RU va EN orasidagi masofa */
    font-size: 25px;      /* ← matn hajmi */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .language-switcher ul.show {
    display: wrap;
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(-5px);
  }

  .language-switcher ul li a {
    color: #000 !important;
    font-weight: bold;
    text-decoration: none;
    font-size: inherit; /* yuqoridagi font-size’dan oladi */
  }

  .language-switcher ul li a:hover {
    text-decoration: underline;
  }
}



/* Mobil ekranda */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: -100%;
    width: 200px;
    background: #333;
    transition: 0.3s;
    padding: 10px;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .mobile-lang {
    margin-top: 20px;
  }
}

/* === Defaultda yashirish (kompyuterda ko‘rinmaydi) === */
.mobile-only {
  display: none;
}

/* === Faqat mobil uchun ko‘rsatish === */
@media (max-width: 768px) {
  .mobile-only {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .social-icons {
    flex-direction: row;
    gap: 1px;
    margin-top: 25px;
  }

  .social-link {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
  }

  .social-link:hover {
    color: #00aced;
  }

  .phone-contact {
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
  }

  .phone-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
  }

  .phone-link i {
    margin-right: 8px;
  }
}
