/* Client section styles */
.client-logo-area .section-title-two {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 25px;
  position: relative;
  z-index: 5;
}

.client-logo-area h1{
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo-area .section-title-two {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .client-logo-area .section-title-two {
    margin-bottom: 15px;
  }
}
.client-logo-area .section-title-two span {
  text-transform: capitalize;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 15px;
  border-radius: 4px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.client-logo-area .section-title-two h2 {
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo-area .section-title-two h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .client-logo-area .section-title-two h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.client-logo-area .section-title-two p {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Main client logo section */
/* Removed individual padding - using main-section class instead */
.client-logo-one .single-client {
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-one .single-client:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.client-logo-one .single-client img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
  .client-logo-one .single-client {
    height: 140px;
  }
  
  .client-logo-one .single-client img {
    max-height: 100px;
  }
}

@media (max-width: 575px) {
  .client-logo-one .single-client {
    height: 120px;
    padding: 15px;
  }
  
  .client-logo-one .single-client img {
    max-height: 80px;
  }
}

.client-logo-one .single-client:hover img {
  filter: grayscale(0%);
}