
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%234A7C59' stroke-opacity='0.04' stroke-width='1' d='M20,100 Q40,60 80,80 T140,100 T200,120 M0,50 Q30,30 60,50 T120,70 T180,50'/%3E%3Ccircle cx='40' cy='85' r='3' fill='%234A7C59' fill-opacity='0.04'/%3E%3Ccircle cx='110' cy='95' r='2' fill='%234A7C59' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
  z-index: -1;
  pointer-events: none;
}
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #FDF9F5; 
  color: #333;
}
main {
  flex: 1;
  padding: 20px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skeleton-container {
  width: 100%;
  margin: 20px 0;
}
.skeleton-carousel-inner {
  display: flex;
  width: max-content;
}
.skeleton-item {
  flex: 0 0 20%;
  padding: 10px;
}
.skeleton-card {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e0e6dd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  padding: 15px;
  text-align: center;
}
.skeleton-img {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite ease-in-out;
  margin-bottom: 12px;
}
.skeleton-text {
  height: 16px;
  background: #f0f0f0;
  border-radius: 4px;
  margin: 6px auto;
  animation: shimmer 1.2s infinite ease-in-out;
}
.skeleton-title { width: 70%; }
.skeleton-price { width: 40%; background: #e8e8e8; }
.skeleton-btn {
  height: 32px;
  width: 100%;
  background: #e0e0e0;
  border-radius: 6px;
  animation: shimmer 1.2s infinite ease-in-out;
  margin-top: 8px;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 200% 0; }
}

.multi-carousel {
  overflow: hidden;
  width: 100%;
  margin: 20px 0;
}
.multi-carousel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: max-content;
}
.multi-carousel-item {
  flex: 0 0 20%;
  padding: 10px;
}
.card {
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e6dd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.info-box {
  background: linear-gradient(145deg, #fdfdfd, #f7f9f6);
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e0e6dd;
  transition: transform 0.3s, background 0.3s;
  height: 100%;
  font-size: 15px;
}
.info-box:hover {
  background: #f2f6f0;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .multi-carousel-item, .skeleton-item { flex: 0 0 33.333%; }
}
@media (max-width: 576px) {
  .multi-carousel-item, .skeleton-item { flex: 0 0 100%; }
  .header-container { flex-direction: column; gap: 10px; }
}

        .skeleton-container {
            width: 100%;
            margin: 20px 0;
        }
        .skeleton-carousel-inner {
            display: flex;
            width: max-content;
        }
        .skeleton-item {
            flex: 0 0 20%;
            padding: 10px;
            box-sizing: border-box;
        }
        .skeleton-card {
            border-radius: 12px;
            background: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            padding: 15px;
            text-align: center;
        }
        .skeleton-img {
            width: 100%;
            height: 140px;
            border-radius: 10px;
            background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
            background-size: 200% 100%;
            animation: shimmer 1.0s infinite ease-in-out;
            margin-bottom: 12px;
        }
        .skeleton-text {
            height: 16px;
            background: #f0f0f0;
            border-radius: 4px;
            margin: 6px auto;
            animation: shimmer 1.0s infinite ease-in-out;
        }
        .skeleton-title {
            width: 70%;
        }
        .skeleton-price {
            width: 40%;
            background: #e8e8e8;
        }
        .skeleton-btn {
            height: 32px;
            width: 100%;
            background: #e0e0e0;
            border-radius: 6px;
            animation: shimmer 1.0s infinite ease-in-out;
            margin-top: 8px;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            50% { background-position: 100% 0; }
            100% { background-position: 200% 0; }
        }

        html, body {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
        }
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f8f9fa;
            color: #333;
        }

        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo img {
            height: 50px;
            margin-right: 15px;
        }
        .logo span {
            font-weight: 600;
            color: #2e5d34;
        }

        main {
            flex: 1;
            padding: 30px 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .multi-carousel {
            overflow: hidden;
            width: 100%;
            margin: 20px 0;
            position: relative;
        }
        .multi-carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
            width: max-content;
        }
        .multi-carousel-item {
            flex: 0 0 20%;
            padding: 10px;
            box-sizing: border-box;
        }
        .card {
            border-radius: 12px;
            text-align: center;
            padding: 15px;
            background: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            transition: transform 0.2s;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 12px;
        }

        @media (max-width: 992px) {
            .multi-carousel-item, .skeleton-item { flex: 0 0 33.333%; }
        }
        @media (max-width: 576px) {
            .multi-carousel-item, .skeleton-item { flex: 0 0 100%; }
            .header-container { flex-direction: column; gap: 10px; }
            .multi-carousel {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .multi-carousel::-webkit-scrollbar { display: none; }
            .multi-carousel-inner {
                width: auto;
            }
            .multi-carousel-item {
                scroll-snap-align: start;
            }
            #carousel-controls {
                display: none !important;
            }
        }
        

        .hero-section {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            background: linear-gradient(135deg, #e0f7e0, #f0fff0);
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .hero-section h2 {
            color: #2e5d34;
            font-weight: 700;
        }
        .hero-section p {
            max-width: 700px;
            margin: 15px auto 0;
            color: #555;
        }

        .company-banner {
            margin: 40px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            position: relative;
        }
        .company-banner img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }
        .company-banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(46, 93, 52, 0.85);
            color: white;
            padding: 25px;
            text-align: center;
        }
        .company-banner-overlay h3 {
            margin: 0;
            font-size: 1.8rem;
        }

        .why-us-section {
            margin: 50px 0;
        }
        .why-us-image {
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .why-us-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .why-us-text {
            padding: 25px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .why-us-text h3 {
            color: #2e5d34;
            margin-bottom: 15px;
        }
        .why-us-text ul {
            padding-left: 20px;
            color: #555;
        }
        .why-us-text li {
            margin-bottom: 8px;
        }

        .info-box {
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 1px solid #ccc;
            transition: 0.3s;
            height: 100%;
        }
        .info-box:hover {
            background: #eaeaea;
        }

        footer {
            margin-top: auto;
            background: #2e5d34;
            color: white;
            padding: 20px 0;
        }