    .clients-section {
      max-width: 1200px;
      margin: auto;
      padding: 3rem 1.5rem;
      position: relative;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: #f0f0f0;
    }

    .slider {
      position: relative;
      overflow: hidden;
      height: auto;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }

    .slide {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(30px) scale(0.98);
      transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 2.5rem;
    }

    .slide.active {
      display: flex;
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .slide img {
      max-width: 100%;
      max-height: 500px;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
      object-fit: cover;
      flex: 1 1 45%;
      transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .slide img:hover {
      transform: scale(1.05) rotate3d(1, 1, 0, 5deg);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px #00ffe0aa;
    }

    .content {
      max-width: 500px;
      flex: 1 1 45%;
      animation: fadeInUp 1s ease both;
    }

    .content h2 {
      font-size: 2.4rem;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, #ff7e5f, #feb47b, #ff7e5f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .content p {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #ddd;
      font-style: italic;
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      color: #fff;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      padding: 0.7rem 1rem;
      border-radius: 50%;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      z-index: 5;
    }
    .nav-btn:hover {
      background: rgba(255,255,255,0.25);
      box-shadow: 0 0 20px #00ffe0aa;
      transform: scale(1.1);
    }
    .prev { left: 20px; }
    .next { right: 20px; }

    /* Dots */
    .dots {
      text-align: center;
      margin-top: 1.5rem;
    }
    .dot {
      display: inline-block;
      width: 14px;
      height: 14px;
      margin: 0 6px;
      background: #666;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .dot:hover {
      background: #ff7e5f;
    }
    .dot.active {
      background: linear-gradient(135deg, #ff7e5f, #feb47b);
      box-shadow: 0 0 10px #ff7e5faa;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .slide {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
      }
      .slide img {
        width: 100%;
        max-height: 320px;
      }
      .content h2 {
        font-size: 1.8rem;
      }
      .content p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .nav-btn {
        font-size: 1.5rem;
        padding: 0.5rem 0.8rem;
      }
    }