.breadcrumb1 {
  background-color: #000000;
  font-size: 0.8rem;
}

.img-premium-base {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btnphone {
  background: linear-gradient(135deg, #FF9500, #F0C265);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);

}

#bt_line {
  margin-bottom: 210px;
  background: #4CAF50;
}

.menu_active {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  border-left: 4px solid #D4AF37;
  border-radius: 0 15px 15px 0;
  margin-right: 15px;
  color: #F0C265;
  transform: translateX(10px);
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.machine-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.machine-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  border-color: #D4AF37;
}

.machine-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 3px solid #D4AF37;
  transition: transform 0.5s ease;
}

.machine-card:hover img {
  transform: scale(1.03);
}

.machine-info {
  padding: 25px;
}

.machine-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #0B132B, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.machine-details {
  background: #FAFAFC;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.machine-details[open] {
  border-color: #D4AF37;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.machine-details summary {
  padding: 16px 20px;
  font-weight: 600;
  color: #0B132B;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
  font-size: 16px;
}

.machine-details summary::-webkit-details-marker {
  display: none;
}

.machine-details summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 24px;
  color: #D4AF37;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  top: 50%;
  transform: translateY(-50%);
}

.machine-details[open] summary::after {
  transform: translateY(-50%) rotate(135deg);
  color: #FF4E50;
}

.machine-details ul {
  padding: 0 25px 25px 45px;
  margin: 0;
  color: #475569;
}

.machine-details ul li {
  margin-bottom: 10px;
  list-style-type: disc;
  font-size: 15px;
  line-height: 1.6;
}

.machine-details ul li::marker {
  color: #D4AF37;
}

@media screen and (max-width: 768px) {
  .machine-grid {
    grid-template-columns: 1fr;
  }
}

.container {
  padding-right: 1px;
  padding-left: 1px;
}

.nav-links li {
  text-align: center;
}

.promo-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  /* เพิ่มความโค้งมนให้เข้ากับธีม */
  padding: 30px;
  border: 0.01px solid rgba(212, 175, 55, 0.3);

}

/* 2. สร้างชั้นเลเยอร์แสง (The Shine Layer) */
.promo-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  /* เริ่มต้นที่นอกกรอบทางซ้าย */
  width: .5%;
  /* ความกว้างของลำแสง */
  height: 100%;

  /* สร้างการไล่สีจาก โปร่งใส -> ขาวจางๆ -> โปร่งใส */
  /* เอียง 120deg เพื่อให้แสงวิ่งเฉียงๆ ดูมีมิติ */
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%);

  /* ปรับให้แสงเอียงเพิ่มเติม เพื่อความสวยงาม */
  transform: skewX(-25deg);

  /* เรียกใช้ Animation ตามที่คุณต้องการ */
  animation: shine 6s infinite;
  /* วิ่งทุกๆ 6 วินาที แบบวนซ้ำ */

  pointer-events: none;
  /* ป้องกันไม่ให้แสงบังการคลิกข้อความ */
}

/* 3. กำหนดการเคลื่อนไหว (Keyframes) */
@keyframes shine {
  0% {
    left: -100%;
    /* จุดเริ่มต้น: อยู่นอกกรอบทางซ้าย */
    opacity: 0;
  }

  20% {
    opacity: 1;
    /* ช่วงที่แสงวิ่งผ่าน จะสว่างสุด */
  }

  100% {
    left: 200%;
    /* จุดสิ้นสุด: วิ่งเลยกรอบไปทางขวาไกลๆ */
    opacity: 0;
  }
}

/* =========================================
   การปรับแต่งโลโก้และไอคอนเมนู
========================================= */

/* 1. ปรับขนาดและจัดวางโลโก้ */
.sidebar-logo {
  width: 100px;

  height: auto;
  display: block;
  margin: 0 auto 15px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  animation: floatLux 4s ease-in-out infinite;
}

/* ปรับ Header ให้รองรับโลโก้ */
.sidebar-header {
  padding-bottom: 25px;
  /* เพิ่มพื้นที่ด้านล่าง */
  margin-bottom: 25px;
  /* เพิ่มระยะห่างจากเมนู */
}

/* 2. ปรับแต่งไอคอนหน้าเมนู */
.menu-icon {
  margin-right: 10px;
  /* เว้นระยะห่างจากตัวหนังสือ */
  font-style: normal;
  /* ทำให้ไอคอนตั้งตรง ไม่เอียง */
  font-size: 18px;
  /* ขนาดไอคอน */

  /* ทำให้ไอคอนมีสีทองไล่ระดับ */

  display: block;
  /* จำเป็นสำหรับ background-clip */

  /* เพิ่มลูกเล่นตอนเอาเมาส์ชี้ที่เมนู */
  transition: transform 0.3s ease;
}

/* เมื่อเมาส์ชี้ที่ลิงก์ ให้ไอคอนขยายขึ้นเล็กน้อย */
.nav-links li a:hover .menu-icon {
  transform: scale(1.2);
}

/* ปรับลิงก์เมนูให้แสดงผลเป็น Flex เพื่อจัดไอคอนกับข้อความให้ตรงกันง่ายขึ้น */
.nav-links li a {
  display: flex;
  align-items: center;
}

/* Responsive: ปรับขนาดโลโก้สำหรับมือถือ (ถ้าจำเป็น) */
@media screen and (max-width: 768px) {
  .sidebar-logo {
    width: 60px;
    /* ลดขนาดโลโก้ลงในจอมือถือ */
    margin-bottom: 10px;
  }

  .sidebar-header {
    padding-bottom: 15px;
  }

  /* ซ่อนข้อความสโลแกนเพื่อประหยัดพื้นที่ */
  .sidebar-header p {
    display: none;
  }
}

/* =========================================
   6. Section 6: Service Area (SEO Focus)
========================================= */

/* ปรับปรุงส่วน Intro ให้อ่านง่ายและดูดี */
.service-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #475569;
}

.service-intro p {
  margin-bottom: 20px;
}

/* ใช้สไตล์ไฮไลท์เดิมที่เคยสร้างไว้ (ถ้ามี) หรือใช้ตัวนี้เพื่อให้แน่ใจว่า key word เด่นขึ้น */
.service-intro strong {
  color: #D4AF37;
  font-weight: 700;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* Grid สำหรับการ์ดจังหวัด */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* จัดเรียงอัตโนมัติ */
  gap: 25px;
  justify-content: center;
}

/* การ์ดแสดงชื่อจังหวัด */
.location-card {
  background: #ffffff;
  padding: 25px 15px;
  border-radius: 20px;
  /* ขอบมนตามธีม */
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  /* เงาฟุ้งๆ */
  border: 2px solid transparent;
  /* เตรียมไว้สำหรับ Hover */
  /* Bouncy Transition */
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

/* เอฟเฟกต์ตอนเอาเมาส์ชี้การ์ด */
.location-card:hover {
  transform: translateY(-10px) scale(1.05);
  /* เด้งขึ้นและขยาย */
  box-shadow: 0 20px 40px rgba(11, 19, 43, 0.15);
  border-color: #D4AF37;
  /* เส้นขอบสีทองปรากฏ */
}

/* ไอคอน Map Pin */
.loc-icon {
  font-size: 36px;
  margin-bottom: 15px;
  /* ทำให้ไอคอนเด้งดึ๋งได้ด้วย */
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.location-card:hover .loc-icon {
  transform: scale(1.2);
  /* ขยายไอคอนเมื่อชี้การ์ด */
}

/* ชื่อจังหวัดแบบไล่สี */
.location-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  /* ไล่สีจากกรมท่าไปทอง */
  background: linear-gradient(to right, #0B132B, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* การ์ดพิเศษสำหรับ สมุทรปราการ (ที่ตั้งหลัก) ให้เด่นกว่าเพื่อน */
.highlight-card {
  background: linear-gradient(135deg, #ffffff, #fffcf5);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.highlight-card .loc-icon {
  /* เปลี่ยนไอคอนเป็นสีทอง */
  /* เนื่องจากเป็น emoji การเปลี่ยนสีตรงๆ ทำไม่ได้ในบาง browser 
        แต่ถ้าใช้ icon font จะเปลี่ยนสีได้. โค้ดนี้ใช้ filter เพื่อย้อมสี emoji แทน */
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}


/* Responsive สำหรับมือถือ */
@media screen and (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    /* มือถือแสดงแถวละ 2 การ์ด */
    gap: 15px;
  }

  .location-card {
    padding: 20px 10px;
  }

  .location-card h3 {
    font-size: 18px;
  }
}

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

body {
  background-color: #FAFAFC;
  /* สีเทาอมขาวสะอาดตา ให้ความรู้สึกแพง */
  color: #2C3E50;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ไฮไลท์ข้อความสำคัญ (แท็ก strong) ให้ดูน่าสนใจและหรูหรา */
strong {
  color: #D4AF37;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 100%);
  padding: 0 4px;
  border-radius: 4px;
  font-weight: 700;
}

/* =========================================
   2. Animations (แอนิเมชันหรูหรา)
========================================= */
@keyframes goldShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatLux {

  0%,
  100% {
    transform: translateY(0px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.25);
  }
}

@keyframes pulseGold {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  }
}

/* =========================================
   3. Sidebar (เมนูซ้ายหรูหรา กรมท่า-ทอง)
========================================= */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  /* ไล่สีกรมท่าเข้ม มิดไนท์บลู */
  background: linear-gradient(180deg, #0B132B 0%, #1C2541 100%);
  color: #ffffff;
  padding-top: 40px;
  z-index: 1000;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  transition: width 0.4s ease;
}

.sidebar-header {
  text-align: center;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 20px;
}

/* Gradient Text สำหรับโลโก้ */
.sidebar-header h2 {
  font-size: 28px;
  font-weight: 700;
  /* สีทองสว่างไล่ไปทองเข้ม */
  background: linear-gradient(to right, #F0C265, #D4AF37, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

.sidebar-header p {
  font-size: 13px;
  color: #A0AEC0;
  margin-top: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links li a {
  display: block;
  padding: 16px 25px;
  color: #E2E8F0;
  font-size: 16px;
  font-weight: 400;
  /* Hover & Bouncy Effect */
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid transparent;
}

.nav-links li a:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  border-left: 4px solid #D4AF37;
  border-radius: 0 15px 15px 0;
  margin-right: 15px;
  color: #F0C265;
  transform: translateX(10px);
  /* เด้งดึ๋งไปทางขวา */
}

/* =========================================
   4. Main Content & Utilities
========================================= */
.main-content {
  margin-left: 250px;
  width: calc(100% - 250px);
  transition: margin-left 0.4s ease, width 0.4s ease;
}

.section {
  padding: 100px 5%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Backgrounds */
.dark-bg {
  background: linear-gradient(135deg, #0B132B, #1C2541);
  color: #F8FAFC;
}

.gray-bg {
  background-color: #F0F2F5;
}

/* Gradient Text สำหรับหัวข้อ (Section Title) */
.section-title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  background: linear-gradient(135deg, #0B132B, #3A506B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #F0C265, #D4AF37);
  margin: 15px auto 0;
  border-radius: 5px;
}

.dark-bg .section-title {
  background: linear-gradient(135deg, #F0C265, #FFFFFF);
  -webkit-background-clip: text;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================================
   5. Section 1: About (Hero Section)
========================================= */
#about {
  text-align: center;
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.85), rgba(28, 37, 65, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80') center/cover fixed;
  color: white;
}

#about h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(to right, #F0C265, #FFFFFF, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.subtitle {
  font-size: 22px;
  color: #E0E7FF;
  margin-bottom: 40px;
  font-weight: 300;
}



#about strong {
  color: #F0C265;
  background: none;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* =========================================
   6. Section 2: Services & Promo
========================================= */
/* Promo Banner - Animated Shimmering Gold */
.promo-banner {
  background: linear-gradient(-45deg, #D4AF37, #F0C265, #FF9500, #F0C265);
  background-size: 300% 300%;
  animation: goldShimmer 5s ease infinite, pulseGold 3s infinite;
  color: #0B132B;
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.promo-banner h2 {
  font-size: 42px;
  margin: 10px 0;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(255, 255, 255, 0.5);
}

.promo-banner strong {
  color: #0B132B;
  background: rgba(255, 255, 255, 0.4);
  padding: 2px 8px;
  border-radius: 8px;
}

/* Cards - Gradient Border Image & Rounded Corners */
.card {
  background: #ffffff;
  padding: 40px;
  /* เทคนิคทำ Border Gradient ขั้นสูง ให้คงความโค้งมน */
  border: 4px solid transparent;
  border-radius: 24px;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #D4AF37, #FF9500, #F0C265);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  /* Soft Shadow */
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy Hover */
}

.card:hover {
  transform: translateY(-15px) scale(1.02);
  /* เด้งขึ้นและขยาย */
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #FFC107, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p,
.card ul {
  color: #475569;
  margin-bottom: 15px;
}

.card ul li {
  margin-bottom: 12px;
}

.divider {
  border: 0;
  height: 1px;
  background: #E2E8F0;
  margin: 25px 0;
}

.machine-list {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  text-align: center;
}

.machine-brand strong {
  display: inline-block;
  color: #ffffff;
  background: linear-gradient(135deg, #0B132B, #3A506B);
  padding: 8px 25px;
  border-radius: 30px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* =========================================
   7. Section 3: Portfolio
========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: #ffffff;
  height: 260px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.gallery-item:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  color: #D4AF37;
}


/* =========================================
   8. Section 4: FAQ
========================================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
  transform: translateX(5px);
  /* เด้งขวาเบาๆ */
  border-color: #D4AF37;
}

.faq-item summary {
  padding: 22px 30px;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  color: #0B132B;
  outline: none;
  list-style: none;
  position: relative;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 26px;
  color: #D4AF37;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
  color: #FF4E50;
}

.faq-item p {
  padding: 0 30px 25px;
  color: #475569;
  border-top: 1px solid #F0F2F5;
  margin-top: 0;
  padding-top: 20px;
  background: #FAFAFC;
}

/* =========================================
   9. Section 5: Contact
========================================= */
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #E2E8F0;
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #F0C265;
}

.contact-info a {
  color: #F0C265;
  font-weight: bold;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #ffffff;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

/* ปุ่ม Bouncy หรูหรา */
.btn {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  transform: translateY(-8px) scale(1.03);
}

/* สีปุ่มโซเชียลแบบไล่สี */
.btn-line {
  background: linear-gradient(135deg, #00c300, #009900);
}

.btn-line:hover {
  box-shadow: 0 15px 30px rgba(0, 195, 0, 0.4);
}

.btn-messenger {
  background: linear-gradient(135deg, #0084ff, #0056ff);
}

.btn-messenger:hover {
  box-shadow: 0 15px 30px rgba(0, 132, 255, 0.4);
}

.btn-facebook {
  background: linear-gradient(135deg, #1877f2, #0c56bd);
}

.btn-facebook:hover {
  box-shadow: 0 15px 30px rgba(24, 119, 242, 0.4);
}


/* =========================================
   10. Responsive Design
========================================= */
@media screen and (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sidebar {
    width: 180px;
  }

  .main-content {
    margin-left: 180px;
    width: calc(100% - 180px);
  }

  .nav-links li a {
    padding: 12px 15px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .sidebar {
    width: 80px;
    padding-top: 20px;
  }

  .main-content {
    margin-left: 80px;
    width: calc(100% - 80px);
  }

  .sidebar-header {
    padding: 0 5px 15px;
    border-bottom: none;
  }

  .sidebar-header h2 {
    font-size: 14px;
    word-wrap: break-word;
    line-height: 1.3;
  }

  .sidebar-header p {
    display: none;
  }

  .nav-links li a {
    padding: 15px 5px;
    font-size: 11px;
    text-align: center;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li a:hover {
    border-left: none;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    transform: scale(1.1);
    margin-right: 0;
    border-radius: 10px;
  }

  .section {
    padding: 60px 5%;
  }

  #about h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 18px;
  }

  .promo-banner h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .card {
    padding: 30px 20px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 18px 20px;
  }

  .machine-list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

body,
html,
h1,
h2,
h3,
h4,
h5,
a,
p,
.rd-navbar-nav {
  font-family: "kanit" !important;

}

@media (min-width:1024px) {

  p,
  .p {
    font-size: 1.2rem !important;
    color: #919191;
  }
}

p,
.p {
  font-size: 1rem;
  color: #919191;
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/font-awesome-5-brands/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../fonts/font-awesome-5-brands/fa-brands-400.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}


@-ms-viewport {
  width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/font-awesome-5-brands/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../fonts/font-awesome-5-brands/fa-brands-400.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}