/* Contact bo'limi uchun container */
#contact {
    background-color: linear-gradient(135deg, rgba(33, 150, 243, 1) 0%, rgb(185, 231, 19) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  #contact:hover {
    transform: scale(1.01);
  }
  
  /* Matnlar */
  #contact h2 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  #contact p {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Forma ichidagi elementlar */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;;
  }
  
  label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid black;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    border-color: #4f8ef7;
  }
  
  /* Button */
  button {
    padding: 14px;
    background-color: #4f8ef7;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #1e6fe4;
  }
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(33, 150, 243, 1) 0%, rgb(185, 231, 19) 100%);
    margin: 0;
    padding: 0;
}

  