  /* BRANDS */
  .brands {
      /* background: #f8f9fa; */
      padding: 40px 0;
  }

  .brand-box {
      /* background: white; */
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
      text-align: center;
      transition: .3s;
      animation: float 3s infinite ease-in-out;
  }

  .brand-box img {
      max-width: 120px;
      height: 60px;
      object-fit: contain;
      /* filter: grayscale(100%); */
      transition: .3s;
  }

  .brand-box:hover img {
      /* filter: grayscale(0%); */
      transform: scale(1.1);
  }

  @keyframes float {
      0% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-8px);
      }

      100% {
          transform: translateY(0);
      }
  }

 

  /* CTA */
  .cta {
      background: #0d6efd;
      color: white;
      padding: 60px 0;
      text-align: center;
  }

  .cta h2 {
      animation: pulse 2s infinite;
      color: #fff;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }

      100% {
          transform: scale(1);
      }
  }

  .cta .call {
      color: #fff;
  }

  /* Services Grid */
  .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
  }

  .service-box {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 8px 18px rgb(0 0 0 / 19%);
      transition: .3s;
  }

  .service-box:hover {
      transform: translateY(-6px);
  }

  .service-box h3 {
      color: #010A35;
      margin-bottom: 10px;
  }

  .service-box p {
      font-size: 15px;
      color: #000;
  }


  /* Why Choose Us */
  .why {
      background: #111;
      color: white;
      padding: 60px 20px;
  }

  .why ul {
      max-width: 900px;
      margin: auto;
      list-style: none;
      padding-top: 20px;
  }

  .why li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  /* Engineers */
  .engineers {
      background: white;
      padding: 60px 20px;
      text-align: center;
  }

  .engineers p {
      max-width: 850px;
      margin: 20px auto;
      color: #444;
  }