    /* Basic Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Slider Container */
    .sonar-slider-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 600px;
    }

    .sonar-slide-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
      height: 100%;
    }

    .sonar-slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      background-size: cover;
      background-position: center;
    }

    /* Gradient Overlay */
    .sonar-gradient-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(to right, rgb(255, 255, 255),rgb(255, 255, 255, 0.9),rgba(255, 255, 255, 0.1), rgba(255, 255, 255,  0.1)); */
      background:linear-gradient(60deg, rgba(255, 255, 255, 0.8),rgba(255, 255, 255, 0.5),rgba(255, 255, 255, 0.4),rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));

      top: 0;
      left: 0;
      z-index: 1;
    }
    .sonar-text-box {
        max-width: 600px;      /* or 60%, adjust as needed */
        width: 80%;            /* fluid for responsiveness */
        padding: 1rem;
        z-index: 2;
        position: relative;
        color: white;
        }

        /* Optional typography controls */
        .sonar-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        }

        .sonar-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        }


    /* Slide Content */
    .sonar-slide-content {
      position: absolute;
      z-index: 2;
      top: 50%;
      left: 4%;
      transform: translateY(-50%);
      color: #000000;
    }

    .sonar-slide-content h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #000000;
      font-weight: 700;
      line-height: 1.2;
    }

    .sonar-slide-content h4 {
      font-size: 1.2rem;
      font-weight:400;
      margin-bottom: 35px;
      color:#000000;
      line-height: 1.5;
    }

    .sonar-slide-buttons {
      display: flex;
      gap: 1px;
    }

    .sonar-slide-buttons button {
      padding: 18px 30px;
      border: none;
      background-color: #ec262a;
      color: #fff;
      font-size: 1.15rem;
      border-radius: 40px;
      cursor: pointer;
    }

    /* Navigation Dots */
    .sonar-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 2;
    }



    
    .sonar-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: red;
      cursor: pointer;
    }

    .sonar-dot.active {
      background-color: #034ea2;
    }

    /* Responsive Backgrounds via Media Queries */
    .sonar-slide[data-bg-desktop] {
      background-image: attr(data-bg-desktop url);
    }


    @media (max-width: 1024px) {
      .sonar-slide[data-bg-tablet] {
        background-image: attr(data-bg-tablet url);
      }
        .sonar-gradient-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(to right, rgb(255, 255, 255),rgb(255, 255, 255, 0.9),rgba(255, 255, 255, 0.1), rgba(255, 255, 255,  0.1)); */
      background:linear-gradient(24deg, rgb(255, 255, 255),rgb(255, 255, 255), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
      top: 0;
      left: 0;
      z-index: 1;
    }
    }

    @media (max-width: 768px) {
      .sonar-slide[data-bg-mobile] {
        background-image: attr(data-bg-mobile url);
       height: 700px;
      }
    .sonar-gradient-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background:linear-gradient(36deg, rgb(255, 255, 255),rgb(255, 255, 255), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
        top: 0;
        left: 0;
        z-index: 1;
        }
        .sonar-slide-buttons button {
        padding: 10px 20px;
        border: none;
        background-color: #ec262a;
        color: #fff;
        font-size: 1rem;
        cursor: pointer;
        margin-bottom:15px;
    }
      .sonar-slide-content h2 {
        font-size: 2rem;

      }

      .sonar-slide-content h4 {
        font-size: 1rem;
      }
    .sonar-slide-buttons {
      display: block!important;
      gap: 15px;
    }
    }

 .sonar-clientele-section {
  padding-bottom: 6rem;
  text-align: center;
  padding-top: 2rem;
}

.sonar-clientele-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

.sonar-client-logo {
  width: 100%;
  height: auto;
  max-width: 120px;
  margin: auto;
  object-fit: contain;
}

.sonar-load-more {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #ec262a;
  border-radius:40px;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none; /* default hidden on desktop */
}

/* Tablet and Mobile: 4 logos initially, grid 2x2 */
@media (max-width: 1024px) {
  .sonar-clientele-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sonar-client-logo {
    display: none;
  }

  .sonar-client-logo.sonar-visible {
    display: block;
  }

  .sonar-load-more {
    display: inline-block;
  }
}

