
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 70px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(27, 247, 159, 0.418), rgba(16, 159, 116, 0.8)), url(../img/carousel-4.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/

#google_translate_element {
    background: #0f3d3e;
    color: white;
}

.goog-te-gadget {
    color: white !important;
}

.goog-te-gadget select {
    padding: 5px 10px;
    border-radius: 20px;
    border: none;
}

.gallery-section{
  max-width:1200px;
  margin:auto;
  padding:40px 0;
}

.owl-carousel .item img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  border:2px solid #7db661;
  background:#fff;
}

/* ปุ่ม */
.owl-nav button {
  background:#7db661 !important;
  color:#fff !important;
  border-radius:50% !important;
  width:35px;
  height:35px;
}

.owl-nav button:hover {
  background:#5a9448 !important;
}

.about-green{
    background:#f4fbf6;
}

.about-title{
    font-size:32px;
    font-weight:800;
    color:#0f3d3e;
    margin-bottom:20px;
}

.about-title span{
    color:#2e7d32;
}

.about-desc{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.about-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.about-tags span{
    background:#e6f4ea;
    color:#1b5e20;
    padding:8px 15px;
    border-radius:20px;
    font-weight:600;
    font-size:14px;
}

.about-tags i{
    margin-right:5px;
}

.about-material{
    font-style:italic;
    color:#444;
    margin-top:10px;
}

.eco-box-green{
    background:linear-gradient(135deg,#2e7d32,#66bb6a);
    color:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.eco-box-green i{
    font-size:40px;
    margin-bottom:10px;
}

.section-title{
  font-size:32px;
  font-weight:800;
  color:#1b5e20;
  border-left:5px solid #2e7d32;
  padding-left:15px;
}

.company-box{
  background:#f4fbf6;
  padding:40px;
  border-radius:15px;
  border:1px solid #cde7d8;
}

.experience-box{
  background:#dfeee3;
  padding:15px;
  border-left:5px solid #2e7d32;
  border-radius:8px;
  margin-top:20px;
}

.info-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.info-card i{
  font-size:40px;
  color:#2e7d32;
  margin-bottom:15px;
}

.timeline-item{
  display:flex;
  gap:20px;
  margin-bottom:30px;
  align-items:center;
}

.timeline-item img{
  width:200px;
  border-radius:10px;
}

.timeline-content span{
  background:#2e7d32;
  color:#fff;
  padding:5px 10px;
  border-radius:5px;
  font-size:12px;
}

.quality-card{
  background:#fff;
  padding:20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.quality-card img{
  width:100%;
  border-radius:10px;
  margin-bottom:15px;
}

.quality-card{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:100%;
}

.video-box{
  width:100%;
  height:200px;
  overflow:hidden;
  border-radius:10px;
  margin-bottom:15px;
}

.video-box video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ทำให้ตัวหนังสืออยู่ล่าง */
.quality-card h4{
  margin-top:10px;
  font-weight:700;
  color:#1b5e20;
}

.quality-card strong{
  margin-top:auto;
  display:block;
}

.product-section{
  background:#f5f7f6;
}

.product-card{
  background:#fff;
  padding:20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
  height:100%;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.product-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:15px;
}

.product-card h4{
  font-weight:800;
  color:#0f3d3e;
}

.product-card p{
  color:#555;
  font-size:14px;
}

.service-section{
  background:#f4f7f6;
  padding:100px 0;
  text-align:center;
}

.main-title{
  font-size:42px;
  font-weight:800;
  margin-bottom:50px;
  color:#0f2b46;
}

.service-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
}

.service-column{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.service-box{
  width:260px;
  height:150px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  padding:15px;
  text-align:left;
  transition:0.4s;
  position:relative;
  overflow:hidden;
  animation: floatUp 1s ease forwards;
  opacity:0;
}

.service-box:nth-child(1){animation-delay:0.3s;}
.service-box:nth-child(2){animation-delay:0.5s;}
.service-box:nth-child(3){animation-delay:0.7s;}
.service-box:nth-child(4){animation-delay:0.9s;}

.box-img{
  position:absolute;
  right:0;
  bottom:0;
  height:100%;
  opacity:0.15;
}

.service-box:hover{
  background:#ffffff;
  color:#fff;
 
}

.service-box:hover .box-img{
  opacity:0.35;
}

.service-center .bottle{
  width:260px;
  animation:bottleUp 1.2s ease forwards;
  transform:translateY(100px);
  opacity:0;
}

@keyframes bottleUp{
  to{
    transform:translateY(0);
    opacity:1;
  }
}

@keyframes floatUp{
  to{
    transform:translateY(0);
    opacity:1;
  }
}

.save-earth{
  padding:80px 0;
  background:#f5f7f6;
}

.save-box{
  border:2px solid #2e7d32;
  border-radius:15px;
  padding:30px;
  background:#fff;
}

.save-title{
  font-size:36px;
  font-weight:800;
  color:#0f3d3e;
  margin-bottom:15px;
}

.save-text{
  color:#555;
  margin-bottom:20px;
}

.save-tags span{
  background:#e1f2ea;
  color:#2e7d32;
  padding:8px 15px;
  border-radius:6px;
  margin-right:10px;
  font-size:14px;
  font-weight:600;
  display:inline-block;
  margin-bottom:8px;
}

/* slider */
.save-slider .item img{
  height:260px;
  object-fit:cover;
}

.section-title{
  text-align:center;
  font-weight:800;
  font-size:32px;
  margin-bottom:40px;
  color:#0f3d3e;
  position:relative;
}

.section-title::after{
  content:"";
  width:120px;
  height:3px;
  background:#2e7d32;
  display:block;
  margin:10px auto 0;
}

/* Processing */
.process-section{
  padding:80px 0;
  background:#f5f7f6;
}

.process-card{
  background:#dfeee7;
  padding:25px;
  border-radius:12px;
  text-align:center;
  transition:0.3s;
}

.process-card img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:8px;
  margin:15px 0;
}

.process-card:hover{
  transform:translateY(-10px);
  background:#cfe5db;
}

/* Sustainability */
.sustain-section{
  padding:80px 0;
  background:#f5f7f6;
}

.sustain-card{
  background:#dfeee7;
  padding:30px;
  border-radius:12px;
  text-align:center;
  height:100%;
  transition:0.3s;
}

.sustain-card:hover{
  transform:translateY(-10px);
  background:#cfe5db;
}

/* Icon */
.icon-circle{
  width:70px;
  height:70px;
  background:#2e7d32;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin:0 auto 15px;
}

.process-card{
  background:#dfeee7;
  padding:20px;
  border-radius:12px;
  text-align:center;
  transition:0.3s;
}

.process-video{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:8px;
  margin:15px 0;
}

.process-card:hover{
  transform:translateY(-10px);
  background:#cfe5db;
}

.global-section img{
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.country-box{
  background:linear-gradient(135deg,#e8f5e9,#c8e6c9);
  padding:30px;
  border-radius:12px;
  text-align:center;
  width:220px;
  margin-top:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.customer-hero{
  position:relative;
  height:60vh;
  background:url('../img/customer/ab07.webp') center/cover no-repeat;
  display:flex;
  align-items:center;
  margin-top:40px;
  border-radius:15px;
  overflow:hidden;
}

.industry-box{
  background:linear-gradient(135deg,#0f3d3e,#2e7d32);
  color:#fff;
  padding:30px;
  border-radius:15px;
  height:200px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.industry-box:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 25px rgba(0,0,0,0.2);
}


.global-section img{
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.country-box{
  background:linear-gradient(135deg,#e8f5e9,#c8e6c9);
  padding:30px;
  border-radius:12px;
  text-align:center;
  width:220px;
  margin-top:20px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* OUR CUSTOMER PAGE */
.customer-hero{
  position:relative;
  height:60vh;
  background:url('../img/customer/ab07.webp') center/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

.hero-content{
  position:relative;
  color:#fff;
  max-width:700px;
}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  color:#0f3d3e;
  margin-bottom:40px;
}

.section-title::after{
  content:"";
  width:120px;
  height:3px;
  background:#2e7d32;
  display:block;
  margin:10px auto;
}

.industry-card{
  background:#f4fbf6;
  padding:30px;
  border-radius:12px;
  text-align:center;
  transition:0.3s;
  height:100%;
}

.industry-card i{
  font-size:40px;
  color:#2e7d32;
  margin-bottom:15px;
}

.industry-card:hover{
  transform:translateY(-10px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.app-card{
  background:#fff;
  padding:15px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  text-align:center;
}

.app-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

.global-title{
  font-size:30px;
  font-weight:800;
  color:#0f3d3e;
}

.stat-box{
  background:#e8f5e9;
  padding:20px;
  border-radius:10px;
  text-align:center;
}

.logo-img{
  height:60px;
  opacity:0.7;
  transition:0.3s;
}

.logo-img:hover{
  opacity:1;
  transform:scale(1.1);
}

/* ===== NAVBAR GREEN ===== */
.navbar,
.navbar-light,
.navbar-light.bg-white {
    background-color: #1d3c34 !important;
}

.navbar .nav-link,
.navbar-light .navbar-nav .nav-link,
.sticky-top .navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 16px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ffd54f !important;
}

@media (min-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link:before,
    .navbar-light .navbar-nav .nav-link:after {
        background: #ffd54f !important;
    }
}

.text-secondary {
    color: #16e023 !important;
}

@media (max-width: 991.98px) {
  .service-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

  .service-column {
    width: 100%;
    align-items: center;
  }

  .service-box {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 140px;
  }

  .service-center {
    order: -1;
    width: 100%;
    text-align: center;
  }

  .service-center .bottle {
    width: 100%;
    max-width: 240px;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .main-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .service-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .service-column {
    width: 100%;
    gap: 15px;
  }

  .service-box {
    max-width: 100%;
    min-height: 120px;
    padding: 14px;
  }

  .service-center .bottle {
    max-width: 200px;
  }
}

.navbar-toggler {
    border-color: #ffffff !important;
}

.navbar-toggler .fa-bars {
    color: #ffffff !important;
    font-size: 22px;
}

/* APPLICATIONS - Premium Card Slider */
.applications-section {
    background: #f3f6f8;
}

.applications-section .section-title {
    text-align: center;
    border-left: none !important;
    padding-left: 0 !important;
    margin-bottom: 10px;
}

.app-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.app-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.app-image-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f4;
}

.app-image-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.app-content {
    text-align: center;
    padding: 18px 10px 8px;
}

.app-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 131, 85, 0.12);
    color: #10b981;
    font-size: 26px;
}

.app-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.app-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* Owl Nav */
.app-carousel .owl-nav {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.app-carousel .owl-nav button.owl-prev,
.app-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    border: none !important;
    background: #0b7a68 !important;
    color: #ffffff !important;
    font-size: 22px !important;
    transition: 0.3s ease;
}

.app-carousel .owl-nav button.owl-prev:hover,
.app-carousel .owl-nav button.owl-next:hover {
    background: #095e51 !important;
    transform: translateY(-2px);
}

.app-carousel .owl-dots {
    display: none;
}

/* Mobile */
@media (max-width: 767.98px) {
    .app-card {
        padding: 14px;
        border-radius: 18px;
    }

    .app-image-wrap img {
        height: 220px;
    }

    .app-content h4 {
        font-size: 18px;
    }

    .app-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .app-carousel .owl-nav button.owl-prev,
    .app-carousel .owl-nav button.owl-next {
        width: 42px;
        height: 42px;
        font-size: 20px !important;
    }
}

/* HOME BLOG SECTION */
.home-blog-section {
    background: #f5f7f6;
}

.home-blog-label {
    display: inline-block;
    background: #f4a64b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.home-blog-title {
    font-size: 56px;
    font-weight: 800;
    color: #0b0b0b;
    margin-bottom: 0;
}

.home-blog-card {
    background: #ffffff;
    border: 1px solid #d8dde3;
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.home-blog-image-wrap {
    position: relative;
    overflow: hidden;
}

.home-blog-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.home-blog-date-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 102px;
    height: 102px;
    background: #f4a64b;
    color: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.home-blog-date-box span {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
}

.home-blog-date-box strong {
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
}

.home-blog-content {
    padding: 26px 30px 30px;
}

.home-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
}

.home-blog-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 16px;
}

.home-blog-meta .meta-item img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.home-blog-meta .meta-item i {
    color: #f4a64b;
    font-size: 18px;
}

.home-blog-link {
    display: block;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 800;
    color: #101828;
    text-decoration: none;
    margin-bottom: 16px;
}

.home-blog-link:hover {
    color: #0f3d3e;
}

.home-blog-desc {
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .home-blog-title {
        font-size: 42px;
    }

    .home-blog-image-wrap img {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .home-blog-title {
        font-size: 34px;
    }

    .home-blog-image-wrap img {
        height: 240px;
    }

    .home-blog-date-box {
        width: 84px;
        height: 84px;
    }

    .home-blog-date-box span {
        font-size: 15px;
    }

    .home-blog-date-box strong {
        font-size: 34px;
    }

    .home-blog-content {
        padding: 22px 20px 24px;
    }

    .home-blog-link {
        font-size: 20px;
    }

    .home-blog-desc {
        font-size: 15px;
    }
}

.production-control-section {
    background: linear-gradient(180deg, #f6f8f8 0%, #eef3f1 100%);
    position: relative;
    overflow: hidden;
}

.production-control-section .section-badge {
    display: inline-block;
    background: rgba(15, 61, 62, 0.08);
    color: #0f3d3e;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.production-control-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f3d3e;
    margin-bottom: 12px;
    line-height: 1.2;
}

.production-control-section .section-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #16a34a, #0f766e);
    border-radius: 20px;
    margin-bottom: 20px;
}

.production-control-section .section-subtitle {
    max-width: 760px;
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 28px;
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-top: 10px;
}

.control-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(15, 61, 62, 0.06);
    transition: all 0.35s ease;
    position: relative;
}

.control-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.control-card .icon-wrap {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f3d3e, #168b64);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(22, 139, 100, 0.22);
}

.control-card .icon-wrap i {
    font-size: 30px;
    color: #fff;
}

.control-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 14px;
}

.control-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 0;
}

.highlight-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5fffa 100%);
    border: 1px solid rgba(22, 139, 100, 0.15);
}

@media (max-width: 991.98px) {
    .production-control-section .section-title {
        font-size: 1.9rem;
        text-align: center;
    }

    .production-control-section .section-line {
        margin-left: auto;
        margin-right: auto;
    }

    .production-control-section .section-subtitle {
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .production-control-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .production-control-section .section-title {
        font-size: 1.65rem;
    }

    .control-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .control-card .icon-wrap {
        width: 68px;
        height: 68px;
    }

    .control-card .icon-wrap i {
        font-size: 26px;
    }

    .control-card h4 {
        font-size: 1.2rem;
    }

    .control-card p {
        font-size: 0.96rem;
        line-height: 1.8;
    }
}

.textile-expertise-section {
    background: #eef1f4;
    padding: 70px 0;
}

.expertise-box {
    background: #ffffff;
    border: 1px solid #d9dde2;
    border-radius: 22px;
    padding: 42px 40px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.expertise-box h2 {
    color: #22b573;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
}

.expertise-box p {
    color: #1f2937;
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 0;
    max-width: 92%;
}

.expertise-list {
    list-style: none;
    padding-left: 0;
    margin: 28px 0 0 0;
}

.expertise-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.9;
    font-weight: 500;
}

.expertise-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #22b573;
    font-size: 1.8rem;
    line-height: 1;
}

.expertise-image-wrap {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
}

.expertise-image-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.mini-info-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #d9dde2;
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.mini-info-card h4 {
    color: #22b573;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.mini-info-card p {
    color: #374151;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .expertise-box {
        padding: 34px 28px;
    }

    .expertise-box h2 {
        font-size: 1.7rem;
    }

    .expertise-box p {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .mini-info-card h4 {
        font-size: 1.45rem;
    }
}

@media (max-width: 767.98px) {
    .textile-expertise-section {
        padding: 50px 0;
    }

    .expertise-box {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .expertise-box h2 {
        font-size: 1.45rem;
        margin-bottom: 18px;
    }

    .expertise-box p {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .expertise-list li {
        font-size: 0.96rem;
        line-height: 1.8;
        padding-left: 24px;
    }

    .expertise-image-wrap img {
        height: 220px;
    }

    .mini-info-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .mini-info-card h4 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .mini-info-card p {
        font-size: 0.95rem;
    }
}