.card-style-new-p {
  background: #ffffff;
  border: 1px solid rgba(22, 102, 250, 0.4);
  box-shadow: 0px 4px 10px 3px rgba(22, 102, 250, 0.12);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  min-width: 230px;   /* ✅ Scroll ke liye minimum width */
  flex-shrink: 0;     /* ✅ Shrink na ho scroll me */
}

.card-style-new-p img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 10px;
}

.card-body {
  padding: 10px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #004AAD;
  margin-bottom: 8px;
}

.card-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.services-heading {
  color: #004AAD;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.servicessub-heading {
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.services-para {
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.5;
}

/* ✅ Mobile/Tablet Responsive */
@media (max-width: 991px) {
  .cards-scroll-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;        /* Firefox */
  }

  .cards-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .cards-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #004AAD;
    border-radius: 10px;
  }
}
