.service-block-two .inner-box:hover i {
  color: #fff;
}

.client-logo {
  text-align: center;
  padding: 25px;
  transition: all 0.3s ease;
}

.client-logo img {
  max-height: 140px;
  width: auto;
  transition: all 0.4s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partners-section {
  background: #ffffff;
}

.partner-logo {
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partner-logo img {
  max-height: 100px;
  width: auto;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo:hover img {
  opacity: 1;
}

.member-section {
  background: #f9fafc;
}

.member-logo {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.member-logo img {
  max-height: 120px;
  width: auto;
  transition: all 0.3s ease;
}

.member-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.technologies-section .section-header {
  max-width: 900px;
  margin: 0 auto;
}

.tech-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.tech-tab {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}

.tech-tab.active {
  border-color: #f4a950;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tech-content {
  display: none;
}

.tech-content.active {
  display: block;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  transition: .2s;
}

.tech-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.tech-item img {
  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  opacity: .9;
  transition: .2s;
}

.tech-item:hover img {
  filter: none;
  opacity: 1;
}

/* If an SVG is very tall (some brands), this prevents overflow */
.tech-item img.tall {
  max-height: 44px;
}

:root {
  --footer-bg: #d9eeff;
}

body {
  font-family: "Poppins", sans-serif;
}

p {
  color: #666;
}

/*# sourceMappingURL=style.css.map */