.section-card-carousel-container {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  font-family: "Manrope", Arial, sans-serif;
}

.section-card-carousel-header {
  text-align: left;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.header-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-card-carousel-header h3 {
  margin: 0 0 1.5rem 0;
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  max-width: 52rem;
}

.brand-highlight {
  color: var(--blue);
  font-weight: 600;
}

.section-card-carousel-header p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--gray-dark);
  line-height: 1.5;
  max-width: 45rem;
}

.section-cards-carousel-layout {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 0;
  max-width: none;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.service-carousel-card {
  flex: 0 0 100%;
  max-width: 335px;
  padding: 1.25rem;
  height: 306px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(0deg, #F8F8FF 0%, #F5F4FF 100%);
  border-radius: 0.5rem;
  border-top: 4px solid var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-carousel-card-content {
  flex-grow: 1;
}

.service-carousel-card-content h3 {
  margin: 0 0 1rem 0;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.service-carousel-card-content p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

.service-carousel-card-icon {
  margin-top: 2rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-carousel-card-icon img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.service-carousel-controls {
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 1rem;
  
}

.service-carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.service-carousel-dot {
  width: 12px;
  height: 6px;
  border: none;
  border-radius: 3px;
  background-color: #E5E5E5;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-carousel-dot.active {
  background-color: var(--blue);
  width: 86px;
  height: 6px;
}

.service-carousel-arrows {
  display: flex;
  gap: 0.5rem;
}

.service-carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.service-carousel-arrow:hover,
.service-carousel-arrow:focus {
  transform: scale(1.1);
  outline: none;
}

.service-carousel-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.service-carousel-arrow .arrow-icon {
  width: 31px;
  height: 32px;
  display: block;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section-card-carousel-container {
    padding: 3rem 1.37rem;
  }

  .section-card-carousel-header h3 {
    font-size: 2.5rem;
  }

  .service-carousel-dot.active {
    width: 48px;
  }
} 