* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: #fafbfc;
  color: #fff;
  transition: background-color 0.3s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Store & Brand Management Service Section Style  */
.ms-section {
  width: 100%;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: #284d7f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  flex: 1 0 auto;
  min-height: unset;
}

.ms-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
  box-sizing: border-box;
}

.ms-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.7rem;
  gap: 2rem;
}

.ms-title {
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}

.ms-title-right {
  color: #82b741;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
}

.ea-cards {
  width: 100%;
  margin: 2.2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
}

.ea-card {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 200px;
  background: #fff;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgba(40, 77, 127, 0.1);
  padding: 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.7rem;
  margin: 0 auto;
}

.ea-card-title {
  position: absolute;
  top: 1.5rem;
  color: #284d7f;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-align: left;
  line-height: 1.2;
}

.ea-card-title br {
  display: none;
}

.ea-card-content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 100px;
  font-size: 1.1rem;
  gap: 1rem;
}

.ea-card-desc {
  flex: 1;
  color: #444444;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  min-width: 0;
  max-width: 50%;
}

.ea-card-list {
  flex: 1;
  color: #444444;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 50%;
  text-align: left;
}

.ea-card-list li {
  padding-left: 1rem;
}

.ea-card-list li::marker {
  font-size: 0.7em;
}

/* Performance Monitoring Section Style */
.performance-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 3rem 0;
}

.performance-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2vw;
  gap: 1rem;
}

.performance-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.performance-title {
  color: #284d7f;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.performance-subtitle {
  color: #444444;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Poppins", Arial, sans-serif;
}

.performance-desc {
  color: #444444;
  font-size: 1.1rem;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.performance-image {
  max-width: 60%;
}

.performance-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Success Story Section Style */
.success-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20rem 0 5rem 0;
  overflow: hidden;
}

.success-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/ASSET-07.png") center center/cover no-repeat;
  z-index: 1;
}

.success-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.85rem 0 10rem 0.85rem;
  box-shadow: 0 4px 24px rgba(40, 77, 127, 0.1);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.success-left {
  margin-top: 1.2rem;
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  height: 100%;
}

.success-title {
  color: #284d7f;
  font-size: clamp(1.95rem, 2vw, 2rem);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.success-desc {
  color: #444444;
  font-size: clamp(1.15rem, 1vw, 1.25rem);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  max-width: 80%;
}

.success-right {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  gap: 3rem;
  width: 100%;
}

.success-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.2rem;
  z-index: 2;
  position: relative;
  flex: 1;
  max-width: 95%;
}

.success-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.success-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #82b741;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1;
}

.success-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444444;
  opacity: 0.95;
  font-family: "Poppins", Arial, sans-serif;
}

.success-img {
  position: absolute;
  right: -5px;
  bottom: -5px;
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

/* Testimonial Section Style */
.ts-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #284d7f;
  position: relative;
}

.ts-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #284d7f;
  pointer-events: none;
}

.ts-nav-container {
  position: relative;
  max-width: 1000px;
}

.ts-nav {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 9999px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.ts-section {
  position: relative;
}

.ts-prev {
  left: -42px;
}

.ts-next {
  right: -42px;
}

.ts-nav:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.04);
}

.ts-nav:active {
  transform: translateY(-50%) scale(0.98);
}

.ts-nav,
.ts-nav * {
  user-select: none;
  -webkit-user-select: none;
}

.ts-nav {
  -webkit-tap-highlight-color: transparent;
}

.ts-nav:focus {
  outline: none;
}

.ts-nav:focus-visible {
  outline: 2px solid rgba(40, 77, 127, 0.4);
  outline-offset: 2px;
}

.ts-nav svg {
  pointer-events: none;
}

.ts-nav[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.ts-slider {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 5rem;
  padding-bottom: 1rem;
  padding: 5rem 2rem 1rem 2rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.ts-slider::-webkit-scrollbar {
  display: none;
}

.ts-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1rem auto;
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.ts-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.2;
}

.ts-card {
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 2rem;
  padding: 6rem 2rem 5rem 2rem;
  margin-top: 2rem;
  position: relative;
}

.ts-profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -105px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  background: #fff;
}

.ts-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ts-profile-name {
  color: #82b741;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.2;
  text-align: center;
}

.ts-profile-desc {
  color: #284d7f;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.5rem;
}

.ts-profile-desc br {
  display: none;
}

.ts-review-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ts-quote-icon {
  position: absolute;
  top: -35px;
  left: -40px;
  color: #444444;
  font-size: 6rem;
  font-weight: 700;
  font-family: "Poppins", Arial, sans-serif;
}

.ts-review-text {
  position: relative;
  color: #444444;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.2;
  width: 80%;
  text-align: justify;
}

.ts-product-img {
  position: absolute;
  bottom: -4%;
  right: -42px;
  width: 150px;
  height: 150px;
}

.ts-product-img img {
  width: 100%;
  height: 100%;
}

.ts-indicator {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.ts-indicator-track {
  width: min(180px, 60vw);
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}

.ts-indicator-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transform: translateX(0);
  transition: transform 180ms ease;
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Store & Brand Management Service Section Style  */
  .ms-container {
    padding: 0 2.5rem;
  }

  .ms-title {
    font-size: 1.75rem;
  }

  .ms-title-right {
    font-size: 1.35rem;
  }

  .ea-cards {
    margin-top: 1rem;
  }

  .ea-card {
    padding: 1.5rem 2.5rem;
  }

  .ea-card-title {
    font-size: 1.3rem;
  }

  .ea-card-content {
    font-size: 1rem;
  }

  /* Performance Monitoring Section Style */
  .performance-section {
    padding: 3rem 2.5rem;
  }

  .performance-title {
    font-size: 1.65rem;
  }

  .performance-subtitle,
  .performance-desc {
    font-size: 1.1rem;
  }

  .performance-image {
    max-width: 60%;
  }

  /* Success Story Section Style */
  .success-section {
    min-height: 520px;
    padding: 5rem 0 4rem 0;
    align-items: flex-end;
  }

  .success-overlay {
    max-width: 800px;
    padding: 1.5rem;
  }

  .success-left {
    gap: 1.5rem;
    margin-top: 0;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-desc {
    font-size: 1rem;
  }

  .success-stats,
  .success-right {
    gap: 1rem;
    margin-top: 0;
  }

  .success-stats {
    max-width: 100%;
  }

  .success-number {
    font-size: 2.5rem;
  }

  .success-label {
    font-size: 1rem;
  }

  .success-img {
    max-width: 210px;
  }

  /* Testimonial Section Style */
  .ts-slider {
    padding: 3rem 2rem 1rem 2rem;
  }

  .ts-title {
    font-size: 1.5rem;
  }

  .ts-card {
    max-width: 700px;
    padding: 4rem 2rem 3rem 2rem;
    margin-top: 1.5rem;
  }

  .ts-profile-img {
    width: 150px;
    height: 150px;
    top: -85px;
    padding: 0.75rem;
  }

  .ts-profile-name {
    font-size: 1.2rem;
  }

  .ts-profile-desc {
    font-size: 0.9rem;
  }

  .ts-quote-icon {
    font-size: 5.5rem;
    top: -30px;
    left: -35px;
  }

  .ts-review-text {
    font-size: 1rem;
    width: 90%;
  }

  .ts-product-img {
    width: 90px;
    height: 90px;
    bottom: -3%;
    right: -32px;
  }

  .ts-indicator-track {
    width: min(160px, 60vw);
    height: 3.75px;
  }
}

@media (max-width: 992px) {
  .ts-nav {
    display: none;
  }
}

/* Tablet View (600px - 768px) */
@media (max-width: 768px) {
  /* Store & Brand Management Service Section Style  */
  .ms-section {
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .ms-container {
    padding: 0;
  }

  .ms-title {
    font-size: 1.25rem;
  }

  .ms-title-right {
    font-size: 1rem;
  }

  .ea-cards {
    margin-top: 0.5rem;
  }

  .ea-card {
    padding: 1.25rem 2.25rem;
    min-height: 220px;
  }

  .ea-card-title {
    top: 1.25rem;
    font-size: 1.25rem;
  }

  .ea-card-title br {
    display: block;
  }

  .ea-card-content {
    font-size: 0.9rem;
  }

  /* Performance Monitoring Section Style */
  .performance-section {
    padding: 3rem 2rem;
  }

  .performance-content {
    gap: 0.5rem;
  }

  .performance-title {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
  }

  .performance-subtitle,
  .performance-desc {
    font-size: 0.95rem;
  }

  .performance-image {
    max-width: 60%;
  }

  /* Success Story Section Style */
  .success-section {
    min-height: 400px;
    padding: 5rem 0 3rem 0;
  }

  .success-overlay {
    max-width: 590px;
    padding: 1rem;
  }

  .success-left {
    gap: 1.5rem;
    margin-top: 0;
  }

  .success-stats,
  .success-right {
    gap: 1rem;
    margin-top: 0;
  }

  .success-title {
    font-size: 1rem;
  }

  .success-desc {
    font-size: 0.7rem;
  }

  .success-number {
    font-size: 1.7rem;
  }

  .success-label {
    font-size: 0.7rem;
  }

  .success-img {
    max-width: 160px;
  }

  /* Testimonial Section Style */
  .ts-nav-container {
    max-width: 600px;
  }

  .ts-slider {
    padding: 3rem 2rem 0.75rem 2rem;
  }

  .ts-title {
    font-size: 1.25rem;
  }

  .ts-card {
    max-width: 590px;
    padding: 3.5rem 2rem 2.5rem 2rem;
    margin-top: 1.25rem;
  }

  .ts-profile-img {
    width: 120px;
    height: 120px;
    top: -65px;
    padding: 0.65rem;
  }

  .ts-profile-name {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .ts-profile-desc {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .ts-profile-desc br {
    display: block;
  }

  .ts-quote-icon {
    font-size: 4.5rem;
    top: -25px;
    left: -30px;
  }

  .ts-review-text {
    font-size: 1rem;
    width: 85%;
  }

  .ts-product-img {
    width: 90px;
    height: 90px;
    right: -24px;
  }

  .ts-indicator-track {
    width: min(140px, 60vw);
    height: 3.55px;
  }
}

/* Mobile view (max-width: 600px) */
@media (max-width: 600px) {
  /* Store & Brand Management Service Section Style  */
  .ms-container {
    padding: 0 1.2rem;
  }

  .ms-header {
    gap: 0.5rem;
  }

  .ms-title {
    font-size: 1rem;
    width: 100%;
  }

  .ms-title-right {
    font-size: 0.9rem;
    width: auto;
  }

  .ea-cards {
    margin-top: 0;
  }

  .ea-card {
    padding: 1.25rem 1.2rem;
    min-height: 200px;
  }

  .ea-card-content {
    min-height: auto;
    gap: 0.5rem;
  }

  .ea-card-title {
    top: 1rem;
    font-size: 1rem;
  }

  .ea-card-content {
    font-size: 0.75rem;
  }

  .ea-card-list li {
    padding-left: 0.5rem;
  }

  /* Performance Monitoring Section Style */
  .performance-section {
    padding: 3rem 1.5rem;
  }

  .performance-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .performance-subtitle,
  .performance-desc {
    font-size: 0.7rem;
  }

  .performance-image {
    max-width: 50%;
  }

  /* Success Story Section Style */
  .success-section {
    min-height: 310px;
    padding: 5rem 0 2rem 0;
  }

  .success-overlay {
    max-width: 390px;
    padding: 1rem;
  }

  .success-content {
    width: 80%;
  }

  .success-left,
  .success-stats,
  .success-right {
    gap: 0.75rem;
  }

  .success-title {
    font-size: 0.7rem;
  }

  .success-desc {
    font-size: 0.5rem;
  }

  .success-number {
    font-size: 1.2rem;
  }

  .success-label {
    font-size: 0.5rem;
  }

  .success-img {
    max-width: 130px;
  }

  /* Testimonial Section Style */
  .ts-nav-container {
    max-width: 400px;
  }

  .ts-slider {
    padding: 2.5rem 1.5rem 0.5rem 1.5rem;
  }

  .ts-title {
    font-size: 0.95rem;
  }

  .ts-card {
    padding: 3rem 2rem 2rem 2rem;
    margin-top: 1.5rem;
    border-radius: 1rem;
  }

  .ts-profile-img {
    width: 90px;
    height: 90px;
    top: -45px;
    padding: 0.5rem;
  }

  .ts-profile-name {
    font-size: 0.9rem;
  }

  .ts-profile-desc {
    font-size: 0.65rem;
    margin-bottom: 1rem;
  }

  .ts-quote-icon {
    font-size: 3.5rem;
    top: -20px;
    left: -25px;
  }

  .ts-review-text {
    font-size: 0.75rem;
    width: 90%;
  }

  .ts-product-img {
    width: 60px;
    height: 60px;
    right: -16px;
  }

  .ts-indicator-track {
    width: min(120px, 60vw);
    height: 3.35px;
  }
}

/* Mobile Small view (max-width: 435px) */
@media (max-width: 435px) {
  /* Store & Brand Management Service Section Style  */
  .ms-section {
    padding: 3rem 1rem 3rem 1rem;
  }

  .ms-container {
    padding: 0 1.2rem;
  }

  .ms-header {
    margin-bottom: 1.7rem;
    gap: 0.5rem;
  }

  .ms-title {
    font-size: 1rem;
    width: 100%;
  }

  .ms-title-right {
    font-size: 0.8rem;
    width: auto;
  }

  .ea-cards {
    margin-top: 0;
  }

  .ea-card {
    padding: 1.25rem 1.2rem;
    gap: 0.2rem;
  }

  .ea-card-content {
    min-height: auto;
  }

  .ea-card-title {
    font-size: 0.9rem;
  }

  .ea-card-content {
    font-size: 0.7rem;
  }

  .ea-card-list li {
    padding-left: 0.5rem;
  }

  /* Performance Monitoring Section Style */
  .performance-section {
    padding: 3rem 1.5rem;
  }

  .performance-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .performance-subtitle,
  .performance-desc {
    font-size: 0.55rem;
  }

  .performance-image {
    max-width: 50%;
  }

  /* Success Story Section Style */
  .success-section {
    min-height: 230px;
    padding: 5rem 0 2rem 0;
  }

  .success-overlay {
    max-width: 310px;
    padding: 1rem;
    margin: 0 1rem;
  }

  .success-content {
    width: 90%;
  }

  .success-left {
    gap: 0;
  }

  .success-stats {
    max-width: 90%;
  }

  .success-title {
    font-size: 0.55rem;
  }

  .success-desc {
    font-size: 0.4rem;
  }

  .success-number {
    font-size: 0.8rem;
  }

  .success-label {
    font-size: 0.4rem;
  }

  .success-img {
    max-width: 90px;
  }

  /* Testimonial Section Style */
  .ts-nav-container {
    max-width: 320px;
  }

  .ts-slider {
    padding: 2rem 1rem 0.25rem 1rem;
  }

  .ts-title {
    font-size: 0.65rem;
  }

  .ts-card {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 1rem;
  }

  .ts-profile-img {
    width: 70px;
    height: 70px;
    top: -35px;
    padding: 0.5rem;
  }

  .ts-profile-name {
    font-size: 0.7rem;
  }

  .ts-profile-desc {
    font-size: 0.45rem;
    margin-bottom: 1rem;
  }

  .ts-quote-icon {
    font-size: 2.5rem;
    top: -15px;
    left: -20px;
  }

  .ts-review-text {
    font-size: 0.5rem;
    width: 90%;
  }

  .ts-product-img {
    width: 45px;
    height: 45px;
    right: -10px;
  }

  .ts-indicator-track {
    width: min(110px, 60vw);
    height: 3.15px;
  }
}
