/* preloader */
:root {
  --primary-color: #7a9c42;
  --secondary-color: #5c7b2b;
  --accent-color: #d59241;
}
/* body{
  user-select: none;
} */

html{
 scroll-behavior: smooth !important;
  overflow-x: hidden;
}
.text-green {
  color: var(--primary-color) !important;
  font-weight: 700;
}

#preloader {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11000;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  overflow: hidden;
}

/* Animated background circles */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 70%
  );
  animation: float-circle 8s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.bg-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  animation-delay: 2s;
}

.bg-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

/* @keyframes float-circle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.5;
  }
} */

.loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 2;
}

/* Logo container with animation */
.logo-container {
  position: relative;
  width: 400px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo-entrance 1.5s ease-out;
}

.logo-container::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 0;
}

  /* @keyframes logo-entrance {
    0% {
      opacity: 0;
      transform: scale(0.5) rotateY(180deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotateY(0deg);
    }
  } */

/* Circular glow behind logo */
.logo-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Logo image */
.logo-img {
  position: relative;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Rotating circle border */
.circle-border {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 3px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rotate-border 2s linear infinite;
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Loading text with dots */
.loading-text {
  color: white;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.loading-dots {
  display: inline-block;
  width: 30px;
  text-align: left;
}

.loading-dots::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}

/* Smooth progress bar */
.progress-container {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.progress-bar {
  height: 100%;
  width: 0%; /* Initial width */
  background: linear-gradient(90deg, var(--accent-color) 0%, #f4c589 100%);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(232, 168, 112, 0.6);
  transition: width 0.3s ease; /* Smooth transition for width changes */
}
/* slider */

.slider-ctr {
  position: relative;
  width: 99vw;
  height: 98vh; /* Full viewport height */
  position: relative;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.slider-control {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.15);
}

.slider-control .control {
  width: 50%;
  height: 40px;
  display: block;
  float: left;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  font-size: 20px;
}

.slider-control .control.disabled {
  pointer-events: none;
  background: #ddd;
  opacity: 0.5;
}

.slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.45s cubic-bezier(0.65, 0.05, 0.36, 1);
  clip-path: inset(0 0 0 0);
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.slide.slide-on {
  clip-path: inset(0 100% 0 0);
}

.slide.text-on .lbox-details h1,
.slide.text-on .lbox-details h2,
.slide.text-on .lbox-details p,
.slide.text-on .lbox-details a.btn {
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1) 0.45s;
  clip-path: inset(0 0 0 0);
}

.slide .lbox-caption {
  display: table;
  height: 100%;
  width: 100%;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 10;
}

.slide .lbox-details {
  display: flex;               /* Use flexbox for easier positioning */
  flex-direction: column;
  justify-content: flex-end;   /* Move content to bottom */
  align-items: flex-start;     /* Align to left */
  position: absolute;
  bottom: 22%;                 /* Distance from bottom edge */
  left: 8%;                    /* Distance from left edge */
  width: 80%;                  /* Prevent text from going too wide */
  height: auto;
  padding: 0;
  text-align: left;
  z-index: 3;
  transform: none;             /* Ensure no unwanted centering transform */
}

.slide .lbox-details h1 {
  font-size: 54px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}

/* 💻 Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .slide .lbox-details h1 {
    font-size: 60px;
  }
}

/* 🖥️ Laptops / small desktops (992px–1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .slide .lbox-details h1 {
    font-size: 50px;
  }
}

/* 📱 Tablets (768px–991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .slide .lbox-details h1 {
    font-size: 42px;
  }
}

/* 📱 Mobile (≤767px) */
@media (max-width: 767px) {
  .slide .lbox-details h1 {
    font-size: 32px;
  }
}

.slide .lbox-details a.btn {
  background: #ffffff;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: capitalize;
  color: #3a4149;
  border-radius: 0;
  position: relative;
  z-index: 3;
  text-decoration: none;
  clip-path: inset(0 0 0 100%);
}

.slide .lbox-details a.btn:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider-nav li {
  display: inline-block;
  margin: 0 5px;
}

.slider-nav-btn {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 0;
}

.slider-nav-btn--selected {
  background: var(--primary-color) !important;
}

/* Product Slider */
.product-container {
  position: relative;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  height: 650px;
  background: #f5f5f5;
  border-radius: 20px;
}

.product-container .product-slide {
  border-radius: 20px;
}

.product-container .product-slide .item {
    width: 200px;
    height: 250px;
    position: absolute;
    top: 100%;
    transform: translate(35%, -65%);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: all 0.5s;
}
.product-slide .item:nth-child(2)::before {
    content: "";
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: rgba(122, 156, 66, 1);
    z-index: 1;
}
.product-slide .item:nth-child(1),
.product-slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.5s;
}

.product-slide .item:nth-child(3) {
  left: 50%;
  opacity: 1;
  
}

.product-slide .item:nth-child(4) {
  left: calc(50% + 220px);
  opacity: 1;
}

.product-slide .item:nth-child(n + 5) {
  left: calc(50% + 270px);
  opacity: 0;
}

.item .content {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  display: flex; /* Use flex to stack elements vertically */
  flex-direction: column; /* Stack name, ul, and button vertically */
  align-items: flex-start; /* Align content to the left */
  display: none;
  z-index: 2;
}

.product-slide .item:nth-child(2) .content {
  display: flex; /* Ensure flex for active slide */
}

.content .name {
  font-size: 27px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.product-slide .item .content .des {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 40px 0; /* Increased bottom margin to 40px */
  color: #eee;
  font-size: 16px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.product-slide .item .content .des li {
  display: block; /* Stack list items vertically */
  position: relative;
  padding: 0 0 8px 20px; /* Add bottom padding for spacing */
}

.product-slide .item .content .des li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}

.product-slide .item .content .show-all {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.673);
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
  display: block; /* Ensure button is block-level */
}

.product-slide .item .content .show-all:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  left: 0%;
  right: 50%;
  width: 100%;
  align-items: center;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 2px solid #000000bd;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.578);
}

.button button:hover {
  color: #000000;
  border: 2px solid #ffffffbd;
  transform: scale(1.1);
}

.button button:focus {
  transform: scale(1.1);
  background: #ffffff;
  border: 2px solid #ffffffbd;
}

.button button:active {
  transform: scale(1.02);
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
 .product-container .product-slide .item {
    width: 200px;
    height: 250px;
    position: absolute;
    top: 100%;
    transform: translate(65%, -50%);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: all 0.5s;
}

  .product-slide .item:nth-child(1),
  .product-slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 1;
  }

  .product-slide .item:nth-child(3),
  .product-slide .item:nth-child(n + 4) {
    left: calc(50% + 220px);
    opacity: 0;
  }

  .item .content {
    left: 5%;
    top: 20%;
    width: 250px;
    display: flex; /* Maintain flex layout */
    flex-direction: column;
    align-items: flex-start;
  }

  .product-slide .item .content .des {
    font-size: 14px;
    margin-bottom: 30px; /* Adjusted for tablet */
  }

  .product-slide .item .content .des li {
    display: block; /* Stack list items vertically */
    padding: 0 0 8px 18px;
  }

  .product-slide .item .content .show-all {
    font-size: 12px;
    padding: 8px 15px;
    display: block;
  }
}

/* Mobile (max-width: 767px) */
/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .product-container .product-slide .item {
  width: 100%;
  height: 100%;
  position: relative; /* <-- must be relative for ::before to stay inside */
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-position: 50% 50%;
  background-size: cover;
  transition: all 0.5s;
  overflow: hidden;
}


  .product-container .product-slide .item {
  position: absolute;
  top: 80%;
  transform: translate(0, -50%);
}


  .product-slide .item:nth-child(1),
  .product-slide .item:nth-child(2),
  .product-slide .item:nth-child(3) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0;
  }

  .product-slide .item:nth-child(2) {
    opacity: 1;
  }

  .product-slide .item:nth-child(n + 3) {
    left: 0;
    opacity: 0;
  }

  /* ✅ Overlay at bottom 30% (instead of left 30%) */
.product-slide .item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 100;
  width: 100%;
  height: 40%;
  background: rgba(122, 156, 66, 0.9);
  border-radius: 0 0 20px 20px;
  z-index: 1;
}


  /* ✅ Content on top of overlay */
  .item .content {
    position: absolute;
    bottom: 0; /* Align with bottom overlay */
    left: 0;
    width: 100%;
    height: 30%; /* Match overlay height */
    padding: 15px 20px;
    color: #fff;
    text-align: left;
    display: none;
    flex-direction: column;
    justify-content: center; /* Center text vertically in overlay */
    align-items: flex-start;
    z-index: 2; /* Above overlay */
  }

  /* Show text only for active slide */
  .product-slide .item:nth-child(2) .content {
    display: flex;
  }

  .content .name {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
    animation: animate 1s ease-in-out 1 forwards;
  }

  .product-slide .item .content .des {
    font-size: 12px;
    margin: 5px 0 10px 0;
    list-style-type: none;
    padding: 0;
    color: #fff;
  }

  .product-slide .item .content .des li {
    display: block;
    position: relative;
    padding: 0 0 5px 16px;
    width: 85%!important;
  }

  .product-slide .item .content .des li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 12px;
  }

  .product-slide .item .content .show-all {
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
  }

  .product-slide .item .content .show-all:hover {
    background-color: var(--accent-color, #286136);
    color: #fff;
    transform: translateY(-2px);
  }

}


.next-button {
  padding: 0 0 0 3px;
}

.previous {
  padding: 0 3px 0 0;
}
/* footer */
.footer-bg {
  background-color: #424041 !important; /* Dark blue background */
}
.hover-link {
  transition: color 0.3s ease, transform 0.3s ease;
}
.hover-link:hover {
  color: var(--primary-color) !important;
  transform: translateX(2px); /* Slight slide effect */
  text-decoration: none;
}
.hover-icon {
  transition: color 0.3s ease, transform 0.3s ease;
}
.hover-icon:hover {
  color: var(--primary-color) !important;
  transform: scale(1.2); /* Slight zoom effect */
}
/* Quality Assurance */
.quality-assurance {
  background: linear-gradient(135deg, #b4c889 0%, #d4e2b1 100%);
  position: relative; /* Ensure the section is the containing block */
  overflow-x: hidden;
}
.bg-shapes {
  position: absolute; /* Changed from fixed to absolute */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape1 {
  width: 220px;
  height: 220px;
  background: var(--accent-color);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape2 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.cert-card {
  transition: all 0.3s ease;
  background: white;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.accent {
  color: var(--accent-color)!important;
}

.primary {
  color: var(--primary-color)!important;
}
.see-more:hover
{
  color: #ffffff!important;
}
/* Breadcrumb Section */
.breadcrumb-section {
  background-image: url("../images/hero/middler4.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
  height: 400px;
}

/* Optional: Add a semi-transparent overlay to improve text readability */
.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for contrast */
  z-index: 1;
}

/* Ensure breadcrumb content is above the overlay */
.breadcrumb {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 10px 15px;
  margin-bottom: 0;
}

/* Style breadcrumb links */
.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
/* Style active breadcrumb item */
.breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
}

/* Ensure responsiveness */
@media (max-width: 576px) {
  .breadcrumb-section {
    padding: 15px 0;
  }
  .breadcrumb {
    font-size: 14px;
  }
}

/* export and contract */
.export-card {
  transition: all 0.3s ease;
}

.export-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* navbar dropdown */
.dropdown-menu.mega-menu {
  width: 100%;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
}

.mega-menu .category-header {
  color: var(--primary-color);
  padding: 15px 20px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 3px solid var(--accent-color);
}

.mega-menu .submenu-item {
  padding: 8px 20px;
  font-size: 14px!important;
  color: #555;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.mega-menu .submenu-item:hover {
  background: #f8f9fa;
  border-left-color: var(--accent-color);
  padding-left: 25px;
}

.mega-menu .category-col {
  border-right: 1px solid #e9ecef;
}

.mega-menu .category-col:last-child {
  border-right: none;
}
@media (max-width: 991px) {
  .dropdown-menu.mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .mega-menu .category-col {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

  .mega-menu .category-header {
    cursor: pointer;
  }
}
/* single product offering card */
:root {
  --primary-color: #7a9c42;
  --secondary-color: #5c7b2b;
  --accent-color: #d59241;
}

.offering-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  /* border-radius: 20px; */
  overflow: visible;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  height: 90%;
}


.offering-card-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offering-card-image-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  /* border: 1px solid var(--primary-color); */
  position: relative;
  transition: all 0.4s ease;
  /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
  padding: 5px;
  margin-bottom: 10px;
}
/* 
.offering-card:hover .offering-card-image-circle {
  border-color: var(--accent-color);
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(213, 146, 65, 0.3);
} */

.offering-card-img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  /* border-radius: 50%; */
  transition: all 0.4s ease;
}

.offering-card:hover .offering-card-img {
  transform: scale(1.02);
}

/* .offering-card-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(213, 146, 65, 0.4);
} */

.offering-card:hover .offering-card-overlay {
  opacity: 1;
  transform: scale(1);
}

.offering-card-body {
  padding: 0;
}

.offering-card-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: color 0.3s ease;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-card:hover .offering-card-title {
  color: var(--accent-color);
}

.offering-card:hover .offering-card-subtitle {
  color: #000000;
}

/* .offering-card-decoration {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.offering-card:hover .offering-card-decoration {
  width: 100px;
} */

/* Button styles */
.hvr-radial-out {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* .hvr-radial-out::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff!important;
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
} */

.hvr-radial-out:hover::before {
  width: 300px;
  height: 300px;
}

.hvr-radial-out:hover {
  color: white !important;
}

.hvr-radial-out span {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  
  .offering-card-image-circle {
    width: 140px;
    height: 140px;
  }
  
  .offering-card-title {
    font-size: 1.1rem;
  }
}

/* about page */
.about-hero-section {
  padding: 40px 0;
  margin-bottom: 40px;
}

/* Vision & Mission Icon Animations */
@keyframes spinPulse {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.vision-icon,
.mission-icon {
  display: inline-block;
  animation-delay: 0.5s;
}
.vision-mission-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes shimmer {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.director-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  border: 1px solid #e9ecef;
}

.director-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.product-category-card {
  transition: all 0.3s ease;
  background: white;
}

.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--primary-color) !important;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .about-hero-section h1 {
    font-size: 2rem;
  }

  .vision-mission-card,
  .director-card,
  .product-category-card {
    margin-bottom: 20px;
  }
}

/* sample button */
#freeSampleBtn {
  position: fixed;
  right: -56px; /* Stick to right edge */
  top: 50%; /* Center vertically */
  transform: translateY(-50%) rotate(-90deg); /* Rotate text vertically */
  transform-origin: center; /* Keep rotation centered */
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0; /* Rounded top corners */
  text-decoration: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

#freeSampleBtn:hover {
  background: var(--accent-color); /* Slightly darker on hover */
}

/* blog */
.blog-post p {
  line-height: 1.8;
  color: #555;
}
.blog-post ul {
  margin-left: 1.2rem;
}
.author-box {
  background: #f9f9f9;
  border-left: 4px solid var(--primary-color);
}
.recent-post img {
  object-fit: cover;
}
.recent-post:hover a {
  color: var(--primary-color);
}
.sidebar h5 {
  color: var(--primary-color);
}
/* application page */
 
        /* Benefits Cards */
        .benefit-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-left: 4px solid var(--accent-color);
            height: 100%;
        }
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), #3a7d4a);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        /* Product Cards */
        .product-category {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            border-top: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        .product-category:hover {
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
            transform: translateX(5px);
        }
        .category-title {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .category-title i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .product-items {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .product-items li {
            color: #555;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .product-items li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        .usage-badge {
            background: linear-gradient(135deg, var(--accent-color), #c78235);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 0.5rem;
        }
        
        /* CTA Section */
        .cta-section {
           background:#FFFFE3;
            padding: 3rem 0;
            border-radius: 10px;
        }
        .cta-button {
            background: linear-gradient(135deg, var(--primary-color), #3a7d4a);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-2px);
        }
/* tab section in subproduct */
  .tabs-section {
        padding: 4rem 1rem;
        /* background: linear-gradient(to right, #f6f9fc, #eef2f5); */

    }

    .tabs-container {

        background: #ffffffdd;
        border-radius: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    /* Tab nav */
    .tabs-nav {
        display: flex;
        background: var(--primary-color);
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .tab {
        flex: 1;
        text-align: center;
        padding: 1rem;
        cursor: pointer;
        color: #fff;
        font-weight: 500;
        transition: background 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    @media (max-width: 767.98px) {
.tab {
    padding: 0.4rem;
    gap: 0rem;
}
    }


    .tab:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .tab svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

    .tab.active {
        background-color: rgba(255, 255, 255, 0.2);
        font-weight: 600;
    }

    /* Content panes */
    .tabs-content {
        padding: 1.5rem 2rem;
        background-color: #fff;
    }

    .tab-pane {
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .tab-pane.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    /* Typography */
    .tab-pane h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .tab-pane p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
    }

    .green-border {
        border: 1px solid var(--primary-color) !important;
    }

    .thead-orange {
        background: linear-gradient(135deg, #fef9e7 0%, #fef5e7 100%);
    }
    .fixed-height-img {
  height: 250px;          /* Fixed height */
  object-fit: cover;      /* Crop & cover the container */
  width: 100%;            /* Full width of card */
  border-radius: 5px;     /* Optional: rounded corners */
}

/* application slider */
 .application-slider-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .application-slider-track {
        display: flex;
        width: max-content;
        animation-timing-function: linear;
    }

    .application-slide-card {
        flex: 0 100px 200px;
        margin: 0 12px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.5s ease;
    }

    .application-slide-card:hover {
        transform: translateY(-8px) scale(1.03);
    }

    .application-slide-card img {
        max-height: 100px;
        margin-bottom: 10px;
        object-fit: contain;
    }

    .application-slide-card h4 {
        font-weight: 700;
        color: #333;
        margin-bottom: 6px;
        padding: 15px;
    }

    .application-slide-card p {
        color: #777;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* types */
     .type-product-card {
      position: relative;
      overflow: hidden;
    }
    .type-product-card img {
      width: 100%;
      height: auto;
      display: block;
    }
  .type-product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
  padding: 10px;
}

.type-product-card:hover .type-product-overlay {
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(92, 123, 43, 0.85),
      rgba(122, 156, 66, 0.85)
  );
  padding: 20px;
}


.type-product-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}
    .type-product-description {
      display: none;
    }
    .type-product-card:hover .type-product-description {
      display: block;
      font-size: 15px;
    }
    .type-product-card:hover .type-product-title {
      margin-bottom: 10px;
    }

     .blog-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }
    
    .blog-img-wrapper img {
        transition: transform 0.4s ease;
    }
    
    .blog-card:hover .blog-img-wrapper img {
        transform: scale(1.08);
    }
    
    .btn-read-more {
        transition: background 0.3s ease;
    }
    
    .btn-read-more:hover {
        background: var(--accent-color) !important;
        color: white !important;
        text-decoration: none;
    }
    .breadcrumb-item+.breadcrumb-item::before{
      color: white !important;
    }

    /* Facebook plugin */
.fb-popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  height: 100vh;              /* ✅ Full screen height */
  background: #fff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
  flex-direction: column;
}

/* Header like Facebook */
.fb-popup-header {
  background: #1877f2;
  color: #fff;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fb-popup-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

/* Facebook iframe full height */
.fb-popup iframe {
  width: 100%;
  height: calc(100vh - 48px); /* header height removed */
  border: none;
}

.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  animation: bounce 1.5s infinite;

  right: 20px;   /* ✅ move to right */
  bottom: 20px;  /* ✅ bottom spacing */
}

.floating-button img {
  width: 30px;
  height: 30px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-button:hover {
  transform: scale(1.1);
}
.facebook-float {
  right: 20px;
  bottom: 220px;
}

.whatsapp-float {
  right: 20px;
  bottom: 140px;
}
@media (max-width: 768px) {
  .sm-mr-bt{
    margin-bottom: 70px;
  }
}
