/* ===========================
   RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ===========================
     ASOSIY STIL
  =========================== */
  html, body {
    font-family: "Poppins", sans-serif;
    background-color: #f7f9fa;
    color: #2c3e50;
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
  }
  
  /* ===========================
     NAVBAR
  =========================== */
  #navbar {
    background: #2c3e50;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  
  #navbar .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #navbar h1 {
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  #navbar ul {
    display: flex;
    gap: 15px;
    list-style: none;
  }
  
  #navbar ul li a {
    display: inline-block;
    padding: 20px 15px;
    color: white;
    font-weight: 500;
    border-radius: 6px;
  }
  
  #navbar ul li a:hover,
  #navbar ul li a.current {
    background: #16a085;
    color: #fff;
  }
  
  /* ===========================
     BUTTON
  =========================== */
  .btn {
    display: inline-block;
    font-size: 18px;
    background: #16a085;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #1abc9c;
  }
  
  /* ===========================
     SHOWCASE / BANNER
  =========================== */
  #showcase {
    background-image: url("asosiy\ fonga.jpg ");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
  }
  
  #showcase::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.6);
  }
  
  #showcase .showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: 180px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
  }
  
  #showcase h1 {
    font-size: 56px;
    margin-bottom: 15px;
  }
  
  #showcase p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  /* ===========================
     HOME INFO
  =========================== */
  #home-info {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    align-items: center;
  }
  
  #home-info .info-img {
    flex: 1;
    min-height: 400px;
    background-image: url("ichki\ qism.jpg");
    background-size: cover;
    background-position: center;
  }
  
  #home-info .info-content {
    flex: 1;
    padding: 50px;
    text-align: left;
  }
  
  #home-info h2 {
    color: #2c3e50;
  }
  .text-primary {
    color: #1abc9c;
  }
  
  /* ===========================
     FEATURES / BOXES
  =========================== */
  #features {
    display: flex;
    flex-wrap: wrap;
  }
  
  .box {
    flex: 1;
    text-align: center;
    padding: 50px 20px;
    transition: 0.3s;
  }
  
  .box:hover {
    transform: translateY(-5px);
  }
  
  .box.bg-light {
    background: #f7f9fa;
  }
  
  .box.bg-primary {
    background: rgb(26, 109, 124);
    color: white;
  }
  
  .box i {
    font-size: 40px;
    color: #16a085;
    margin-bottom: 15px;
  }
  
  /* ===========================
     ABOUT PAGE
  =========================== */
  #about-info {
    padding: 50px 20px;
  }
  
  #about-info .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  
  #about-info .info-left,
  #about-info .info-right {
    flex: 1;
  }
  
  #about-info .info-right img {
    display: block;
    margin: auto;
    width: 70%;
    border-radius: 15px;
  }
  
  /* ===========================
     TESTIMONIALS
  =========================== */
  #testimonials {
    padding: 100px 20px;
    background-image: url("kitoblar.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
  }
  
  #testimonials h2 {
    text-align: center;
    padding-bottom: 40px;
    font-size: 34px;
  }
  
  .testimonial {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    background: rgba(22, 160, 133, 0.9);
  }
  
  .testimonial img {
    width: 100px;
    border-radius: 50%;
  }
  
  /* ===========================
     CONTACT PAGE
  =========================== */
  #contact-form {
    padding: 50px 20px;
  }
  
  #contact-form h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  #contact-form p {
    text-align: center;
    margin-bottom: 30px;
  }
  
  #contact-form .form-group {
    margin-bottom: 20px;
  }
  
  #contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
  }
  
  #contact-form input:focus,
  #contact-form textarea:focus {
    border-color: #16a085;
    outline: none;
  }
  
  #contact-form button {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  
  /* ===========================
     CONTACT INFO
  =========================== */
  #contact-info .container {
  display: flex;            /* Yonma-yon joylashadi */
  justify-content: space-between;  /* Teng bo‘shliq */
  align-items: flex-start;  /* Yuqoridan tekis */
  flex-wrap: wrap;          /* Mobilda pastga tushadi */
  gap: 30px;                /* Bloklar orasida bo‘shliq */
}

#contact-info .box {
  flex: 1;                  /* Teng o‘lcham */
  min-width: 220px;         /* Juda tor ekranda pastga tushish */
  display: flex;             /* Icon va matnni ustma-ust joylash */
  flex-direction: column;
  align-items: center;
  background: #2c3e50;      /* Blok fonini quyuq rang qilish */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#contact-info .box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #16a085;
}

#contact-info .box h3 {
  margin-bottom: 10px;
  color: #fff;
}

#contact-info .box p {
  color: #fff;
  text-align: center;
}

  
  /* ===========================
     FOOTER
  =========================== */
  #main-footer {
    text-align: center;
    background: #2c3e50;
    color: white;
    padding: 20px;
    margin-top: 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
  }
  
  /* ===========================
     RESPONSIVE
  =========================== */
  @media (max-width: 768px) {
    #home-info,
    #about-info .container,
    #features,
    #contact-info {
      flex-direction: column;
    }
  
    #navbar ul {
      flex-direction: column;
    }
  
    #navbar ul li a {
      padding: 15px;
    }
  
    #showcase {
      height: 400px;
    }
  
    #showcase h1 {
      font-size: 36px;
    }
  
    #showcase p {
      font-size: 16px;
    }
  }
  