  .preloader {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 999999;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .preloader.hide {
        opacity: 0;
        pointer-events: none;
    }

     .loader {
        width: 100px;
        height: 100px;
        border: 10px solid #D4E2D2;
        border-top: 10px solid #658161; 
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
     @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

/*About page*/

  .title-description-list {
    margin: 45px auto;
    max-width: 1180px;
    padding: 0 20px;
  }

  .title-description-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }

  .title-description-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .title-description-item h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
  }

  .title-description-item .description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }
  
  /*Image-description*/
   .u-image-hover:hover img {
   transform: scale(1.05);
   transition: transform 0.5s ease-in-out;
 }

 .fade-in {
   opacity: 0;
   animation: fadeInUp 1s ease-in-out forwards;
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .custom-btn {
   background-color: #D4E2D2;
   color: black;
  transition: all 0.3s ease-in-out;
   padding: 16px 40px;
   display: inline-block;
   border-radius: 30px;
   border: none;
   width: 200px;
   font-size: 18px; 
   text-decoration: none;
   margin-top: 25px;
 }

 .custom-btn:hover {
   background-color: #658161;
   color: #fff;
 }
 
 
 
 
 
 
 
 /*Product_Detail page*/
 
 
   .product-detail-section .new-layout {
      padding: 0px 30px 40px 30px;
      background: #fff;
      max-width: 1200px;
      margin: auto;
      margin-top: 0;
  }
  
    .product-detail-container {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
  }
  .product-table tbody tr {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.product-table tbody tr.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.product-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.product-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.product-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.product-table tbody tr:nth-child(5) { animation-delay: 0.5s; }


.product-table tbody tr:hover {
    background-color: #f0f5f0; 
    transition: background-color 0.3s ease;
}


    @keyframes fadeZoomIn {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .whatsapp-btn {
      background-color: #25d366;
      color: white;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

      .whatsapp-btn:hover {
          transform: translateY(-4px);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }

          .whatsapp-btn:hover .whatsapp-icon {
              fill: white;
          }

  .whatsapp-icon {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
  }

  .product-grid-section {
      padding: 0px 80px;
      background-color: #FAF9F6;
  }

  .product-grid_pd {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 1140px;
  }


  .product-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: black;
  }

      .product-card a {
          color: inherit;
          text-decoration: none;
          display: block;
      }

  .product-thumbnail_pd {
      width: 100%;
      padding-top: 100%;
      position: relative;
      overflow: hidden;
  }

      .product-thumbnail_pd img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
      }
.product-thumbnail_pd:hover img {
    transform: scale(1.1); 
}
  /*.product-card:hover .product-thumbnail_pd img {*/
  /*    transform: scale(1.05);*/
  /*}*/

  .product-title {
      font-size: 1.2rem;
      margin: 10px 0;
      padding: 0 10px;
  }

  .product-title10 {
      font-size: 1.2rem;
      /*margin: 10px 0;*/
      /*padding: 0 10px;*/
      padding: 10px 10px; text-align:center; margin:0 auto;
  }

  .product-title5 {
      font-size: 1.2rem;
      margin: 10px 0;
      padding: 0 10px;
  }

  .related-products {
      padding: 0px 0px;
      max-width: 1140px;
      margin: auto;
      margin-top: 40px;
  }

      .related-products h3 {
          text-align: center;
          margin-bottom: 20px;
          font-size: 22px;
          color: #658161;
          font-weight: bold;
      }

  .related-card_pd {
      background-color: #F5F5F4;
  }

  .product-detail-section .new-layout {
      padding: 0px 30px 40px 30px;
      background: #fff;
      max-width: 1200px;
      margin: auto;
      margin-top: 0;
  }

  .product-detail-container {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
  }

  /*.product-image img {*/
  /*    border-radius: 5px;*/
  /*    width: 430px;*/
  /*    height: 430px;*/
  /*}*/
/*.product-image {
    width: 430px;
    height: 430px;
    overflow: hidden;
    border-radius: 5px;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.5s ease;
    }

    .product-image:hover img {
        transform: scale(1.1);
    }*/

.product-image {
    width: 430px;
    height: 430px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.3s ease, transform-origin 0.3s ease;
    }


  .product-info {
      flex: 1;
      min-width: 250px;
  }

  .product-title1 {
      font-size: 28px;
      font-weight: bold;
      color: #3E6050;
      margin-bottom: 10px;
      text-align: left;
      animation: fadeSlideTitleMain 2.2s ease forwards;
    opacity: 0; 
  }
  
 @keyframes fadeSlideTitleMain {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInDescription {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-title11 {
      font-size: 20px;
      font-weight: bold;
      color: #3E6050;
      margin-bottom: -20px;
      text-align: left;
      animation: fadeSlideTitle 2.2s ease forwards;
    opacity: 0; 
  }
  
  @keyframes fadeSlideTitle {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  .product-description {
      /*font-size: 12px;*/
      color: black;
      margin-bottom: 10px;
      margin-top: 0px;
      text-align: left;
      animation: fadeInDescription 2.2s ease forwards;
    animation-delay: 0.2s; 
    opacity: 0; 
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  }
.product-title1, .product-description {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
  .product-buttons {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      margin-bottom: 20px;
  }
  /*.whatsapp-btn {*/
  /*    background-color: #25d366;*/
  /*    color: white;*/
  /*    font-weight:bold;*/
  /*    padding: 10px 20px;*/
  /*    border-radius: 5px;*/
  /*    text-decoration: none;*/
  /*}*/
  .inquire-btn {
      background-color: #007bff;
      color: white;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
  }

  .back-link {
      display: inline-block;
      margin-top: 20px;
      color: #658161;
      text-decoration: none;
  }

      .back-link:hover {
          text-decoration: underline;
      }

  .animated-product-img {
      display: block;
      opacity: 0;
      transform: scale(0.95);
      animation: fadeZoomIn 0.8s ease-out forwards;
      transition: transform 0.3s ease;
  }

      .animated-product-img:hover {
          transform: scale(1.05);
      }
      
      
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*.product-table tbody tr {*/
/*    animation: fadeSlideIn 0.6s ease forwards;*/
/*    opacity: 0;*/
/*}*/
.product-table tbody tr {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.product-table tbody tr.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.product-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.product-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.product-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.product-table tbody tr:nth-child(5) { animation-delay: 0.5s; }


.product-table tbody tr:hover {
    background-color: #f0f5f0; 
    transition: background-color 0.3s ease;
}


    @keyframes fadeZoomIn {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }


    @media (max-width: 1024px) {
        .product-grid_pd {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .product-grid_pd {
            grid-template-columns: repeat(2, 1fr);
        }

        .product-detail-container {
            flex-direction: column;
            align-items: center;
        }

        .product-info {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .product-grid_pd {
            grid-template-columns: 1fr;
        }
    }
 
 
 
 
 
 
  /*Product_list*/

 .product-grid-section {
     padding: 60px 65px 60px 65px;
     background-color: #FAF9F6;
 }

 .product-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     list-style: none;
     padding: 0;
     margin: 0 auto;
     max-width: 1200px;
 }

 .product-card {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     color: black;
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .product-thumbnail {
     width: 100%;
     padding-top: 100%; /* square */
     position: relative;
     overflow: hidden;
 }

     .product-thumbnail img {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.3s ease;
     }

 .product-card:hover .product-thumbnail img {
     transform: scale(1.05);
 }

 .product-title {
     font-size: 1.2rem;
     color: black;
     margin: 10px 0;
     padding: 0 10px;
 }

 .no-products {
     grid-column: 1 / -1;
     text-align: center;
     color: red;
     font-weight: bold;
 }

 @media (max-width: 1024px) {
     .product-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 768px) {
     .product-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 480px) {
     .product-grid {
         grid-template-columns: 1fr;
     }
 }  
 
 /*Product_subproduct_List*/
 /* .product-grid-section_ps {*/
 /*    padding: 60px 65px 60px 65px;*/
 /*    background-color: #FAF9F6;*/
 /*}*/

 /*.product-grid_ps {*/
 /*    display: grid;*/
 /*    grid-template-columns: repeat(3, 1fr);*/
 /*    gap: 30px;*/
 /*    list-style: none;*/
 /*    padding: 0;*/
 /*    margin: 0 auto;*/
 /*    width: 1140px;*/
 /*}*/

 /*.submenu-title-card {*/
 /*    grid-column: 1 / -1;*/
 /*    text-align: center;*/
 /*}*/

 /*.submenu-title {*/
 /*    font-size: 2rem;*/
 /*    margin-bottom: 10px;*/
 /*    color: #222;*/
 /*    font-weight: bold;*/
 /*    border-bottom: 2px solid #6c8b6f;*/
 /*    display: inline-block;*/
 /*    padding-bottom: 5px;*/
 /*    text-transform: uppercase;*/
 /*}*/

 /*.product-card_ps {*/
 /*    background: white;*/
 /*    border-radius: 10px;*/
 /*    overflow: hidden;*/
 /*    color: black;*/
 /*    text-align: center;*/
 /*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
     /*box-shadow: 0 5px 15px rgba(0,0,0,0.3);*/
 /*}*/

 /*.product-card:hover {*/
 /*    transform: translateY(-5px);*/
 /*    box-shadow: 0 10px 25px rgba(0,0,0,0.5);*/
 /*}*/

 /*.product-thumbnail_ps {*/
 /*    width: 100%;*/
     /*padding-top: 100%; */
 /*    position: relative;*/
 /*    overflow: hidden;*/
 /*}*/

 /*    .product-thumbnail_ps img {*/
 /*        position: absolute;*/
 /*        top: 0;*/
 /*        left: 0;*/
 /*        width: 100%;*/
 /*        height: 100%;*/
 /*        object-fit: cover;*/
 /*        transition: transform 0.3s ease;*/
 /*    }*/

 /*.product-card_ps:hover .product-thumbnail_ps img {*/
 /*    transform: scale(1.05);*/
 /*}*/

 /*.product-title {*/
 /*    font-size: 1.2rem;*/
 /*    color: black;*/
 /*    margin: 10px 0;*/
 /*    padding: 0 10px;*/
 /*}*/


 /*.no-products {*/
 /*    grid-column: 1 / -1;*/
 /*    text-align: center;*/
 /*    color: red;*/
 /*    font-weight: bold;*/
 /*}*/


 /*@media (max-width: 1024px) {*/
 /*    .product-grid_ps {*/
 /*        grid-template-columns: repeat(3, 1fr);*/
 /*    }*/
 /*}*/

 /*@media (max-width: 768px) {*/
 /*    .product-grid_ps {*/
 /*        grid-template-columns: repeat(2, 1fr);*/
 /*    }*/
 /*}*/

 /*@media (max-width: 480px) {*/
 /*    .product-grid_ps {*/
 /*        grid-template-columns: 1fr;*/
 /*    }*/
 /*}*/
 
 
 /*Home_twolayout section*/
 .u-layout11 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;              
    margin: 0;           
}

.u-layout11 .u-layout-cell1 {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
    padding: 40px 30px;
    box-sizing: border-box;
}


.u-layout-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.u-layout-row > .u-layout-cell1 {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    min-height: 400px;
    box-sizing: border-box;
}

.u-layout-cell-11 {
    background-color: var(--bg-color-left, #658161);
    color: white;
}

.u-image {
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}
.u-image::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.3);*/
    z-index: 0;
    border-radius: inherit;
}
.u-container-layout-10 {
    position: relative;
    z-index: 1;
    width: 100%;
       text-align: center;
}

.u-text-1, .u-text-3 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}
.u-text-2, .u-text-4 {
    font-size: 16px;
    /*color: #ddd;*/
    margin-bottom: 20px;
}

.u-btn1 {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    background: transparent;
}
.u-btn1:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 1024px) {
    .u-layout-row > .u-layout-cell1 {
        flex: 1 1 100%;
    }
    .u-text-1, .u-text-3 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .u-layout-row > .u-layout-cell1 {
        padding: 30px 20px;
    }
    .u-text-1, .u-text-3 {
        font-size: 22px;
    }
    .u-text-2, .u-text-4 {
        font-size: 14px;
    }
}
      
      
      /*Homebannersection  */
      .u-repeater.u-repeater-1 {
    display: grid;
    height: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.u-repeater.u-repeater-1 .u-list-item {
    border-radius: 40px;
    overflow: hidden;
}

/*Footer*/
   .u-image-gallery {
       display: flex;
       flex-wrap: wrap;
       justify-content: left;
        text-align: left;
       gap: 10px;
       margin: 1px 0;
   }

   

   .u-gallery-image {
       width: 108px;
       height: 80px;
       object-fit: contain;
   }
   
   /*Header*/
   
.main-header {
    background: white;
    padding: 10px 30px;
    position: relative;
    z-index: 999;
    width:1200px;
    text-align: start;
    overflow: visible;
        margin: 0 auto;

}
.main-header1 {
    background: white;
    /*padding:  30px;*/
    position: relative;
    z-index: 999;
    overflow: visible;

}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: visible;
    position: relative;
}

.ul-header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: visible;
}

.nav-link {
    font-weight: 600;
    padding: 10px 15px;
    color: #111;
    font-size:16px;
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: #658161;
    text-decoration: underline; 
    text-underline-offset: 4px; 
}

/* PARENT LINK STYLE */
.parent-link {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* SUBMENU CONTAINER */
.has-sub-menu {
    position: relative;
}

/* DROPDOWN STYLES */
.ul-header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 12px;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;

    white-space: nowrap;
    overflow-x: auto;
    max-height: 90vh;
}

/* SHOW SUBMENU ON HOVER */
.has-sub-menu:hover .ul-header-submenu {
    opacity: 1;
    visibility: visible;
 transform: translateX(-40%) translateY(0);
}

/* SUBMENU LIST STYLES */
.ul-header-submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ul-header-submenu li {
    border-bottom: 1px solid #eee;
}

.ul-header-submenu li:last-child {
    border-bottom: none;
}

.ul-header-submenu li a {
    display: block;
    padding: 12px 20px;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ul-header-submenu li a:hover {
    background-color: #f2f6f2;
    color: #2e6e4c;
    padding-left: 24px;
}

@media (max-width: 991.98px) {
    .ul-header-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .has-sub-menu {
        width: 100%;
    }

   .ul-header-submenu {
    position: absolute;
    top: 100%;
    left: 50%;                        
    transform: translateX(-50%) translateY(2px); 
    background-color: #fff;
    padding: 10px 0;
    border-radius: 12px;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    white-space: nowrap;
    overflow-x: auto;
    margin-top: 10px;
}
    

    .ul-header-submenu li a {
        padding: 10px 18px;
    }
}

/*HomechooseProductSaw*/

.product-grid-section {
    padding: 0px 0px;
    background-color: #FAF9F6;
    display: flex;
    justify-content: center;
    animation: fadeSlideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.product-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1130px;
    justify-content: center;
}

.product-card12 {
    width: 360px;
    height: 340px;
    background: white;
    border-radius: 7px;
    overflow: hidden;
    color: black;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease forwards;
}

.product-card12:hover .product-thumbnail1 img {
    transform: scale(1.05);
}

.product-thumbnail1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-title12 {
    font-size: 1.2rem;
    width:340px;
    color: black;
    margin: 0 auto;
    padding: 0;
}

.read-more-link {
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-decoration: none;
    color: #658161;
    font-weight: bold;
    transition: color 0.3s ease;
}

.product-card12:hover .read-more-link {
    color: #D4E2D2;
}

.no-products {
    text-align: center;
    color: red;
    font-weight: bold;
    margin-top: 20px;
}

.blog-heading {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-top: 8px;
    color: #3E6050;
    opacity: 0;
     font-family:Montserrat;
    transform: translateY(20px);
       animation: fadeSlideUp 1s ease-out forwards;
    /*font-family: 'Montserrat', sans-serif;*/
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .product-grid1 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .product-grid1 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .product-grid1 {
        grid-template-columns: 1fr;
    }
}

/*HomeLatestArticulate*/

  .u-repeater.u-repeater-2 {
    display: grid;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 0 auto;
}

.u-repeater.u-repeater-2 .u-list-item {
    border-radius: 40px;
    overflow: hidden;
}
.product-grid-section {
    padding: 10px 0px;
    background-color: #FAF9F6;
    display: flex;
    justify-content: center;
    animation: fadeSlideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.blog-heading1 {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin: 0px 0;
    color: #3E6050;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease-out forwards;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
        justify-content: center;
}

.product-card {
     width: 270px;
    background: white;
    border-radius: 0px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.product-thumbnail {
    width: 100%;
    padding-top: 70%; 
    position: relative;
    overflow: hidden;
}

.product-thumbnail img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

.product-title2 {
    color: #658161; 
    margin: 0 ;
    padding: 0 ;
}

.product-card:hover .product-title2 {
    color: #658161;
}

.read-more-link {
    display: inline-block;
    font-size: 16px;
    color: #658161;
    font-weight: bold;
    margin-bottom: 15px;
    text-decoration: none;
}

.no-products {
    text-align: center;
    color: red;
    font-weight: bold;
    margin-top: 20px;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Articulate*/
/*Post*/
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100%;
        background-color: #FAF9F6; 
        font-family: 'Segoe UI', sans-serif;
    }

        .recent-post-link {
            color: #5B7457;
            text-decoration: none;
            display: block;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

            .recent-post-link:hover {
                color: #A2C71F;
                transform: translateX(5px);
            }


    .container {
        display: flex;
        gap: 2rem;
        padding: 2rem;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
    }

    .content {
        flex: 3;
    }

    .sidebar {
        flex: 1;
        min-width: 280px;
    }

  /*   .post {
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    } */

    .post-title {
        font-size: 47px;
        font-weight: bold;
        margin-bottom: 0.2rem;
        color: #658161;
    }

    .post-meta time {
        font-size: 0.9rem;
        color: #888;
    }

    .postImage {
        width: 100%;
        height: auto;
        /* margin-top: 1rem; */
        border-radius: 5px;
    }

    .post-content {
        /* margin-top: 1.5rem; */
        line-height: 1.6;
    }

    .share {
        margin-top: 2rem;
    }

    .author {
        margin-top: 2rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }

    .authorimage {
        margin-bottom: 1rem;
    }

    .sidebar input[type="text"] {
        width: 100%;
        padding: 0.6rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .sidebar .box {
        background: #f5f3ef;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 8px;
    }

    .sidebar h4 {
        margin-bottom: 1rem;
    }

    .recent-posts li {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 1rem;
    }

    .recent-posts img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 4px;
    }
     
    .recent-posts a {
        color: #333;
        font-weight: 500;
        text-decoration: none;
    }

    .recent-posts time {
        font-size: 0.75rem;
        color: #999;
    }


@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/*List*/

.blog-container5 {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    
}


.blog-card-grid {
    display: flex;
        gap: 30px;
    flex-wrap: wrap;
        grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    padding: 60px 0px;
  
}

    .card1 {
        width: 360px;
        height: auto;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: black;
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }


.card1 a {
    color: inherit;
    text-decoration: none;
    display: block;
}

    .card-thumbnail {
        width: 100%;
        height: 300px; 
        overflow: hidden;
    }

        .card-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


.card1:hover .card-thumbnail img {
    transform: scale(1.05);
}

    .card-content1 {
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
        flex-grow: 1;
    }


.card-title {
    font-size: 22px;
    font-weight: bold;
    /* margin-bottom: 15px; */
}

.read-more1 {
    font-weight: bold;
    color: #80BC00;
    font-size: 16px;
   
}

.pager-container {
    margin-top: 30px;
    text-align: center;
}


@media (max-width: 1024px) {
   .blog-card-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 90%;
    }
}