.section-usecases {
  width: 100%;
  height: 100%;
  padding: 186px 64px 64px 64px;
  background: var(--Color-Scheme-1-Background, #05070B);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usecases-wrapper {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.usecases-content {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.usecases-heading {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--Color-Scheme-1-Text, white);
}

.usecases-subheading {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--Color-Scheme-1-Text, white);
}

.usecases-button-wrapper {
  display: flex;
  justify-content: center;
}

.usecases-button {
  padding: 10px 24px;
  background: var(--Color-White, white);
  border: 1px solid var(--Color-White, white);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: var(--Color-Neutral-Darkest, black);
  cursor: pointer;
   text-decoration: none;
}

.usecases-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .section-usecases {
    padding: 64px 20px;
  }

  .usecases-heading {
    font-size: 36px;
  }

  .usecases-subheading {
    font-size: 16px;
  }

  .usecases-wrapper {
    gap: 48px;
  }

  .usecases-content {
    gap: 20px;
  }
}

/* section-insurance */
.section-insurance {
  width: 100%;
  padding: 112px 64px;
  background: var(--Color-Mirage-Lightest, #E7E8E9);
  display: flex;
  justify-content: center;
}

.insurance-wrapper {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.insurance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
}

.insurance-content {
  flex: 1 1 0;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insurance-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--Color-Neutral-Darkest, black);
}

.insurance-title {
  font-size: 52px;
  font-weight: 500;
  color: var(--Color-Neutral-Darkest, black);
  line-height: 1.2;
}

.insurance-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--Color-Neutral-Darkest, black);
}

.insurance-image-wrapper {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.insurance-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
}

/* Features Section */
.insurance-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.insurance-feature-card {
  flex: 1 1 calc(33.333% - 20px);
  padding: 16px 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.insurance-icon-placeholder {
  width: 32px;
  height: 32px;
  background: var(--Icon-Positive-Default, #02542D);
  border-radius: 50%;
}

.insurance-feature-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.insurance-feature-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--Color-Neutral-Darkest, black);
}

.insurance-feature-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--Color-Neutral-Darkest, black);
}

/* Responsive */
@media (max-width: 1024px) {
  .insurance-feature-card {
    flex: 1 1 calc(50% - 20px);
  }

  .insurance-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .section-insurance {
    padding: 64px 20px;
  }

  .insurance-row {
    flex-direction: column;
    gap: 40px;
  }

  .insurance-feature-card {
    flex: 1 1 100%;
  }

  .insurance-title {
    font-size: 32px;
  }
}


/* section-bankingfintech */
.section-bankingfintech {
  width: 100%;
  padding: 112px 64px;
  background: var(--Color-Scheme-1-Background, #05070B);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.bankingfintech-wrapper {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.bankingfintech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
}

.bankingfintech-image-wrapper {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.bankingfintech-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
}

.bankingfintech-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bankingfintech-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bankingfintech-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--Color-Scheme-1-Text, white);
}

.bankingfintech-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--Color-Scheme-1-Text, white);
}

.bankingfintech-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--Color-Scheme-1-Text, white);
}

.bankingfintech-benefits {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bankingfintech-benefit-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.benefit-icon-placeholder {
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--Color-Scheme-1-Text, white);
}

.benefit-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--Color-Scheme-1-Text, white);
}

/* Responsive */
@media (max-width: 768px) {
  .section-bankingfintech {
    padding: 64px 20px;
  }

  .bankingfintech-row {
    flex-direction: column;
  }

  .bankingfintech-title {
    font-size: 36px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-description {
    font-size: 16px;
  }
}


/* section-healthcare */

.section-healthcare {
  width: 100%;
  padding: 112px 64px;
  background: var(--Color-Neutral-Darker, #191919);
  display: flex;
  justify-content: center;
}

.healthcare-wrapper {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.healthcare-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
}

.healthcare-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.healthcare-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.healthcare-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--Color-Scheme-1-Text, white);
}

.healthcare-title {
  font-size: 52px;
  font-weight: 500;
  color: var(--Color-Scheme-1-Text, white);
  line-height: 1.2;
}

.healthcare-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--Color-Scheme-1-Text, white);
}

.healthcare-benefits {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.healthcare-benefit-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.healthcare-icon-placeholder {
  width: 32px;
  height: 32px;
  background: var(--Icon-Positive-Tertiary, #14AE5C);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--Color-Scheme-1-Text, white);
}

.benefit-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--Color-Scheme-1-Text, white);
}

.healthcare-image-wrapper {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.healthcare-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-healthcare {
    padding: 64px 20px;
  }

  .healthcare-row {
    flex-direction: column;
    gap: 48px;
  }

  .healthcare-title {
    font-size: 36px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-description {
    font-size: 16px;
  }
}


/* section-government */
.section-government {
  width: 100%;
  padding: 112px 64px;
  background: var(--Color-Scheme-1-Background, #05070B);
  display: flex;
  justify-content: center;
}

.government-wrapper {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.government-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.government-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
}

.government-image-wrapper {
  flex: 1 1 0;
}

.government-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
}

.government-text-block {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.government-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--Color-Scheme-1-Text, white);
}

.government-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--Color-Scheme-1-Text, white);
}

.government-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--Color-Scheme-1-Text, white);
}

.government-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.government-feature-card {
  flex: 1 1 calc(0% - 16px);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--Color-White, white);
}

.government-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* --- md --- */
@media (min-width: 768px) and (max-width: 1024px){
 .government-feature-card {
  flex: 1 1 calc(50% - 16px);
}
}

.feature-title {
  font-size: 22px;
  font-weight: 500;
}

.feature-description {
  font-size: 18px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .section-government {
    padding: 64px 20px;
  }

  .government-intro {
    flex-direction: column;
  }

  .government-title {
    font-size: 36px;
  }

  .government-feature-card {
    flex: 1 1 100%;
  }
}

/* education-section  */
.education-section {
  width: 100%;
  padding: 112px 64px;
  background: black url('../images/Education_BG.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-none{
border-bottom: 0px solid rgba(255, 255, 255, 0.15) !important;
}

.education-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.education-header {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.education-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.education-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.education-subtitle {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.education-title {
  color: white;
  font-size: 52px;
  font-weight: 500;
  line-height: 62.4px;
}

.education-description {
  color: white;
  font-size: 18px;
  line-height: 27px;
}

.education-features {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.education-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.education-feature {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.education-icon {
  width: 32px;
  height: 32px;
  border: 4px solid #14AE5C;
  outline-offset: -2px;
  box-sizing: border-box;
}

.education-feature-title {
  color: white;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
}

.education-feature-text {
  color: white;
  font-size: 18px;
  line-height: 27px;
}

/* Responsive */
@media (max-width: 768px) {
  .education-header {
    flex-direction: column;
    gap: 48px;
  }

  .education-feature-row {
    flex-direction: column;
    gap: 32px;
  }
}

/* manufacturing-section  */
.manufacturing-section {
  width: 100%;
  padding: 112px 64px;
  background: #E7E8E9; /* Mirage-Lightest */
  display: flex;
  justify-content: center;
  align-items: center;
}
.manufacturing-line-clamp {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* จำกัดการแสดงผลให้แสดง 2 บรรทัด */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6; /* ระยะห่างระหว่างบรรทัด */
  height: 3.2em; /* กำหนดความสูงรวมของ 2 บรรทัด (1.6 * 2) */
  margin: 0; /* ปรับระยะห่างให้พอดี */
}

.manufacturing-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.manufacturing-header {
  max-width: 768px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.manufacturing-subtitle {
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.manufacturing-title {
  color: black;
  font-size: 52px;
  font-weight: 500;
  line-height: 62.4px;
}

.manufacturing-description {
  color: black;
  font-size: 18px;
  line-height: 27px;
}

.manufacturing-features {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.manufacturing-feature {
  flex: 1 1 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.manufacturing-icon {
  width: 32px;
  height: 32px;
  border: 2px solid #052A4C; /* Brand--Darkest fallback */
  outline-offset: -1px;
  box-sizing: border-box;
}

.manufacturing-feature-title {
  color: black;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
}

.manufacturing-feature-text {
  color: black;
  font-size: 18px;
  line-height: 27px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .manufacturing-title {
    font-size: 36px;
    line-height: 48px;
  }

  .manufacturing-features {
    gap: 24px;
  }

  .manufacturing-feature {
    flex: 1 1 100%;
  }
}



/* hightech-section */

.hightech-section {
  width: 100%;
  padding: 112px 64px;
  background: #191919; /* Neutral-Darker */
  display: flex;
  justify-content: center;
}

.hightech-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hightech-content {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.hightech-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: white;
}

.hightech-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hightech-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.hightech-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 62.4px;
}

.hightech-description {
  font-size: 18px;
  line-height: 27px;
}

.hightech-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hightech-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hightech-icon {
  width: 24px;
  height: 24px;
  background: white; /* Placeholder for icon */
}

.hightech-feature-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hightech-feature-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
}

.hightech-feature-description {
  font-size: 18px;
  /* line-height: 0px; */
}

.hightech-image {
  flex: 1 1 400px;
}

.hightech-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  max-width: 500px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hightech-title {
    font-size: 36px;
    line-height: 48px;
  }

  .hightech-content {
    flex-direction: column;
    gap: 48px;
  }
}

/* logistics-section */

.logistics-section {
  width: 100%;
  padding: 112px 64px;
  background: #05070B; /* Scheme-1-Background */
  display: flex;
  justify-content: center;
}

.logistics-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.logistics-content {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.logistics-image {
  flex: 1 1 400px;
}

.logistics-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  max-width: 500px;
}

.logistics-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: white;
}

.logistics-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logistics-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.logistics-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 62.4px;
}

.logistics-description {
  font-size: 18px;
  line-height: 27px;
}

.logistics-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logistics-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.logistics-icon {
  width: 24px;
  height: 24px;
  background: white; /* icon placeholder */
}

.logistics-feature-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logistics-feature-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
}

.logistics-feature-description {
  font-size: 18px;
  /* line-height: 0px; */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logistics-title {
    font-size: 36px;
    line-height: 48px;
  }

  .logistics-content {
    flex-direction: column;
    gap: 48px;
  }
}




/* contactoneweb-section */

.contactoneweb-section {
  width: 100%;
  padding: 112px 64px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)),
              url('../images/Contact_BG.svg') center/cover no-repeat;
  display: flex;
  justify-content: center;
}

.contactoneweb-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contactoneweb-content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-between;
  align-items: center;
}

.contactoneweb-text {
  flex: 1 1 400px;
  color: white;
  font-size: 40px;
  font-weight: 500;
  line-height: 62.4px;
}

.contactoneweb-action {
  flex: 0 0 auto;
}

.contactoneweb-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: white;
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 100px;
  border: 1px solid white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contactoneweb-button:hover {
  background: transparent;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contactoneweb-text {
    font-size: 36px;
    line-height: 48px;
    flex: 1 1 0px;
  }

  .contactoneweb-content {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }

  .bankingfintech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.healthcare-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bankingfintech-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.government-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.government-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.government-feature-card{
padding: 0px;
gap: 10px;
}
.education-title {
    color: white;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
}

.education-text {
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.education-feature {
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.education-features {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.manufacturing-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.manufacturing-feature {
    gap: 10px;
}
}




.feature-line {
    width: 2px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
}

.bankingfintech-feature-iconbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 32px;
}