@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;

  }
  html,body {
    overflow-x: hidden;
  }
  .fixed-top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* ensure it's above everything */
  }
  
  /* Push page content down */
  body {
    padding-top: 140px; /* Adjust based on total height of header + navbar */
  }
  

.top-header {
    background-color: #00A651;
    color: white;
    font-size: 14px;
    padding: 8px 0;
  }

  .navbar .form-select {
    background-color: transparent !important;
    border: none;
  }

  .navbar .form-select:focus {
    box-shadow: none;
  }

  .search-bar {
    border: 1px solid #00A651;
    border-radius: 8px;
    padding: 5px 8px;
    background-color: white;
  }
  
  .custom-select-wrapper {
    position: relative;
    flex: 0 0 170px;
  }
  
  .custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    border: none;
    background-color: transparent;
    width: 100%;
  }
  
  .dropdown-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
  }
  
  .separator {
    width: 1px;
    height: 30px;
    background-color: #ccc;
    margin: 0 10px;
  }
  
  .search-bar input {
    border: none;
    outline: none;
    flex-grow: 1;
  }
  
  .search-bar input:focus {
    box-shadow: none;
  }
  
  .search-bar button {
    white-space: nowrap;
  }
  
  .search-bar select:focus {
    box-shadow: none;
  }
  

  .search-bar select,
  .search-bar input {
    border: none;
    outline: none;
    background: transparent;
    padding: 8px 12px;
  }

  .search-bar button {
    background-color: white;
    border: none;
    padding: 0 16px !important;
    color: #00A651;
  }

  /* .search-bar button:hover {
    background-color: #00A651;
    color: white;
  } */

  .nav-link {
    margin-left: 24px;
    color: #1D1D1D;
    font-weight: 600;
  }
  .nav-link:hover {
    color: #00A651 !important;
}


  .cart-icon {
    position: relative;
  }

  .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #00A651;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
  }


  @media (max-width: 768px) {
    .top-header {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 10px;
    }
  
    .navbar-collapse {
      padding: 10px 0;
      background: #fff;
    }
  
    .navbar .form-control,
    .navbar .form-select {
      font-size: 14px;
    }
  
    .navbar form {
      flex-direction: column;
    }
  
    .navbar-nav .nav-link {
      margin-left: 0 !important;
      margin-bottom: 10px;
    }
  
    .navbar-toggler {
      margin-left: auto;
    }
  }
  @media (max-width: 991.98px) {
  .navbar .nav-link {
    padding: 8px 0;
  }

  .navbar .badge {
    font-size: 10px;
  }
}
/* Center the search form and increase its width */
@media (min-width: 992px) {
    .navbar .search-wrapper {
      flex: 1;
      display: flex;
      justify-content: center;
    }
  
    .navbar .search-bar {
      width: 100%;
      max-width: 700px; /* Increased width */
    }
  }


  @media (max-width: 768px) {
    .search-bar {
      flex-direction: row !important;   /* 👈 force horizontal on mobile */
      flex-wrap: nowrap;
      padding: 4px;
    }
  
    .custom-select-wrapper {
      flex: 1 1 auto;
      max-width: 140px;
    }
  
    .search-bar input {
      flex: 1 1 auto;
      min-width: 0;
    }
  
    .search-bar button {
      flex-shrink: 0;
      padding: 4px 10px;
      font-size: 14px;
    }
  
    .separator {
      display: none;  /* Optional: hide divider on small screens */
    }
  }
  @media (max-width: 768px) {
    .dropdown-icon{
        display: none !important;
    }
  }
  
  
  input:focus,
  textarea:focus,
  select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important; /* or your desired border color */
  }
  /* Remove border and background */
.navbar-toggler {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
  }
  
  /* Remove outline on focus */
  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* Change icon color to green */
  .navbar-toggler-icon {
    background-image: none; /* Remove default */
    font-size: 1.5rem;
    color: #00A651; /* Your green color */
  }
  
  /* Optional: Custom hamburger icon using Font Awesome */
  .custom-toggler-icon {
    color: #00A651;
    font-size: 1.6rem;
  }
    /* Set white text for the selected value */

  
  /* Set black text for the dropdown options */
  .custom-select-style option {
    color: black;
    background-color: white; /* Optional: for better visibility */
  }
  
  .custom-select-style {
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .custom-select-style {
    color: white;
    background-color: transparent;
    border: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
  }
  
  /* Optional: Ensure it stays white on focus */
  .custom-select-style:focus {
    border-color: white;
    box-shadow: none;
  }
  

  .hero-section {
    background: linear-gradient(to left, #FFFFFF, #EDFBD9, #C1E5D3);
    padding: 80px 30px;
  }
  
  .hero-heading {
    font-size: 48px;
    font-weight: bold;
  }
  .hero-text {
    color: #666;
  }
  .hero-btn {
    background-color: #00A651;
    color: white;
    border-radius: 30px;
    padding: 20px 40px;
    border: none;
  }
  .custom-card {
    background-color: #004d25;
    border-radius: 20px;
    position: relative;
    color: white;
  }
  .badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #55DA69;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
  }
  .audio-label {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    border-bottom: 1px solid #fff;
  }
  .image-card {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    color: white;
    padding: 20px;
    height: 160px;
    position: relative;
  }
  .overlay-light {
    background-color: #D4EBFB;
    border-radius: 20px;
  }
  .logo-bottom {
    position: absolute;
    bottom: 10px;
    left: 20px;
  }

  .card {
    border-radius: 15px;
    overflow: hidden;
  }
  .card img {
    object-fit: contain;
  }
  .bg-overlay-card {
    height: 260px;
    background: url('bg-1.png') center/cover no-repeat;
    position: relative;
    border-radius: 16px;
  }
  
  /* Gradient overlay */
  .bg-overlay-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(60deg, #00A651 34%, #000000);
    opacity: 0.5;
    z-index: 0;
  }
  
  /* Ensure content is above gradient */
  .bg-overlay-card .card-body {
    z-index: 1;
  }
  
  /* Product image positioning */
  .product-image-bottom-end {
    height: 160px; /* Adjust based on design */
    right: 10px;
    bottom: 10px;
    z-index: 1;
  }
  
  
  @media (max-width: 767.98px) {
    .card .card-body h4 {
      font-size: 1.2rem;
    }
    .hero-section h1 {
      font-size: 2rem;
    }
  }
  .bottom-card {
    border-radius: 16px; /* Adjust to match other cards */
    overflow: hidden;
  }
  .bottom-card {
    height: 200px; /* or any height you prefer */
  }
  
  .bottom-card img {
    height: 100%;
    object-fit: cover; /* ensures the image fills without distortion */
  }
  @media (max-width: 768px) {
    .bottom-card {
      height: 140px; /* Smaller height for smaller screens */
    }
  }
  .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;  /* Prevent shrinking in flex */
    min-height: 50px;
    border-radius: 50%;
    background-color: #000000;
    flex-shrink: 0;    /* Prevent squishing on smaller screens */
  }
  @media (max-width: 575.98px) {
    .icon-circle {
      width: 45px;
      height: 45px;
      min-width: 45px;
      min-height: 45px;
    }
  }
    
  .custom-divider {
    border: none;
    border-bottom: 1px solid #E6E6E6;
    margin: 0;
  }
  .overlay {
    z-index: 1;
  }

  /* Badge style */
  .brand-badge {
    background-color: white;
    color: black;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    z-index: 2;
  }

  /* Ensuring rounded overlay */
  .image-container {
    border-radius: 16px;
    overflow: hidden;
  }

  .image-container img,
  .image-container .overlay {
    border-radius: 16px;
  }

  /* Responsive height control */
  .image-container {
    height: 250px;
  }

  @media (max-width: 767px) {
    .image-container {
      height: 200px;
    }
  }

  @media (max-width: 575px) {
    .image-container {
      height: 180px;
    }
  }


  /* Background Gradient */
.product-section {
  background: linear-gradient(to right, #C7E5C7, #FFFFFF, #BADFBA);
  padding: 60px 0;
}
.category-sidebar{
  border-left: 2px solid #9CE59C ;

}
.category-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border-left: 2px transparent ;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hide native checkbox */
.category-item .form-check-input {
  display: none;
}

/* Left line */
.category-item .line {
  width: 4px;
  height: 100%;
  background-color: transparent;
  margin-right: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Label Text */
.category-item .label-text {
  flex-grow: 1;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

/* Badge */
.category-item .count-badge {
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 12px;
  font-weight: 600;
}

/* When checked: change border, line, text color */
.category-item input:checked ~ .line {
  background-color: #00A651;
}

.category-item input:checked ~ .label-text {
  color: #00A651;
  font-weight: 600;
}

.category-item input:checked ~ .count-badge {
  box-shadow: 0 0 0 2px rgba(0, 166, 81, 0.3);
}

.category-item input:checked ~ .label-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #00A651;
  border-radius: 10px;
  z-index: -1;
}



.label-text {
  flex: 1;
  position: relative;
}

.line {
  width: 3px;
  height: 100%;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.count-badge {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 10px;
  margin-left: auto;
  font-weight: 500;
}



/* Carousel Control Buttons */
.product-carousel-controls {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-bottom: 15px;
}

.product-carousel-controls{
  background: transparent;
  color: black;
  border-radius: 50%;
  border: 2px solid #000;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-carousel-controls:hover {
  background-color: #00A651; /* Green background on hover */
  border-color: #00A651;     /* Optional: update border color to match */
  transition: all 0.3s ease; /* Smooth transition */
}


/* Product Card */
.product-wrapper {
  margin-bottom: 30px;
}

.product-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
}

.product-img {
  height: 150px;
  width: 150px;
  object-fit: contain;
  margin: auto;
}

.product-details span,
.product-details p {
  text-align: left;
}
.product-details {
  text-align: left; /* Ensures all content aligns left */
}

.star-rating {
  text-align: left;
}

.star-rating i {
  color: #00A651;
}

.btn-cart {
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  border-radius: 20px;
  transition: 0.3s;
}

.btn-cart:hover {
  background: #00A651;
  color: white;
}

.decorative-shapes {
  position: relative;
  bottom: -175px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

/* Common shape styles */
.shape {
  display: inline-block;
}

/* Star shape using pseudo-element or background */
.shape.star {
  width: 30px;
  height: 30px;
  background-color: #2DBE5F;
  clip-path: polygon(
    50% 0%,   /* Top */
    60% 40%,  /* Slight right top bend */
    100% 50%, /* Right */
    60% 60%,  /* Slight right bottom bend */
    50% 100%, /* Bottom */
    40% 60%,  /* Slight left bottom bend */
    0% 50%,   /* Left */
    40% 40%   /* Slight left top bend */
  );
}


/* Circle shape */
.shape.circle {
  width: 30px;
  height: 30px;
  margin-left: 50px;
  margin-top: 150px;
  background-color: #096737; /* Darker green for contrast */
  border-radius: 50%;
}
.brand-marquee-section {
  background: #ffffff;
  overflow: hidden;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 30s linear infinite;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive logo size */
@media (max-width: 768px) {
  .brand-logo {
    height: 30px;
    margin: 0 1rem;
  }
}
.nexa-section {
  background: linear-gradient(to right, #94C90A, #137D2C);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.nexa-text-blur {
  font-size: 340px;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-backdrop-filter: blur(200px); /* Safari support */
  color: rgba(255, 255, 255, 0.5); /* more visible white */
  padding: 20px;
  display: inline-block;
  border-radius: 10px;
  white-space: nowrap;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: 80px;
}

.product-image-wrapper img {
  position: absolute;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Smaller images (1st & 3rd) */
.img-1, .img-3 {
  width: 160px;
  top: 150px;
  z-index: 3;
}

/* Larger images (2nd & 4th) */
 .img-4 {
  width: 280px;
  top: 30px;
  z-index: 2;
}
.img-2{
  height: 290px;
  width: 350px;
  top: 20px;
  z-index: 2;
}

/* Image Positions */
.img-1 { left: 40%; }                        /* First: small */
.img-2 { left: 41.5%; transform: rotateY(180deg); }  /* Second: big flipped */
.img-3 { left: 53%; }                        /* Third: small */
.img-4 { left: 56%; }                        /* Fourth: big */




/* .product-image-wrapper {
  height: 220px;
}

.img-1, .img-3 {
  width: 100px;
  top: 60px;
}

.img-2, .img-4 {
  width: 130px;
  top: 40px;
}

.img-1 { left: 22%; }
.img-2 { left: 30%; }
.img-3 { left: 38%; }
.img-4 { left: 46%; } */



@media (max-width: 768px) {
  .product-image-wrapper {
    height: 240px;
    width: 100%;
  }

  .img-1, .img-3 {
    width: 22vw;
    top: 90px;
  }

   .img-4 {
    width: 28vw;
    top: 60px;
  }
  .img-2{
    width: 38vw;
    top: -45px;
  }

  .img-1 { left: 6%; }
  .img-2 { left: 20%; transform: rotateY(180deg); }
  .img-3 { left: 40%; }
  .img-4 { left: 53%; }
}




.nexa-bottom {
  background: linear-gradient(to right, #000000, #096737);
  padding: 60px 20px;
  position: relative;
  color: white;
}

.video-btn {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #000;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  border: none;
  z-index: 10;
}

@media (max-width: 768px) {
  .nexa-text-blur {
    font-size: 120px;
  }

  .product-images img {
    width: 80px;
  }

  .video-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  .nexa-bottom .row {
    text-align: center;
  }

  .nexa-bottom .btn {
    margin-top: 20px;
  }
}

.section-heading {
  font-size: 2rem;
  font-weight: bold;
}

.section-subtext {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}
#new-produtcs2{
  display: block;
}

.why-us-section {
  background-color: #000; /* Dark background */
  color: white;
}

.green-box {
  background: radial-gradient(circle, #77f377, #0b4f24);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product-img-custom {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .green-box {
    padding: 2rem 1rem;
  }

  .product-img-custom {
    width: 80px;
    margin-bottom: 10px;
  }

  .why-us-section h2 {
    font-size: 1.8rem;
  }
}
.imge-2{
  /* height: 160px; */
  width: 350px;
  top: 20px;
  z-index: 2;
}
.imge-2 { left: 41.5%; transform: rotateY(180deg); }  /* Second: big flipped */


@media (max-width: 768px) {
  .imge-2{
    width: 28vw;
    top: -45px;
  }
  .imge-2 { left: 20%; transform: rotateY(180deg); }

}

.services-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.section-subtitle {
  font-size: 12px;
  color: #444;
  letter-spacing: 1px;
  font-weight: 500;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #000;
}

.section-description {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background-color: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
}

.learn-more-link {
  color: #00A651;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.learn-more-link:hover {
  text-decoration: underline;
}

.all-services-btn {
  background-color: #00A651;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.all-services-btn:hover {
  background-color: #00924b;
}


.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: -1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-subtitle {
  color: #00e676;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-heading {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-text .highlight {
  color: #00e676;
  font-weight: 600;
}

.btn-cta {
  background-color: #00e676;
  color: #000;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #00c665;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 32px;
  }
  .cta-text {
    font-size: 14px;
  }
}
.footer-section {
  background-color: #000;
  font-size: 16px;
}

.footer-logo-img {
  max-width: 150px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-text {
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #eee;
  font-size: 16px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #00E676;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #00E676;
  color: #fff;
}

@media (max-width: 768px) {
  .footer-section .text-md-end,
  .footer-section .text-md-start {
    text-align: center !important;
  }
}


