
.company-values-section {
  background: #f9fbfd;
  padding: 80px 0;
}

.vs-section-heading {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vs-section-subhead {
  color: #718096;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.6;
}


.vs-value-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
}

.vs-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.vs-image-container {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.vs-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vs-value-card:hover .vs-cover-image {
  transform: scale(1.1);
}

.vs-card-title {
  padding: 1.5rem 1.5rem 0;
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vs-card-text {
  padding: 0 1.5rem 2rem;
  color: #718096;
  line-height: 1.7;
  font-size: 1rem;
}


.tb-trust-badges {
  margin-top: 4rem;
}

.tb-badge-card {
  display: flex;
  align-items: center;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
}

.tb-badge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(225, 116, 66, 0.1);
}

.tb-badge-card:hover::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffa500, #e17442);
  z-index: 0;
}

.tb-badge-icon {
  font-size: 2.2rem;
  color: #e17442;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.tb-badge-card:hover .tb-badge-icon {
  color: #ffffff;
}

.tb-badge-text {
  font-weight: 700;
  color: #2d3748;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.tb-badge-text:hover{
  color: #ffffff;
}
/* Responsive Design */
@media (max-width: 992px) {
  .vs-section-heading {
    font-size: 2.2rem;
  }
  
  .vs-image-container {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .company-values-section {
    padding: 60px 0;
  }
  
  .vs-section-heading {
    font-size: 2rem;
  }
  
  .vs-image-container {
    height: 180px;
  }
  
  .tb-badge-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .tb-badge-icon {
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .vs-section-heading {
    font-size: 1.75rem;
  }
  
  .vs-image-container {
    height: 150px;
  }
  
  .vs-card-title {
    font-size: 1.3rem;
    padding: 1rem 1rem 0;
  }
  
  .vs-card-text {
    padding: 0 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .tb-badge-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tb-trust-badges .col-6 {
    width: 100%;
  }
}