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

        body {
            font-family: 'Sarabun', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .navbar {
            background: #fff;
            padding: 1rem 5%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .navbar a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .navbar a:hover {
            color: #2c5f2d;
        }

        .hero {
            /* background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23666" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 20px; */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .hero-image-container{
           
            width: 100%;
            height:100%;
            overflow: clip;
         
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero{
            position:relative;
        }
        .hero-image-container{
            position:absolute;
            inset:0;

        }
        .hero-image-container img{
            width:100%;
            height:100%;
            object-fit: cover;
        }
        .hero-text-content{
            /* position: absolute;
            top:50%;
            left:50%;
            transform:translate(-50%,-50%);

            width: 90vw; */
            text-align: center;
            padding: 7rem;

        }
        .hero-text-content>h1, .hero-text-content>p{
            /* color:white; */
            color:black;
        }
        
        .glass{
            /* From https://css.glass */
            background: rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .align-left{
            text-align: left;
        }
        .align-center{
            text-align: center;
        }
        .new_option-text{
            display: flex;
            flex-direction: column;

        }

        /* .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        } */

        .btn {
            /* background: #2c5f2d; */
            /* color: white; */
            padding: 0 1em;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }

        .btn:hover {
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section {
            margin-bottom: 60px;
        }

        .section-title {
            /* text-align: center; */
            font-size: 2rem;
            margin-bottom: 3rem;
            /* color: #2c5f2d; */
            font-weight: bold !important;
        }

        #new_option, #pros{
            display:flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }
        /* .section{
            display:flex;
            flex-wrap: wrap;
        } */
        .section-text-container{
            display: flex;
            /* width: 60%; */
            /* min-width: 375px; */

            align-items: center;
    justify-content: center;
        }
        .section-media-container{
            display: flex;
            justify-content: center;
            width: 40%;
        }
        .section-media-container iframe{
            --video-width: 177px;
            --video-height: 315px;
            --video-ratio:2;

            width:calc(var(--video-width) * var(--video-ratio)) !important;
            height:calc(var(--video-height) * var(--video-ratio)) !important;
                
        }

        /* #pros .section-media-container{
            gap:1em;
        } */
        #pros .section-text-container{
            width:60%;
            padding-left: 2em;
        }
        .section-text-container{
            flex-direction: column;
        }

        @media (max-width: 768px) {
            .section-text-container{
                width: 100%;
                padding: 0;
            }
            #pros .section-text-container{
                width: 100%;
            }
            .section-media-container{
                width: 100%;
                margin-top:3em;
            }
            
        }

        .features {
            /* display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem; */
            display: flex;
    flex-wrap: wrap;
    justify-content: center;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;


            width: 250px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .feature-card i {
            font-size: 3rem;
            color: #2c5f2d;
            margin-bottom: 1rem;
        }

        /* .pricing {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
        }

        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .pricing-card h3 {
            color: #2c5f2d;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin: 1rem 0;
        } */

      

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .footer {
            background: #2c5f2d;
            color: white;
            text-align: center;
            padding: 3rem 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
            text-align: left;
        }

        .footer h4 {
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #a8d5a8;
        }
/* .p-10{
    padding-left: 1em;
} */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .navbar ul {
                flex-direction: column;
                gap: 1rem;
            }
        }



        .image-comparison {
  max-width: 700px;
  margin: 20px auto;
  border-radius: 20px;
  overflow: hidden;

      height: fit-content;

      --slider-position: 50%;
}

.image-comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.image-comparison .images-container {
  position: relative;
  display: flex;
}

.image-comparison .images-container .before-image {
  position: absolute;
  top: 0;
  /* width: 50%; */
  width: var(--slider-position);
  transition: width 0s ease;
}

.image-comparison .slider {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.image-comparison .slider-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background: #fff;
  left: var(--slider-position);
  transform: translateX(-50%);
}

.image-comparison .slider-icon {
  position: absolute;
  left: var(--slider-position);
  top: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  transform: translate(-50%, -50%);
  background-color:white;
  border-radius: 50%;
  padding: .4em;
  --svg-color:black;
}


/* Container หลัก */
.mySwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden; /* ซ่อนส่วนเกิน */
}

/* ปรับแต่ง Slide แต่ละอัน */
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px; /* กำหนดความกว้างของรูปด้านข้าง */
    height: auto;
    border-radius: 10px;
    /* transition เพื่อความสมูทเวลาขยาย */

    /* transition: all 0.3s ease; 
    opacity: 0.6; 
    transform: scale(0.85); */
}

/* *** ไฮไลท์: จัดการรูปตรงกลาง *** */
.swiper-slide-active {
    opacity: 1;
    /* transform: scale(1.1); ขยายใหญ่ขึ้น 1.1 เท่า */
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* เพิ่มเงาให้ดูเด่น */
}

/* สไตล์ภายใน Item เดิมของคุณ (ปรับนิดหน่อย) */
.gallery-item {
    position: relative;
    border-radius: 10px;
    background: #fff; /* หรือสีพื้นหลังตามต้องการ */
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* จัด icon มุมขวาบนเหมือนในรูปตัวอย่าง (ถ้าต้องการ) */
.gallery-item-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
    scale: 0.7;
}
.gallery-item-icon img {
    width: 30px;
    height: auto;
    margin-bottom: 2px;
}
.gallery-item-icon p {
    font-size: 0.6rem;
    margin: 0;
    font-weight: bold;
    color: #333;
}

.swiper-button-next, .swiper-button-prev {
    color: white !important;
}






















.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 0 none;

    --secondary-color3: #20441C;
}
.price-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.price-table tr td {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 24px;
    font-size: 14px;
}
.price-table tr td:first-child {
    border-left: 0 none;
}
.price-table tr td:not(:first-child) {
    text-align: center;
}
.price-table tr:nth-child(even) {
    background-color: #FFFFFF;
}
.price-table tr:hover {
    background-color: #EEEEEE;
}
.price-table .fa-check {
    color: var(--secondary-color3);
}
.price-table .fa-times {
    color: #D8D6E3;
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(3) {
    background-color: rgba(216, 214, 227, 0.25);
}
.price-table tr td:nth-child(3) {
    background-color: rgba(216, 214, 227, 0.15);
    padding: 8px 48px;
}
.price-table tr td:nth-child(3) .fa-check,
.price-table tr:nth-child(2n) td:nth-child(3) .fa-check {
    /* color: #ffffff; */
}
/**/

.price-table tr.price-table-head td {
    font-size: 16px;
    font-weight: 600;
    /* font-family: "Montserrat"; */
    /* text-transform: uppercase; */
}
.price-table tr.price-table-head {
    background-color: var(--secondary-color3);
    color: #FFFFFF;
}
.price-table td.price {
    color: #f43f54;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 600;
    /* font-family: "Montserrat"; */
}
.price-table td.price a {
    background-color: var(--secondary-color3);
    color: #FFFFFF;
    padding: 0px 32px;
    margin-top: 16px;
    font-size: 12px;
    /* font-weight: 600; */
    /* font-family: "Montserrat";
    text-transform: uppercase; */
    display: inline-block;
    border-radius: 2em;
}
.price-table td.price-table-popular {
    /* font-family: "Montserrat"; */
    border-top: 3px solid var(--secondary-color3);
    color: var(--secondary-color3);
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 48px;
    font-weight: 700;
}
.price-table .price-blank {
    background-color: #fafafa;
    border: 0 none;
}

/* .price-table svg {
    width: 90px;
    fill: var(--secondary-color3);
} */
.main__content_wrapper h1{
font-size: 2em;
}
.main__content_wrapper h2{
    font-size: 1.5em;
}
.main__content_wrapper h3{
font-size: 1.17em;
}
.main__content_wrapper h4{
font-size: 1em;
}
.fw-bold{
    font-weight: bold;
}


.gallery-item-icon{
    background-color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border:1px solid black;

    position: absolute;
    top: 2%;
    right: 2%;
}
.gallery-item-icon{
    display:flex;
    flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery-item-icon img{
    width: 60%;
    height:auto;
    margin-top:1em;
}
.gallery-item-icon p{
    font-size: small;
    font-weight: bold;
}



















.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  /* gap: 456px 777px; */
  /* min-height: 815px; */
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 167px;
  height: 167px;
  border-radius: 50%;
  border: 1px solid #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  background-color: #FFFFFF;
  position: relative;
}

.step-icon {
  max-width: 135px;
  max-height: 114px;
  object-fit: contain;
}

.step-title {
  /* font-size: 32px;
  font-weight: 700;
  line-height: 38.73px; */
  margin-bottom: 12px;
  /* max-width: 572px; */
}

.step-description {
  /* font-size: 32px; */
  /* font-weight: 400; */
  /* line-height: 38.73px; */
  /* max-width: 633px; */
  margin-bottom: 20px;
}

/* .step-1 .step-description {
  max-width: 633px;
}

.step-2 .step-description {
  max-width: 487px;
}

.step-3 .step-description {
  max-width: 418px;
}

.step-4 .step-description {
  max-width: 323px;
} */

.consultation-btn {
  background-color: #20441C;
  color: #FFFFFF;
  border: none;
  border-radius: 41px;
  padding: 0 1em;
  /* font-family: 'SF Pro', 'Inter', sans-serif; */
  /* font-size: 32px;
  font-weight: 510;
  line-height: 38.19px; */
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 56px;
  /* min-width: 200px; */
  align-items: center;
  justify-content: center;
  display: flex;
}

.consultation-btn:hover {
  background-color: #1a3a17;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.line {
  position: absolute;
  background-color: #000000;
  height: 1px;
}

.line-1 {
  top: 83px;
  left: 25%;
    width: 50%;
  transform: rotate(0deg);
}

.line-2 {
  top: 359px;
  right: 0;
  width: 609px;
  transform: rotate(90deg);
}

.line-3 {
    top: 60%;
    left: 25%;
    width: 50%;
  transform: rotate(0deg);
}
@media (min-width: 767px) {
.process-flow.mobile{
 display:none;
}
.process-flow.desktop{
  /* display: grid;
   */

  display: flex;
  flex-wrap: wrap;
          
        justify-content: center;
        /* align-items: center; */
}.step{
  margin-bottom: 2em;



}

}
/* Responsive Design */
@media (max-width: 1400px) {
  /* .container {
    padding: 40px 50px;
  } */
  
  .process-flow {
    /* gap: 200px 300px; */
    gap: 50px 10px;
  }
  
  .main-title {
    font-size: 36px;
    line-height: 44px;
  }
  
  /* .step-title {
    font-size: 24px;
    line-height: 30px;
  }
   */
  /* .step-description {
    font-size: 18px;
    line-height: 24px;
  } */
  
  /* .consultation-btn {
    font-size: 18px;
    line-height: 22px;
    height: 44px;
    min-width: 160px;
  } */
}

@media (max-width: 768px) {
  /* .container {
    padding: 20px;
  } */

  .process-flow.mobile{
    display: grid;
  }
  .process-flow.desktop{
  display:none;
}
.step{
  margin-bottom: 0;

}
  
  .process-flow {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
  }
  
  .main-title {
    /* font-size: 28px;
    line-height: 34px; */
    margin-bottom: 60px;
  }
  
  .step-circle {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  
  .step-icon {
    max-width: 80px;
    max-height: 80px;
  }
  
  /* .step-title {
    font-size: 20px;
    line-height: 26px;
  }
   */
  /* .step-description {
    font-size: 16px;
    line-height: 22px;
  } */
  
  /* .consultation-btn {
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    min-width: 140px;
  } */
  
  .connection-lines {
    display: none;
  }
  #process-svg{
    display: none;
  }
  .step {
    max-width: unset;
}

}

@media (max-width: 480px) {
  /* .main-title {
    font-size: 24px;
    line-height: 30px;
  } */
  
  /* .step-title {
    font-size: 18px;
    line-height: 24px;
  } */
  
  /* .step-description {
    font-size: 14px;
    line-height: 20px;
  } */
  
  /* .consultation-btn {
    font-size: 14px;
    line-height: 18px;
    height: 36px;
    min-width: 120px;
  } */
}
#article1 li{
  list-style: unset;
  line-height: inherit;
}



.read-more, .read-less{
    font-size: small;
    text-align: center;
    text-decoration: var(--secondary-color) underline;
    text-decoration-thickness: 2px;
    margin-bottom: 2em;
}
.read-more:hover, .read-less:hover{
    cursor: pointer;
}

.read-more-blur {
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
    height: 100px;
    position: relative;
    margin-top: -100px;
}

.read-more::after {
    content: '▼'; /* Down arrow */
    margin-left: 5px;
    font-size: 0.9em;
    display: inline-block;
}

.read-less::after {
    content: '▲'; /* Up arrow */
    margin-left: 5px;
    font-size: 0.9em;
    display: inline-block;
}



.type {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .type-item {
            position: relative;
            /* overflow: hidden; */
            border-radius: 10px;
            /* cursor: pointer; */
        }
        .type-item-img{
            overflow: clip;
        }

        .type-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .type-item-img:hover img{
            transform: scale(1.1);
        }


        .swiper-pagination-bullet.swiper-pagination-bullet-active{
          background-color: white !important;
        }








.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}

.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}

.timeline__event:nth-child(2n + 1) {
  flex-direction: row-reverse;
}

.timeline__event:nth-child(2n + 1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}

.timeline__event:nth-child(2n + 1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}

.timeline__event:nth-child(2n + 1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event:nth-child(2n + 1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  animation: fillLeft 2s forwards 4s ease-in-out;
}

.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #9251ac;
  letter-spacing: 1.5px;
}

.timeline__event__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: 40vw;
  /* width: calc(40vw - 84px); */
  border-radius: 0 6px 6px 0;
}

.timeline__event__date {
  color: #f6a4ec;
  font-size: 1.5rem;
  font-weight: 600;
  background: #9251ac;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}

.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9251ac;
  padding: 40px;
  align-self: center;
  margin: 0 20px;
  background: #f6a4ec;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  position: relative;
}

.timeline__event__icon i {
  font-size: 32px;
}

.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  animation: fillLeftOdd 2s forwards 4s ease-in-out;
}

.timeline__event__description {
  flex-basis: 100%;
}

.timeline__event--type2:after {
  background: #555ac0;
}

.timeline__event--type2 .timeline__event__date {
  color: #87bbfe;
  background: #555ac0;
}

.timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:before, 
.timeline__event--type2:nth-child(2n + 1) .timeline__event__icon:after {
  background: #87bbfe;
}

.timeline__event--type2 .timeline__event__icon {
  background: #87bbfe;
  color: #555ac0;
}

.timeline__event--type2 .timeline__event__icon:before, 
.timeline__event--type2 .timeline__event__icon:after {
  background: #87bbfe;
}

.timeline__event--type2 .timeline__event__title {
  color: #555ac0;
}

.timeline__event--type3:after {
  background: #24b47e;
}

.timeline__event--type3 .timeline__event__date {
  color: #aff1b6;
  background-color: #24b47e;
}

.timeline__event--type3:nth-child(2n + 1) .timeline__event__icon:before, 
.timeline__event--type3:nth-child(2n + 1) .timeline__event__icon:after {
  background: #aff1b6;
}

.timeline__event--type3 .timeline__event__icon {
  background: #aff1b6;
  color: #24b47e;
}

.timeline__event--type3 .timeline__event__icon:before, 
.timeline__event--type3 .timeline__event__icon:after {
  background: #aff1b6;
}

.timeline__event--type3 .timeline__event__title {
  color: #24b47e;
}

.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, 
  .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n + 1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n + 1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n + 1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}

@keyframes fillLeft {
  100% {
    right: 100%;
  }
}

@keyframes fillTop {
  100% {
    top: 100%;
  }
}

@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}


/* #svg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 0;
}

.step-circle {
    position: relative;
    z-index: 2; 
} */
#process-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* เพื่อให้ยังคลิกปุ่มในแต่ละ Step ได้ */
    z-index: 0;
}

.step-circle {
    position: relative;
    z-index: 5; /* ให้อยู่เหนือเส้น */
    background: white; /* บังเส้นที่วิ่งมาถึงกึ่งกลาง */
}
/* .step{
  max-width: 400px;
} */
 .step-title, .step-description{
  width: 400px;
 }
.before-text{
  position:absolute;
  bottom:1rem;
  left:25%;
  
  color:black;
  background-color: white;
  border-radius:2rem;
  padding:0 0.5rem;
  transform: translateX(-50%);
  width:max-content;
}
.after-text{
  position:absolute;
  bottom:1rem;
  left:75%;
  
  color:black;
  background-color: white;
  border-radius:2rem;
  padding:0 0.5rem;
  transform: translateX(-50%);
  width:max-content;
}


@media (min-width: 767px) and (max-width: 991px){
  .step-title, .step-description {
      width: 250px;
  }
}
.step{
  width: fit-content;
}

.hero-video-container{
  width: 100%;
  display: flex;
    justify-content: center;
    
}

@media (min-width: 768px) {
  .hero-video-container{
  width: 100%;
}
section#pricing {
    padding-left: 2rem;
}
}
.hero-video-container img{
  border-radius: 5rem;

}

#new_option{
  background-color: #F5F5F5;
  padding: 2em;
}

.new_option-text .section-title{
  text-align: center;
}
.section-description{
  text-align: center;
}
.price-table-wrapper{
  max-width: calc(100vw - 3rem);
  overflow: auto;
}
@media (max-width: 768px) {
#process{
  display: flex;
  flex-direction: column;
  align-items: center;
  
}}

.parallax-section{
  /* background-image: url("https://hockchuanseng.com/cdn/shop/files/WhatsApp_Image_2024-11-27_at_9.24.26_AM.jpg?v=1732671467"); */
  min-height: 500px; 
  background-attachment: fixed; 
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover; 
  position: relative;
}

.blueprint-bg {
    /* สีพื้นหลังน้ำเงินเข้ม */
    background-color: #265ca0; 
    
    /* จุดสีขาวจางๆ */
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    
    /* ระยะห่าง */
    background-size: 25px 25px; 
}
.polka-bg {
    background-color: #f0f0f0;
    background-image: radial-gradient(#b0b0b0 2px, transparent 2px), 
                      radial-gradient(#b0b0b0 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px; /* บรรทัดนี้ทำให้จุดมันสลับหว่างกัน */
}
.dotted-bg {
    /* สีพื้นหลัง */
    background-color: #ffffff; 
    
    /* สร้างจุด: ปรับขนาดจุดได้ที่ตัวเลข px (ตรง 1.5px) */
    background-image: radial-gradient(#cfcfcf 1.5px, transparent 1.5px);
    
    /* ระยะห่างระหว่างจุด: ปรับความถี่ห่างได้ที่นี่ */
    background-size: 20px 20px; 
}
.hero-text-content a{
  background-color: #3a473e;
  color: white;
}
