.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-rocket {
  width: 240px;  /* kerak bo‘lsa o‘lchamini moslashtir */
  animation: rocket-fly 3s ease-in-out infinite;
  transform-origin: center;
}

/* Tebranish animatsiyasi */
@keyframes rocket-fly {
  0%   { transform: translateY(0) rotate(-1deg); }
  25%  { transform: translateY(-8px) rotate(1deg); }
  50%  { transform: translateY(0) rotate(-1deg); }
  75%  { transform: translateY(6px) rotate(1deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}

/* --- HERO ↔ SERVICES oralig'ini qisqartirish --- */
.grid3 { display: none !important; }              /* plaseholderni o'chirdik */
.hero { padding-bottom: 8px !important; }        /* hero pastini qisqartirdik */

/* faqat Xizmatlar bo'limi uchun yuqori paddingni kamaytirish */
#services.section { padding-top: 5px !important; }

/* Xizmatlar sarlavha/ta'rif marginlarini ixchamroq qilamiz */
#services .h2 { margin-bottom: 8px !important; }
#services .muted { margin: 6px 0 12px !important; }

.hero{
  padding: clamp(28px, 6vw, 64px) 0;
}
.hero-grid{
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px;
  align-items: center;
}
.hero .btns{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }  /* raketa / rasm avval chiqsin desang */
}

