.pricing-features-table .table > :not(caption) > * > * {
  padding: 11px 10px !important;
  border-color: #cbc8c8 !important;
    border-bottom: 0.0009em solid !important;
}

.single-service-item-consul {
    position: relative;
    margin-bottom: 25px;
    border-radius: 30px;
    padding: 85px 40px 85px;
    background-color: #e91e6321;
}


.single-service-item-consul .link-btn {
  top: 40px;
  width: 57px;
  right: 40px;
  height: 57px;
  font-size: 30px;
  position: absolute;
}
.single-service-item-consul .link-btn i {
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  position: absolute;
  transform: translateY(-50%);
}
.single-service-item-consul .link-btn:hover {
  background-color: var(--primaryColor) !important;
}
.single-service-item-consul h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.single-service-item-consul::before {
  left: 43px;
  content: "";
  height: 2px;
  bottom: 51px;
  width: 17.708px;
  position: absolute;
  transform: rotate(-45deg);
  background: var(--purpleColor);
}
.single-service-item-consul:hover .link-btn {
  color: var(--whiteColor);
  background-color: #0d0d0d;
}

/* custom tooltip */

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* Add dots under the hoverable text */
  cursor: pointer;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 130px;
  background-color: black;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext {
  width: 130px;
  bottom: 100%;
  left: 65%;
  margin-left: -65px; /* Use half of the width (130/2 = 65), to center the tooltip */
}