html { overflow-y: scroll !important;}::-webkit-scrollbar {display: none;}
.itopplus-background {
background-image:none; 
background-color:none; 

}
/* ======================== GLOBAL STYLES ======================== */
body,
#main-content,
#mainmenu5fab972323f2b5001435a1ee,
/* Footer */
#Contentmanager,
.content-inline-box,
.section-bg,
.itopplus-footer,
.footer-wrapper {
  background-color: transparent !important;
}

.box-shadow,
.shadow,
.bg-light-gray {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ======================== แก้ช่องว่างด้านบนสุดของเว็บไซต์ ======================== */
body,
html {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

header,
#header,
#mainmenu5fab972323f2b5001435a1ee {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.container,
.wrapper,
.site-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.section-top-banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
  height: auto !important;
}

/* ======================== LINK STYLE ======================== */
a,
a:link,
a:visited {
  color: #333333 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #000000 !important;
  text-decoration: underline;
}

/* ======================== TYPOGRAPHY ======================== */
body {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  font-family: 'Prompt',
  sans-serif;
}

/* ======================== MENU ======================== */
.navbar-default {
  /* เดิมที่มีอยู่ */
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* เพิ่มความเฉพาะเจาะจง */
body .navbar-default {
  background-color: #ffffff !important;
  /* พื้นหลังสีขาว */
}

/* จัดเมนูกลาง */
.navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  flex-wrap: nowrap;
  /* ป้องกันไม่ให้เมนูหักบรรทัด */
  gap: 10px;
  /* เพิ่มช่องว่างระหว่างเมนู */
  margin: 0;
  padding: 0;
  box-shadow: none !important;
  /* เพิ่มเพื่อให้แน่ใจว่าระดับเงาไม่ทำให้เกิดปัญหา */
}

/* เพิ่มความเฉพาะเจาะจง */
body .navbar-nav {
  background-color: #ffffff !important;
  /* พื้นหลังเมนูเป็นสีขาว */
}

.navbar-header {
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar-nav > li {
  float: none;
  display: inline-block;
  margin: 0 15px;
}

/* ปรับลิงก์ในเมนู */
.navbar-default .navbar-nav > li > a {
  color: #333 !important;
  padding: 15px 20px;
  font-weight: 500;
  white-space: nowrap;
  /* ป้องกันไม่ให้คำยาวๆ ตัดบรรทัด */
  text-overflow: ellipsis;
  /* ให้แสดง "..." เมื่อคำยาวเกินไป */
  overflow: hidden;
  font-size: 14px;
  /* ปรับขนาดให้เหมาะสมกับการแสดงผล */
}

/* ปรับข้อความเมนูเมื่อ hover */
.navbar-default .navbar-nav > li > a:hover {
  color: #000 !important;
  background-color: #f5f5f5 !important;
  text-decoration: underline;
}

/* ======================== MENU HOVER EFFECT ======================== */
.navbar-nav > li > a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #000000;
  /* เส้นขีดใต้เมนู */
  transition: width 0.3s;
  margin: 0 auto;
}

.navbar-nav > li > a:hover::after {
  width: 100%;
}

/* ======================== CONTACT SECTION ======================== */
.contact-links-wrapper {
  text-align: center;
  margin: 50px auto 30px;
  font-family: 'Prompt',
  sans-serif;
  max-width: 980px;
  padding: 0 15px;
}

.contact-heading {
  font-size: 1.8em;
  font-weight: 500;
  color: #000;
  margin-bottom: 25px;
}

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.contact-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 1.05em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: #000;
  text-decoration: underline;
}

.contact-links a img {
  height: 30px;
  width: 30px;
  margin-right: 10px;
  transition: opacity 0.3s;
}

.contact-links a img:hover {
  opacity: 0.7;
}

/* ======================== SERVICE BOX ======================== */
.service-box {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.05);
}

.service-box:active {
  transform: scale(0.98);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

/* ======================== NAVBAR DARK MODE ======================== */
@media (prefers-color-scheme: dark) {
  .navbar-default {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none !important;
  }

  .navbar-nav > li > a {
    color: #cccccc !important;
    position: relative;
    padding: 10px 16px;
    font-weight: 400;
  }

  .navbar-nav > li > a:hover {
    color: #ffffff !important;
  }

  .navbar-nav > li > a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s;
    margin: 0 auto;
  }
}

/* ======================== NORMAL MODE ======================== */
@media (prefers-color-scheme: light) {
  .navbar-default {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none !important;
  }

  .navbar-nav > li > a {
    color: #000 !important;
    /* สีตัวอักษรเป็นสีดำ */
    position: relative;
    padding: 10px 16px;
    font-weight: 400;
  }

  .navbar-nav > li > a:hover {
    color: #000 !important;
    /* เปลี่ยนสีตัวอักษรเมื่อ hover */
  }

  .navbar-nav > li > a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #000;
    /* เปลี่ยนเป็นสีดำ */
    transition: width 0.3s;
    margin: 0 auto;
  }

  .navbar-nav > li > a:hover::after {
    width: 100%;
  }

  .navbar-icon-dark img {
    height: 24px;
    width: 24px;
    filter: grayscale(100%) brightness(1.1);
    transition: filter 0.3s ease;
  }

  .navbar-icon-dark img:hover {
    filter: brightness(1.6);
  }
}

/* ======================== MOBILE MENU ======================== */
@media (max-width: 768px) {
  /* เมนูหลัก */
  .navbar-default .navbar-nav > li > a {
    color: #000 !important;
    /* สีตัวอักษรเป็นสีดำ */
    background-color: transparent !important;
    /* พื้นหลังโปร่งใส */
    border: none !important;
    /* ไม่มีขอบ */
    font-size: 14px !important;
    /* ขนาดตัวอักษร */
  }

  /* เมนูย่อย */
  .navbar-default .navbar-nav .dropdown-menu > li > a {
    color: #000 !important;
    /* สีตัวอักษรในเมนูย่อยเป็นสีดำ */
    font-size: 14px !important;
    /* ขนาดตัวอักษรเมนูย่อย */
  }

  /* เมนูย่อยเมื่อ hover */
  .navbar-default .navbar-nav .dropdown-menu > li > a:hover {
    color: #000 !important;
    /* เปลี่ยนสีตัวอักษรเป็นสีดำเมื่อ hover */
    background-color: transparent !important;
    /* พื้นหลังโปร่งใส */
  }

  /* เมนูหลักเมื่อ hover หรือ focus */
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: #000 !important;
    /* สีตัวอักษรเป็นสีดำ */
    background-color: transparent !important;
    /* พื้นหลังโปร่งใส */
  }
}

/* ===================== SERVICE STEPS SECTION ===================== */
.service-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* ปรับให้ขนาดกริดเล็กลง */
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.service-step {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease,
  box-shadow 0.3s ease;
  max-width: 250px;
  /* กำหนดขนาดสูงสุดให้แต่ละกล่อง */
}

.service-step:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.service-step:active {
  transform: scale(0.98);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-step img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.step-title {
  font-size: 1.5em;
  color: #000;
  font-weight: 700;
  margin-top: 15px;
}

/* ปรับรูปภาพให้สวยงามในอุปกรณ์มือถือ */
@media (max-width: 768px) {
  .service-steps {
    grid-template-columns: 1fr 1fr;
    /* ปรับเป็น 2 คอลัมน์ในหน้าจอเล็ก */
  }

  .service-step {
    padding: 15px;
    font-size: 14px;
  }

  .step-title {
    font-size: 1.2em;
  }

  .service-step img {
    width: 100%;
  }
}

.itopplus-sidebar-menu-single a:link {
    color: #333 !important;
}

.itopplus-sidebar-main a:link {
    color: #333 !important;
}

/* ===================== CONTACT INQUIRY SECTION ===================== */
.contact-inquiry-wrapper {
  text-align: center;
  margin: 40px auto;
  font-family: 'Prompt',
  sans-serif;
}

.contact-heading {
  font-size: 1.8em;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.contact-links-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 1.1em;
  font-weight: 500;
}

.contact-icon {
  margin-right: 10px;
  height: 28px;
  width: 28px;
}

.contact-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 90%;
  margin: 40px auto 0;
}

/* ===================== SERVICES SECTION ===================== */
.services-section {
  padding: 60px 20px;
  color: #fff;
  font-family: 'Prompt',
  sans-serif;
}

.services-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.services-title {
  font-size: 2em;
  font-weight: 600;
  border-bottom: 2px solid #666;
  display: inline-block;
  padding-bottom: 10px;
  margin: 0;
  /* เพิ่มเพื่อล้าง margin เริ่มต้นของ h2 */
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.service-item {
  text-align: center;
  flex: 1 1 300px;
  text-decoration: none;
  color: #fff;
}

/* นำสไตล์ของ .service-box ที่เคยมีอยู่มาใช้ */
.service-box {
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  /* เพิ่มพื้นหลังสีดำโปร่งใส */
}

.service-box:hover {
  transform: translateY(-6px);
}

.service-icon {
  margin-bottom: 20px;
  height: 80px;
}

.service-name {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.service-description {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
  /* เพิ่ม line-height ให้อ่านง่ายขึ้น */
  margin: 0;
  /* เพิ่มเพื่อล้าง margin เริ่มต้นของ p */
}

/* ปรับขนาดเล็กสำหรับมือถือ */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    /* เรียงเป็นแนวตั้ง */
    align-items: center;
    /* จัดตรงกลาง */
    gap: 20px;
  }

  .service-item {
    width: 100%;
    /* ให้เต็มความกว้าง */
  }
}

/* ===================== WARRANTY SECTION ===================== */
.warranty-section {
  padding: 60px 20px;
  color: #fff;
  font-family: 'Prompt',
  sans-serif;
}

.warranty-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.warranty-icon {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.warranty-text {
  font-size: 1.1em;
  /* ปรับขนาดฟอนต์ให้สอดคล้อง */
  color: #fff;
  line-height: 1.6;
  /* เพิ่ม line-height เพื่อให้อ่านง่ายขึ้น */
}

/* ===================== PROMOTION TITLE SECTION ===================== */
.promotion-title-container {
  text-align: center;
  /* เพิ่มเพื่อจัดข้อความให้อยู่ตรงกลาง */
  margin: 60px auto 40px;
  width: max-content;
  font-family: 'Prompt',
  sans-serif;
}

.promotion-title {
  font-size: 2em;
  font-weight: 600;
  border-bottom: 2px solid #666;
  padding-bottom: 10px;
  color: #fff;
  margin: 0;
}

/* ===================== OUR WORKS TITLE SECTION ===================== */
.our-works-title-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 40px;
  text-align: center;
  font-family: 'Prompt',
  sans-serif;
  /* เพิ่มฟอนต์ Prompt */
}

.our-works-divider {
  height: 2px;
  background-color: #666;
  width: 100%;
  margin-bottom: 20px;
}

.our-works-title {
  font-size: 2em;
  font-weight: 600;
  color: #fff;
  margin: 0;
  /* ล้าง margin เริ่มต้นของ h2 */
}

/* ===================== SERVICE STEPS SECTION ===================== */
.service-steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.service-step-link {
  flex: 1 1 calc(33.333% - 26.66px);
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  box-sizing: border-box;
}

.service-step {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 320px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.service-step-image {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
}

.service-box h3,
.service-step-title {
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  color: #fff;
  margin: 10px 0;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ปรับขนาดบนหน้าจอเล็ก */
@media (max-width: 768px) {
  .service-step-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-box h3,
  .service-step-title {
    font-size: 1.2em;
    line-height: 1.4;
    padding: 0 15px;
  }

  .service-step {
    min-height: auto;
  }
}

/* ================== RESPONSIVE FOR MOBILE ================== */
@media (max-width: 768px) {
  .service-steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-step-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-step {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .service-step-title {
    font-size: 1.1em;
    padding: 0 15px;
  }
}

/* ===================== KNOWLEDGE ARTICLE SECTION ===================== */
.knowledge-articles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.knowledge-article-container {
  flex: 0 1 calc(50% - 20px); /* 2 กล่องต่อแถว */
  background: #000;
  border: 1px solid #fff;
  padding: 15px;
  color: #fff;
  min-height: 300px; /* ใช้ค่านี้ที่สูงสุด */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch; /* ให้ยืดความสูงเท่ากัน */
}

.knowledge-article-text-wrapper {
  flex: 1; /* ดันให้เนื้อหาในแต่ละกล่องขยายเท่ากัน */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ========== MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
  .knowledge-articles-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
    max-width: 100%;
  }

  .knowledge-article-container {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 24px;
    padding: 16px;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
  }

  .knowledge-article-image-wrapper {
    flex: 0 0 80px;
  }

  .knowledge-article-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
  }

  .knowledge-article-text-wrapper {
    flex: 1;
    text-align: left;
  }

  .knowledge-article-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .knowledge-article-description {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.4em;
  }
}

/* ===================== BOOK SURVEY BUTTON SECTION ===================== */
.book-survey-button {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* เพิ่ม transition */
}

.book-survey-button:hover {
  transform: scale(1.05);
  /* ขยายขนาดเล็กน้อย */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* เพิ่มเงา */
}

.book-survey-button img {
  height: 48px;
}

/* ===================== CONSULT FREE BUTTON SECTION ===================== */
.consult-free-button {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* เพิ่ม transition */
}

.consult-free-button:hover {
  transform: scale(1.05);
  /* ขยายขนาดเล็กน้อย */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* เพิ่มเงา */
}

.consult-free-button img {
  height: 48px;
}

/* ===================== TRUSTED PROJECTS SECTION ===================== */
.trusted-projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* หรือ space-around, space-between */
  gap: 20px;
  /* ระยะห่างระหว่างโครงการ */
  max-width: 1200px;
  /* ปรับความกว้างสูงสุด */
  margin: 0 auto;
  /* จัดกึ่งกลาง */
}

.trusted-project-item {
  width: 200px;
  /* ปรับความกว้างของแต่ละกล่อง */
  height: 150px;
  /* ปรับความสูงของแต่ละกล่อง */
  border: 1px solid #ccc;
  /* กำหนดขอบ */
  border-radius: 10px;
  /* ขอบมน */
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* เงาเล็กน้อย */
  transition: transform 0.3s ease;
  /* เพิ่ม transition */
}

.trusted-project-item:hover {
  transform: translateY(-5px);
  /* ยกขึ้นเล็กน้อยเมื่อ hover */
}

.trusted-project-logo {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  /* ปรับขนาดรูปภาพให้พอดีกับกล่อง */
  margin-bottom: 10px;
  /* ระยะห่างจากชื่อโครงการ */
}

.trusted-project-title {
  font-size: 1em;
  font-weight: bold;
  margin-top: 10px;
}

/* ปรับขนาดเล็กสำหรับมือถือ */
@media (max-width: 768px) {
  .trusted-projects-container {
    justify-content: center;
    /* จัดรายการตรงกลาง */
  }

  .trusted-project-item {
    width: 150px;
    /* ปรับขนาดกล่อง */
    height: 120px;
  }
}

/* ===================== ABOUT US SECTION ===================== */
.about-us-container {
  padding: 30px;
  margin-top: 20px;
  font-family: 'Prompt', sans-serif;
}

.about-us-title {
  font-size: 2em;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  margin-top: 5px; /* ลดระยะห่างด้านบน */
}

.about-us-content {
  font-size: 1.1em;
  color: #333;
  line-height: 1.7;
}

/* ===================== ABOUT US TITLE SECTION ===================== */
.about-us-title-container {
  text-align: center;
  margin: 40px auto; /* ปรับ margin ให้เหมาะสม */
  font-family: 'Prompt', sans-serif; /* ใช้ฟอนต์ Prompt */
}

.about-us-title {
  font-size: 1.8em; /* หรือขนาดที่เหมาะสม */
  font-weight: 700; /* เปลี่ยนเป็น 700 เพื่อให้เป็นตัวหนา */
  color: #000; /* สีตัวอักษรเป็นสีดำ */
  margin-bottom: 20px; /* ระยะห่างด้านล่าง */
}

/* ===================== ABOUT COMPANY SECTION ===================== */
.about-company {
  padding: 20px;
  font-family: 'Prompt', sans-serif; /* ใช้ฟอนต์ Prompt */
  /* background-color: rgba(0, 0, 0, 0.05); /* พื้นหลังสีเทาอ่อน (ถ้าต้องการ) */
  /* border: 1px solid #ddd; /* เส้นขอบสีเทาอ่อน (ถ้าต้องการ) */
  /* border-radius: 10px; /* ขอบมน (ถ้าต้องการ) */
}

.who-is {
  font-size: 1.2em;
  color: #777;
  margin-bottom: 5px;
}

.company-name {
  font-size: 1.8em;
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
}

.company-description {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 15px;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.location-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: grayscale(100%) brightness(0.8); /* ปรับสีไอคอน (ถ้าต้องการ) */
}

.detail-text {
  font-size: 1em;
  color: #333;
  line-height: 1.4;
}

.detail-text strong {
  font-weight: bold;
  color: #000;
}

/* ===================== WHY CHOOSE US SECTION ===================== */
.why-choose-us-container {
  padding: 30px;
  font-family: 'Prompt', sans-serif; /* ใช้ฟอนต์ Prompt */
}

.why-choose-us-title {
  font-size: 2em; /* ขนาดหัวข้อ */
  font-weight: 600; /* ความหนาหัวข้อ */
  color: #000; /* สีหัวข้อ */
  text-align: center; /* จัดหัวข้อตรงกลาง */
  margin-bottom: 20px; /* ระยะห่างด้านล่างหัวข้อ */
}

.why-choose-us-list {
  list-style: none; /* ลบสัญลักษณ์รายการ */
  padding-left: 0; /* ลบ padding ด้านซ้าย */
  margin-top: 30px; /* ระยะห่างด้านบนรายการ */
  line-height: 1.8; /* ความสูงบรรทัด */
}

.why-choose-us-list li {
  font-size: 1.1em; /* ขนาดรายการ */
  color: #333; /* สีรายการ */
  display: flex; /* จัดรายการแบบ flex */
  align-items: center; /* จัดรายการแนวตั้งตรงกลาง */
  margin-bottom: 10px; /* ระยะห่างด้านล่างแต่ละรายการ */
}

.why-choose-us-list li::before {
  content: "✔"; /* สัญลักษณ์รายการ */
  display: inline-block; /* แสดงผลเป็น inline-block */
  width: 1em; /* กำหนดความกว้าง */
  text-align: center; /* จัดสัญลักษณ์ตรงกลาง */
  margin-right: 0.5em; /* ระยะห่างด้านขวา */
  color: #000; /* สีสัญลักษณ์ */
  font-size: 1.2em; /* ขนาดสัญลักษณ์ */
}

/* ===================== RESPONSE SECTION ===================== */
.response-section {
  padding: 30px; /* ปรับระยะห่างภายใน */
  font-family: 'Prompt', sans-serif; /* ใช้ฟอนต์ Prompt */
}

.section-title {
  font-size: 1.8em; /* ขนาดหัวข้อ */
  font-weight: 600; /* ความหนาหัวข้อ */
  color: #000; /* สีหัวข้อ */
  margin-bottom: 20px; /* ระยะห่างด้านล่างหัวข้อ */
}

.response-list {
  list-style: none; /* ลบสัญลักษณ์รายการ */
  padding-left: 0; /* ลบ padding ด้านซ้าย */
  margin-top: 20px; /* ระยะห่างด้านบนรายการ */
}

.response-item {
  display: flex; /* จัดรายการแบบ flex */
  align-items: center; /* จัดรายการแนวตั้งตรงกลาง */
  margin-bottom: 15px; /* ระยะห่างด้านล่างแต่ละรายการ */
}

.list-icon {
  width: 30px; /* ขนาดไอคอน */
  height: 30px; /* ขนาดไอคอน */
  margin-right: 15px; /* ระยะห่างด้านขวาไอคอน */
}

.list-text {
  font-size: 1.1em; /* ขนาดข้อความ */
  color: #333; /* สีข้อความ */
  line-height: 1.6; /* ความสูงบรรทัด */
  font-weight: 500; /* ความหนาข้อความ */
}

/* ===================== RESPONSE SECTION ===================== */
.response-section {
  padding: 30px;
  font-family: 'Prompt', sans-serif; /* ใช้ฟอนต์ Prompt */
}

.section-title {
  font-size: 1.8em; /* ขนาดหัวข้อ */
  font-weight: 600; /* ความหนาหัวข้อ */
  color: #000; /* เปลี่ยนสีเป็นสีดำ */
  text-align: center; /* จัดหัวข้อตรงกลาง */
  margin-bottom: 20px; /* ระยะห่างด้านล่างหัวข้อ */
}

.response-list {
  list-style: none; /* ลบสัญลักษณ์รายการ */
  padding-left: 0; /* ลบ padding ด้านซ้าย */
  margin-top: 20px; /* ระยะห่างด้านบนรายการ */
}

.response-item {
  display: flex; /* จัดรายการแบบ flex */
  align-items: center; /* จัดรายการแนวตั้งตรงกลาง */
  margin-bottom: 15px; /* ระยะห่างด้านล่างแต่ละรายการ */
}

.list-icon {
  width: 30px; /* ขนาดไอคอน */
  height: 30px; /* ขนาดไอคอน */
  margin-right: 15px; /* ระยะห่างด้านขวาไอคอน */
}

.list-text {
  font-size: 1.1em; /* ขนาดข้อความ */
  color: #333; /* สีข้อความ */
  line-height: 1.6; /* ความสูงบรรทัด */
  font-weight: 500; /* ความหนาข้อความ */
}
/* ===================== WHY CHOOSE US SECTION ===================== */
.why-choose-us-container {
  padding: 30px;
  font-family: 'Prompt', sans-serif; /* ใช้ฟอนต์ Prompt */
}

.why-choose-us-title {
  font-size: 2em; /* ขนาดหัวข้อ */
  font-weight: 600; /* ความหนาหัวข้อ */
  color: #000; /* สีหัวข้อ */
  text-align: center; /* จัดหัวข้อตรงกลาง */
  margin-bottom: 20px; /* ระยะห่างด้านล่างหัวข้อ */
}

.why-choose-us-list {
  list-style: none; /* ลบสัญลักษณ์รายการ */
  padding-left: 0; /* ลบ padding ด้านซ้าย */
  margin-top: 30px; /* ระยะห่างด้านบนรายการ */
  line-height: 1.8; /* ความสูงบรรทัด */
}

.why-choose-us-list li {
  font-size: 1.1em; /* ขนาดรายการ */
  color: #333; /* สีรายการ */
  display: flex; /* จัดรายการแบบ flex */
  align-items: center; /* จัดรายการแนวตั้งตรงกลาง */
  margin-bottom: 10px; /* ระยะห่างด้านล่างแต่ละรายการ */
}

.why-choose-us-list li::before {
  content: "✔"; /* สัญลักษณ์รายการ */
  display: inline-block; /* แสดงผลเป็น inline-block */
  width: 1em; /* กำหนดความกว้าง */
  text-align: center; /* จัดสัญลักษณ์ตรงกลาง */
  margin-right: 0.5em; /* ระยะห่างด้านขวา */
  color: #000; /* สีสัญลักษณ์ */
  font-size: 1.2em; /* ขนาดสัญลักษณ์ */
}

.why-choose-us-list li span:last-child {
  flex-grow: 1;
}

.company-mention {
  font-size: 0.9em;
  color: #555; /* สีเทาเข้ม */
  margin-top: 20px;
  text-align: center;
}

.about-us-title-container {
  text-align: center;
  margin: 40px auto;
  font-family: 'Prompt', sans-serif;
}

.about-us-title {
  font-size: 2em;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  border-bottom: 2px solid #666;
  display: inline-block;
  padding-bottom: 10px;
}

/* ================= Footer Styles ================= */
.footer {
  padding: 40px 30px;
  background: transparent;
  font-family: 'Prompt', sans-serif;
  color: #333;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
/* กำหนดให้แต่ละคอลัมน์กิน 25% เท่ากัน */
.footer-col {
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
}
/* — About / Logo Column — */
.footer-about {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer-logo {
  height: 60px; width: auto; margin-top: 4px;
}
.footer-about h3 {
  margin: 0 0 10px; font-size: 1.2em; font-weight: bold; color: #000;
}
.footer-about p {
  margin: 0; font-size: 1em; color: #555; line-height: 1.7;
}
.footer-social {
  margin-top: 12px; display: flex; gap: 12px;
}
.footer-social img {
  height: 32px; width: auto; display: block;
}
/* — Services Column — */
.footer-services h4 {
  margin: 0 0 10px; font-size: 1.1em; font-weight: bold; color: #000;
}
.footer-services ul {
  list-style: none; padding: 0; margin: 0; line-height: 1.8;
}
.footer-services li + li {
  margin-top: 4px;
}
.footer-services a {
  color: #555; text-decoration: none;
}
/* — Contact Column — */
.footer-contact h4 {
  margin: 0 0 10px; font-size: 1.1em; font-weight: bold; color: #000;
}
.footer-contact p {
  margin: 0 0 12px; color: #555; font-size: 1em; line-height: 1.7;
}
.footer-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.footer-contact .note {
  margin-top: 6px;
  font-size: 0.85em;
  color: #999;
}
/* — Responsive — */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.consult-free-button {
  background: #000;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
}

.filter-btn{
  padding:8px 18px;border:1px solid #000;border-radius:20px;
  font-size:.95em;color:#000;text-decoration:none;transition:.2s;
}
.filter-btn:hover,.filter-btn.is-active{background:#000;color:#fff;}

/* ปุ่มภายในการ์ดผลงาน */
.portfolio-card a{
  background:#000;
  color:#fff !important;
}
.portfolio-card a:hover{
  background:#333;
}
a.consult-free-button {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
a.consult-free-button {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

a.consult-free-button:hover {
  background: #222;
}
a.consult-free-button {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}
a.consult-free-button {
  background: #000;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.3s ease;
}
a.consult-free-button:hover {
  opacity: 0.9;
  transform: scale(1.03);
}


