      .solutions {
        padding: 60px 0;
        background-color: #fff;
        position: relative;
      }
      .solutions-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
      }
      .solutions-title {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        text-align: center;
        margin-bottom: 50px;
      }
      .solutions-title span {
        background: linear-gradient(90deg, #007bff, #00ffd0);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        position: relative;
        justify-content: center;
      }
      .solutions-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }
      .solutions-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
      }
      .mobile-icon {
        display: none;
      }
      .desktop-icon {
        display: block;
      }
      .solutions-text {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        line-height: 1.4;
        text-align: center;
      }
      .solutions-subtext {
        font-size: 14px;
        color: #666;
        line-height: 1.4;
        margin-top: 5px;
      }
      .solutions-line {
        position: absolute;
        top: var(--top);
        left: var(--left);
        width: 600px;
        height: 2px;
        background: linear-gradient(90deg, #007bff, #00ffd0);
        z-index: -1;
      }
      .solutions-item.hidden {
        display: none;
      }
      [data-animate="zoomin"] {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.5s ease, transform 0.5s ease;
      }
      [data-animate="zoomin"].animate {
        opacity: 1;
        transform: scale(1);
      }
      .solutions-button {
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(90deg, #007bff, #00ffd0);
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
      }
      .solutions-button:hover {
        background: linear-gradient(90deg, #0056b3, #00b3a0);
      }

      @media (max-width: 700px) {
        .solutions-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .solutions-item {
          max-width: 100%;
        }
        .mobile-icon {
          display: block;
        }
        .desktop-icon {
          display: none;
        }
        .solutions-item.hidden {
          display: none;
        }
        [data-animate="zoomin"] {
          opacity: 1;
          transform: none;
          transition: none;
        }
        .solutions-line {
          display: none;
        }
      }

      @media (max-width: 960px) and (min-width: 701px) {
        .solutions-grid {
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        .solutions-item {
          max-width: 200px;
        }
        .solutions-line {
          width: 400px;
        }
      }