* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f7f6;
  overflow-x: hidden;
}

.Numbercontainer {
  padding: 40px 20px;
  background-color: #ffffff;
}

.numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  gap: 30px;
}

.number-card {
  background-color: #ffffff;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  margin: 0;
  text-align: center;
  border: none;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  color: #333;
  font-weight: 600;
}

p {
  font-size: 1.1em;
  color: #555;
  font-weight: 400;
}

.sectionalparts {
  width: 100%;
  padding: 60px 20px;
  background-color: #e0e8f0;
  text-align: center;
  border-bottom: none;
  box-shadow: none;
  transition: none;
}

.sectionalpartsnew {
  width: 100%;
  padding: 60px 20px;
  background-color: #f4f7f6;
  text-align: center;
  border-bottom: none;
  box-shadow: none;
  transition: none;
  border: none;
}

.sectionalparts h1,
.sectionalpartsnew h1 {
  font-size: 2.2rem;
  color: #0056b3;
  margin-bottom: 25px;
  font-weight: 700;
}

.sectionalparts p,
.sectionalpartsnew p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.secbtns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.secbtn {
  border-radius: 20px;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 25px;
  cursor: pointer;
  border: 0;
  transition: background-color 0.3s ease;
}

.secbtn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .sectionalparts h1,
  .sectionalpartsnew h1 {
    font-size: 2rem;
  }

  .sectionalparts p,
  .sectionalpartsnew p {
    font-size: 1rem;
  }

  .number-card {
    min-width: 200px;
    max-width: none;
  }

  h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .sectionalparts,
  .sectionalpartsnew {
    padding: 40px 15px;
  }

  .sectionalparts h1,
  .sectionalpartsnew h1 {
    font-size: 1.8rem;
  }

  .sectionalparts p,
  .sectionalpartsnew p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .numbers {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .number-card {
    width: 90%;
    min-width: 280px;
    padding: 25px;
  }

  h2 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .secbtns {
    flex-direction: column;
    gap: 0.8rem;
  }

  .secbtn {
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .sectionalparts,
  .sectionalpartsnew {
    padding: 30px 10px;
  }

  .sectionalparts h1,
  .sectionalpartsnew h1 {
    font-size: 1.5rem;
  }

  .sectionalparts p,
  .sectionalpartsnew p {
    font-size: 0.9rem;
  }

  .number-card {
    width: 100%;
    min-width: 0;
    padding: 20px;
  }

  h2 {
    font-size: 1.8em;
  }

  p {
    font-size: 0.9em;
  }
}
