.hero_section {
    background-image: url(images/developer.png);
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .text_container {
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 64px;
    padding-left: 16px;
  }
  .lg_text {
    font-size: 72px;
    font-weight: 400;
  }
  .black_box {
    background-color: #000;
    padding: 20px;
  }
  .black_box h2 {
    font-size: 72px;
    color: white;
    text-align: center;
    font-weight: 300;
  }
  
  .black_box h2 span {
    font-weight: 400;
    font-size: 96px;
  }
  .work {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  
    max-width: 1100px;
    margin: 50px auto;
  }
  .grid_item {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #work .card {
    max-width: 320px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.2);
    transition: 0.2s ease-in-out;
  }
  .card:hover {
    transform: scale(1.04);
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.3);
    transition: 0.2s ease-in-out;
  }
  .card_content {
    padding: 20px;
  }
  .card_content h3 {
    margin-bottom: 10px;
  }
  
  .product-price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    margin-right: 110px;
  }
  .flex{
      display: flex;
  }
  
  .add-to-cart {
    padding: 12px 25px;
    font-size: 20px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  
  }
  .buy-now{
    padding: 12px 25px;
    font-size: 20px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .add-to-cart:hover {
    background-color: #0056b3;
  }
  .buy-now:hover {
    background-color: #0056b3;
  }
  
  .product-rating {
    color: #f39c12;
    text-align: right;  
  }
  @media (max-width: 720px) {
    
    #work .work{
        margin-top: 150px;
        max-width: 250px;
    }
   
    #work .card_content {
        padding: 50px;
      }
  }