#services .more {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
  }
  #services .more:hover {
      background-color: #95cfef;
      transform: translateY(-2px);
  }
  
  #services .more:active {
      background-color: #4a8fd4;
      transform: translateY(0);
  }


/*ALL PRODUCTS*/
.search {
    padding: 1rem;
    font-size: 1.5rem;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }
  
  .search input:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  
  
  #all-products {
    padding: 100px 0;
    background: linear-gradient(to right, #59b9ec 0%, #5ca9fb 100%);
    color: #fff;
    min-height: 100vh;
  }
  #all-products .service-desc {
    margin: 10px 10px 20px;
  }
  #all-products h2 {
    color: #fff;
  }
  
  #all-products .subtitle {
    display: flex;
    position: relative;
    justify-content: start;
    margin-bottom: 2rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    color: #fff;
    padding: 1rem 0;
    max-width: fit-content;
  }
  
  #all-products .subtitle::after {
    position: absolute;
    display: block; 
    content: "";
    background: rgba(255, 255, 255, 0.3);
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  
  #all-products .section-title h2::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.3);
    height: 4px;
    width: 60px;
    bottom: 0;
    margin-left: -30px;
    left: 50%;
  }
  
  #all-products i.fa {
    font-size: 21px;
    width: 60px;
    height: 60px;
    padding: 20px 0;
    background: white;
    color: #0072af;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  }
  
  #all-products .row {
    display: grid;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  #all-products .row h3 {
    font-weight: 500;
    padding: 5px 0;
    color: #fff;
  }
  
  #all-products p {
    color: rgba(255, 255, 255, 255);
  }
  #all-products .service-desc {
    margin-bottom: 40px;
  }
  
  #all-products .more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
  }
  