/*===========================
    clients-01 css 
===========================*/
.client-logo-area .section-title-two {
    text-align: center;
    /* max-width: 550px; */
    margin: auto;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .client-logo-area .section-title-two {
      margin-bottom: 45px;
    }
  }
  @media (max-width: 767px) {
    .client-logo-area .section-title-two {
      margin-bottom: 35px;
    }
  }
  .client-logo-area .section-title-two span {
    text-transform: capitalize;
    color: var(--white);
    background: #32adcf;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.5rem; /* Adjust as needed for heading size */
    padding: 5px 15px;
    border-radius: 4px;
  }
  .client-logo-area .section-title-two h2 {
    margin-bottom: 15px;
  }
  @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: var(--dark-3);
  }
  
  /*===== Client Logo One =====*/
  .client-logo-one {
    padding-top: 100px;
    padding-bottom: 100px;
  }

.client-card {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 170px;
    padding: 2rem 1rem 1.2rem 1rem;
    position: relative;
  }
  .client-card:hover {
    box-shadow: 0 16px 40px 0 rgba(50, 173, 207, 0.18);
    background: rgba(255,255,255,0.92);
    transform: translateY(-10px) scale(1.06) rotate(-1deg);
  }
  .client-card .client-logo-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    max-height: 75px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0%) contrast(1.1);
    transition: filter 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .client-card:hover .client-logo-img {
    filter: grayscale(100%) contrast(0.9);
    transform: scale(1.08) rotate(2deg);
  }
  .client-divider {
    width: 40px;
    height: 2.5px;
    background: linear-gradient(90deg, #32adcf 0%, #0072ff 100%);
    margin: 22px 0 14px 0;
    border-radius: 2px;
    opacity: 0.7;
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .client-card:hover .client-divider {
    width: 60px;
    background: linear-gradient(90deg, #0072ff 0%, #32adcf 100%);
    opacity: 1;
  }
  .client-name {
    font-size: 1.13rem;
    font-weight: 700;
    color: #32adcf;
    letter-spacing: 0.01em;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(50,173,207,0.08);
    transition: color 0.4s cubic-bezier(0.4,0,0.2,1), text-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .client-card:hover .client-name {
    color: #0072ff;
    text-shadow: 0 2px 8px rgba(50,173,207,0.15);
  }

  