* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .commerece-banner {
    width: 100;
    height: 45vh;
    background-image: url(photo/all-banar.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .commerc-text {
    color: #fff;
    text-align: center;
  }
  
  .commerc-text h1 {
    font-size: 3.5vw;
    letter-spacing: 2px;
    margin-top: 40px;
  }
  
  .commerc-text p {
    font-size: 18px;
    margin-top: 30px;
  
  }
  
  .service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 60px;
  }
  
  .service-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 300px;
    /* text-align: center; */
    transition: transform 0.2s;
  }
  
  .service-box:hover {
    transform: scale(1.05);
  }
  
  .service-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .service-box h3 {
    margin: 15px 0 10px;
    font-size: 1.5em;
  }
  
  .service-box p {
    color: #666;
    font-size: 15px;
    line-height: 26px;
    text-align: left;
    font-weight: 200;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  @media (max-width: 768px) {
    .service-box {
      width: 90%;
    }
  }
  
  .content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
    background-color:  #e4e4e4;
    border-radius: 8px;
    padding: 20px;
  }
  
  .text-content {
    flex: 1;
    padding: 20px;
  }
  
  .text-content h2 {
    margin-bottom: 15px;
    font-size: 2em;
  }
  
  .text-content p {
    color: #666;
    font-size: 15px;
    line-height: 26px;
    text-align: left;
    font-weight: 200;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .text-content ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
  }
  
  .text-content li {
    color: #666;
    font-size: 15px;
    line-height: 26px;
    text-align: left;
    font-weight: 200;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .image-content {
    flex: 1;
    text-align: center;
  }
  
  .image-content img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
  }
  
  @media (max-width: 768px) {
    .content-section {
      flex-direction: column;
      text-align: center;
    }
  
    .image-content {
      margin-top: 20px;
  
  
    }
  
  }
  
  
  
  .value-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px 20px;
  }
  
  .value-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .value-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
  }
  
  .value-item {
    background-color: white;
    border-radius: 8px;
  
    padding: 20px;
  
    margin: 10px;
    text-align: center;
  }
  
  .value-item h3 {
    font-size: 3em;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .value-item p {
    color: #666;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    font-weight: 200;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  @media (max-width: 768px) {
    .value-item {
      flex: 1 1 100%;
      /* Stacks items on smaller screens */
    }

    .service-container {
      display: block;
    }
  }



.value-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.value-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.value-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Enable wrapping */
    gap: 20px; /* Space between items */
}

.value-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(20% - 20px); /* Adjust width with gap */
    text-align: center;
    min-width: 200px; /* Minimum width for items */
}

.value-item h3 {
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
}

.value-item p {
    color: #666;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    font-weight: 200;
}

@media (max-width: 768px) {
    .value-item {
        flex: 1 1 100%; /* Stack items on smaller screens */
    }
}

.Econtainer {
  display: FLEX;
  padding: 20PX;
  MARGIN-TOP: 90PX;
}

@media (max-width: 768px)  {
  .Econtainer {
    display: block;
  }
}