

@font-face {
  font-family: 'Calgary-Demo';
  src: url('/fonts/Calgary-Demo.woff2') format('woff2');
  font-display: swap; /* Prevent CLS */
}

/*@font-face {*/
/*  font-family: 'themify';*/
/*  src: url('/fonts/themify.woff') format('woff');*/
/*  font-display: swap;*/
/*}*/

.hero-container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /*padding: 20px;*/
  background-size: cover;
  background-position: center;
}

/* Ensure images don’t cause layout shift */
.hero-container img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-container {
    min-height: 100vh; /* or adjust based on your content */
    /*padding: 16px;*/
  }

  .hero-container h1,
  .hero-container p {
    /*font-size: 5vw; */
    line-height: 1.4;
  }
}


  .service-area .service-item .service-text h3 a {
    font-size: 20px;
  }  


  /* .logo {
    width: 210px;
} */

.footer-section .contact-ft ul li a{
  color: #fff;
  font-size: 18px;
}
.footer-section .contact-ft ul li a:hover{
  color: #079a54;
}

.size-chart-section{
  margin-bottom: 120px;
}


.product-details {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
}
.size-chart-box {
  max-width: 800px;
  margin: 0 auto;
}

.product-flex {
  display: flex;
  flex-wrap: wrap;
}

.product-image,
.product-text {
  width: 50%;
}

@media (max-width: 768px) {
  .product-image,
  .product-text {
    width: 100%;
  }

  
  .product-details {
    padding: 15px 10px;
    font-size: 15px;
    text-align: justify;
  }

  .table-heading {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
  }


  .product-flex {
    flex-direction: column;
  }
}

/* Size Chart Table Styles */
.size-chart-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  overflow-x: auto;
}

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
  font-size: 15px;
}

.size-chart-table thead {
  background-color: #079a54;
}

.size-chart-table th,
.size-chart-table td {
  padding: 14px 16px;
  border: 1px solid #000;
  text-align: center;
}

.size-chart-table th {
  font-weight: bold;
  color: #fff;
}

.size-chart-table td {
  color: #000;
}

.table-heading {
  font-size: 20px;
  margin: 30px 0 10px;
  font-weight: 600;
  text-align: left;
}



/* for home page product */
    @media (min-width: 992px) {
        .col-lg-custom {
            flex: 0 0 auto;
            width: 20%; /* 5 columns per row = 100% / 5 */
        }
    }

    .mission-vision-content .icon-box {
      width: 40px;
      text-align: center;
      margin-top: 4px;
      color: #079a54!important;
  }

  

  .service-item {
    height: 100%;
    /* min-height: 200px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

  }
  
  .service-wrap .row > div {
    display: flex;
  }
  
  /* .service-text .icon {
    margin-bottom: 15px;
  }
   */

  .service-wrap .row > div {
    display: flex;
    margin-bottom: 30px; /* Add spacing between rows */
  }




.hero-container{
    background-color: #EBDBC8;
    color: #000;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.hero-container {
    width: 100%;
    height: 90vh;
}

.night-wolf-section {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-content {
    width: 50%;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    background: linear-gradient(135deg, rgba(235,219,200,1) 0%, rgba(235,219,200,0.95) 60%, rgba(235,219,200,0.85) 100%);
}

.title {
    font-size: 4rem;
    color: #079a54;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
}

.title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: #000;
}

.subtitle {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 80%;
    letter-spacing: 0.5px;
}

.slider {
    width: 50%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 1.2s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%; /* Full height */
    object-fit: cover; /* Changed back to cover to fill entire container */
    filter: brightness(0.9) contrast(1.05);
}


.slide.active .caption {
    transform: translateY(0);
    opacity: 1;
}


.hero-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    background-color: white;
    width: 12px;
    height: 12px;
}

.slider-dot.active::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Elegant mobile styles */
@media (max-width: 1024px) {
    .night-wolf-section {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        padding: 4rem 3rem;
        min-height: 45vh;
    }
    
    .title {
        font-size: 4rem;
    }
    
    .subtitle {
        max-width: 100%;
        font-size: 1.1rem;
    }
    
    .slider {
        width: 100%;
        height: 55vh;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .title {
        font-size: 3.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .slider {
        width: 100%;
        height: 100vh; /* Full viewport height on mobile */
    }

    
    .hero-slider-nav {
        bottom: 40px;
    }

}




.social-icons {
list-style: none;
display: flex;
/* gap: 15px; */
}

.social-icons li {
display: inline-block;
}

.social-icons a {
text-decoration: none;
color: #079a54; /* Set the icon color to green, or any color you prefer */
font-size: 25px; /* Adjust the size of the icons */
transition: color 0.3s ease;
}

.social-icons a:hover {
color: #079a54; /* Darker green on hover */
}

.social-icons i {
display: inline-block;
font-size: 1.5rem; /* Make icons bigger */
color: #fff;
}
.social-icons i :hover {
  background-color: #079a54;
}



.cp-header-area .main-menu ul > li > a {
    position: relative;
    display: inline-block;
    padding: 40px 18px;
    /* color: #fff; */
    text-decoration: none;
    transition: color 0.3s ease;
    overflow: hidden;
  }
  
  /* Active link color */
  .cp-header-area .main-menu ul > li > a:hover,
  .cp-header-area .main-menu ul > li > a.active {
    color: #1A9120;
  }
  
  /* Border animation effect */
  .cp-header-area .main-menu ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: #1A9120;
    transition: width 0.3s ease;
    transform: translateX(-50%);
  }
  
  /* Trigger border on hover and active */
  .cp-header-area .main-menu ul > li > a:hover::after,
  .cp-header-area .main-menu ul > li > a.active::after {
    width: 100%;
  }
  
.nav li.active a {
    color: green !important;
    font-weight: 600;
  
    /* border-bottom: 2px solid green; */
    /* background-color: rgba(0, 128, 0, 0.1); */
    border-radius: 4px;
}






/* for-whatsapp */

.wppBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 15px;
    width: 50px;
    height: 50px;
    z-index: 999;
    max-width: 60px;
    max-height: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiPgo8cGF0aCBzdHlsZT0iZmlsbDojNENBRjUwOyIgZD0iTTI1Ni4wNjQsMGgtMC4xMjhsMCwwQzExNC43ODQsMCwwLDExNC44MTYsMCwyNTZjMCw1NiwxOC4wNDgsMTA3LjkwNCw0OC43MzYsMTUwLjA0OGwtMzEuOTA0LDk1LjEwNCAgbDk4LjQtMzEuNDU2QzE1NS43MTIsNDk2LjUxMiwyMDQsNTEyLDI1Ni4wNjQsNTEyQzM5Ny4yMTYsNTEyLDUxMiwzOTcuMTUyLDUxMiwyNTZTMzk3LjIxNiwwLDI1Ni4wNjQsMHoiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZBRkFGQTsiIGQ9Ik00MDUuMDI0LDM2MS41MDRjLTYuMTc2LDE3LjQ0LTMwLjY4OCwzMS45MDQtNTAuMjQsMzYuMTI4Yy0xMy4zNzYsMi44NDgtMzAuODQ4LDUuMTItODkuNjY0LTE5LjI2NCAgQzE4OS44ODgsMzQ3LjIsMTQxLjQ0LDI3MC43NTIsMTM3LjY2NCwyNjUuNzkyYy0zLjYxNi00Ljk2LTMwLjQtNDAuNDgtMzAuNC03Ny4yMTZzMTguNjU2LTU0LjYyNCwyNi4xNzYtNjIuMzA0ICBjNi4xNzYtNi4zMDQsMTYuMzg0LTkuMTg0LDI2LjE3Ni05LjE4NGMzLjE2OCwwLDYuMDE2LDAuMTYsOC41NzYsMC4yODhjNy41MiwwLjMyLDExLjI5NiwwLjc2OCwxNi4yNTYsMTIuNjQgIGM2LjE3NiwxNC44OCwyMS4yMTYsNTEuNjE2LDIzLjAwOCw1NS4zOTJjMS44MjQsMy43NzYsMy42NDgsOC44OTYsMS4wODgsMTMuODU2Yy0yLjQsNS4xMi00LjUxMiw3LjM5Mi04LjI4OCwxMS43NDQgIGMtMy43NzYsNC4zNTItNy4zNiw3LjY4LTExLjEzNiwxMi4zNTJjLTMuNDU2LDQuMDY0LTcuMzYsOC40MTYtMy4wMDgsMTUuOTM2YzQuMzUyLDcuMzYsMTkuMzkyLDMxLjkwNCw0MS41MzYsNTEuNjE2ICBjMjguNTc2LDI1LjQ0LDUxLjc0NCwzMy41NjgsNjAuMDMyLDM3LjAyNGM2LjE3NiwyLjU2LDEzLjUzNiwxLjk1MiwxOC4wNDgtMi44NDhjNS43MjgtNi4xNzYsMTIuOC0xNi40MTYsMjAtMjYuNDk2ICBjNS4xMi03LjIzMiwxMS41ODQtOC4xMjgsMTguMzY4LTUuNTY4YzYuOTEyLDIuNCw0My40ODgsMjAuNDgsNTEuMDA4LDI0LjIyNGM3LjUyLDMuNzc2LDEyLjQ4LDUuNTY4LDE0LjMwNCw4LjczNiAgQzQxMS4yLDMyOS4xNTIsNDExLjIsMzQ0LjAzMiw0MDUuMDI0LDM2MS41MDR6Ii8+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
  }
  
  .pulse::after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #4caf50;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease infinite;
    z-index: -1;
  }
  
  @keyframes pulse {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    80% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(2);
    }
  }
  @media (max-width: 768px){
    .wppBtn{
      left: 8px;
      width: 40px;
      height: 40px;
      z-index: 999;
      max-width: 40px;
      max-height: 40px;
    }

  }

/* Scrollbar width */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: #079a54;
  border-radius: 10px;
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}




.image-bw-hover {
  /* filter: grayscale(100%); */
  /* transition: filter 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease; */
  /* border-radius: 20px; */
  border: 2px solid #079a54;
}

.image-bw-hover:hover {
  /* filter: grayscale(0%); */
  /* transform: scale(1.05); */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.form-control::placeholder {
  color: #000!important;
  font-weight: 500;
  text-transform: uppercase;
}
#message::placeholder {
  color: #000!important;
  font-weight: 500;
  text-transform: uppercase;
}
#product option{
  color: #000!important;
  font-weight: 500;
  text-transform: uppercase;
}
select.form-control:invalid  {
   color: #000!important;
  font-weight: 500;
  text-transform: uppercase;
}




@media (max-width: 768px) {
  .logo {
   
    width: 200px;
    /* margin: 0 auto; */
  }
}

@media only screen and (max-width: 576px) {
  .mouse-circle-mover,
  .mouse-circle-mover-follow {
    display: none !important;
 }
}



.ch-top-title-1 {
  text-align: center;
  padding: 50px;
}

.ch-top-title-2 {
  text-align: center;
  padding: 50px;
}

.ch-top-title-1 h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c2c2c;
}

/* Mobile view font size adjustment */
@media (max-width: 768px) {
  .ch-top-title-1 h1 {
    font-size: 1.8rem;
  }
}

.ch-top-title-1 p {
  font-style: italic;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

.ch-top-title-2 p {
  font-style: italic;
  font-size: 1.1rem;
  max-width: 1000px;
  margin: 0 auto;
  color: #555;
}









.eco-benefits-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.environmental-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.eco-feature-card {
  background: white;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eco-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sustainable-icon-wrapper {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.green-feature-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.environmental-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  text-align: center;
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .environmental-benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
  }
  
  .eco-feature-card {
      min-height: 120px;
      padding: 14px 10px;
  }
  
  .environmental-feature-title {
      font-size: 11px;
  }
}

@media (max-width: 600px) {
  .eco-benefits-wrapper {
      padding: 0 12px; /* space left & right */
  }

  .environmental-benefits-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
  }

  .eco-feature-card {
      aspect-ratio: 1 / 1; /* makes it square */
      min-height: auto;
      padding: 16px 10px;
  }

  .sustainable-icon-wrapper {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
  }

  .green-feature-icon {
      width: 70px;
      height: 70px;
  }

  .environmental-feature-title {
      font-size: 11px;
      line-height: 1.3;
  }
}

@media (max-width: 400px) {
  .eco-benefits-wrapper {
      padding: 0 10px;
  }

  .environmental-benefits-grid {
      grid-template-columns: 1fr 1fr; /* still 2 columns */
      gap: 10px;
  }

  .eco-feature-card {
      aspect-ratio: 1 / 1;
      padding: 14px 8px;
  }

  .environmental-feature-title {
      font-size: 10px;
  }
}

/* Icons using CSS and Unicode symbols */
.compostable-recycling-icon::before {
  content: "♻";
  font-size: 28px;
  color: #059669;
  font-weight: bold;
}

.no-plastic-prohibition-icon::before {
  content: "🚫";
  font-size: 28px;
}

.plant-based-growth-icon::before {
  content: "🌱";
  font-size: 28px;
}

.laboratory-testing-icon::before {
  content: "🧪";
  font-size: 28px;
}

.tree-free-sustainable-icon::before {
  content: "🌳";
  font-size: 28px;
  position: relative;
}

.tree-free-sustainable-icon::after {
  content: "🚫";
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}










/* FAQ Section General Styling */
.faq-section {
    background-color: #f9f9f9;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faq-section .container {
    max-width: 900px;
    width: 100%;
    padding: 0 15px;
}

.ch-top-title-s2 {
    margin-bottom: 40px;
}

.ch-top-title-s2 span {
    font-size: 16px;
    font-weight: 600;
    color: #35a853;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ch-top-title-s2 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    line-height: 1.4;
}

.accordion {
    text-align: left;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
}

.accordion-button {
    font-weight: 600;
    font-size: 18px;
    padding: 16px 20px;
    background-color: #fff;
    color: #333;
    border: none;
    box-shadow: none;
    letter-spacing: 1.5px;
}

.accordion-button:not(.collapsed) {
    background-color: #35a853;
    color: #fff;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 16px 20px;
    font-size: 16px;
    color: #555;
    background-color: #fefefe;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .ch-top-title-s2 h2 {
        font-size: 28px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 14px 16px;

    }

    .accordion-body {
        font-size: 15px;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .ch-top-title-s2 h2 {
        font-size: 24px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 12px 14px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 12px 14px;
    }
}
