
/* Features Section */
.nq-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  background: url('your-background.jpg') no-repeat center center/cover;
}

.nq-feature-box {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.nq-feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.4);
}

.nq-icon {
  font-size: 40px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.nq-title {
  font-size: 20px;
  font-weight: bold;
  color: #ff7a00;
  margin-bottom: 10px;
}

.nq-text {
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 900px) {
  .nq-features {
    flex-direction: column;
    align-items: center;
  }
}
.floating-buttons {
  position: fixed;
  right: 15px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  margin-bottom: 100px;
}

.floating-buttons .btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.floating-buttons .whatsapp {
  background-color: #ec8022;
}

.floating-buttons .call {
  background-color: #ec8022;
}

.floating-buttons .google-review {
  background-color: #ec8022;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-buttons .btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .floating-buttons {
    right: 10px;
    bottom: 80px;
    gap: 8px;
    margin-bottom: 20px;
  }
}
