/* Start custom CSS for wd_text_block, class: .elementor-element-d5cf01f *//* Container Layout */
.service-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px; /* Space between cards */
  padding: 40px 20px;
  background-color: #f8fafc; /* Subtle off-white page background to pop the white cards */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Individual Card Styling */
.service-card {
  background-color: #ffffff;
  border-radius: 12px; /* Smooth rounded corners */
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, subtle modern shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns content to the left */
}

/* Subtle hover effect for better UX */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Icon Wrap (Circular Background) */
.service-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #e0e7ff; /* Soft lavender/blue icon background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 24px;
  height: 24px;
}

/* Typography styling */
.service-title {
  font-size: 1.25rem;
  color: #1e293b; /* Deep slate gray for title */
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.service-description {
  font-size: 0.95rem;
  color: #64748b; /* Soft gray for body text */
  line-height: 1.6;
  margin: 0;
}

/* Responsive design for tablets and mobile devices */
@media (max-width: 1024px) {
  .service-grid-container {
    grid-template-columns: repeat(2, 1fr); /* Drops to 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .service-grid-container {
    grid-template-columns: 1fr; /* Drops to a single column stack on mobile mobile */
    gap: 20px;
  }
}/* End custom CSS */