        /* Base styles */
        body {
          font-family: Arial, sans-serif;
          margin: 0;
          padding: 0;
          background-color: #f4f4f4;
      }
      
      .slider-container {
          position: relative;
          width: 100%;
          max-width: 1920px;
          margin: 0 auto;
          overflow: hidden;
      }
      
      .slider {
          display: flex;
          transition: transform 0.5s ease-in-out;
      }
      
      .slide {
          min-width: 100%;
          height: 500px;
          background-size: cover; /* Changed from 100% 100% to cover for better responsiveness */
          background-position: center;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          position: relative;
          padding-bottom: 50px;
      }
      
      .slide-content {
          text-align: center;
          color: white;
          opacity: 0;
          transform: translateY(50px);
          transition: opacity 0.8s ease, transform 0.8s ease;
          width: 100%;
          padding: 0 20px;
          box-sizing: border-box; /* Added to ensure padding doesn't add to width */
      }
      
      .slide-content.active {
          opacity: 1;
          transform: translateY(0);
      }
      
      .slide-content h2 {
          font-size: 2.5em;
          margin-bottom: 10px;
          color: #b2e35f; /* Lime green from logo */
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .slide-content p {
          font-size: 1.2em;
          margin-bottom: 20px;
          color: white;
          text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
      }
      
      .slide-buttons {
          display: flex;
          justify-content: center;
          opacity: 0;
          transform: translateY(50px);
          transition: opacity 0.8s ease, transform 0.8s ease;
      }
      
      .slide-buttons.active {
          opacity: 1;
          transform: translateY(0);
      }
      
      .slide-buttons button {
          background-color: #b2e35f; /* Lime green from logo */
          color: #1c1c1c; /* Dark color from logo */
          border: none;
          padding: 10px 20px;
          margin: 0 10px;
          cursor: pointer;
          border-radius: 5px;
          font-weight: bold;
          transition: background-color 0.3s ease, transform 0.2s ease;
      }
      
      .slide-buttons button:hover {
          background-color: #9ac750;
          transform: scale(1.05);
      }
      
      .prev, .next {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background-color: rgba(0, 0, 0, 0.5);
          color: white;
          border: none;
          padding: 10px 15px;
          font-size: 20px;
          cursor: pointer;
          z-index: 10;
      }
      
      .prev {
          left: 10px;
      }
      
      .next {
          right: 10px;
      }
      
      .dots-container {
          position: absolute;
          bottom: 10px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 10;
      }
      
      .dot {
          display: inline-block;
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background-color: rgba(255, 255, 255, 0.5);
          margin: 0 5px;
          cursor: pointer;
      }
      
      .dot.active {
          background-color: #b2e35f;
      }
      
      /* Responsive Design */
      @media (max-width: 1024px) {
          .slide {
              height: 400px;
              background-size: cover; /* Consistent image handling */
          }
          .slide-content h2 {
              font-size: 2em;
          }
          .slide-content p {
              font-size: 1em;
          }
      }
      
      @media (max-width: 768px) {
          .slide {
              height: 300px;
              background-size: cover; /* Consistent image handling */
          }
          .slide-content h2 {
              font-size: 1.6em;
          }
          .slide-content p {
              font-size: 0.9em;
          }
      }
      
      @media (max-width: 480px) {
          .slider-container {
              height: auto; /* Allow container to adjust to content */
          }
          .slide {
              height: 200px; /* Reduced height for better mobile viewing */
              background-size: contain; /* Changed to contain to show full image */
              background-repeat: no-repeat; /* Prevent image repetition */
              background-color: #000; /* Dark background to fill empty space */
              padding-bottom: 30px; /* Reduced padding */
          }
          .slide-content {
              padding: 0 10px; /* Reduced padding */
              margin-bottom: 5px; /* Added space below content */
          }
          .slide-content h2 {
              font-size: 1.3em;
          }
          .slide-content p {
              font-size: 0.8em;
          }
          .slide-buttons button {
              padding: 8px 15px;
              font-size: 0.9em;
              margin: 0 5px; /* Reduced margin */
          }
      }
/*Slider end*/
:root {
  --piccaso-green: #b3d334; /* The lime green from the logo */
  --piccaso-dark: #333333; /* The dark gray/black from the logo */
  --piccaso-white: #ffffff;
  --piccaso-light-gray: #f5f5f5;
  --piccaso-green-light: #cde47a; /* Lighter version of the logo green */
  --piccaso-green-dark: #94ae2a; /* Darker version of the logo green */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--piccaso-light-gray);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--piccaso-white) 60%, var(--piccaso-green-light) 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20,0 L20,40 M0,20 L40,20' stroke='%23b3d334' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin-top: 0px;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--piccaso-dark);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.5s ease-out;
}

.tagline span {
  color: var(--piccaso-green);
  position: relative;
}

.tagline span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--piccaso-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.hero-content:hover .tagline span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.subtext {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin-bottom: 40px;
  color: #555;
  animation: fadeIn 1.8s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cta-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeIn 2s ease-out;
}

.cta-button {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.primary-cta {
  background-color: var(--piccaso-green);
  color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(179, 211, 52, 0.3);
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(179, 211, 52, 0.4);
  background-color: var(--piccaso-green-dark);
}

.secondary-cta {
  background-color: transparent;
  color: var(--piccaso-dark);
  border: 2px solid var(--piccaso-dark);
}

.secondary-cta:hover {
  background-color: var(--piccaso-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(51, 51, 51, 0.2);
}

.quality-indicators {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
  animation: fadeIn 2.2s ease-out;
}

.quality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  max-width: 220px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.quality-item:hover {
  transform: translateY(-5px);
}

.quality-icon {
  width: 70px;
  height: 70px;
  background-color: var(--piccaso-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(179, 211, 52, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Add cross pattern to quality icons to match logo */
.quality-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12,2 L12,22 M2,12 L22,12' stroke='%23ffffff' stroke-width='2' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-position: center;
  opacity: 0.5;
}

.quality-item:hover .quality-icon {
  transform: rotate(5deg);
  box-shadow: 0 8px 20px rgba(179, 211, 52, 0.4);
}

.quality-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
  position: relative;
  z-index: 1;
}

.quality-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--piccaso-dark);
  text-align: center;
  position: relative;
}

.quality-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--piccaso-green);
  transition: width 0.3s ease;
}

.quality-item:hover .quality-title::after {
  width: 50px;
}

.quality-desc {
  font-size: 0.9rem;
  text-align: center;
  color: #666;
}

.decorative-element {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 L50,100 M0,50 L100,50' stroke='%23333333' stroke-width='2'/%3E%3Cpath d='M25,25 L75,25 L75,75 L25,75 Z' fill='none' stroke='%23b3d334' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.07;
  z-index: 0;
  transition: transform 5s ease;
}

.hero-section:hover .decorative-element {
  transform: rotate(10deg);
}

.decoration-top {
  top: -50px;
  right: -50px;
}

.decoration-bottom {
  bottom: -50px;
  left: -50px;
  transform: rotate(180deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator svg {
  width: 100%;
  height: 100%;
  fill: var(--piccaso-dark);
  transition: fill 0.3s ease;
}

.scroll-indicator:hover svg {
  fill: var(--piccaso-green);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Products Section */
.products-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 30px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23a6ce39' fill-opacity='0.05' d='M11.1,44.9L0,33.8l30-30L44.9,18.7L33.8,29.8L44.9,40.9L33.8,52.1L44.9,63.2L33.8,74.3l30,30L18.9,63.2L30,52.1L18.9,40.9L30,29.8L18.9,18.7L33.8,3.8L3.8,33.8L11.1,41.1L0,52.2l11.1,11.1L0,74.3l11.1,11.1L0,96.5l11.1,11.1L0,118.7l30-30L18.9,77.6L30,66.5L18.9,55.4L30,44.3L18.9,33.2L30,22.1L18.9,11L30,0L0,30l11.1,11.1L0,52.2L11.1,63.3L0,74.4l11.1,11.1L0,96.6l11.1,11.1L0,118.8l30-30L18.9,77.7L30,66.6L18.9,55.5L30,44.4L18.9,33.3L30,22.2L18.9,11.1L30,0.1L0,30.1l11.1,11.1L0,52.3l11.1,11.1L0,74.5l11.1,11.1L0,96.7l11.1,11.1L0,118.9l30-30L18.9,77.8L30,66.7L18.9,55.6L30,44.5L18.9,33.4L30,22.3L18.9,11.2L30,0.2L0,30.2l11.1,11.1L0,52.4z'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}

/* Background decorative elements inspired by Piccaso logo */
.products-section:before,
.products-section:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 L50,100 M0,50 L100,50' stroke='%23333333' stroke-width='3'/%3E%3Cpath d='M30,30 Q50,10 70,30 Q90,50 70,70 Q50,90 30,70 Q10,50 30,30' fill='%23b3d334' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  transition: transform 5s ease;
}

.products-section:before {
  top: -50px;
  left: -50px;
  transform: rotate(15deg);
}

.products-section:after {
  bottom: -50px;
  right: -50px;
  transform: rotate(-15deg);
}

.products-section:hover:before,
.products-section:hover:after {
  transform: rotate(25deg);
}

.products-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-out;
}

.products-heading h2 {
  color: var(--piccaso-dark);
  font-size: 36px;
  margin-bottom: 1px;
  position: relative;
  display: inline-block;
  padding: 0 15px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Logo-inspired decorative elements for heading */
.products-heading h2:before,
.products-heading h2:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 L50,100 M0,50 L100,50' stroke='%23333333' stroke-width='10'/%3E%3Cpath d='M30,30 Q50,10 70,30 Q90,50 70,70 Q50,90 30,70 Q10,50 30,30' fill='%23b3d334' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.products-heading h2:before {
  left: -40px;
}

.products-heading h2:after {
  right: -40px;
}

.products-heading:hover h2:before {
  transform: translateY(-50%) rotate(-10deg);
}

.products-heading:hover h2:after {
  transform: translateY(-50%) rotate(10deg);
}

.products-heading h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--piccaso-green);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Add a subtle cross pattern behind the heading - inspired by logo */
.heading-backdrop {
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20,0 L20,40 M0,20 L40,20' stroke='%23b3d334' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.1;
  z-index: -1;
}

.products-heading p {
  color: #666;
  font-size: 18px;
  max-width: 800px;
  margin: 25px auto 0;
  position: relative;
  animation: fadeIn 1.8s ease-out;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeIn 2s ease-out;
}

.product-card {
  background-color: var(--piccaso-white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 350px;
  position: relative;
  border: 1px solid rgba(179, 211, 52, 0.1);
  cursor: pointer;
}

/* Add logo-inspired border accent */
.product-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--piccaso-dark) 0%, var(--piccaso-green) 50%, var(--piccaso-dark) 100%);
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(179, 211, 52, 0.3);
  border-color: rgba(179, 211, 52, 0.3);
}

.product-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--piccaso-light-gray), #e9e9e9);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Logo-inspired overlay pattern on images */
.product-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20,0 L20,40 M0,20 L40,20' stroke='%23ffffff' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.2;
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--piccaso-green);
  color: black;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(179, 211, 52, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info {
  padding: 25px;
  position: relative;
}

/* Add subtle cross pattern in background - matches logo design */
.product-info:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10,0 L10,20 M0,10 L20,10' stroke='%23f0f0f0' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: -1;
}

.product-name {
  color: var(--piccaso-dark);
  font-size: 22px;
  margin: 0 0 10px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.product-name:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--piccaso-green);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.product-card:hover .product-name:after {
  width: 60px;
}

.product-features {
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: black;
  border-bottom: 1px solid #f0f0f0;
  transition: transform 0.2s ease;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--piccaso-green);
  font-weight: bold;
}

.product-features li:hover {
  transform: translateX(5px);
}

.product-btn {
  display: inline-block;
  background-color: var(--piccaso-dark);
  color: var(--piccaso-white);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* Add animated hover effect inspired by logo colors */
.product-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--piccaso-green);
  transition: left 0.5s ease;
  z-index: -1;
}

.product-btn:hover:before {
  left: 0;
}

.product-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(179, 211, 52, 0.4);
}

/* Decorative elements inspired by logo */
.decorative-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 15px;
  right: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 L50,100 M0,50 L100,50' stroke='%23b3d334' stroke-width='3'/%3E%3Ccircle cx='50' cy='50' r='10' fill='%23b3d334'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .decorative-icon {
  opacity: 0.25;
  transform: rotate(10deg);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 1rem 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23a6ce39' fill-opacity='0.05' d='M11.1,44.9L0,33.8l30-30L44.9,18.7L33.8,29.8L44.9,40.9L33.8,52.1L44.9,63.2L33.8,74.3l30,30L18.9,63.2L30,52.1L18.9,40.9L30,29.8L18.9,18.7L33.8,3.8L3.8,33.8L11.1,41.1L0,52.2l11.1,11.1L0,74.3l11.1,11.1L0,96.5l11.1,11.1L0,118.7l30-30L18.9,77.6L30,66.5L18.9,55.4L30,44.3L18.9,33.2L30,22.1L18.9,11L30,0L0,30l11.1,11.1L0,52.2L11.1,63.3L0,74.4l11.1,11.1L0,96.6l11.1,11.1L0,118.8l30-30L18.9,77.7L30,66.6L18.9,55.5L30,44.4L18.9,33.3L30,22.2L18.9,11.1L30,0.1L0,30.1l11.1,11.1L0,52.3l11.1,11.1L0,74.5l11.1,11.1L0,96.7l11.1,11.1L0,118.9l30-30L18.9,77.8L30,66.7L18.9,55.6L30,44.5L18.9,33.4L30,22.3L18.9,11.2L30,0.2L0,30.2l11.1,11.1L0,52.4z'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20,0 L20,40 M0,20 L40,20' stroke='%23b3d334' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.15;
  z-index: 1;
  top: 0;
  left: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}

.section-title {
  font-size: 2.5rem;
  color: var(--piccaso-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: var(--piccaso-green);
  bottom: -10px;
  left: 20%;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: var(--piccaso-white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--piccaso-green);
  transition: width 0.3s ease;
}

.feature-card:hover::before {
  width: 10px;
}

/* Add cross pattern to match logo design */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 L50,100 M0,50 L100,50' stroke='%23b3d334' stroke-width='2' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.1;
  z-index: 0;
  transition: transform 0.3s ease;
}

.feature-card:hover::after {
  transform: rotate(10deg);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--piccaso-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(179, 211, 52, 0.15);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(179, 211, 52, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Add cross design to feature icon to match logo */
.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12,2 L12,22 M2,12 L22,12' stroke='%23333333' stroke-width='2' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-position: center;
  opacity: 0.5;
  border-radius: 50%;
}

.feature-card:hover .feature-icon {
  transform: rotate(5deg);
  box-shadow: 0 8px 20px rgba(179, 211, 52, 0.4);
}

.feature-title {
  font-size: 1.5rem;
  color: var(--piccaso-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.feature-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--piccaso-green);
  transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
  width: 60px;
}

.feature-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 2rem;
  background-color: var(--piccaso-white);
  position: relative;
  overflow: hidden;
}

.testimonials-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30,0 L30,60 M0,30 L60,30' stroke='%23b3d334' stroke-width='1' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.15;
  z-index: 1;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonials-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 2rem 0;
  margin: 0 -1rem;
}

.testimonial-card {
  min-width: 300px;
  flex: 1;
  background-color: var(--piccaso-white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--piccaso-green);
  font-size: 2.5rem;
  opacity: 0.2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.3;
  transform: rotate(10deg);
}

.testimonial-content {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--piccaso-green);
  position: relative;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Add cross pattern over author image to match logo design */
.author-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10,0 L10,20 M0,10 L20,10' stroke='%23ffffff' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  opacity: 0.3;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--piccaso-dark);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.author-position {
  font-size: 0.9rem;
  color: #777;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--piccaso-white);
  border: 2px solid var(--piccaso-green);
  color: var(--piccaso-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background-color: var(--piccaso-green);
  color: var(--piccaso-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(179, 211, 52, 0.3);
}

/* Call to Action Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--piccaso-dark) 0%, #444 100%);
  color: var(--piccaso-white);
  position: relative;
  overflow: hidden;
}

/* Add cross pattern inspired by logo */
.cta-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M25,0 L25,50 M0,25 L50,25' stroke='%23b3d334' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 50px 50px;
  opacity: 0.1;
  z-index: 1;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-out;
}

.cta-title span {
  color: var(--piccaso-green);
  position: relative;
  display: inline-block;
}

/* Add underline animation inspired by logo */
.cta-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--piccaso-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.cta-container:hover .cta-title span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.8s ease-out;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeIn 2s ease-out;
}

.cta-btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 0;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn-primary {
  background-color: var(--piccaso-green);
  color: var(--piccaso-white);
  border: none;
  box-shadow: 0 5px 15px rgba(179, 211, 52, 0.4);
}

.cta-btn-primary:hover {
  background-color: var(--piccaso-green-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(179, 211, 52, 0.5);
}

.cta-btn-secondary {
  background-color: transparent;
  color: var(--piccaso-white);
  border: 2px solid var(--piccaso-white);
}

.cta-btn-secondary:hover {
  background-color: var(--piccaso-white);
  color: var(--piccaso-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-icon {
  display: inline-flex;
  position: relative;
  z-index: 1;
}

/* Footer Section */
.footer {
  background-color: var(--piccaso-dark);
  color: var(--piccaso-white);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Add cross pattern to match logo design */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M15,0 L15,30 M0,15 L30,15' stroke='%23b3d334' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  opacity: 0.05;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-about p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--piccaso-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--piccaso-green);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.social-link:hover::before {
  transform: translateY(0);
}

.social-link i {
  position: relative;
  z-index: 1;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--piccaso-green);
  transition: width 0.3s ease;
}

.footer-title:hover::after {
  width: 60px;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

.footer-link a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--piccaso-green);
  transition: transform 0.3s ease;
}

.footer-link a:hover {
  color: var(--piccaso-white);
  transform: translateX(5px);
}

.footer-link a:hover::before {
  transform: scale(1.2);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #aaa;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  color: var(--piccaso-white);
}

.contact-icon {
  color: var(--piccaso-green);
  font-size: 1.2rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 1rem;
}

.footer-bottom a {
  color: var(--piccaso-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--piccaso-white);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  margin-top: 1rem;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 50px 0 0 50px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--piccaso-white);
  transition: background-color 0.3s ease;
}

.newsletter-input::placeholder {
  color: #888;
}

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 0 1.5rem;
  border-radius: 0 50px 50px 0;
  background-color: var(--piccaso-green);
  color: var(--piccaso-white);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--piccaso-green-dark);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-content {
    padding: 60px 20px;
  }
  
  .tagline {
    font-size: 2rem;
  }
  
  .quality-indicators {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-content {
    padding: 40px 20px;
    min-height: auto;
  }
  
  .tagline {
    font-size: 1.8rem;
  }
  
  .subtext {
    font-size: 1rem;
  }
  
  .quality-indicators {
    gap: 15px;
  }
  
  .quality-item {
    min-width: 120px;
  }
  
  .products-heading h2 {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonials-slider {
    overflow-x: auto;
  }
  
  .testimonial-card {
    min-width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 30px 15px;
  }
  
  .tagline {
    font-size: 1.5rem;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .quality-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .quality-item {
    max-width: 100%;
  }
  
  .products-heading h2 {
    font-size: 24px;
  }
  
  .products-heading p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}