/* Footer */
.site-footer {
  background-color: #f9f9f9; /* qaymoq rang */
  color: #0F1E4B; /* ko‘k rang matnlar */
  padding: 30px 15px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-logo h3 {
  margin: 0;
  font-size: 20px;
  color: #0F1E4B;
}

.footer-logo p {
  margin-top: 5px;
  font-size: 13px;
  color: #0F1E4B;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: #0F1E4B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0056b3;
}

.footer-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-social a {
  color: #0F1E4B;
  text-decoration: none;
}

.footer-social a:hover {
  color: #0056b3;
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links ul,
  .footer-social .social-icons {
    align-items: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 1rem;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active ul {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}
.hero-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #ffffff,
    #f5f9ff
  );

  display: flex;
  align-items: center;
  padding: 80px 8%;
}

.hero-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-label {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(0,0,0,0.05);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-left h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #111;
  font-weight: 800;
  max-width: 700px;
}

.hero-left p {
  font-size: 20px;
  line-height: 1.7;
  color: #666;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #111;
  color: white;
  padding: 18px 34px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid #ddd;
  color: #111;
  padding: 18px 34px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f4f4f4;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 600px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

@media(max-width: 992px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-buttons {
    justify-content: center;
  }

}