@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;700&display=swap");



#cookie-notice {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.cookie-notice-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cn-text-container {
  flex: 1;
}

.cn-button {
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.cn-close-icon {
  cursor: pointer;
  font-size: 18px;
  margin-left: 15px;
}
 
body {
  font-family: 'Poppins', 'Kanit';
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_margin {
  margin: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}


.quote_btn-container {
  display: flex;
  align-items: center;
  margin-left: auto; /* จัดให้ปุ่มไปอยู่ทางขวา */
}

.quote_btn {
  margin-left: 10px; /* เพิ่มระยะห่างระหว่างปุ่ม */
}

.navbar-nav {
  flex-grow: 1; /* ให้ ul ขยายเต็มพื้นที่ */
}



.custom_nav-container {
  display: flex;
  justify-content: center; /* จัดกลางแนวนอน */
  align-items: center; /* จัดกลางแนวตั้ง */
}

.navbar-nav {
  display: flex;
  justify-content: center; /* จัดกลางเมนู */
  padding: 0; /* ลบ padding ถ้ามี */
}

.nav-item {
  margin: 0 10px; /* ระยะห่างระหว่างเมนู */
}


.navbar-nav .nav-link { 
  transition: color 0.3s ease; /* เพิ่มการเปลี่ยนสีอย่างนุ่มนวล */
}

.navbar-nav .nav-item:hover .nav-link {
  color: #f8842b(255, 255, 255, 0.7); /* สีเมื่อเอาเมาส์ไปชี้เป็นสีขาวจางๆ */
}


.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #EEA92A ;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 50px;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #EEA92A ;
  border-radius: 0 0 350px 0;
}

.sub_page .hero_area {
  min-height: auto;
  border-radius: 0 0 45px 0;
}

.header_section {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #EEA92A; /* หรือสีที่คุณต้องการ */

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%; /* ให้แน่ใจว่าเมนูมีความกว้าง 100% */
}

.container-fluid {
  padding: 0; /* ลบ padding เพื่อไม่ให้เมนูเลื่อนออกจากขอบ */
}
.flag-icon {
  vertical-align: middle;
  /* จัดให้ภาพอยู่ในแนวเดียวกับข้อความ */
  height: 80px;
  /* ปรับขนาดภาพให้สมดุล */
}
/* ตั้งค่าพื้นฐานของเมนู */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 5px;
}

/* ตั้งค่าให้ดรอปดาวน์โชว์เมื่อ hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* สไตล์ของรายการเมนูในดรอปดาวน์ */
.dropdown-item {
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

/* เพิ่มสไตล์เมื่อ hover รายการเมนูในดรอปดาวน์ */
.dropdown-item:hover {
  background-color: #EEA92A;
  color: #ffffff;
}


.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  /* padding: 5px 25px; */
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #000000;
  background-color: #ffffff;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #f8842b;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
}

.quote_btn-container .quote_btn:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.flag-icon {
  width: 20px;  
  height: auto;
  margin-left: 10px;  
  vertical-align: middle;  
}

/*end header section*/
/* slider section */

.boxcard {
  height: 500px; /* กำหนดความสูงของการ์ด */
  overflow: hidden; /* ซ่อนเนื้อหาที่เกิน */
}

.card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}


.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  height: 102%;
  position: unset;
}

.slider_section .detail-box {
  text-align: center;
  color: #ffffff;
}

.slider_section .detail-box h1 {
  
  font-weight: bold;
  margin-bottom: 20px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px;
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 185px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 12px 15px;
  background-color: #5a2a8f;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #5a2a8f;
}

.slider_section .detail-box .btn-box .btn1:hover {
  color: #ffffff;
  -webkit-transform: translateY(-0px);
          transform: translateY(-0px);
}

.slider_section .img-box {
  display: flex; /* ใช้ Flexbox */
  justify-content: center; /* จัดให้รูปอยู่กลาง */
  align-items: center; /* จัดให้รูปอยู่กลางในแนวตั้ง */
}

.slider_section .img-box img {
  width: 200px; /* ความกว้างของรูป */
}


.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23x;
  background-color: #f8842b;
}

.service_section {
  text-align: center;
}

.service_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box3 {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.case_section .box {
 
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box3::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.case_section .box::before {
  
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}



.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box3 .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box-list img {
  width: 155px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-height: 155px;
}

.service_section .box .img-box-list-extra img {
  width: 250px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
  color: #000000;
}

.service_section .box .detail-box a {
  color: inherit;
  color:#000000;
}

.service_section .box .detail-box p { 
    color: #000000;
}

.service_section .box .detail-box span { 
    color: #000000;
}

.service_section .box .detail-box i { 
  color: #000000;
}

.service_section .box:hover {
  color: #ffffff;
}

.service_section .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
  background-color: #EEA92A ;
}


.service_section .box3 .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box3 .img-box-list img {
  width: 155px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box3 .img-box-list-extra img {
  width: 250px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.service_section .box3 .detail-box {
  margin-top: 15px;
}

.service_section .box3 .detail-box h5 {
  font-weight: bold;
  position: relative;
  color: #000000;
}

.service_section .box3 .detail-box a {
  color: inherit;
  color: #000000;
}

.service_section .box3 .detail-box p {
  color: #000000;
}

.service_section .box3 .detail-box span {
  color: #000000;
}

.service_section .box3 .detail-box i {
  color: #000000;
}

.service_section .box3:hover {
  color: #000000;
}

.service_section .box3:hover::before {
  -webkit-transform: scale(5);
  transform: scale(5);
  background-color: #EEA92A;
}




.case_section .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
  background-color: #EEA92A ;
}

.case_section .box:hover {
  color: #ffffff;
}

/* .service_section .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
} */

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #EEA92A ;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #EEA92A ;
}

.service_section .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}


.case_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.case_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #EEA92A;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #EEA92A;
}

.case_section .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.service_section .btn-box9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box9 a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #0c0c0c;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #0c0c0c;
}

.service_section .btn-box9 a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.service_section2 {
  text-align: center;
}

.service_section2 .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section2 .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section2 .box::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section2 .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section2 .box .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section2 .box .img-box-list img {
  width: 155px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section2 .box .img-box-list-extra img {
  width: 250px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.service_section2 .box .detail-box {
  margin-top: 15px;
}

.service_section2 .box .detail-box h5 {
  font-weight: bold;
  position: relative;
  color: #000000;
}

.service_section2 .box .detail-box a {
  color: inherit;
  color:#000000;
}

.service_section2 .box .detail-box p { 
    color: #000000;
}

.service_section2 .box .detail-box span { 
    color: #000000;
}

.service_section2 .box .detail-box i { 
  color: #000000;
}

.service_section2 .box:hover {
  color: #ffffff;
}

.service_section2 .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
  background-color: #EEA92A ;
}

.service_section2 .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.service_section2 .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section2 .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #EEA92A ;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #EEA92A ;
}

.service_section2 .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.boxnews {
  height: 100%; /* ทำให้ box มีความสูงเต็มที่ */
  display: flex;
  flex-direction: column; /* ตั้งค่าการจัดเรียงในแนวตั้ง */
  overflow: hidden; /* ซ่อนเนื้อหาที่ล้นออกมา */
}

.img-boxnews {
  flex: 0 0 auto; /* ไม่ให้ img-box ขยายสูง */
}

.detail-boxnews {
  flex: 1 0 auto; /* ทำให้ detail-box ขยายได้ */
  display: flex;
  flex-direction: column; /* ตั้งค่าการจัดเรียงในแนวตั้ง */
  justify-content: space-between; /* กระจายเนื้อหาให้ห่างกัน */
}


.custom-box {
  border: 1px solid #ddd; /* เส้นกรอบ */
  border-radius: 8px; /* มุมมน */
  overflow: hidden; /* ไม่ให้เนื้อหาเกินกรอบ */
  text-align: center; /* จัดเนื้อหาตรงกลาง */
  transition: transform 0.3s; /* การเปลี่ยนแปลงเมื่อเอาเมาส์ไปอยู่บนการ์ด */
}

.custom-box:hover {
  transform: scale(1.05); /* ขยายการ์ดเมื่อเอาเมาส์ไปอยู่ */
}

.img-box img {
  width: 100%; /* ให้รูปภาพกว้างเต็มกรอบ */
  height: auto; /* รักษาสัดส่วนรูปภาพ */
}

.about_section {
  background-color: #EEA92A ;
  color: #ffffff;
  border-radius: 250px 0 250px 0;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.case_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.case_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}


.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: hidden;
  margin: 10px auto;
  margin-bottom: 5px;
  


}




.case_section .box .carousel .carousel-item {
  overflow: hidden; 
 
}



.case_section .row {
  display: flex;
  flex-wrap: nowrap;
}

.case_section .box .img-box {
  position: relative;
}

.case_section .box .img-boxnews {
  position: relative;
}


.case_section .box .img-box img {
  width: 100%;
}

.case_section .box .img-boxnews img {
  width: 100%;
}

.case_section .box .detail-box {
  padding: 20px;  
  display: -webkit-box;
  -webkit-line-clamp: 6; /* จำนวนบรรทัดที่จะแสดง */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* ใส่จุด (...) เมื่อข้อความเกิน */
  
  
  
}

.service_section .box .detail-box {
  padding: 20px;  
  display: -webkit-box;
  -webkit-line-clamp: 6; /* จำนวนบรรทัดที่จะแสดง */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* ใส่จุด (...) เมื่อข้อความเกิน */
  
  
  
}

.service_section .box3 .detail-box3 {
  padding: 20px;
  display: -webkit-box; 
  -webkit-box-orient: vertical;
 



}


.service_section .box2 {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: hidden;
  margin: 10px auto;
  margin-bottom: 5px;
  

}



/*news fix*/

.case_section .boxnews {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case_section .img-boxnews img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.case_section .img-boxnews:hover img {
  transform: scale(1.05); /* ขยายภาพเมื่อชี้เมาส์ */
}

.case_section .box:hover  {
  transform: scale(1.1); /* ขยายภาพเมื่อชี้เมาส์ */
}
.case_section .boxinfo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.case_section .boxinfo:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* เงาที่เพิ่มขึ้นเมื่อชี้เมาส์ */
}

.case_section .detail-box h5 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.case_section .detail-box p {
  color: #777;
  margin-bottom: 20px;
}

.case_section .detail-box a {
  color: #f8842b;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.case_section .detail-box a i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.case_section .detail-box a:hover i {
  transform: translateX(5px); /* ลูกศรเคลื่อนไปข้างหน้าเมื่อชี้เมาส์ */
}

.case_section .btn-box {
  text-align: center;
  margin-top: 30px;
}

/* .case_section .btn-box a {
  background-color: #f8842b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
} */

.case_section .btn-box a:hover {
  background-color: #EEA92A;
}

/* end news fix */

.case_section .box .detail-box h5 {
  font-weight: bold;
}

.case_section .box .detail-box p {
  font-size: 15px;
}

.case_section .box .detail-box a {
  color: #EEA92A ;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0;
  text-align: center;
  
}

.client_section .box .img-box {
  width: 450px;
  height: 160px;
  min-width: 285px;
  position: relative;
  /* margin-bottom: -62.5px; */
  padding-bottom: 200px;
  

}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  background-color: #EEA92A ;
  color: #ffffff;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #EEA92A ;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #f8842b;
}



.contact_section {
  position: relative;
}



.contact_section form {
  margin-top: 45px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  background-color: transparent;
  outline: none;
  color: #000000;
  border: 1px solid #a5a5a5;
}

.contact_section input::-webkit-input-placeholder {
  color: #1c1b1b;
}

.contact_section input:-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::placeholder {
  color: #1c1b1b;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 10px 65px;
  background-color: #EEA92A ;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #EEA92A ;
  color: #fff;
  margin-top: 10px;
}

.contact_section button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.contact_section .map_container {
  height: 100%;
  min-height: 325px;
  overflow: hidden;
  margin-left: 45px;
}

.contact_section .map_container .map {
  height: 100%;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.footer_container {
  background-color: #EEA92A ;
  color: #ffffff;
  border-radius: 350px 0 0 0;
  padding-top: 145px;
}

/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}


.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #f8842b;
}


.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #f8842b;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #f8842b;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #f8842b;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f8842b;
  margin-top: 15px;
}

.info_section form button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
}

.footer_section p {
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

.image-container {
  display: flex;  
  justify-content: center; /* จัดให้อยู่ตรงกลางแนวนอน */
  align-items: center; /* จัดให้อยู่ตรงกลางแนวตั้ง */
  flex-wrap: wrap; /* ทำให้ภาพหลายบรรทัดเมื่อพื้นที่ไม่เพียงพอ */
  gap: 10px; /* เพิ่มช่องว่างระหว่างภาพ */
}

.image-container img {
  max-width: 220px; /* กำหนดขนาดภาพให้พอดี */
  transition: transform 0.3s ease; /* กำหนดการเปลี่ยนแปลงให้เรียบ */

  height: auto;
}

.image-container img:hover {
  transform: scale(1.3); /* ขยายภาพเมื่อชี้เมาส์ */
}

.image-container2 {
  margin-top: 50px;
  display: flex;
  justify-content: center; /* จัดให้อยู่ตรงกลางแนวนอน */
  align-items: center; /* จัดให้อยู่ตรงกลางแนวตั้ง */
  flex-wrap: wrap; /* ทำให้ภาพหลายบรรทัดเมื่อพื้นที่ไม่เพียงพอ */
  gap: 100px; /* เพิ่มช่องว่างระหว่างภาพ */

}

.image-container2 img {
  max-width: 160px; /* กำหนดขนาดภาพให้พอดี */
  transition: transform 0.3s ease; /* กำหนดการเปลี่ยนแปลงให้เรียบ */
object-fit: cover;
  /* ป้องกันการบิดเบี้ยวของรูปภาพ */
  height: auto;
  max-height: 180px;
    /* กำหนดขนาดภาพให้พอดี */
}

.image-container2 img:hover {
  transform: scale(1.3); /* ขยายภาพเมื่อชี้เมาส์ */
}

     table {
       width: 90%;
       /* กำหนดความกว้างของตารางเป็น 90% ของหน้าจอ */
       max-width: 1200px;
       /* กำหนดขนาดสูงสุดให้ตาราง */
       margin: 20px auto;
       border-collapse: collapse;
     }
  
     th,
     td {
       padding: 15px;
       /* ขยาย padding เพื่อเพิ่มขนาดเซลล์ */
       text-align: center;
       border: 1px solid #ddd;
       font-size: 16px;
       /* เพิ่มขนาดตัวอักษร */
     }



th {
  background-color: #EEA92A;
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #e9f5e9;
}

td {
  font-size: 14px;
}

canvas {
  max-width: 600px;
  max-height: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=style.css.map */

 .read-more-link {
   color: #000000;
   text-decoration: none;
   /* ลบขีดเส้นใต้ */
 }

 .read-more-link:hover {
   color: #002d4b;
   /* เปลี่ยนสีเมื่อเลื่อนเมาส์ไปวาง */
 }


 #prev-btn,
 #next-btn {
   padding: 8px 16px;
   font-size: 16px;
   margin: 0 5px;
   cursor: pointer;
 }