.service-card {
    background-color: #F6F6F6; /* tertiary-bg */
    border: 1px solid #C8C8C8;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); /* soft bottom shadow */
    border-radius: 1rem; /* rounded corners (same as rounded-4) */
}

.check-list li {
    color: #000; /* or use primary-txt */
    font-weight: 500;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000; /* secondary color */
    font-weight: bold;
}


/* Make carousel dots black */
.carousel-indicators [data-bs-target] {
  background-color: black;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Optional: adjust spacing if needed */
.carousel-indicators {
  bottom: -60px; /* push dots down a bit */
}


@media (min-width: 992px) {
  .service-card h5 {
    font-size: 1.5rem;
  }

  .service-card p,
  .service-card li {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .service-card ul.check-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
  }

  .service-card ul.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000; /* Bootstrap success green */
    font-weight: bold;
  }
}


/* End section css */
    /* Add right border on medium and up */
    .border-divider {
        border-right: 2px solid #ffffff;
      }
    
      /* Remove right border for the last column */
      .border-divider:last-child {
        border-right: none;
      }
    
      /* Responsive: Switch to bottom border between stacked cards */
      @media (max-width: 767.98px) {
        .border-divider {
          border-right: none;
          border-bottom: 2px solid #ffffff;
        }
    
        .border-divider:last-child {
          border-bottom: none;
        }
      }