.social-icons {
  position: fixed;
  bottom: 30px; /* space from bottom */
  right: 30px; /* space from right, use left: 30px; for left side */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-icons a {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

.social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.1);
}
.product-page-para {
  color: black;
  text-align: center;
  font-size: x-large;
}

.product-page-main-div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 100px;
  overflow: hidden;
}

.custom-table-container-18bf {
  font-family: Arial, sans-serif;
  padding: 30px;
  text-align: center;
  background-color: #fff;
}

.custom-title-18bf {
  color: #5b2c06;
  font-size: 28px;
  margin-bottom: 20px;
}

.custom-table-wrapper-18bf {
  overflow-x: auto;
}

.custom-table-18bf {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.custom-row-18bf {
  display: table-row;
}

.custom-header-row-18bf {
  background-color: #f4f4f4;
  font-weight: bold;
}

.custom-cell-18bf,
.custom-label-18bf {
  display: table-cell;
  border: 1px solid #ddd;
  padding: 12px;
  min-width: 80px;
  text-align: center;
  vertical-align: middle;
}

.custom-label-18bf {
  font-weight: bold;
  background-color: #fafafa;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .product-page-main-div {
    margin: 30px 50px;
    flex-direction: column;
  }

  .custom-title-18bf {
    font-size: 24px;
  }

  .custom-cell-18bf,
  .custom-label-18bf {
    font-size: 14px;
    padding: 10px;
    min-width: 70px;
  }
}

@media (max-width: 768px) {
  .product-page-main-div {
    margin: 20px;
  }

  .custom-table-container-18bf {
    padding: 20px;
  }

  .custom-title-18bf {
    font-size: 20px;
  }

  .custom-cell-18bf,
  .custom-label-18bf {
    font-size: 13px;
    padding: 8px;
    min-width: 60px;
  }
}

@media (max-width: 480px) {
  .custom-title-18bf {
    font-size: 18px;
  }

  .custom-cell-18bf,
  .custom-label-18bf {
    font-size: 12px;
    padding: 6px;
    min-width: 55px;
  }
}

.quality-page-para {
  font-size: xx-large;
  font-weight: 600;
}

.quality-section-container {
  background-color: #fefefe;
  padding: 50px 30px;
  max-width: 1200px;
  margin: auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quality-section-title {
  font-size: 28px;
  color: #5b2c06;
  text-align: center;
  margin-bottom: 30px;
}

.quality-section-para {
  font-size: 16px;
  margin-bottom: 20px;
}

.quality-section-quote-box {
  background-color: #fffaf0;
  border-left: 4px solid #c28f2c;
  padding: 15px 20px;
  margin: 25px 0;
  position: relative;
}

.quality-section-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: #c28f2c;
  left: 0;
  top: 0;
}

.quality-section-quote {
  font-style: italic;
  font-size: 16px;
  margin: 0;
  padding-left: 10px;
  color: #444;
}

.quality-section-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}

.quality-section-list {
  flex: 1 1 300px;
}

.quality-section-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.quality-section-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

.quality-section-image {
  flex: 0 0 150px;
  text-align: center;
}

.quality-section-image img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #c28f2c;
  padding: 5px;
  background-color: #fff;
}

/* Responsive design */
@media (max-width: 768px) {
  .quality-section-title {
    font-size: 22px;
  }

  .quality-section-quote {
    font-size: 15px;
  }

  .quality-section-para {
    font-size: 15px;
  }

  .quality-section-features {
    flex-direction: column;
    text-align: center;
  }

  .quality-section-image img {
    width: 80px;
  }
}

.custom-marquee-wrapper {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 10px 0;
}

.custom-marquee {
  font-size: 80px; /* Much bigger font */
  font-weight: bold;
  white-space: nowrap;
}

.marquee-black {
  color: #000;
}

.marquee-gray {
  color: #888;
}
.plate-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 40px;
  justify-items: center;
  background: #f7f7f7;
}

.plate-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 20px;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.plate-card:hover {
  transform: scale(1.02);
}

.plate-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
}

.plate-card p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  color: #000;
}
.plate-card p:hover {
  text-decoration: underline;
}

/* Unique classes for custom backgrounds (simulate table mat, decorations) */
.plate-round::before,
.plate-compartment::before,
.plate-square::before,
.plate-bowls::before,
.plate-clamshell::before {
  content: "";
  background-image: url("decor.png"); /* use plaid mat, cucumbers, leaves, flowers */
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 60px;
  z-index: -1;
  border-radius: 10px;
  opacity: 0.6;
}

/* Custom background for each card if needed */
.plate-round::before {
  background-image: url("images/plates/circle-plate.jpg");
}
.plate-compartment::before {
  background-image: url("images/plates/compartment-plate.jpg");
}
.plate-square::before {
  background-image: url("images/plates/square-plate.jpg");
}
.plate-bowls::before {
  background-image: url("images/plates/bowls.jpg");
}
.plate-clamshell::before {
  background-image: url("images/plates/bandbox.jpg");
}
/* Layout Container */
.rp_section_layout {
  padding: 40px 20px;
  margin: 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.rp_container {
  max-width: 1200px;
  margin: auto;
}

/* Top Section: Image + Content Side-by-Side */
.rp_top_section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 30px;
  margin-bottom: 50px;
}

.rp_image_section {
  flex: 1 1 40%;
}

.rp_image_section img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.rp_content_section {
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #222;
}

.rp_title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00893e;
}

.rp_summary {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.rp_subheading {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
}

.rp_features {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.rp_features li {
  margin-bottom: 5px;
}

/* Specifications Grid */
.rp_spec_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.rp_spec_box {
  flex: 1 1 calc(25% - 20px);
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}

.rp_spec_box img {
  width: 40px;
  margin-bottom: 10px;
}

.rp_spec_box h6 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.rp_spec_box span {
  display: block;
  font-size: 1rem;
  color: #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .rp_top_section {
    flex-direction: column;
  }

  .rp_image_section,
  .rp_content_section {
    flex: 1 1 100%;
  }

  .rp_spec_box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .rp_spec_box {
    flex: 1 1 100%;
  }

  .rp_title {
    font-size: 1.5rem;
  }

  .rp_description {
    font-size: 1rem;
  }
}

.rp_section_title {
  font-size: 4rem; /* approx 64px */
  font-weight: 700;
  margin-bottom: 30px;
  text-decoration: underline;
  color: #222;
  text-align: center;
}

.psbp-product-features {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.psbp-title {
  font-size: 24px;
  color: #009639; /* Green matching the image */
  font-weight: bold;
  margin-bottom: 40px;
}

.psbp-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
}

.psbp-feature-item {
  text-align: center;
  max-width: 120px;
}

.psbp-feature-item img {
  width: 100%;
  max-width: 80px;
  background-color: #bc925f;
  padding: 20px;
  border-radius: 50%;
}

.psbp-feature-item p {
  font-size: 14px;
  margin-top: 10px;
  color: #333;
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
  .psbp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .psbp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .psbp-title {
    font-size: 20px;
  }

  .psbp-feature-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .psbp-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .psbp-feature-item {
    max-width: 100%;
  }

  .psbp-feature-item img {
    max-width: 60px;
    padding: 15px;
  }

  .psbp-feature-item p {
    font-size: 12px;
  }
}
.wlcsec-hero {
  position: relative;
  padding: 100px 20px;
  background-color: #f9f9f6;
  text-align: center;
  overflow: hidden;
}

.wlcsec-bg-images img {
  position: absolute;
  width: 180px;
  opacity: 0.8;
  z-index: 1;
}

.wlcsec-top-left {
  top: 0;
  left: 0;
}

.wlcsec-top-right {
  top: 0;
  right: 0;
}

.wlcsec-bottom-left {
  bottom: 0;
  left: 0;
}

.wlcsec-bottom-right {
  bottom: 0;
  right: 0;
}

.wlcsec-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wlcsec-subtitle {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #444;
  margin-bottom: 15px;
}

.wlcsec-title {
  font-size: 42px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 25px;
  line-height: 1.3;
}

.wlcsec-highlight {
  color: #009639;
}

.wlcsec-description {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
}

.wlcsec-readmore {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.wlcsec-readmore:hover {
  color: #009639;
  border-color: #009639;
}

/* === Responsive === */
@media (max-width: 768px) {
  .wlcsec-title {
    font-size: 30px;
  }

  .wlcsec-bg-images img {
    width: 120px;
    opacity: 0.5;
  }

  .wlcsec-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wlcsec-title {
    font-size: 24px;
  }

  .wlcsec-bg-images img {
    width: 90px;
    opacity: 0.4;
  }
}

.pdfsec_container {
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: "Arial", sans-serif;
}

.pdfsec_title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #328e6e;
  font-weight: 600;
  text-decoration: underline;
}

.pdfsec_grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pdfsec_card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pdfsec_card:hover {
  transform: translateY(-5px);
}

.pdfsec_thumbnail {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.pdfsec_filename {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.pdfsec_buttons a {
  display: inline-block;
  margin: 5px 10px;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
}

.pdfsec_view {
  background-color: #328e6e;
  color: #fff;
}

.pdfsec_download {
  background-color: #2196f3;
  color: #fff;
}
.dupsec_section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.dupsec_title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 30px;
}

.swiper {
  padding: 20px 0;
}

.swiper-slide {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

.dupsec_iconic {
  font-weight: bold;
  color: #888;
  font-size: 1.2rem;
}

.dupsec_name {
  font-size: 3rem;
  color: #222;
  margin: 10px 0;
}

.dupsec_type {
  color: #666;
}

.dupsec_line {
  width: 50px;
  border: 2px solid #000;
  margin: 10px auto;
}

.dupsec_available {
  font-weight: bold;
  margin: 10px 0 0;
}

.dupsec_gsm {
  color: #2b2b2b;
}

.dupsec_readmore {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #0a5fff;
  text-decoration: none;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

.era-section {
  padding: 40px 20px;
  background: #fff;
  font-family: "Arial", sans-serif;
}

.era-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.era-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.era-main-image {
  width: 100%;
  max-width: 300px;
}

.era-app-title {
  margin-top: 20px;
  font-weight: bold;
}

.era-thumbnail-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.era-thumb {
  width: 60px;
  height: auto;
}

.era-right {
  flex: 2;
  min-width: 300px;
}

.era-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.era-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.era-subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.era-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.era-table th,
.era-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.era-button {
  background-color: #66cc44;
  color: #fff;
  padding: 12px 25px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.era-button:hover {
  background-color: #57b337;
}

@media (max-width: 768px) {
  .era-container {
    flex-direction: column;
    align-items: center;
  }

  .era-main-image {
    max-width: 100%;
  }

  .era-thumb {
    width: 50px;
  }
}

.eraspec-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.eraspec-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.eraspec-image {
  width: 48%;

  height: auto;
}

@media (max-width: 768px) {
  .eraspec-image {
    width: 100%;
  }
}
.eraspec-btn-download {
  background-color: #1a73e8; /* Blue background */
  color: white; /* White text */
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.eraspec-btn-download:hover {
  background-color: #155ab6; /* Darker on hover */
  transform: translateY(-2px);
}

.eraspec-btn-download:active {
  transform: scale(0.98);
}
.eraspec-btn-download-wrapper {
  text-align: center;
  margin-top: 20px;
}
.pdfsec_wrapper {
  display: flex;
  justify-content: center;
}

.export-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.export-section h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.export-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.export-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.export-images img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.export-images img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .export-images img {
    width: 48%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .export-images img {
    width: 100%;
    height: auto;
  }
}
.thumbnail-wrapper {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: border 0.3s;
}

.thumbnail:hover {
  border: 2px solid #333;
}

/* === Section: Paper With Confidence === */
.dupext-confidence-section {
  margin: 0 10px;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.dupext-heading {
  font-size: 28px;
  margin-bottom: 30px;
}

.dupext-confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.dupext-confidence-item img {
  width: 50%;
  height: auto;
  border-radius: 4px;
}

.dupext-subheading {
  font-size: 20px;
  margin-bottom: 5px;
  border-bottom: 2px solid #a1c18b;
  display: inline-block;
  padding-bottom: 5px;
}

.dupext-confidence-item p {
  font-size: 15px;
  color: #444;
  margin-top: 10px;
}

/* === Section: Our Approach === */
.dupext-approach-section {
  margin: 0 10px;
  padding: 50px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.dupext-heading-green {
  font-size: 30px;
  color: #7bc043;
  margin-bottom: 40px;
}

.dupext-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.dupext-approach-item img {
  width: 30%;
  height: auto;
  border-radius: 4px;
}

.dupext-approach-item h3 {
  font-size: 20px;
  color: #339933;
  margin: 15px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dupext-approach-item p {
  font-size: 15px;
  color: #555;
}

.dupext-icon {
  font-style: normal;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .dupext-confidence-grid,
  .dupext-approach-grid {
    grid-template-columns: 1fr;
  }

  .dupext-heading,
  .dupext-heading-green {
    font-size: 24px;
  }

  .dupext-subheading {
    font-size: 18px;
  }

  .dupext-approach-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .dupext-heading,
  .dupext-heading-green {
    font-size: 22px;
  }

  .dupext-confidence-section,
  .dupext-approach-section {
    padding: 30px 15px;
  }

  .dupext-confidence-grid,
  .dupext-approach-grid {
    gap: 20px;
  }
}

.kraft-paper-welcome {
  text-align: center;
  margin: 0 15px;
  background-color: #f9f9f9;
}

.kraft-paper-container {
  max-width: 900px;
  margin: auto;
}

.kraft-paper-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.kraft-paper-highlight {
  color: #009639;
}

.kraft-paper-capacity {
  font-size: 35px;
  color: black;
  font-weight: 600;
}

.kraft-paper-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.kraft-paper-specs {
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: #333;
  text-align: left;
  max-width: 500px;
}

.kraft-paper-specs li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.kraft-paper-specs li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #009639;
}

.kraft-paper-specs span {
  font-weight: 600;
}

.kraft-paper-number {
  font-size: 50px;
  font-weight: 900;
  color: #009639;
}

.advan-tabware {
  text-align: center;
  padding: 40px 20px;
}

.adv-title {
  color: #00893e;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.adv-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.adv-item {
  max-width: 120px;
  text-align: center;
}

.adv-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.adv-item p {
  font-size: 16px;
  color: #222;
}

/* Base Section */
.all-product-section {
  background: linear-gradient(to bottom right, #f9f9f9, #e0f7fa);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

/* Main Container */
.all-product-wrapper {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding: 20px;
}

/* Image Container */
.all-product-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.all-product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.all-product-image:hover img {
  transform: scale(1.05);
}

/* Text Box */
.all-product-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.all-product-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}

.all-product-content p {
  font-size: 20px;
  font-weight: 500;
  color: #374151;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Link Styling */
.all-product-content a {
  display: inline-block;
  padding: 8px 14px;
  background: #e0f2fe;
  color: #009639;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.all-product-content a:hover {
  background: #009639;
  color: #ffffff;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .all-product-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .all-product-content {
    text-align: left;
  }

  .all-product-content p {
    justify-content: flex-start;
  }
}
/* Section Background */
.hero-section {
  background: #f6fef4;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.hero-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 60px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease-out;
}

/* Heading */
.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 25px;
  line-height: 1.4;
}

.hero-text .top-line {
  color: #009639;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-text .highlight {
  color: #009639;
}

/* Paragraph */
.hero-text p {
  font-size: 18px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Button */
.hero-btn {
  background-color: #009639;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(122, 193, 66, 0.3);
}

.hero-btn:hover {
  background-color: #6ab232;
  box-shadow: 0 10px 30px rgba(122, 193, 66, 0.4);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}
.pouch-sec {
  font-family: "Segoe UI", sans-serif;
  color: #1e1e1e;
  padding: 0;
  margin: 0;
}

/* Section: Types of Pouches */
.pouch-types {
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

.pouch-types h2 {
  font-size: 28px;
  font-weight: 700;
}

.pouch-types h2 span {
  color: #f5c518; /* Yellow highlight */
}

.pouch-types ul {
  max-width: 900px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  list-style: none;
  padding: 0;
}

/* Section: Industries We Serve */
.industries-serve {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.industries-serve h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
}

.industries-serve h2 span {
  color: #f5c518;
}

.industries-serve p {
  max-width: 900px;
  margin: 20px auto 40px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Industry Grid */
.industry-grid {
  background-color: #f5c518;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 columns on large screens */
  gap: 30px;
  padding: 40px 20px;
  border-radius: 5px;
  color: #000;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.industry-item i.icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.newd a {
    margin-top: 38%;
}
/* Responsive Tweaks */
@media (max-width: 768px) {
  .pouch-types h2,
  .industries-serve h2 {
    font-size: 22px;
  }

  .pouch-types ul {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    font-size: 15px;
  }

  .industries-serve p {
    font-size: 14px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-item {
    font-size: 13px;
  }
}
.icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}
