.BuiltSimplify {
  padding: 80px 0;
  background: #f7f7f7;

  .HeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;

    @media (max-width: 991px) {
      flex-direction: column;
      gap: 20px;
    }

    .Title {
      max-width: 500px;
    }

    p {
      max-width: 500px;
    }
  }

  ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;

    @media (max-width: 991px) {
      flex-wrap: wrap;
    }

    li {
      width: calc(33.33% - 16px);
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      border: 1px solid #eee;
      transition: all 0.3s ease;
      position: relative;

      display: flex;
      flex-direction: column;
      gap: 15px;

      @media (max-width: 991px) {
        width: calc(50% - 12px);
      }

      @media (max-width: 576px) {
        width: 100%;
      }

      i {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f43f5e;
        color: #fff;
        font-size: 20px;
        transition: all 0.3s ease;
      }

      h3 {
        margin: 0;
      }

      &:hover {
        background: #e11d48;
        border-color: transparent;

        i {
          background: rgba(255, 255, 255, 0.2);
        }

        h3,
        p {
          color: #fff;
        }
      }
    }
  }
}
.OurService {
  background: #1a0b0f;
  padding: 100px 0;
  color: #fff;
  @media (max-width: 991px) {
    padding: 70px 0;
  }

  @media (max-width: 576px) {
    padding: 50px 0;
  }

  .Top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;

    @media (max-width: 991px) {
      flex-direction: column;
    }

    .Right {
      max-width: 420px;

      p {
        opacity: 0.7;
        margin-bottom: 20px;
      }
    }
  }

  .ServiceList {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
      display: grid;
      grid-template-columns: 80px 1.2fr 1.5fr 80px;
      align-items: center;
      gap: 20px;
      padding: 35px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;

      @media (max-width: 991px) {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .Number {
        opacity: 0.6;
      }

      h3 {
        margin: 0;
      }

      p {
        opacity: 0.7;
        max-width: 550px;
      }

      .Arrow {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;

        i {
          font-size: 20px;
          color: #fff;
          transition: 0.3s;
          transform: rotate(-30deg);
        }
      }

      &:hover {
        .Arrow {
          background-color: var(--primary-color);

          i {
            color: #fff;
            transform: translate(4px, -4px);
          }
        }
      }
    }

    li:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
  }
}
.Stats {
  background: #e11d48;
  padding: 60px 0;

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 20px;
    flex-wrap: wrap;

    @media (max-width: 991px) {
      justify-content: center;
      gap: 30px;
    }

    @media (max-width: 576px) {
      justify-content: space-between;
      gap: 20px;
    }
  }

  .StatItem {
    flex: 1;
    min-width: 200px;

    /* Desktop (auto fit 4 items) */

    /* Tablet → 2 columns */
    @media (max-width: 991px) {
      flex: 0 0 calc(50% - 15px);
    }

    /* Mobile → 2 columns */
    @media (max-width: 576px) {
      flex: 0 0 calc(50% - 10px);
      min-width: unset;
      text-align: start;
    }

    h2 {
      color: #fff;
      font-size: 64px;
      font-weight: 700;
      margin-bottom: 10px;

      @media (max-width: 991px) {
        font-size: 48px;
      }

      @media (max-width: 576px) {
        font-size: 32px;
      }
    }

    p {
      color: #fff;
      opacity: 0.9;
      font-size: 16px;

      @media (max-width: 576px) {
        font-size: 14px;
      }
    }
  }
}
