body {
  background-color: white !important;
  font-family: 'Inter', sans-serif !important;
}

.hero-section {
    background-image: url('../image/homelable.png');
    background-size: cover;
    background-position: center;
    min-height: 850px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    color: white;
    padding: 10%;
    position: relative;
  }

  .highlight-orange {
    color: orange;
  }
  
  .highlight-secondary {
    color: #787679; 
  }
  
  
  .hero-content h1 {
    font-size: 130px;
    font-weight: bold;
    margin: 0;
  }
  
  .hero-content p {
    color: #333333;
    font-size: 17.9px;
    font-weight: 300; /* hoặc 200 nếu bạn muốn mảnh hơn nữa */
    margin: 10px 0 0;
  }
  
  
  /* Tablet */
  @media (max-width: 991.98px) {
    .hero-content h1 {
      font-size: 50px;
    }
  
    .hero-content p {
      font-size: 18px;
    }
  
    .hero-section {
      padding: 8%;
      min-height: 400px;
    }
  }
  
  /* Mobile */
  @media (max-width: 575.98px) {
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  
    .hero-section {
      padding: 6%;
      min-height: 350px;
    }
  }
  

/* Phần div cho "Sản phẩm" */
.product-section {
    text-align: center; /* Căn giữa chữ */
    padding: 50px 0px;
  }
  
  .product-section h2 {
    font-size: 58.5px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .product-section p {
    font-size: 15.4px;
    font-weight: 300;
    margin: 10px 0;
  }
  /* Phần chia thành 4 phần */
  .four-sections {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 150px;
    padding: 0 20px;
    flex-wrap: wrap; /* Cho phép các phần tử gói lại khi không đủ không gian */
}

.section-text {
    background-image: url('../image/Div.png');
    background-size: cover;
    background-position: center;
    padding: 50px;
    width: 25%; /* Giới hạn chiều rộng */
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-text h2 {
    font-size: 14px;
    font-weight: 500;
    color: #FF9D00;
    margin-bottom: 10px;
}

.section-text h4 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
}

.section-text button {
    font-size: 13.5px;
    padding: 10px 40px;
    background-color: #F9F9F9;
    color: rgb(8, 7, 7);
    border: 1px solid #333333;
    cursor: pointer;
    border-radius: 4px;
}

.image-text {
    position: absolute; 
    top: 70%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    color: white;
    text-align: center; 
    z-index: 1; 
    width: 80%; 
    padding: 10px;
}

.image-text h2 {
    font-size: 17.3px; 
    font-weight: bold;
    font-style: italic; 
    color: #FBAF17;
    margin-bottom: 10px;
}
.hl{
    color: #FBAF17;
}

.image-text p {
    font-size: 13.5px; 
    margin-bottom: 15px;
    font-weight: 300;
    
}

.section-text button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Ảnh trong các phần còn lại */
.section-image {
    width: 25%; /* Giữ nguyên chiều rộng phần ảnh */
    padding: 0px 10px;
    position: relative;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.AICamnet{
  margin-left: 50px;
}

/* Media Query cho thiết bị nhỏ hơn (dưới 768px) */
@media (max-width: 768px) {
    .section-text {
        width: 100%; /* Mở rộng phần text khi màn hình nhỏ */
        padding: 30px; /* Giảm padding */
    }
    .AICamnet{
      margin-left: -50px;
    }

    .section-image {
        width: 100%; /* Mở rộng phần ảnh khi màn hình nhỏ */
        padding: 10px 0; /* Giảm padding */
    }

    .four-sections {
        flex-direction: column; /* Đặt các phần tử thành cột khi màn hình nhỏ */
    }
}

/* Media Query cho thiết bị rất nhỏ (dưới 480px) */
@media (max-width: 480px) {
    .section-text {
        padding: 20px; /* Giảm thêm padding */
    }

    .section-text h2 {
        font-size: 18px; /* Giảm kích thước font */
    }

    .section-text h4 {
        font-size: 16px; /* Giảm kích thước font */
    }

    .section-text button {
        font-size: 14px; /* Giảm kích thước font cho button */
        padding: 8px 16px; /* Giảm padding của button */
    }
}
.server-image-container {
    display: flex;
    justify-content: center; /* Căn giữa ảnh */
    align-items: center; /* Căn giữa ảnh theo chiều dọc */
    padding: 10px; 
     margin-bottom: 150px;

}

.server-image {
    width: 100%; /* Đảm bảo ảnh chiếm hết chiều rộng của div */
    max-width: 1200px; /* Giới hạn chiều rộng tối đa của ảnh */
    height: auto; /* Đảm bảo ảnh không bị méo */
    border-radius: 8px; /* Bo góc cho ảnh */
}


.customer-section {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .customer-text {
    width: 30%;
    padding: 0 5%;
    text-align: left;
    top: -150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .customer-text h2 {
    font-size: 40px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .customer-text h4 {
    font-size: 15.4px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 20px;

  }
  
  .customer-text button {
    font-size: 16px;
    padding: 10px 40px;
    background-color: #ffffff;
    color: #D63228;
    border: 1px solid #D63228;
  }
  
  .customer-text button:hover {
    background-color: #004085;
    color: white;
  }
  
  /* Phần chứa ảnh */
  .img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .customer-image-server {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .customer-image-server:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .customer-images {
    border-left: 1px solid #333333;
  }

  .customer-images .col-md-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .customer-image-server {
      width: 120px;
      height: 120px;
    }
  }
  

  
  /* Responsive Tablet */
  @media (max-width: 991.98px) {
    .customer-section {
      flex-direction: column;
    }
  
    .customer-text,
    .customer-images {
      width: 100%;
      padding: 0;
      text-align: center;
      border: none;
    }
  
    .customer-text {
      align-items: center;
      margin-bottom: 30px;
    }
  
    .customer-text h2 {
      font-size: 28px;
    }
  
    .customer-text h4 {
      font-size: 18px;
    }
  
    .customer-images .row {
      justify-content: center;
    }
  
    .customer-images .col-md-4 {
      margin-bottom: 20px;
    }
  }
  
  /* Responsive Mobile */
  @media (max-width: 575.98px) {
    .customer-text h2 {
      font-size: 24px;
    }
  
    .customer-text h4 {
      font-size: 16px;
    }
  
    .customer-text button {
      font-size: 14px;
      padding: 8px 16px;
      margin-top: 30px;
    }
  }
  
  