.technology-section {
  background-color: #f4f5f7;
}

.section-label {
  color: #ff6b00;
  font-size: 12px;
  font-weight: 700;
}

.section-title {
  color: #050505;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
}

.tech-logo {
  width: 100%;
  max-width: 120px;
  height: 58px;
  object-fit: contain;
}

.aws-logo {
  max-width: 145px;
  height: 75px;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 26px;
  }

  .tech-logo {
    max-width: 105px;
    height: 50px;
  }
}

/* industry section */
.industry-section {
  background: #f5f5f5;
}

.section-subtitle {
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #0b0b0b;
}

.industry-card {
  background: #fff;
  padding: 38px 20px 30px;
  min-height: 150px;
  border-radius: 4px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.industry-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 18px;
}

.industry-card h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }

  .industry-card {
    min-height: 140px;
    padding: 30px 15px 24px;
  }

  .industry-icon {
    width: 50px;
    height: 50px;
  }

  .industry-card h5 {
    font-size: 16px;
  }
}

.skill-img .image {
  height: 328px;
  position: relative;
  overflow: hidden;
}

.skill-img .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.skill-img .image::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, #FFFFFF00 0%, #010f31 100%) !important; */
  /* background: rgba(0, 0, 0, 0.45); */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.skill-img .image:hover {
  transform: scale(1.08);
}



.testimonial-img {
  width: 82px !important;
}
