@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------- */
/* Custom properties   */
/* ------------------- */

:root {
    /* colors */
    --primary-color: #2c5530;
    --secondary-color: #4a7c59;
    --oposite-color: #005eb8;
    --accent-color: #7fb069;
    --logo-color: #00A75B;
    --light-green: #f8fffe;
    --dark-text: #2d3436;
    --light-text: #636e72;
    /* font sizes */

    --grid-gap: 1.5vw;
    --card-radius: 10px;
    --border-width: 2px;
    --content-padding: 0.5rem 1rem;

}

/* ------------------- */
/* Reset               */
/* ------------------- */


/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    font-family: "Roboto", sans-serif;

    /* font-family: "Be Vietnam Pro", sans-serif; */
    font-style: normal;
    font-weight: 400;
}

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

/* make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}

button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}


/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Remove autofill background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

.blur-bg {
    background: #40404065;
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(7px);
}

/* Header navbar  */

.header-sticky {
    transition: 0.3s ease-in;
    border-bottom: 1px solid #0000001f;
    background-color: #fcfcfc
}

.header-sticky.sticky-top {
    animation: 0.5s ease-in-out slideInDown;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.header .nav-item {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.header .nav-link {
    font-size: 0.9rem;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: black !important;
    position: relative;
}

.header .nav-link:focus,
.header .nav-link:hover {
    color: var(--logo-color) !important;
}

.header .nav-link .text {
    position: relative;
}

.header .nav-link .text:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--logo-color);
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    /* background: currentColor; */
    transition: transform 0.25s ease-out;
}

.header .nav-link:hover .text:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.Logo {
    max-height: 4rem;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* .read-more {
    background-color: #0EAC63;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 1rem;
    padding-block: 0.5rem;
    border-radius: 90px;
} */

.read-more {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.7rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: var(--logo-color);
    color: white;
}

.read-more span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.read-more:hover span {
    color: black;
}

.read-more::before,
.read-more::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.read-more::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.read-more:hover::before {
    transform: translate3d(100%, 0, 0);
}

.fancy-quote {
    position: relative;
    font-size: clamp(1.3rem, 1.06rem + 0.96vw, 1.6rem);
    font-family: "Kanit", sans-serif;
    font-weight: 300 !important;
}

.fancy-quote-2 {
    position: relative;
    font-size: clamp(1.2rem, 1.06rem + 0.96vw, 1.5rem);
}

.fancy-quote-2::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 2rem;
    color: var(--logo-color);
    line-height: 1;
    left: -15px;
    top: -30px;
}

.fancy-quote-2::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 2rem;
    color: var(--logo-color);
    line-height: 1;
    right: -15px;
    bottom: 0px;
}

.fancy-quote-2 p {
    position: relative;
    z-index: 1;
}

.fancy-quote p {
    position: relative;
    z-index: 1;
}

/* .hero-banner__slide {

    height: calc(100vh - 60px);
}

.hero-banner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-banner h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
} */

.hero-banner-image {
    /* position: absolute;
    inset: 0;
    z-index: -1; */
    width: 100%;
}



.splide__pagination__page {
    border-radius: 10px !important;
    height: 0.6rem !important;
    transition: all .2s linear !important;
    ;
    width: 0.6rem !important;
    margin: 5px !important;
    background-color: var(--logo-color);
}

.splide__pagination__page.is-active {
    transform: scale(1) !important;
    width: 2rem !important;
    height: 0.6rem !important;
    border-radius: 10px !important;
}

.cta {
    --c1: white;
    --c2: var(--oposite-color);
    --size-letter: 1rem;
    padding: 0.5rem 1rem;
    font-size: var(--size-letter);

    background-color: transparent;
    border: calc(var(--size-letter) / 6) solid var(--c2);
    border-radius: 5rem;
    cursor: pointer;

    overflow: hidden;
    position: relative;
    /* transition: 800ms cubic-bezier(0.83, 0, 0.17, 1); */
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--c2);
}

.cta>.text,
.cta i {
    color: var(--c2);
    position: relative;
    z-index: 1;
    transition: color 800ms cubic-bezier(0.83, 0, 0.17, 1);
}

.cta::before {
    top: 0;
    left: 0;
}

.cta::after {
    top: 100%;
    left: 100%;
}

.cta::before,
.cta::after {
    content: "";
    width: 150%;
    aspect-ratio: 1/1;
    scale: 0;
    transition: 800ms cubic-bezier(0.76, 0, 0.24, 1);

    background-color: var(--c2);
    border-radius: 50%;

    position: absolute;
    translate: -50% -50%;
}

.cta:hover {
    &>span {
        color: var(--c1);
    }

    &>i {
        color: var(--c1);
    }

    &::before,
    &::after {
        scale: 1;
    }
}

.cta:active {
    scale: 0.98;
    filter: brightness(0.9);
}


/* .cta {
    --c2: var(--oposite-color);
    --size-letter: 0.8rem;
    padding: 0.8rem 1.5rem;
    font-family: "Kanit", sans-serif;
    font-size: var(--size-letter);
    color: white;

    background-color: var(--dark-text);
    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;

    overflow: hidden;
    position: relative;
    transition: all 0.1s cubic-bezier(0.83, 0, 0.17, 1);
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.cta .text {
    position: relative;
}

.cta .text:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background: currentColor;
    transition: transform 0.25s ease-out;
}

.cta:hover {
    background-color: var(--logo-color);
}

.cta:hover .text:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.cta-no-bg {
    --c2: var(--oposite-color);
    --size-letter: 0.9rem;
    padding: 0.8rem 1rem;
    font-family: "Kanit", sans-serif;
    font-size: var(--size-letter);

    border-radius: 16px;
    cursor: pointer;
    font-weight: 500;

    overflow: hidden;
    position: relative;
    transition: all 0.1s cubic-bezier(0.83, 0, 0.17, 1);
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #a3ffd6;
    text-underline-offset: 4px;
}

.cta-no-bg i {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #ffffff;
    text-underline-offset: 4px;
}

.cta-no-bg .text {
    position: relative;
}

.cta-no-bg .text:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--logo-color);
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}


.cta-no-bg:hover .text:before {
    transform: scaleX(1);
    transform-origin: bottom left;
} */

.section-padding {
    padding: 60px 0;
}

.padding-top {
    padding-top: 80px !important;
}

.padding-top-2 {
    padding-top: 60px !important;
}

.padding-top-3 {
    padding-top: 100px !important;
}

.section-title {
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.8rem, 1.24rem + 2.24vw, 2.5rem);
    font-weight: 300;
    /* color: var(--primary-color); */
    color: rgb(46, 46, 46);
    margin-bottom: 0.5rem;
}

.section-title-2 {
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2rem);
    font-weight: 300;
    /* color: var(--primary-color); */
    color: rgb(46, 46, 46);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: clamp(1rem, 0.92rem + 0.32vw, 1.1rem);
    /* color: var(--light-text); */
    margin-bottom: 2rem;
}

.section-subtitle-2 {
    font-size: clamp(1.2rem, 1.04rem + 0.64vw, 1.4rem);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.trust-section {
    /* background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%); */
    border-left: 5px solid var(--logo-color);
    border-right: 5px solid var(--logo-color);
    /* border-bottom: 1px solid #e2e2e2; */
}

.about-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--oposite-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    margin-bottom: 1rem;
}

.trust-text {
    font-family: "Kanit", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    position: relative;
    margin-bottom: 0.5rem;
    /* font-style: italic; */
}

.trust-text p {
    color: var(--primary-color);
}

.trust-text-2 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
}

.ball-animation:before {
    width: 35vw;
    height: 35vw;
    background-color: #5996e0;
    top: 200px;
    left: -50px;
    transform-origin: top;
    animation: rotatebottom 18s linear infinite;
    -webkit-animation: rotatebottom 18s linear infinite;
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.25;
    z-index: -1;
}

@keyframes rotatebottom {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* .trust-text::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "“";
    color: var(--oposite-color);
    font-size: 1.5em;
}
.trust-text::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "”";
    color: var(--oposite-color);
    font-size: 1.5em; 
}*/

/* .what-we-do {
    background: url(../images/what-we-do_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
} */

.product-splide .splide__slide {
    display: flex;
}

.service-card {
    background: white;
    border-radius: 20px;
    /* box-shadow: 0 0px 13px 0px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e2e2e2;
}

.service-card:hover {
    /* transform: translateY(-10px); */
    /* box-shadow: 0 20px 40px rgba(0, 94, 184, 0.15); */
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-img {
    width: 100%;
    height: 300px;
    background: #fff8f0;
    /* background: #D6E6E8; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.service-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-text {
    /* text-align: center; */
    /* margin-top: 1rem; */
    padding-inline: 2rem;
    padding-block: 1rem;
}

.service-text h4 {
    font-family: "Kanit", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    /* color: var(--primary-color); */
}

.service-text p {
    /* color: var(--light-text);
    font-size: 0.9rem; */
    margin-top: 0.5rem;
}

.view-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 1rem;
}

.view-button a {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.service-card:hover .view-button a {
    transform: translateY(0);
    opacity: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li i {
    font-size: 1.2rem;
    color: var(--logo-color);
    font-weight: 700;
}

/* .capability-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    margin: 0.5rem;
    display: inline-block;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.capability-badge:hover {
    transform: scale(1.05);
} */
/* .capability-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    margin: 0.5rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.capability-badge:hover {
    transform: scale(1.05);
} */

.capa_img {
    max-height: 320px;
    height: 100%;
    position: relative;
    width: 90%;
}

.capa_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.capability-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.capability-item {
    font-family: "Kanit", sans-serif;
    font-weight: 300;
    display: flex;
    align-items: start;
    line-height: 1;
    gap: 0.8rem;
    border-radius: 40px;
    padding: 10px 0px;
    /* background: #eafff1; */
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.capability-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--logo-color);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
}

.vertical-line {
    border-right: 1px solid #e4e4e4;
}

/* .capability-item:hover .capability-icon {
    transform: scale(1.02);
}

.capability-item:hover {
    transform: scale(1.02);
} */

.custom-border {
    border: 2px solid var(--primary-color);
}

/* .industry-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: var(--oposite-color);
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
} */

.sustainability-section {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    color: black;
}


.contact-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e4e4e4;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-animated {
    /* Outline Style */
    background: transparent;
    border: 2px solid white;
    color: var(--primary-color);

    /* Shape & Size */
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;

    /* Text & Layout */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    /* Modern extras */
    letter-spacing: 0.5px;
    font-size: 1rem;

    flex-shrink: 0;
}

.btn-outline-animated::before {
    /* Animated Fill Layer */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;

    /* Animation Properties */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-outline-animated:hover {
    /* Hover State */
    color: white;
    transform: translateY(-3px);
    /* box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); */
}

.btn-outline-animated:hover::before {
    /* Fill Animation */
    transform: scaleX(1);
    transform-origin: left;
}

/* Optional Active State */
.btn-outline-animated:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.stats-counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--oposite-color);
}

.bg-light-custom {
    background: #effff4;
    /* background: linear-gradient(180deg, #edfff3 0%, #f5fff8 100%); */
}

.feature_item {
    min-height: 250px;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 30px;
    padding-top: 35px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    gap: 1rem;
    margin: 10px;
    cursor: pointer;
    border: 1px solid #e4e4e4;
}

.feature_item.style_two {
    margin: 0;
}

.feature_item:hover {
    transform: translateY(-5px);
    /* border: 2px solid var(--logo-color); */
}

/* .feature_item:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    background: rgba(0, 94, 184, 0.09);
    color: #1a1a1a;
    height: 80%;
    width: 80%;
    border-radius: 10px;
    transition: 0.5s;
    content: "";
    z-index: -1;
} */

/* .feature_item:hover:before {
    transform: scale(1);
    height: 100%;
    width: 100%;
} */

.feature_icon {
    flex-shrink: 0;
    /* padding-block: 17px;
    padding-inline: 17px; */
    background-color: #d4ffe2;
    color: var(--logo-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 4rem;
    height: 4rem;
}

.feature_icon i {
    font-size: 30px;
    display: inline-block;
}


.feature_content h5 {
    font-family: "Kanit", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
}


/* Footer Styles */
.footer {
    background-color: #1A1A1A;
    padding: 120px 0 20px 0;
    /* border-top: 1px solid #e9ecef; */
}


.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.footer-social {
    margin-top: 1rem;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--logo-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: #8D8D8D;
    /* font-weight: 500; */
    font-size: 18px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--logo-color);
}

.footer-bottom {
    border-top: 1px solid #2e2e2e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--light-text);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 15px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.company-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.company-tagline {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 1rem;
}

/* banner section  */
.banner-section {
    position: relative;
    height: calc(100vh - 200px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.banner-content {
    position: relative;
    z-index: 2;
    /* text-align: center; */
    color: white;
    /* max-width: 800px; */
    padding: 0 20px;
}

.banner-title {
    font-family: "Kanit", sans-serif;
    font-weight: 400 !important;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 3rem;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-outline-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-banner {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.btn-primary-banner:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
    text-decoration: none;
}





/* About us page  */


.facility-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    /* border-top: 4px solid var(--accent-color); */
}

.facility-card:hover {
    transform: translateY(-10px);
    border: 2px solid var(--accent-color);
}

.facility-icon {
    width: 70px;
    height: 70px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background-color: var(--oposite-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.facility-icon i {
    font-size: 2rem;
    color: white;
}

.mission-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sustainability-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.sustainability-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}



.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--logo-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 54%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 54%;
    padding-left: 3rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e4e4e4;
    position: relative;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: #d4ffe2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-img {
    position: absolute;
    left: 62%;
    /* top: 2rem; */
    /* width: 60px; */
    height: 100%;
    background: #d4ffe2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-img-2 {
    position: absolute;
    left: 36%;
    /* top: 2rem; */
    /* width: 60px; */
    height: 100%;
    background: #d4ffe2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-img img,
.timeline-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--logo-color);
}

.map-size {
    height: 40rem;
}

/* Product page  */

.card-bg {
    position: absolute;
    inset: var(--border-width);
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center;
    border-radius: calc(var(--card-radius) - var(--border-width));
    z-index: 0;
    /* filter: brightness(0.7); */
}

.card-bg::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    background: rgba(0, 184, 114, 0.24);
    color: #1a1a1a;
    height: 80%;
    width: 80%;
    border-radius: 10px;
    transition: 0.5s;
    content: "";
    z-index: -1;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--content-padding);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.card-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 0.55rem 0;
    color: white;
    /* background: linear-gradient(90deg, #FFF, rgba(192, 219, 255, 0.9));
    -webkit-background-clip: text; */
    background-clip: text;
    /* color: transparent; */
}

.card-title-2 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 0.55rem 0;
    color: white;
    /* background: linear-gradient(90deg, #FFF, rgba(192, 219, 255, 0.9));
    -webkit-background-clip: text; */
    background-clip: text;
    /* color: transparent; */
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Description Styles */
.card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: white;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, max-height;
}

.card-desc-2 {
    font-size: 0.95rem;
    line-height: 1.5;
    color: white;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.neo-card:hover .card-desc {
    opacity: 1;
    max-height: 100px;
    /* Adjust based on content */
    transform: translateY(0);
    margin-bottom: 1rem;
}

.neo-card:hover .card-title-2,
.neo-card:hover .card-desc-2 {
    opacity: 0;
}


.card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.466) 0%, rgb(0 0 0 / 85%) 100%);
}

.volunteer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover !important;
    background-position: center !important;
}

.volunteer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.cta-section {
    /* background-color: #d4ffe2; */
    background-color: var(--logo-color);
    position: relative;
    margin-bottom: -5rem;
    border-radius: 20px;
    padding-inline: 1rem;
    padding-block: 45px
        /* max-width: 1000px; */
    ;
}



/* sustainabilty page */



.sustainability-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid #e4e4e4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;
    overflow: hidden;
}

/* .sustainability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--logo-color);
    transform: scaleX(0);
    transition: transform 0.5s ease;
} */

.sustainability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* .sustainability-card:hover::before {
    transform: scaleX(1);
} */

.card-icon {
    width: 80px;
    height: 80px;
    background: #d4ffe2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sustainability-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--logo-color);
}


.innovation-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.innovation-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.innovation-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.innovation-item i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.innovation-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promise-card {
    background: white;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.promise-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promise-content h6 {
    font-family: "Kanit", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
}



/* Manufacturing Page  */

/* Manufacturing Page */

.manufacturing-item {
    display: flex;
    column-gap: 120px;
    justify-content: space-between;
}

.manufacturing-item:nth-child(even) {
    flex-direction: row-reverse;
}

.manufacturing-item .info {
    width: calc(60% - 120px);
}

.manufacturing-item .img-wrap {
    width: 40%;
    aspect-ratio: 45/32;
    border-radius: 10px;
    overflow: hidden;
}

.manufacturing-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manufacturing-item {
    padding: 60px 36px;
}

ul.manf-detail-list {
    padding: 0px;
    list-style: none;
    margin: 0px;
}

ul.manf-detail-list li {
    margin-top: 24px;
    color: var(--heading-color);
    position: relative;
    padding-left: 30px;
}

ul.manf-detail-list li::before {
    content: '';
    height: 8px;
    width: 20px;
    display: inline-block;
    background: #034BA2;
    position: absolute;
    top: 8px;
    left: 0px;
    border-radius: 50%;
}


.manufacturing-list-wrap {
    position: relative;
}

.manufacturing-item {
    position: relative;
    /* top: 100px; */
    background: #FFFFFF;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-block: 1rem;
    border: 1px solid #e4e4e4;
}



.capability-list-2 {
    display: flex;
    color: black;
    padding: 1rem;
}


.capability-list-2 ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.capability-list-2 ul li {
    padding: 4px 8px;
    border-radius: 10px;
}


/* Enquiry  */
.enquiry-section {
    padding: 60px 0;
    position: relative;
}

.enquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.enquiry-info {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e4e4e4;
}

.enquiry-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e4e4e4;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-subtitle {
    color: var(--light-text);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    /* color: var(--primary-color); */
    margin-bottom: 0.8rem;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--logo-color);
    box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
    background: white;
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
    background: white;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.info-item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 2rem; */
    padding: 1.5rem 0;
    background: var(--light-green);
    border-radius: 15px;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h5 {
    /* color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem; */
    font-family: "Kanit", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--dark-text);
    margin: 0;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.category-tag {
    background: var(--light-green);
    color: var(--primary-color);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tag:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-green);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background: rgba(127, 176, 105, 0.1);
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
    accent-color: var(--accent-color);
}

.required {
    color: #dc3545;
}


/* industries we swerve  */

/* .industry-we-serve {
    min-height: 100vh;
    height: 100%;
} */

/* .industry-we-serve .accordion-item {
    background-color: transparent !important;
    border: 0 !important;
}

.industry-we-serve .accordion-button {
    font-family: "Kanit", sans-serif;
    box-shadow: none !important;
    background-color: transparent !important;
    border: 0 !important;
    font-size: 1.3rem;
    padding: 16px 16px 16px 0px !important;
    font-weight: 300 !important;
}

.industry-we-serve .industry-bagde {
    border-bottom: 1px solid #d4d4d4;
}

.industry-we-serve .industry-bagde:last-child {
    border-bottom: none;
}

.industry-we-serve .accordion-body {
    text-align: start;
    padding-top: 0;
    padding-left: 46px;
    font-size: 1.1rem;
}

.industry-we-serve .accordion-button:not(.collapsed) {
    color: var(--logo-color) !important;
}

.industry-we-serve .tab-pane {
    height: 100%;
}

.industry-we-serve .tab-pane img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.industry_img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
} */

.industry-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-inline: 1rem;
}

.industry-card:hover .industry-card-img img {
    transform: scale(1.1);
}

.industry-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.116);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 12px 6px rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 10;
}

.industry-card-img {
    position: relative;
    height: 22rem;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e4e4e4;
}

.industry-card-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.industry-content h5 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

/* sustanability and r&d section  */
.card {
    background-color: #fff;
    border: none;
    border-radius: 0;
    /* box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.08); */
    height: 100%;
    padding-inline: 2rem;
    border-radius: 10px;
}

.card-title {
    font-family: "Kanit", sans-serif;
    color: black;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.card-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-img-container {
    margin: 16px 0;
    /* overflow: hidden; */
    position: relative;
    margin-bottom: 13rem;
}


.card-img-container img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-container img {
    transform: scale(1.08);
}

.sustain-para-box {
    position: absolute;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    left: 50%;
    width: 90%;
    bottom: -200px;
    z-index: 2;
    transform: translateX(-50%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--logo-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    ;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: white;
}



/* Product page  */

.product-img {
    width: 100%;
    background-color: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail {
    /* padding: 1rem; */
}

.product-detail h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* font-size: 1.5rem; */
    margin-right: 1rem;
    line-height: 1;
    text-align: center;
}


.product-detail p {
    margin-bottom: 0.5rem;
}

.product-detail ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-detail ul li {
    display: flex;
    align-items: center;
}



/* Industry page  */
.industries_list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.industries_item_img {
    max-height: 340px;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
}

.industries_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.application p {
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.1rem, 0.725rem + 1.2vw, 1.4rem);
    font-weight: 300;
}

.application ul {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* list-style: disc; */
    /* padding-left: 1rem; */
}

.application ul li {
    display: flex;
    align-items: start;
    gap: 10px;
    /* padding-left: 0.5rem; */
    position: relative;
    color: var(--dark-text);
}


.thanksmsg {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--logo-color);
    padding-bottom: 1rem;
    font-weight: bold;
}


/* play button css  */

.button.is-play {
    background-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button.is-play .button-outer-circle {
    background: rgba(255, 255, 255, 0.41);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.button.is-play .button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
}

.button.is-play .button-icon .triangle {
    -webkit-animation: fadeIn 7s ease;
    animation: fadeIn 7s ease;
}

.button.is-play .button-icon .path {
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    -webkit-animation: triangleStroke 3s;
    animation: triangleStroke 3s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}

.has-scale-animation {
    -webkit-animation: smallScale 3s infinite;
    animation: smallScale 3s infinite;
}

.has-delay-short {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}



