/* Granite Production Process Section */
.gpp * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gpp-body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fcfbf9;
  color: #333;
  text-align: center;
}

.gpp-overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 60px 20px;
}

.gpp-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.gpp-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.gpp-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.gpp-step {
  flex: 1 1 200px;
  max-width: 220px;
}

.gpp-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #e0dcd6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #333;
}

.gpp-step-number {
  font-size: 60px;
  font-weight: bold;
  opacity: 0.1;
  position: relative;
  top: 30px;
  color: #333;
}

.gpp-step-title {
  color: #444;
  font-size: 20px;
  margin: 10px 0 10px;
}

.gpp-step-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.gpp-btn {
  display: inline-block;
  background-color: #e0dcd6;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  margin-top: 40px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.gpp-btn:hover {
  background-color: #d4cfc9;
}
.custom-icon {
    color: #ff9478;
    font-size: 18px;
}

   