.services-section-unique {
  position: relative;
  padding: 100px 0;
  margin-top: 15%;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #f3f3f3;
  z-index: -1;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
  text-align: center;
}

.services-subtitle {
  color: #FF3131;
  font-weight: 600;
  font-size: 16px;
}

.services-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.services-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.service-box {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  flex: 1 1 calc(25% - 40px);
  border-top: 4px solid #FF3131;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: #FF3131;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 30px;
}

.service-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #666;
  flex-grow: 1;
}

.btn-more {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
font-weight: 600;
  color: #FF3131;
	background-color: #F3F3F3;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.btn-more:hover {
  background-color: #FF3131;
  color: white;
}

@media (max-width: 768px) {
  .service-box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .service-box {
    flex: 1 1 100%;
  }
}

@media (max-width: 1199px) {
  .services-container {
    padding: 0 15px;
  }

  .services-heading {
    font-size: 2rem; 
  }

  .services-boxes {
    gap: 30px;
  }

  .service-box {
    flex: 1 1 calc(33.333% - 30px);
  }
}

@media (max-width: 768px) {
  .services-section-unique {
      padding: 80px 35px;
    display: block;
  }

  .services-heading {
    font-size: 1.75rem;
  }

  .services-boxes {
    gap: 30px;
  }

  .service-box {
    flex: 1 1 calc(100% - 20px);
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.25rem; 
  }

  .btn-more {
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .services-section-unique {
    padding: 60px 35px;
    margin-top: 5%;
  }

  .services-heading {
    font-size: 1.5rem; 
  }

  .services-boxes {
    gap: 25px;
  }

  .service-box {
    flex: 1 1 100%;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1rem; 
  }

  .services-subtitle {
    font-size: 0.875rem; 
  }

  .service-box h4 {
    font-size: 1.125rem; 
  }

  .service-box p {
    font-size: 0.8125rem; 
  }

  .btn-more {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}
