
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --light: #F8F8F9;
  --color-heading: #1c590f;
  --color-subheading: #2e5b12;
  --color-body: #4e4e4e;
  --color-accent: #8C6B4D;

  --color-primary: #406D3A;
  --color-acclight: #B4D4B0;
  --color-third: #e7e7e7;

  --brown-orange: #B76D38;
  --brown-orange-soft: #D6A77A;

  --text-dark: #222222;
  --text-muted: #666666;

  --font-primary: 'Playfair Display', serif;
  --font-content: 'Inter', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-third: 'Poppins', 'Open Sans', sans-serif;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

body, p, span, li  {
  font-family: var(--font-content);
}

div, a {
  font-family: var(--font-third);
}


body {
  color: #5a5a5a;
  background-color: #fff;
  min-width: 300px;
}

h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a;
}

/* Override subheadings in single blog post */
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
  font-family: 'Poppins', sans-serif;
}

/* Override subheadings in single page */
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4,
.page .entry-content h5,
.page .entry-content h6 {
  font-family: 'Poppins', sans-serif;
}

a:hover {
  color: var(--color-primary);
}

.color-prime {
  color: var(--color-primary);
}

.color-sub {
  color: var(--color-subheading);
}

.color-third {
  color: var(--color-third);
}

.color-body {
  color: var(--color-body);
}

.text-prime {
  font-family: var(--font-primary);
}

.text-second {
  font-family: var(--font-secondary);
}

.text-inter {
  font-family: var(--font-content);
}

.text-third {
  font-family: var(--font-third);
}

.breadcrumb-div .current-item {
  color: #25802b;
}

.text-body-ws {
  font-weight: 400;
  line-height: 1.7;
}

.font-body-ws {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}

.bg-prime {
  background-color: var(--color-primary);
}

.subheading {
  font-family: var(--font-third);
  font-weight: 300;              /* Semi-bold for clarity and strength */
  font-size: 1.15rem;            /* ~20px, adjust per use */
  line-height: 1.4;
  color: #1F1F1F;                /* Deep gray or brand text color */
  margin-bottom: 0.75rem;
}

@media (min-width: 1400px) {
 .boxed-container {
    max-width: 1200px;
 }
}

@media (max-width: 768px) {
  .subheading {
    font-size: 1rem; /* 22px */
  }
}

.btn-primary-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  background-color: #1f422f;         /* Dark green from design */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #2f6b4b;         /* Lighter green on hover */
  color: #fff;
}

.btn-outline-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid #f1a04c;        /* Suggested brown-orange accent */
  color: #f1a04c;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: #f1a04c;
  color: #fff;
}

/* Header */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1200px){
  .header-container {  
    padding: 0 15px;
  }

}

.header-top {
  padding: 28px 0;
}

/* Logo */
.logo-img {
  height: 58px;
}

@media (max-width: 450px){
  .logo-img {
    height: 50px;
  }
}

/* Social Icons */
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f2f2f2;
  border-radius: 50%;
  color: #000;
  transition: 0.3s;
  font-size: 14px;
  text-decoration: none;
}

.social-icons a:hover {
  background: #333;
  /*background: var(--color-primary);*/
  color: #fff;
}

.mobile-contact .social-icons {
  display: flex;

}

/* Contact Info */
.contact-item.ct-phone {
  border-left: 0.5px solid var(--color-primary);
  padding-right: 8px;
  padding-left: 22px;
}

.contact-item .contact-item-text {
  margin-left: 7px;
  font-size: 13px;
  line-height: 1.2;
}
.contact-item strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}


/* Button */
.btn-prime {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.5px;
}

.btn-prime:hover {
  background-color: #2e481f;
  
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.product-grid-card .btn-prime {
  font-size: 0.8rem;
  padding: 12px 32px;
}


/* Main Nav Bar */
.main-nav-bar {
  background-color: #f8f8f8;
  border-top: 1px solid #eee;
}
.main-nav {
  display: flex;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.main-nav li a:hover, .main-nav li a.active {
  color: var(--color-primary);
}
/*
.main-nav li a.active {
  font-weight: 600;
  color: #000;
}*/

.main-nav li a, .mobile-nav li a {
  font-family: var(--font-third);
}

/* Mobile */
.mobile-menu-btn {
  background: none;
  border: none;
  color: #333;
  padding: 6px 10px;
}

/** Sub Menu **/
/* Parent has submenu */
.main-nav li.has-submenu {
  position: relative;
}

/* Arrow icon */
.submenu-icon {
  margin-left: 6px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Submenu styles */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.submenu li {
  padding: 0;
}

.submenu li a {
  padding: 10px 20px;
  display: block;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.submenu li a:hover {
  background: #f3f3f3;
  color: var(--color-primary);
}

/* Show submenu on hover */
.main-nav li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate icon when open (on hover) */
.main-nav li.has-submenu:hover > a .submenu-icon {
  transform: rotate(180deg);
}

/** Mobile Menu **/
/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #1e1e1e;
  color: #fff;
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: right 0.4s ease;
}

/* Active State */
.mobile-menu-panel.open {
  right: 0;
}

.mobile-overlay.show {
  display: block;
}

/* Header */
.mobile-menu-header img {
  height: 40px;
}
.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
}

/* Nav Links */
.mobile-nav {
  list-style: none;
  padding: 30px 0 0;
  margin: 0;
  /*flex-grow: 1;*/
}
.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.mobile-nav a.active {
  color: var(--color-primary);
}

/* Contact Info */
.mobile-contact {
  font-size: 14px;  
}
.mobile-contact span {
  font-family: var(--font-primary);
  margin-left: 5px;
  color: #ccc;
}
/*
.mobile-contact img {
  filter: brightness(0) invert(1);
}*/

.mobile-contact .social-icons {
  margin-top: 25px;
}

/* Mobile Submenu */
.mobile-has-submenu > a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu-toggle-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-submenu li a {
  padding: 10px 0;
  font-size: 14px;
  color: #ccc;
}

/* Expanded submenu */
.mobile-has-submenu.open .mobile-submenu {
  max-height: 500px;
}

.mobile-has-submenu.open .submenu-toggle-icon {
  transform: rotate(180deg);
}

/* Mobile contact enhancements */
.mobile-contact strong {
  font-weight: 400;
  font-size: 15px;
}

@media(max-width: 768px) {
  .site-header {

  }
}

/** Hero **/
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  height: 650px;
}

.video-fallback {
  /*background-image: url('');*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Container for iframe */
.video-bg {
  position: absolute;
  inset: 0;
  /*top: 50%;
  left: 50%;*/
  /*width: 177.78vh;*/ /* 100vh * 16:9 aspect ratio */
  /*height: 100vh;
  transform: translate(-50%, -50%);*/
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw; /* slightly wider than the viewport */
  height: 67.5vw; /* 120vw * 9/16 */
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
}

@media (max-width: 1380px) {
   .hero {
      height: 550px;
    }
}

@media (max-width: 992px) {
   .hero {
      height: 450px; 
    }
}

@media (max-width: 576px) {
   .hero{
      height: 350px;
    }
}

@media (max-width: 480px) {

    .video-bg {
        display: none;
    }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero, .hero::before {

}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 28px;
  max-width: 900px
}

.hero-content .subtitle {
  
  margin-bottom: 1rem;
  opacity: 0.9;
  color: #fff;
}

.hero-content h2 {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #fff;
}

.hero-content .cta-button {
  padding: 0.8rem 1.5rem;
  background-color: #1b5e20; /* dark green */
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 23px;
  transition: background 0.3s;
}

.hero-content .cta-button:hover {
  background-color: #2e7d32;
}


/** about us section **/
.about-section {
  background-color: #ffffff;
  padding: 75px;
}

.dx-container {
  max-width: 1200px;
}

.about-label {
  color: #3d5b2e;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: block;
  font-family: var(--font-third);
}

.default-heading {
  font-size: 2.2rem;
  font-weight: 800;
  /*letter-spacing: 0.01em;*/
}

.about-title {  
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.4;
  /*letter-spacing: 0.01em;*/
  margin-top: 15px;
}

.about-stat {
  color: #3d5b2e;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-family: var(--font-third);
}

.about-sub {
  font-size: 0.85rem;
  color: var(--color-heading);
  line-height: 1.4;
  font-family: var(--font-third);
}

.about-stat-col .about-count-cards{
  max-width: 500px;
  margin: 0 10px 0 0;
}

.about-text {
  font-size: 1rem;
  color: #4e4e4e;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 0;
}

.about-section .btn-prime {
  margin-top: 50px;
}

.about-section .about-stat-col{
  padding-top: 28px;
}

@media (max-width: 992px) {

  .hero-content h2  {
    font-size: 2.2rem;
  }
 
  .about-stat-col {
    margin-top: 25px;
    max-width: 600px;
  }

  .about-text {
    margin: 20px 0 0;
    max-width: 600px;
  }
  .about-stat {
    font-size: 2.4rem;
  }

  .about-sub {
    font-size: 1.1rem;
  }

  .about-stat-col .about-stat-item {
    text-align: left;
  }

}

@media (max-width: 728px) {
  .about-section, .section-wide {
    padding: 75px 45px;
  }

  .default-heading {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h2  {
    font-size: 1.8rem;
  }
  .about-section {
    padding-left: 30px;
    padding-right: 30px;
  }
  .default-heading {
    font-size: 1.8rem;
  }

  .about-section .btn-prime {
    margin-top: 35px;
  }

  .about-stat {
    font-size: 2rem;
  }

  .about-sub {
    font-size: 0.85rem;
  }
  .about-stat-col .about-stat-item{
    padding-left:0;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h2  {
    font-size: 1.55rem;
  }
  .about-section, .section-wide {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-stat {
    font-size: 1.6rem;
  }
  .about-sub {
    font-size: 0.65rem;
  }
  .default-heading {
    font-size: 1.5rem;
  }
}

/** about section 2 **/
/* General Styling */
.bg-green {
  background-color: #3c6c3f;
}

.about-section-2 {
  background-color: #3c6c3f;
  margin-top: 170px;
  padding-top: 45px;
  padding-bottom: 75px;
}

.about-section-2 .default-heading {
  
  line-height: 1.6;
}

.about-section-2 .subheading {
  color: var(--color-third);
  font-size: 0.95rem;
}

/* Wrapper for negative margin */
.about-section-2 .image-wrapper {
  padding-right: 2rem;
  padding-right: 2rem;
}

.about-section-2 .icon-row, .two-cols-section .icon-row{
   margin-top: 45px;
   width: 85%;
}

/* Ensure taller-than-wide image */
.about-section-2 .minus-image {  
  margin-top: -165px;
  width: 90%;
  aspect-ratio: 9/10;
  object-fit: cover;
  border-radius: 25px;
  
}

/* Icon size */
.about-section-2 .icon, .two-cols-section .icon {
  width: 45px;
  height: 45px;
}

.icon-row h6 {
  font-family: var(--font-third);
}

/* Responsive tweaks */


@media (max-width: 1200px) {
 .about-section-2 .minus-image {
    margin-top: -205px;
 }

 .about-section-2 .icon-row, .two-cols-section .icon-row {
  width: 90%;
 }


}

@media (max-width: 1440px) and (min-width: 991px) {
 .about-section-2 .default-heading {
  font-size: 2rem;
 }
  .about-section-2 .minus-image {  
    margin-top: -250px;
  }
}



@media (max-width: 991px) {
  .about-section-2 {
    margin-top: 220px;
  }

  .about-section-2 .image-wrapper {
    margin-top: 0;
    padding-right: 0;
  }

  .about-section-2 .minus-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    aspect-ratio: 22/25;
  }

  .about-section-2 .content-column {
    padding: 3rem 1rem 2rem 3rem !important;
    
    /*text-align: center;*/
  }

  .about-section-2 .content-column .icon-row {
    /*text-align: left;
    margin: 45px auto 0;*/
  }

  .about-section-2 .content-column .icon-row .about-icon-box {
    /*justify-content: center;*/
  }

  .about-section-2 .image-column .img-wrap {
    width: 75%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-section-2 {
    margin-top: 130px;
  }

  .about-section-2 .minus-image {
    margin-top: -150px;
 }

  .about-section-2 .content-column {
    padding-left: 1.7rem !important;
    padding-right: 1.5rem !important;
  }

 .about-section-2 .icon-row, .two-cols-section .icon-row {
    width: 95%;
 }

 .about-section-2 .image-column .img-wrap {
    width: 85%;
 }
}

@media (max-width: 450px) {
  .about-section-2 .icon-row, .two-cols-section .icon-row {
      width: 100%;
  }

}

/** Products Section **/
/* Section Styling */
.container-product-card {
  max-width: 1320px;
}

.product-section {
  background-color: #fff;
  padding: 120px 0;
}

.product-section .subheading, .news-section .subheading {
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  color: var(--color-subheading);
}

.product-section .font-body-ws {
  color: #4e4e4e;
  max-width: 300px;
}

@media (max-width: 992px) and (min-width: 864px) {
  .product-section .products-swiper .swiper-wrapper {
    justify-content: center;
  }
}


/* Product Cards */


.product-card {
  display: block;
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.product-name {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}

/* Swiper Styling */
.products-swiper .swiper-slide {
  width: 260px;
}

@media (max-width: 992px) {
  .products-swiper .swiper-slide {
    /*width: 45%;
    aspect-ratio: 1;*/
  }

  .product-card {
    height: auto;
    aspect-ratio: 1;
  }

  .product-section .font-body-ws {
    max-width: 480px;
    margin: 0 auto;
  }
}


/** why us
.why-us-section {
  background-color: #fff;
}

.section-label {
  color: #3d5b2e;
  font-weight: 500;
  font-size: 0.95rem;
}

.wy-section-title {
  color: #0d3d00;
  font-weight: 700;
}

.wy-section-desc {
  color: #444;
}

.wy-icon-box {
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wy-icon-box .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.wy-icon-box h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.wy-icon-box p {
  font-size: 0.85rem;
  margin: 0;
}

.wy-icon-box:hover {
  transform: translateY(-6px);
}


.box-green {
  background-color: #3d5b2e;
  color: #fff;
}
.box-dark {
  background-color: #2e2e2e;
  color: #fff;
}
.box-brown {
  background-color: #a8793e;
  color: #fff;
}
.box-light {
  background-color: #f2f2f2;
  color: #2e2e2e;
}


@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.5rem;
  }
  .wy-icon-box {
    text-align: center;
  }
}*/

.why-label {
  color: #3d5b2e;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.why-title {
  color: #1c5e20;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-description {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.wy-icon-box {
  background-color: #f5f5f5;
  border-radius: 24px;
  padding: 25% 28px 36px;
  height: 100%;  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  text-align: left;
  transition: all 0.3s ease;
}

.wy-icon-box .wy-icon {
  margin-bottom: 16px;
  height: 40px;
}

.wy-icon-box img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.wy-icon-box h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 35px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.wy-icon-box p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  
}

.wy-icon-box.green h5, .wy-icon-box.dark h5, .wy-icon-box.brown h5 {
  color: #fff;
}

.wy-icon-box.green p, .wy-icon-box.dark p, .wy-icon-box.brown p {
  color: rgba(255, 255, 255, 0.7);
}


/* Color Themes */
.wy-icon-box.green {
  background-color: #3d5b2e;
}

.wy-icon-box.dark {
  background-color: #2e2e2e;
}

.wy-icon-box.brown {
  background-color: #a8793e;
}

.wy-icon-box.light {
  background-color: #f1f1f1;
  color: #2e2e2e;
}

@media (max-width: 1200px) and (min-width: 992px){
  .why-us-section .container {
    max-width: 1200px;
    padding: 0 30px;
  }

  .wy-icon-box img {
    width: 55px;
    height: 55px;
  }

  .wy-icon-box h5 {
    margin-top: 18px;
  }
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .wy-icon-box {
    padding: 25% 24px 32px;
    /*text-align: center;*/
  }
/*
  .wy-icon-box .wy-icon {
    margin: 0 auto 12px;
  }*/

  .wy-icon-box h5 {
    font-size: 1rem;
  }

  .wy-icon-box p {
    font-size: 0.8rem;
  }
}

@media (max-width: 512px) {
  .why-us-section {
    padding-left: 4%;
    padding-right: 4%;
  }
  .col-icon-box {
    width: 100%;
    /*padding: 0 5%;*/
  }  
}

/** certifications**/

.certification-section {
  margin-top: 40px;
  padding: 90px 20px 130px;
  background-color: #fff;
  text-align: center;
}

.certification-section .certification-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.5;
}

.badge-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge-grid img {
  height: 120px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease;
}

.badge-grid img:hover,
.swiper-slide img:hover {
  transform: scale(1.05);
}

/* Hide swiper by default */
.badge-swiper {
  display: none;
  overflow: hidden;
}


/* Show swiper under 768px */
@media (max-width: 768px) {
  .certification-section .certification-title {
    font-size: 1.45rem;
  }

  .badge-grid {
    display: none;
  }

  .badge-swiper {
    display: block;
    padding: 0 10px;
  }

  .badge-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
  }

  .badge-swiper .swiper-slide {
    width: 160px; /* You can tweak this width */
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .badge-swiper .swiper-slide img {
    height: 110px;
    width: auto;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  /*.badge-swiper .swiper-slide {
    margin-right: 10px;
  }*/
}


/* CTA Section */
.cta-section {
  /*background: url('../images/cta-background.jpg') center center / cover no-repeat;*/
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  max-height: 650px;
  padding: 4rem 1rem;
  position: relative;
}

/* Overlay (optional, if readability is an issue) */

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/*
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}*/


.cta-section .container {
  z-index: 2;
  position: relative;
}

.cta-section-title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.cta-section .subheading {
  color: #fff;
  opacity: 0.9;
}

.cta-section .btn {
  width: 205px;
}

.cta-section .cta-secondary {
  background-color: var(--brown-orange);

}


/* Responsive */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .cta-section {
    max-height: 450px;
  }
  .cta-section .btn {    
    max-width: 80%;
  }
}

/**News Section **/
.news-section {
  background-color: #ffffff;
  padding: 120px 0;
}

.view-all-btn {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.news-card .news-date {
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.news-card .news-title, .product-grid-card .news-title {
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #222;
  transition: 0.3s;
  text-decoration: none;
}

.news-card .news-title:hover, .product-grid-card .news-title:hover {
  color: var(--color-primary);
}

.news-card .news-desc {
  font-size: 0.95rem;
  color: #555;
  margin-top: 15px;
}

@media (max-width: 576px) {
  .news-section {
    padding-left: 5%;
    padding-right: 5%;
  } 
}


/** before footer feature section **/
.feature-section {
  background-color: #3c6333;
  padding: 85px 0;
}

.feature-section h2 {
  font-size: 1.8rem;
  line-height: 1.5;
}

.feature-section .lead {
  color: #c8e4c8;
  font-size: 1.05rem;
}

.feature-section .check-icon {
  width: 35px;
  height: 35px;
}

.feature-section .feature-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  font-family: var(--font-third);
}

/* Responsive typography */
@media (min-width: 768px) {
  .feature-section h2 {
    font-size: 2rem;
  }

  .feature-section .feature-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .feature-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 420px) {
  .feature-section h2 {
    font-size: 1.6rem;
  }
}


/*** Footer ***/

.footer-brand-img {
    width: 250px;
}

@media (max-width: 1190px) {
    .footer-brand-img {
        width: 210px;
    }

}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    text-decoration: none;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer .copyright a:hover {
    color: var(--color-primary);
}



/** Pages **/

.page-header {
  background: url('/path-to-your-image.jpg') center center no-repeat;
  background-size: cover;
  height: 420px;
}

.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* subtle overlay */
}

.page-header h1 {
  font-size: 3rem;
}

/* Breadcrumb icon spacing */
.breadcrumb-div {
  
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
}

.breadcrumb-div .current-item {
  color: #25802b;
}

.breadcrumb-div .dx-container {
  padding-left: 18px;
  padding-right: 18px;
}

.breadcrumb-div .breadcrumb-item, .breadcrumb-div .breadcrumb-item a {
  font-size: 0.9rem;
}

.breadcrumb-item a:hover {
  color: var(--color-primary) !important;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .page-header {
    height: 200px;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}


/** Two Column Section **/

.two-cols-section {
  padding-top: 80px;
  padding-bottom: 75px;
}

.two-cols-section .dining .section-desc {
  margin-top: 20px;
  /*padding-right: 50px;*/
}

.two-cols-section .attracitons .section-desc {
  margin-top: 25px;
}

.two-cols-section .dining .ining-img {
  aspect-ratio: 10/7;
  object-fit: cover;
}

.dining .dining-content {
  padding: 10px 20px 0 40px;  
}


@media (max-width: 992px) {
  .two-cols-section .dining .section-desc {
    padding-right: 5px;
  }

  .dining .dining-content {
    padding: 5px 10px 0 20px;
  }
}


@media (max-width: 768px) {


}

@media (max-width: 576px) {
  .two-cols-section {
    padding-top: 80px;
    padding-bottom: 75px;
    padding: 80px 20px;
  }

  .accordion-item {
    padding: 15px 8px;
  }

}

/** mission section **/
.mission-section {
  padding: 85px 0;
}

.mission-section .mission-icon {
  width: 60px;
  height: 60px;

}

.mission-section h4 {
  letter-spacing: 0.015em;
  font-weight: 500;
}
.mission-section p {
  font-weight: 300;
  color: #ececec;
}

/**about tech section **/
.about-tech-section {
  padding-top: 140px; 
}


.about-tech-section .tech-photo-section {
  margin-top: 120px;
}

.about-tech-section .tech-photo-section img {
  aspect-ratio: 10/8;
  object-fit: cover;
}

@media(max-width: 1100px) {
  .about-tech-section .tech-photo-section {
    margin-top: 100px; 
  }
}

@media(max-width: 992px) {
  .about-tech-section  .tech-photo-section{
    margin-top: 90px; 
  }
}

@media(max-width: 768px) {
  .about-tech-section  .tech-photo-section{
    margin-top: 60px; 
  }
  
  
  .col-vision, .col-mission {
      margin-top: 28px;
  }
  
  .mission-section h4 {
      font-size: 24px;
  }
}


/** sustain section **/
.sustain-section {
  margin-top: 110px;
  
}

.two-cols-section.sustain-section .dining-img {
  aspect-ratio: 9/10;
  object-fit: cover;
}

@media(max-width: 992px) {
  .sustain-section {
    margin-top: 80px;    
  }
}

@media(max-width: 480px) {
  .sustain-section {
    margin-top: 65px;    
  }
}

.certification-section.about-page {
  margin-top: 0;
  padding: 70px 20px 130px;
}

@media(max-width: 768px) {
  .certification-section.about-page  {
    padding-top: 50px;    
  }
}


/** products grid */
.product-grid-card {
  transition: box-shadow 0.3s ease;
}

.product-grid-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Two-line clamp with ellipsis */
.product-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 150px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* Hover group affects both icon and text */
.product-grid-card .hover-group:hover .product-title,
.product-grid-card .hover-group:hover .icon-link {
  color: #1a6b2f !important;
  text-decoration: none;
}

.product-grid-card .hover-group .icon-link {
  text-decoration: none;
}

/* Optional: smooth transition on icon */
.product-grid-card .icon-link i {
  transition: color 0.3s ease;
}

@media(max-width: 480px) {
  .product-grid-card .news-title {
    font-size: 1.05rem;
  }
}

/*
.btn-sm-square {
    width: 32px;
    height: 32px;
}*/
/*
.sustain-first .icon-row {
  max-width: 95%
}*/

.two-cols-section.sustain-first .icon-row {
  margin-top: 35px;
}


/**gallery page **/

    .gallery-section {
      padding: 60px 0;
    }

    .gallery-heading {
      font-size: 2.5rem;
      font-family: 'Georgia', serif;
      font-weight: 500;
      text-align: center;
      margin-bottom: 40px;
    }

    .gallery-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
    }

    .gallery-img {
      width: 100%;
      aspect-ratio: 5/4;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }

    .gallery-wrapper:hover .gallery-img {
      transform: scale(1.05);
    }

    .gallery-wrapper:hover .gallery-overlay {
      opacity: 1;
    }

/** product single page **/
.product-gallery .main-img {
  object-fit: cover;
  height: auto;
}

.thumbnails {
  gap: 8px;
}

.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumb:hover {
  border-color: #1a6b2f;
}

.thumb.active-thumb {
  border-color: #1a6b2f;
}

.specs-table {
  background-color: #f2f1f1;
  border-collapse: separate;
  border-spacing: 0;
}

.specs-table th,
.specs-table td {
  padding: 1rem;
  vertical-align: middle;
  background-color: #f2f1f1;
  border: 4px solid #fff;
  font-weight: 4500;
  color: #333;
}

.specs-table th {
  max-width: 200px;
  font-weight: 600;
}

.specs-table tr > th:first-child,
.specs-table tr > td:first-child {
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #1f1f1f;
    color: #585858;
    
}
.post-single-thumbnail{
    max-height: 600px;
    object-fit: cover;
}



/** comments **/

.comment-list {
    list-style-type: none;
    margin-top: 30px;
    padding-left: 20px;
    
}

.comment-list a {
    color: #0093dd;
}

.comment-list li {
    margin-top: 15px;
}

.comment-meta a {
    color: #222222;
    font-size: 14px;
}

.comment-author cite a{
    font-style: normal;
}

.comments-area .comment-respond {
    background-color: #f3f3f3;
    margin-top: 40px;
    padding: 50px 40px;
}

@media (max-width: 445px) {
	.comments-area .comment-respond {
        padding: 30px 20px;
    }
}


.comments-area .comment-respond a{
    color: #0093dd;
    
}

.comments-area .comment-respond .comment-reply-title small a {
    font-size: 16px;
    color: #fff;
    background-color: #1e1e1e;
    
    padding: 3px 6px;
}

.comments-area .comment-respond .comment-reply-title small a:hover {
    color: #1e1e1e;
    border: 1px #000 solid;
    background-color: transparent;
}

.comments-area .comment-respond .comment-form {
    margin-top: 20px;
}

.comments-area .comment-respond .comment-form .comment-form-comment label {
    display: none;
}

.comments-area .comment-respond .comment-form .comment-form-comment textarea,
.comments-area .comment-respond .comment-form p input {
    display: block;
    border-radius: 5px;
    border: 0px;
    width: 100%;
}

.comments-area .comment-respond .comment-form p input {
   
    height: 45px;
}

.comments-area .comment-respond .comment-form .comment-form-cookies-consent input{
    width: 10%;
    text-align: left;
    display: inline;
    height: 15px;
}

.comments-area .comment-respond .comment-form .form-submit input {
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    transition: .5s;
    width: 100%;     
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}


.comments-area .comment-respond .comment-form .form-submit input:hover {    
  background-color: #2e481f;  
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  color: #ffffff;   
}


.post-related-img {
    display: inline-block;
    min-width: 100px;
}

.post-related-text {
    display: inline-block;
    width: auto;
}

.post-related-thumbnail {
    max-width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.post-single-meta {
  margin-right: 15px;
  padding-left: 5px;
  color: #5o5o5o;
}

.post-related-text  {
  padding-top: 3px;
  padding-bottom: 3px;

}

.post-related-text a {
  line-height: 1.4;
  font-size: 16px;
}

.sidebar-link {
  text-decoration: none;
}

.single-post-content {
  color: #1e1e1e;
  font-family: var(--font-content);
}

.single-post-content h2, 
.single-post-content h3,
.single-post-content h4, 
.single-post-content h5, 
.single-post-content h6,
.single-page-content h2,
.single-page-content h3,
.single-page-content h4,
.single-page-content h5,
.single-page-content h6
{
   font-family: 'Poppins', 'Open Sans', sans-serif;
} 

/* ===== General Content Container ===== */
.single-post-content,
.single-page-content  {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
  padding: 1rem;
  word-wrap: break-word;
}

/* ===== Paragraphs ===== */
.single-post-content p,
.single-page-content  p {
  margin-bottom: 1.6em;
}

/* ===== Headings ===== */
.single-post-content h1,
.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 2em 0 1em;
}

.single-post-content h2,
.single-page-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2em 0 0.8em;
  line-height: 1.4;
}

.single-post-content h3,
.single-page-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.8em 0 0.6em;
}

.single-post-content h4,
.single-page-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5em 0 0.5em;
}

/* ===== Lists ===== */
.single-post-content ul,
.single-post-content ol,
.single-page-content ul,
.single-page-content ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}

.single-post-content ul li,
.single-page-content ul li {
  margin-bottom: 0.5em;
  list-style: disc;
}

.single-post-content ol li,
.single-page-content ol li {
  margin-bottom: 0.5em;
  list-style: decimal;
}

/* ===== Links ===== */
.single-post-content a,
.single-page-content a {
  color: #006b4b;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.single-post-content a:hover,
.page-content a:hover {
  color: #003f2f;
}

/* ===== Blockquotes ===== */
.single-post-content blockquote,
.single-page-content blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  margin: 2em 0;
  color: #555;
  font-style: italic;
}

/* ===== Images ===== */
.single-post-content img,
.single-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
  border-radius: 6px;
}

/* ===== Tables ===== */
.single-post-content table,
.single-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.single-post-content table th,
.single-page-content table th {
  text-align: left;
  background: #f5f5f5;
  padding: 0.75em;
  border: 1px solid #ddd;
}

.single-post-content table td,
.single-page-content table td {
  padding: 0.75em;
  border: 1px solid #ddd;
}

/* ===== Horizontal Rule ===== */
.single-post-content hr,
.single-page-content hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2.5em 0;
}

/* ===== Responsive Typography ===== */
@media (max-width: 768px) {
  .single-post-content,
  .single-page-content {
    font-size: 15px;
    padding: 1rem;
  }

  .single-post-content h1,
  .single-page-content h1 {
    font-size: 1.7rem;
  }

  .single-post-content h2,
  .single-page-content h2 {
    font-size: 1.5rem;
  }

  .single-post-content h3,
  .single-page-content h3 {
    font-size: 1.25rem;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 10px;
}

.contact .info {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, #111, transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, #111, transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, #111, transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .form-text,
.contact .php-email-form input[type=text].form-country {
  color: #111111;
  background-color: #fff;
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, #0e0e0e, transparent 80%);
}

.contact .php-email-form .form-text:focus {
  border-color: var(--primary-color);
}

.contact .php-email-form p{
  margin-bottom: 0;
}

.contact .php-email-form .form-text::placeholder {
  color: color-mix(in srgb, #111111, transparent 70%);
}

.contact .php-email-form input[type=text].form-text,
.contact .php-email-form input[type=email].form-text {
  padding: 10px 15px;
}
.contact .php-email-form input[type=text].form-text,
.contact .php-email-form input[type=email].form-text,
.contact .php-email-form input[type=text].form-country {
    height: 48px;
}

.contact .php-email-form textarea.form-text {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-color);
  color: #fff;
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--primary-color) 90%, black 15%);
}

.paginate-links a {
    color: var(--color-primary);
    margin-right: 5px;
    margin-left: 5px;
}

.paginate-links a:hover {
  color: #1e1e1e;
}

/** recaptcha notice**/
.recaptcha-notice {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 10px;
}

/** recaptcha badge hide **/
.grecaptcha-badge { 
    visibility: hidden; 
}

