
.ServicesContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 90px;
    margin-top: 60px;
    max-width: 1400px;
    margin: 0 auto;
    
}
  
.box {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}
  
.box:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
  
.box-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
  
.box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: black;
}
  
.box p {
    font-size: 14px;
    color: black;
}

.Partners {
    display: flex;           
    justify-content: space-around; 
    align-items: center;                
    background-color: white; 
    margin-top: 80px;     
}

.Partners img {
    max-width: 200px;  
    height: auto;     
    max-height: 100px; 
}

@media screen and (max-width: 430px) {
    .ServicesContainer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      padding: 30px 15px;
    }
  
    .box {
      width: 100%;
      max-width: 300px;
      text-align: center;
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
  
    .box:hover {
      transform: scale(1.02);
    }
  
    .box-icon {
      width: 60px;
      height: auto;
      margin-bottom: 15px;
    }
  
    .box h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
  
    .box p {
      font-size: 0.95rem;
      line-height: 1.4;
    }
  
    .Partners {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 30px 10px;
    }
  
    .Partners img {
      width: 120px;
      height: auto;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 768px) and (orientation: portrait) {
    .ServicesContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px 20px;
    }
  
    .box {
      width: 45%;
      background-color: #f5f5f5;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
  
    .box:hover {
      transform: scale(1.02);
    }
  
    .box-icon {
      width: 60px;
      height: auto;
      margin-bottom: 10px;
    }
  
    .box h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }
  
    .box p {
      font-size: 0.95rem;
      line-height: 1.4;
    }
  
    .Partners {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 30px 15px;
    }
  
    .Partners img {
      width: 130px;
      height: auto;
    }
}

@media screen and (min-width: 810px) and (max-width: 840px) {
    .ServicesContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px 20px;
    }
  
    .box {
      width: 28%;
      background-color: #f9f9f9;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }
  
    .box:hover {
      transform: translateY(-5px);
    }
  
    .box-icon {
      width: 65px;
      height: auto;
      margin-bottom: 12px;
    }
  
    .box h3 {
      font-size: 1.2rem;
      margin-bottom: 6px;
    }
  
    .box p {
      font-size: 1rem;
      line-height: 1.5;
    }
  
    .Partners {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px 20px;
    }
  
    .Partners img {
      width: 140px;
      height: auto;
    }
}
  
@media screen and (min-width: 834px) and (max-width: 1024px) and (orientation: portrait) {
    .ServicesContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding: 50px 30px;
    }
  
    .box {
      width: 27%;
      background-color: #ffffff;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
  
    .box:hover {
      transform: translateY(-6px);
    }
  
    .box-icon {
      width: 70px;
      height: auto;
      margin-bottom: 15px;
    }
  
    .box h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
    }
  
    .box p {
      font-size: 1.05rem;
      line-height: 1.5;
    }
  
    .Partners {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding: 50px 30px;
    }
  
    .Partners img {
      width: 160px;
      height: auto;
    }
}
    