.products-display {
    background: #fff;
    padding: 40px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .product-item {
    width: 100%;
  }
  
  .product-card {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-top: solid #023257;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .product-info {
    background-color: #95edfc;
    border-radius: 20px;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.1);
  }
  
  .product-title {
    font-size: 1.6rem;
    color: #1f2937;
    margin: 15px 0;
    font-weight: 600;
  }
  
  .product-description {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .product-link {
    color: #F03729;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .product-link:hover {
    color: #1f2937;
  }
  
.book-demo {
    background: #f9fafb;
    padding: 60px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-left: 150px;
}
.demo-container {
    display: flex;
    margin-left: 200px;
}
.book-demo-content {
    flex: 1;
    max-width: 50%;
}
  
.book-demo-title {
    font-size: 2.4rem;
    color: #1f2937;
    margin-bottom: 20px;
}
  
.book-demo-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 30px;
}
  
.book-demo-button {
     display: inline-block;
  width: 200px;              
  height: 45px;              
  line-height: 45px;       
  background-color: #2c5aa0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 5px;
  transition: background 0.3s ease;
  overflow: hidden;          
  white-space: nowrap;      
}
  
.book-demo-button:hover {
    background-color: #1e3f7a;
}
  
.demo-form {
    display: none;
    flex-shrink: 0;
    width: 400px; 
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-left: 40px; 
    
}
  
.demo-form .form-group {
    margin-bottom: 1px;
}
  
.demo-form .form-group label {
    font-weight: bold;
    color: #1f2937;
    font-size: 1rem;
}
  
.demo-form .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
}
  
.submit-btn {
    background-color: #10b981;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
  
.submit-btn:hover {
    background-color: #1f2937;
}


@media screen and (max-width: 768px) {
    .book-demo {
        margin-left: 0;  
        max-width: 100%;  
        display: flex;
        flex-direction: column;
        align-items: center;  
        text-align: center;
    }
  
    .book-demo-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
  
    .book-demo-button {
        margin-bottom: 20px;  
    }
  
    .demo-form {
        max-width: 90%;  
        margin-top: 20px;
        display: none; 
        position: relative;
    }
  
    .demo-form.show {
        display: block;
    }
  
    .demo-container {
        margin-left: 0;  
        display: block;
    }
    .book-demo-description{
      width: 350px;
    margin-left: 20px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {

  .products-wrapper {
    flex-wrap: wrap; 
    
    justify-content: space-evenly;
    gap: 20px;
  }

  .product-item {
    width: 45%; 
    
  }

  .book-demo {
    flex-direction: row;  
    justify-content: flex-start;
    align-items: flex-start;
  }

  .demo-container {
    margin-left: 100px;  
  }

  .book-demo-content {
    max-width: 50%;
  }

  .book-demo-description {
    width: 350px;
    margin-left: 30px;
  }

  .demo-form {
    width: 350px;
    margin-left: 240px;
  }
}
