/* Dev by Đức Nobi */

.vhunter_main_banner {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.vhunter_main_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vhunter_banner_content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  z-index: 2;
}

.vhunter_services_section {
  padding: 60px 0;
  background-color: #fff;
}

.vhunter_service_section_desc {
  display: -webkit-box;
  -webkit-line-clamp: 6; /* Giới hạn 6 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-card * {
  color: black !important;
}

.service-box {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 10px;
  height: 100%;
  position: relative;
  background-color: #fff;
  cursor: pointer;
}

.service-box:hover {
    box-shadow: 10px 20px 20px rgb(63, 138, 28);
    position: relative;
    top: -10px;
    left: -10px;
}

.service-box:hover > .service-title {
    background-color: var(--primary-color);
}

.service-title {
  background-color: var(--primary-color);
  padding: 10px 15px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  font-size: 1.1rem;
  color: #ffff;
  text-transform: uppercase;
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-content p {
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.text-highlight {
  color: #4a6cf7;
  font-weight: 600;
}

.service-content-img {
    width: 100%;
    max-height: 150px;
    margin: 2px auto;
}

.vhunter-our-work img {
    object-fit: cover;
}

@media (max-width: 768px) {
  .vhunter_banner_content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .vhunter_banner_content_img {
    flex: 1 1 100%;
    text-align: center;
  }

  .vhunter_main_banner {
    height: 200px !important;
  }
  
  .vhunter_main_banner img {
      object-fit: fill !important;
  }
}

@media (max-width: 1280px) {
  .vhunter_main_animation img {
    max-width: 90%;
    margin-top: 100px;
  }

  .vhunter_services_section {
    padding-top: 10px;
  }

  .vhunter-our-work {
    padding: 0 30px !important;
  }
}