/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ===== HERO WRAPPER ===== */
.hero-mtm {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  /* FAQAT RASM */
  background-image: url("../images/hr.png");

  background-size: cover;        /* butun ekran to‘lsin */
  background-position: center;   /* markazdan */
  background-repeat: no-repeat;


}




/* ===== SLIDER ===== */
.hero-slider {
  flex: 1;
  position: relative;
}

/* SLIDES */
.hero-slide {
  display: none;
}
.hero-slide.active {
  display: block;
}

/* ===== CONTENT ===== */
.hero-content {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===== HERO CARD (FIXED SIZE) ===== */
.hero-card {
  width: 100%;
  max-width: 560px;

  height: 360px;
  min-height: 360px;
  max-height: 360px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 18px;

  padding: 42px 46px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TITLE — 3 QATOR + ... */
.hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #0b2a45;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* DESCRIPTION — 3 QATOR + ... */
.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #4b5b68;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* BUTTON */
.btn-hero {
  align-self: flex-start;
  background: #0099e5;
  color: #fff;
  padding: 14px 36px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.25s ease;
}
.btn-hero:hover {
  background: #007fc0;
}

/* ===== DOCTOR IMAGE ===== */
.hero-doctor img {
  max-height: 60vh;
  animation: floatDoctor 10s ease-in-out infinite;
}

@keyframes floatDoctor {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ===== ACTION BUTTONS (KO‘TARILGAN) ===== */
.hero-actions {
  padding: 22px 20px;
  margin-top: -30px;           /* 🔥 BIROZ TEPAROQ */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* SINGLE ACTION */
.hero-action {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 16px;

  display: flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
  color: #0b2a45;
  font-weight: 600;
  font-size: 16px;

  border: 1px solid #e3eef6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* ICON */
.hero-action-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0099e5, #007fc0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}

/* HOVER */
.hero-action:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
  border-color: #0099e5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-card {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    padding: 30px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-doctor img {
    max-height: 40vh;
  }

  .hero-actions {
    margin-top: -15px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}
