.mainshopify-container{
  background-color: #005bb0;
  color: white;
}
.about-shopify p{
  margin-top: 10px;
}

.about-shopify{
  padding: 40px 20px;
  /* background: #f0f2f9; */
  max-width: 1200px;
  margin:auto;
}

.ds-solutions-section {
  padding: 70px 20px;
  background: #f0f2f9;
  
}

.ds-solutions-header { 
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.ds-solutions-header h2 {
  font-size: 1.8rem;
  color: #1a2b4a;
  margin-bottom: 15px;
}

/* Main Card Styling */
.ds-solutions-card {
  background: #f0f2f9; /* Soft blue-grey background from image */
  /* border-radius: 30px; */
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  min-height: 450px;
  
  
}

.ds-card-text {
  flex: 1.2;
}
.ds-card-image {
  flex: 1;
}

.ds-card-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ds-card-text h3 {
  font-size: 1.6rem;
  color: #1a2b4a;
  margin-bottom: 20px;
}

.ds-card-text p {
  color: #4a5568;
  /* line-height: 1.8; */
  font-size: 0.95rem;
}

/* Progress Bar */
.ds-progress-container {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  margin-bottom: 30px;
  /* border-radius: 2px; */
}

.ds-progress-bar {
  width: 15%; /* Initial state for first tab */
  height: 100%;
  background: #1a2b4a;
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Navigation Tabs */
.ds-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ds-tab-btn {
  border: none;
  background: #eef2ff;
  color: #005bb0;
  padding: 5px 20px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.ds-tab-btn.active {
  background: #1a2b4a;
  color: #fff;
}


/* Responsive */
@media (max-width: 992px) {
  .ds-solutions-card {
    flex-direction: column;
    padding: 40px;
    text-align: left;
  }
  .ds-tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .ds-solutions-header{
text-align: left;
  }
   .ds-solutions-header h2{

font-size: 1.5rem;

  }
}
