



body {
   font-family: "Poppins", Sans-serif;
}


h1,h2,h3,h4,h5,h6{
  font-family: "Poppins", Sans-serif;
}

.wide{
      font-size: 32px !important;
    font-weight: 500 !important;
    color: #474747;
}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1255px !important;
    }
}





  .who-we-are {
  position: relative;
  width: 100%;
  background: url("./IMAGES/who_we_are.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to down, rgba(0, 80, 60, 0.8), rgba(0, 0, 0, 0));
}

/* Tablet screens */
@media (max-width: 1024px) {
  .who-we-are {
    justify-content: center;   /* center text */
    padding: 0 5%;             /* reduce side padding */
    height: 60vh;              /* smaller height */
    text-align: center;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .who-we-are {
    flex-direction: column;    /* stack content */
    justify-content: center;
    align-items: center;
    padding: 20px;             /* equal padding */
    height: auto;              /* auto-adjust height */
    text-align: center;
  }
}


.who-we-are h1 {
  position: relative; /* ensures it's above overlay */
  font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .who-we-are {
    height: 250px;
    padding-right: 5%;
  }
  .who-we-are h1 {
    font-size: 1.8rem;
  }
}


.about-text {
  margin: 0px auto;
  padding: 0 20px;
  text-align: center;
  line-height: 1.8;
  font-size: 17px;
  color: #444;
  padding: 63px;
    font-family: 'Poppins';
}

.about-text strong {
  font-weight: bold;
  color: #222;
}

.about-text p {
  font-size: 15px;
  margin-bottom: 0 0 15px;
}

/* Responsive for tablets */
@media (max-width: 991px) {
  .about-text {
    font-size: 1rem;
    margin: 40px auto;
  }
}

/* Responsive for mobiles */
@media (max-width: 600px) {
  .about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 30px auto;
  }
}

.principles {
  background: #f5f4f0; /* light cream shade */
  border-radius: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0px auto;
  text-align: center;
  
}

.principles h2 {
  font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 30px;
    color: #474747;
    font-family: 'Poppins';

}

.principles-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.principle {
  text-align: center;
}

.principle i {
  font-size: 5rem;
  color: #014d32;
  margin-bottom: 10px;
}

.principle h3 {
    font-size: 18px;
    color: #014d32;
    font-weight: 600;
    font-family: 'Poppins';
    margin-top: 10px;
}

.principles-text {
      font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    font-family: 'Poppins';
}

/* Tablet */
@media (max-width: 991px) {
  .principles-container {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .principles-container {
    flex-direction: column;
    gap: 20px;
  }

  .principle i {
    font-size: 2.5rem;
  }
}

.expertise {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  line-height: 1.8;
  font-size: 20px;
  color: #444;
}

.expertise strong {
  font-weight: 600;
  color: #222; /* makes bold text slightly darker */
}

.expertise p {
  margin-bottom: 25px;
}

/* Tablet */
@media (max-width: 991px) {
  .expertise {
    font-size: 1rem;
    margin: 40px auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .expertise {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 30px auto;
  }
}


.containers {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.intro p {
  margin-bottom: 40px;
  font-weight: 600;
  color:#004236;
  line-height: 33px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.card {
  background-color: #004d40;
  color: #ffffff;
  padding: 30px 25px;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  text-align: center;
}

.card h2 {
  margin: 15px 0 10px;
  font-family: 'Poppins';
    font-weight: 500 !important;
}

.card p {
  font-size: 1rem;
}

.icon {
  font-size: 2rem;
}

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
  .intro p {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .card {
    padding: 25px 20px;
    max-width: 90%;
  }

  .card h2 {
    font-size: 1.3rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  .icon {
    font-size: 1.8rem;
  }
}

/* Mobile phones (≤ 480px) */
@media (max-width: 480px) {
  .intro p {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .cards {
    gap: 25px;
  }

  .card {
    padding: 20px 15px;
    max-width: 100%;
  }

  .card h2 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .icon {
    font-size: 1.5rem;
  }
}


.testimonials-section {
  text-align: center;
  padding: 60px 20px;
}

.testimonials-section h2 {
  margin-bottom: 10px;
    font-size: 34px !important;
    font-weight: 500 !important;
    font-family: 'Poppins';
}

.underline {
  width: 80px;
  height: 3px;
  background-color: #004236;
  margin: 0 auto 40px auto;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  justify-content: center;
  gap: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: #f2f1ed;
  padding: 30px 25px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quote-icon {
  font-size: 60px;
  color: #004236;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.profile-circle {
  width: 60px;
  height: 60px;
  background-color: #004236;
  border-radius: 50%;
  margin: 0 auto 10px auto;
}

.author {
  font-weight: 500;
  color: #004236;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #004236;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-slide {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90%;
  }
}



.packaging-board {
  position: relative;
  width: 100%;
  background: url("/IMAGES/Packaging-Boards-1.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 55vh;
}


/* Tablet */
@media (max-width: 992px) {
  .packaging-board {
    height: 45vh; /* reduce height for tablets */
    padding-right: 5%;
    background-position: center center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .packaging-board {
    height: auto;                /* let height adjust naturally */
    min-height: 250px;           /* ensure visibility */
    padding: 20px;
    justify-content: center;     /* center text */
    background: url("/IMAGES/Packaging-Boards-1.png") center center/contain no-repeat; 
        
  }
}



  /* Page header (centered, multi-line like screenshot) */
  .page-wrap{
    max-width:1200px;
    margin:40px auto 60px;
    padding:10px;
  }

  .portfolio {
        text-align: center;
    color: #014d3a;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 38px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins';
  }

  /* The grid */
  .product-grid{
    display:grid;
    margin-top: 0%;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items:start; /* ensure title sits directly below image */
  }



  .image-card {
      max-width: 350px;
      
    }

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-container img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }

    .image-container:hover img {
      transform: scale(1.05);
    }

    /* Hover overlay */
    .overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      /* background: #004236; */
      color: white;
      text-align: center;
      padding: 15px;
      transition: bottom 0.4s ease;
      font-weight: bold;
    }

    .image-container:hover .overlay {
      bottom: 0;
    }

    /* Info below image */
    .image-info {

      text-align: center;
      margin-top: 50px;
      
    }

  

    .image-info p {
    font-size: 17px;
    font-weight: 400;
    color: #555;
    font-family: Poppins;
    text-align: center;
    margin-top: 18px;
      
    }

    /* Popup modal */
    .modal {
      display: none; /* hidden by default */
      position: fixed;
      top: 0; left: 0;
      width: 0%; height: 50%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: white;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      padding: 20px;
      text-align: center;
      position: relative;
    }

    .modal-content img {
      max-width: 100%;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .btn-secondary {
      position: absolute;
      top: 10px;
      right: 10px;
      background:#014d3a !important ;
      color: white;
      border: none;
      padding: 5px 12px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
    }

  
/* Tablet (2 columns) */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-info h3 {
    font-size: 24px;
  }
  .image-info p {
    font-size: 16px;
  }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .image-card {
    max-width: 100%;
  }
  .image-info {
    margin-top: 20px;
  }
  .image-info h3 {
    font-size: 20px;
  }
  .image-info p {
    font-size: 14px;
  }
  .portfolio {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  .modal-content {
    width: 95%;
    padding: 15px;
  }
  .btn-secondary {
    font-size: 12px;
    padding: 4px 10px;
  }
}


.graphics {
  position: relative;
  width: 100%;
  background: url("/IMAGES/graphic.png") center center/cover no-repeat ;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 55vh;
}


/* Tablet */
@media (max-width: 992px) {
  .graphics {
    height: 45vh; /* reduce height for tablets */
    padding-right: 5%;
    background-position: center center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .graphics {
    height: auto;                /* let height adjust naturally */
    min-height: 250px;           /* ensure visibility */
    padding: 20px;
    justify-content: center;     /* center text */
    background: url("/IMAGES/graphic.png") center center/contain no-repeat; 
 
  }
}


 /* Page header (centered, multi-line like screenshot) */
  .page-wrap{
    max-width:1200px;
    margin:40px auto 60px;
    padding:10px;
  }

  .extensive {
    text-align:center;
    color:#014d3a;
    font-weight:500;
    font-size:2rem;
    line-height:1.3;
    margin-bottom:38px;
    max-width:980px;
    margin-left:auto;
    margin-right:auto;
  }

  /* The grid */
  .product-grid{
    display:grid;
    margin-top: 0%;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items:start; /* ensure title sits directly below image */
  }



  .image-card {
      max-width: 350px;
      
    }

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-container img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }

    .image-container:hover img {
      transform: scale(1.05);
    }

    /* Hover overlay */
    .overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      /* background: darkgreen; */
      color: white;
      text-align: center;
      padding: 15px;
      transition: bottom 0.4s ease;
      font-weight: bold;
    }

    .image-container:hover .overlay {
      bottom: 0;
    }

    /* Info below image */
    .image-info {

      text-align: center;
      margin-top: 50px;
      
    }

    .image-info h3 {
      margin: 5px 0;
      font-size: 30px;
      font-family: 'Poppins';
      color: #474747;
    }

  

    /* Popup modal */
    .modal {
      display: none; /* hidden by default */
      position: fixed;
      top: 0; left: 0;
      width: 0%; height: 50%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: white;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      padding: 20px;
      text-align: center;
      position: relative;
    }

    .modal-content img {
      max-width: 100%;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .btn-secondary {
      position: absolute;
      top: 10px;
      right: 10px;
      background:#004236 !important ;
      color: white;
      border: none;
      padding: 5px 12px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
    }

   /* Tablet (2 columns) */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .diverse {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .image-info h3 {
    font-size: 24px;
  }
  .image-info p {
    font-size: 16px;
  }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .diverse {
    font-size: 1.4rem;
    padding: 0 10px;
  }
  .image-info h3 {
    font-size: 20px;
  }
  .image-info p {
    font-size: 14px;
  }
  .overlay {
    font-size: 14px;
    padding: 10px;
  }
}


/* 📱 RESPONSIVE RULES */
/* ======================== */

/* Tablets */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .extensive {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .image-info h3 {
    font-size: 24px;
  }

  .image-info p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .page-wrap {
    margin: 20px auto 40px;
    padding: 5px;
  }

  .extensive {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 15px;
  }

  .image-card {
    max-width: 100%;
  }

  .image-info {
    margin-top: 20px;
  }

  .image-info h3 {
    font-size: 20px;
  }

  .image-info p {
    font-size: 14px;
  }

  .modal-content {
    width: 95%;
    padding: 15px;
  }
}



body {
  line-height: 1.6;
}


.food-packaging {
  position: relative;
  width: 100%;
  background: url("/IMAGES/food&packing.png") center center/cover no-repeat ;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 55vh;
}


/* Tablets */
@media (max-width: 1024px) {
  .food-packaging {
    height: 45vh;               /* shrink a bit */
    justify-content: center;    /* center content */
    text-align: center;
    padding: 0 5%;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .food-packaging {
    height: auto;               /* flexible height */
    min-height: 40vh;           /* ensure image still shows */
    justify-content: center;
    text-align: center;
    padding: 20px;

    /* ✅ show full image on mobile */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}


  /* Page header (centered, multi-line like screenshot) */
  .page-wrap{
    max-width:1200px;
    margin:40px auto 60px;
    padding:10px;
  }

  .diverse {
    text-align:center;
    color:#014d3a;
    font-weight:500;
    font-size:2rem;
    line-height:1.3;
    margin-bottom:38px;
    max-width:980px;
    margin-left:auto;
    margin-right:auto;
  }

  /* The grid */
  .product-grid{
    display:grid;
    margin-top: 0%;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items:start; /* ensure title sits directly below image */
  }



  .image-card {
      max-width: 350px;
      
    }

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-container img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }

    .image-container:hover img {
      transform: scale(1.05);
    }

    /* Hover overlay */
    .overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      /* background: #004236; */
      color: white;
      text-align: center;
      padding: 15px;
      transition: bottom 0.4s ease;
      font-weight: bold;
    }

    .image-container:hover .overlay {
      bottom: 0;
    }

    /* Info below image */
    .image-info {

      text-align: center;
      margin-top: 50px;
      
    }

  

    /* Popup modal */
    .modal {
      display: none; /* hidden by default */
      position: fixed;
      top: 0; left: 0;
      width: 0%; height: 50%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: white;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      padding: 20px;
      text-align: center;
      position: relative;
    }

    .modal-content img {
      max-width: 100%;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .btn-secondary {
      position: absolute;
      top: 10px;
      right: 10px;
      background:#014d3a !important ;
      color: white;
      border: none;
      padding: 5px 12px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
    }


  
/* Tablets */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .diverse {
    font-size: 1.8rem;
  }

  .image-info h3 {
    font-size: 24px;
  }

  .image-info p {
    font-size: 16px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .page-wrap {
    margin: 20px auto 40px;
    padding: 5px;
  }

  .diverse {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .product-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 15px;
  }

  .image-card {
    max-width: 100%;
  }

  .image-info {
    margin-top: 20px;
  }

  .image-info h3 {
    font-size: 20px;
  }

  .image-info p {
    font-size: 14px;
  }

  .modal-content {
    width: 95%;
    padding: 15px;
  }
}  





.speciality {
  position: relative;
  width: 100%;
  background: url("/IMAGES/speciality.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 55vh;
}



/* Tablet */
@media (max-width: 992px) {
  .speciality {
    height: 45vh; /* reduce height for tablets */
    padding-right: 5%;
    background-position: center center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .speciality {
    height: auto;                /* let height adjust naturally */
    min-height: 250px;           /* ensure visibility */
    padding: 20px;
    justify-content: center;     /* center text */
    background: url("/IMAGES/speciality.png") center center/contain no-repeat; 
 
  }
}



  /* Page header (centered, multi-line like screenshot) */
  .page-wrap{
    max-width:1200px;
    margin:40px auto 60px;
    padding:10px;
  }

  .tailored {
    text-align:center;
    color:#014d3a;
    font-weight:500;
    font-size:2rem;
    line-height:1.3;
    margin-bottom:38px;
    max-width:980px;
    margin-left:auto;
    margin-right:auto;
  }

  /* The grid */
  .product-grid{
    display:grid;
    margin-top: 0%;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items:start; /* ensure title sits directly below image */
  }



  .image-card {
      max-width: 350px;
      
    }

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-container img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }

    .image-container:hover img {
      transform: scale(1.05);
    }

    /* Hover overlay */
    .overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      /* background: #004236; */
      color: white;
      text-align: center;
      padding: 15px;
      transition: bottom 0.4s ease;
      font-weight: bold;
    }

    .image-container:hover .overlay {
      bottom: 0;
    }

    /* Info below image */
    .image-info {

      text-align: center;
      margin-top: 50px;
      
    }

  
    

    /* Popup modal */
    .modal {
      display: none; /* hidden by default */
      position: fixed;
      top: 0; left: 0;
      width: 0%; height: 50%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: white;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      padding: 20px;
      text-align: center;
      position: relative;
    }

    .modal-content img {
      max-width: 100%;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .btn-secondary {
      position: absolute;
      top: 10px;
      right: 10px;
      background:#014d3a !important ;
      color: white;
      border: none;
      padding: 5px 12px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
    }

  
/* Tablet (2 columns) */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-info h3 {
    font-size: 24px;
  }
  .image-info p {
    font-size: 16px;
  }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .image-card {
    max-width: 100%;
  }
  .image-info {
    margin-top: 20px;
  }
  .image-info h3 {
    font-size: 20px;
  }
  .image-info p {
    font-size: 14px;
  }
  .portfolio {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  .modal-content {
    width: 95%;
    padding: 15px;
  }
  .btn-secondary {
    font-size: 12px;
    padding: 4px 10px;
  }
}




.kraft {
  position: relative;
  width: 100%;
  background: url("/IMAGES/Kraft.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 55vh;
}


/* Tablet */
@media (max-width: 992px) {
  .kraft {
    height: 45vh; /* reduce height for tablets */
    padding-right: 5%;
    background-position: center center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .kraft {
    height: auto;                /* let height adjust naturally */
    min-height: 250px;           /* ensure visibility */
    padding: 20px;
    justify-content: center;     /* center text */
    background: url("/IMAGES/Kraft.png") center center/contain no-repeat; 
 
  }
}


  /* Page header (centered, multi-line like screenshot) */
  .page-wrap{
    max-width:1200px;
    margin:40px auto 60px;
    padding:10px;
  }

  .wrapping {
    text-align:center;
    color:#014d3a;
    font-weight:500;
    font-size:2rem;
    line-height:1.3;
    margin-bottom:38px;
    max-width:980px;
    margin-left:auto;
    margin-right:auto;
  }

  /* The grid */
  .product-grid{
    display:grid;
    margin-top: 0%;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items:start; /* ensure title sits directly below image */
  }



  .image-card {
      max-width: 350px;
      
    }

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-container img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
    }

    .image-container:hover img {
      transform: scale(1.05);
    }

    /* Hover overlay */
    .overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      /* background: #004236; */
      color: white;
      text-align: center;
      padding: 15px;
      transition: bottom 0.4s ease;
      font-weight: bold;
    }

    .image-container:hover .overlay {
      bottom: 0;
    }

    /* Info below image */
    .image-info {

      text-align: center;
      margin-top: 50px;
      
    }

  
  

    /* Popup modal */
    .modal {
      display: none; /* hidden by default */
      position: fixed;
      top: 0; left: 0;
      width: 0%; height: 50%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: white;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      padding: 20px;
      text-align: center;
      position: relative;
    }

    .modal-content img {
      max-width: 100%;
      border-radius: 6px;
      margin-bottom: 15px;
    }

    .btn-secondary {
      position: absolute;
      top: 10px;
      right: 10px;
      background:#014d3a !important ;
      color: white;
      border: none;
      padding: 5px 12px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
    }

  /* ---------- Responsive ---------- */

/* 📱 Tablets */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 20px;
  }

  .image-info h3 {
    font-size: 24px;
  }

  .image-info p {
    font-size: 16px;
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 per row */
    gap: 15px;
  }

  .wrapping {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .image-info {
    margin-top: 25px;
  }

  .image-info h3 {
    font-size: 20px;
  }

  .image-info p {
    font-size: 14px;
  }

  .modal-content {
    width: 95%;
    padding: 15px;
  }
}


 .Latest-articles {
  position: relative;
  width: 100%;
  background: url("/IMAGES/latest-articles.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to, rgba(0, 80, 60, 0.8), rgba(0, 0, 0, 0));
}

/* Tablets */
@media (max-width: 1024px) {
  .Latest-articles {
    height: 45vh;               /* shrink a bit */
    justify-content: center;    /* center content */
    text-align: center;
    padding: 0 5%;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .Latest-articles {
    height: auto;               /* flexible height */
    min-height: 40vh;           /* ensure image still shows */
    justify-content: center;
    text-align: center;
    padding: 20px;

    /* ✅ show full image on mobile */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}


.Latest-articles h1 {
  position: relative; /* ensures it's above overlay */
  font-size: 2.5rem;
  font-weight: bold;
}
/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .Latest {
    justify-content: center;  /* center text instead of right */
    padding-right: 0;
    height: 60vh;
    text-align: center;
  }

  .Latest h1 {
    font-size: 2rem;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .Latest {
    justify-content: center;
    align-items: flex-end; /* move text slightly down */
    padding: 20px;
    height: 50vh;
    text-align: center;
  }

 .Latest h1 {
    font-size: 1.5rem;
  }
}



.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 per row on desktop */
  gap: 20px;
  padding: 60px 15px 0px 15px; /* as you said */
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
  padding: 10px;
}

.blog-card:hover {
  transform: scale(1.02);
}

.blog-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.blog-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: normal;
}

.blog-title a {
  text-decoration: none;
  color: #014d3a;
  font-size: 20px;
  font-family: "Poppins", Sans-serif;
  font-weight: 400;
}

/*.blog-title a:hover {
  text-decoration: underline;
}

/* 📱 Mobile (1 per row) */
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 40px 15px 0px 15px;
  }

  .blog-card img {
    height: 200px;
  }
}




.eco-friendly {
  position: relative;
  width: 100%;
  background: url("./latest_article/eco-friendly/img/eco-friendly.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}

/* ====== Responsive ====== */

/* Tablets */
@media (max-width: 1024px) {
  .eco-friendly {
    height: 60vh;                /* smaller height */
    justify-content: center;     /* center text */
    text-align: center;
    padding: 0 5%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .eco-friendly {
    height: auto;                /* let content define height */
    min-height: 50vh;            /* ensures some background visibility */
    justify-content: center;     /* center text */
    text-align: center;
    padding: 40px 20px;          /* more padding inside */
  }
}

    .container-eco {
      max-width: var(--maxw);
      margin: 36px 105px ;
      padding: 0 18px;
    }

    h1 {
      text-align: left;
      color: #014d3a !important;
      font-size: 1.8rem !important;
      line-height: 1.2;
      margin: 0 0 70px;
      font-weight: 700;
    }

    h2 {
      color: black;
      font-size: 1.2rem !important;
      margin: 28px 0 8px;
      line-height: 2.2vw !important;
      font-weight: 750 !important;
    }

    p {
      margin: 14px 0;
      text-align: justify;
      font-size: 1.2rem;
    }

    /* Images appear between paragraphs (block style) */
    .article-img {
      display: block;
      max-width: 100%;
      margin: 20px 0px auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }


/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .container-eco {
    margin: 30px 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem !important;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  p {
    font-size: 1.05rem;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .container-eco {
    margin: 20px 15px;
    padding: 0 10px;
  }

  h1 {
    font-size: 1.4rem !important;
    margin-bottom: 35px;
    text-align: center;
  }

  h2 {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: left; /* better readability on narrow screens */
  }

  .article-img {
    margin: 15px auto;
    border-radius: 4px;
  }
}

    .recent-posts {
      
      
      max-width: 1200px;
      margin: 40px 105px auto;
      padding: 0 20px;
    }

    .recent-posts h2 {
      font-size: 1.8rem !important;
      text-align: left;
      font-weight: 600 !important;
      margin-bottom: 20px;
      color: #004d40;
    }

    .posts-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .post {
      text-align: left;
    }

    .post img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      display: block;
      margin: 20px auto ;
    }

    .post-title {
      margin: 0px 0 20px;
      font-size: 18px;
      font-weight: 500;
    }

    .post-title a {
      text-decoration: none;
      color: #004d40;
      transition: color 0.3s ease;
    }

    .post-title a:hover {
      color: #00796b;
    }

  
/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .recent-posts {
    margin: 30px 40px auto;
    padding: 0 15px;
  }

  .recent-posts h2 {
    font-size: 1.6rem !important;
  }

  .post-title {
    font-size: 16px;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .recent-posts {
    margin: 20px auto;
    padding: 0 10px;
  }

  .recent-posts h2 {
    font-size: 1.4rem !important;
    text-align: center; /* center heading on small screens */
  }

  .posts-container {
    grid-template-columns: 1fr; /* stack posts in 1 column */
    gap: 15px;
  }

  .post-title {
    font-size: 15px;
    text-align: center;
  }

  .post img {
    margin: 10px auto;
  }
}


.laser-based {
  position: relative;
  width: 100%;
  background: url("./latest_article/laser-based/img/laser-based.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}


/* Tablets */
@media (max-width: 1024px) {
  .laser-based {
    height: 60vh;                /* shrink height */
    justify-content: center;     /* center text */
    text-align: center;
    padding: 0 5%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .laser-based {
    height: auto;                /* auto adjust */
    min-height: 50vh;            /* ensure background shows */
    justify-content: center;     /* center text */
    text-align: center;
    padding: 40px 20px;          /* add breathing space */
  }
}

    .container-laser {
      max-width: var(--maxw);
      margin: 36px 105px ;
      padding: 0 18px;
    }

    h1 {
      text-align: left;
      color: #014d3a !important;
      font-size: 1.8rem !important;
      line-height: 1.2;
      margin: 0 0 70px;
      font-weight: 700;
    }

    h2 {
      color: black;
      font-size: 1.2rem !important;
      margin: 28px 0 8px;
      line-height: 2.2vw !important;
      font-weight: 750 !important;
    }

    p {
      margin: 14px 0;
      text-align: justify;
      font-size: 1.2rem;
    }

    /* Images appear between paragraphs (block style) */
    .article-img {
      display: block;
      max-width: 100%;
      margin: 20px 0px auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }


/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .container-laser {
    margin: 30px 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem !important;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  p {
    font-size: 1.05rem;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .container-laser {
    margin: 20px 15px;
    padding: 0 10px;
  }

  h1 {
    font-size: 1.4rem !important;
    margin-bottom: 35px;
    text-align: center;
  }

  h2 {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: left; /* better readability on narrow screens */
  }

  .article-img {
    margin: 15px auto;
    border-radius: 4px;
  }
}



.recent-posts {
      
      
      max-width: 1200px;
      margin: 40px 105px auto;
      padding: 0 20px;
    }

    .recent-posts h2 {
      font-size: 1.8rem !important;
      text-align: left;
      font-weight: 600 !important;
      margin-bottom: 20px;
      color: #004d40;
    }

    .posts-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .post {
      text-align: left;
    }

    .post img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      display: block;
      margin: 20px auto ;
    }

    .post-title {
      margin: 0px 0 20px;
      font-size: 18px;
      font-weight: 500;
    }

    .post-title a {
      text-decoration: none;
      color: #004d40;
      transition: color 0.3s ease;
    }

    .post-title a:hover {
      color: #00796b;
    }

  
/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .recent-posts {
    margin: 30px 40px auto;
    padding: 0 15px;
  }

  .recent-posts h2 {
    font-size: 1.6rem !important;
  }

  .post-title {
    font-size: 16px;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .recent-posts {
    margin: 20px auto;
    padding: 0 10px;
  }

  .recent-posts h2 {
    font-size: 1.4rem !important;
    text-align: center; /* center heading on small screens */
  }

  .posts-container {
    grid-template-columns: 1fr; /* stack posts in 1 column */
    gap: 15px;
  }

  .post-title {
    font-size: 15px;
    text-align: center;
  }

  .post img {
    margin: 10px auto;
  }
}


.papermaking {
  position: relative;
  width: 100%;
  background: url("/latest_article/papermaking/img/papermaking.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}



/*.container-papermaking ol li {
  font-size: 20px;
  font-weight: 750;

}*/
    .container-papermaking {
      max-width: var(--maxw);
      margin: 36px 105px ;
      padding: 0 18px;
    }

    h1 {
      text-align: left;
      color: #014d3a !important;
      font-size: 1.8rem !important;
      line-height: 1.2;
      margin: 0 0 70px;
      font-weight: 700;
    }

    h2 {
      color: black;
      font-size: 1.2rem !important;
      margin: 28px 0 8px;
      line-height: 2.2vw !important;
      font-weight: 750 !important;
    }

    p {
      margin: 14px 0;
      text-align: justify;
      font-size: 1.2rem;
    }

    li {
      font-size: 1.2rem;
    }

    /* Images appear between paragraphs (block style) */
    .article-img {
      display: block;
      max-width: 100%;
      margin: 20px 0px auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }


/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .container-papermaking {
    margin: 30px 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem !important;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  p {
    font-size: 1.05rem;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .container-papermaking {
    margin: 20px 15px;
    padding: 0 10px;
  }

  h1 {
    font-size: 1.4rem !important;
    margin-bottom: 35px;
    text-align: center;
  }

  h2 {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: left; /* better readability on narrow screens */
  }

  .article-img {
    margin: 15px auto;
    border-radius: 4px;
  }
}














.recent-posts {
      
      
      max-width: 1200px;
      margin: 40px 105px auto;
      padding: 0 20px;
    }

    .recent-posts h2 {
      font-size: 1.8rem !important;
      text-align: left;
      font-weight: 600 !important;
      margin-bottom: 20px;
      color: #004d40;
    }

    .posts-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .post {
      text-align: left;
    }

    .post img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      display: block;
      margin: 20px auto ;
    }

    .post-title {
      margin: 0px 0 20px;
      font-size: 18px;
      font-weight: 500;
    }

    .post-title a {
      text-decoration: none;
      color: #004d40;
      transition: color 0.3s ease;
    }

    .post-title a:hover {
      color: #00796b;
    }

  
/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .recent-posts {
    margin: 30px 40px auto;
    padding: 0 15px;
  }

  .recent-posts h2 {
    font-size: 1.6rem !important;
  }

  .post-title {
    font-size: 16px;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .recent-posts {
    margin: 20px auto;
    padding: 0 10px;
  }

  .recent-posts h2 {
    font-size: 1.4rem !important;
    text-align: center; /* center heading on small screens */
  }

  .posts-container {
    grid-template-columns: 1fr; /* stack posts in 1 column */
    gap: 15px;
  }

  .post-title {
    font-size: 15px;
    text-align: center;
  }

  .post img {
    margin: 10px auto;
  }
}





.top-trends {
  position: relative;
  width: 100%;
  background: url("/latest_article/top-trends/img/trends-in-pulp.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .top-trends {
    height: 60vh;            /* reduce height for tablets */
    padding-right: 5%;       /* less side padding */
    justify-content: center; /* center text instead of right */
    text-align: center;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .top-trends {
    height: 50vh;             /* smaller height */
    padding: 0 15px;          /* padding on both sides */
    justify-content: center;  /* center align */
    text-align: center;
  }
}


    .container-top-trends {
      max-width: var(--maxw);
      margin: 36px 105px ;
      padding: 0 18px;
    }

    h1 {
      text-align: left;
      color: #014d3a !important;
      font-size: 1.8rem !important;
      line-height: 1.2;
      margin: 0 0 70px;
      font-weight: 700;
    }

    h2 {
      color: black;
      font-size: 1.2rem !important;
      margin: 28px 0 8px;
      line-height: 2.2vw !important;
      font-weight: 750 !important;
    }

    p {
      margin: 14px 0;
      text-align: justify;
      font-size: 1.2rem;
    }

    /* Images appear between paragraphs (block style) */
    .article-img {
      display: block;
      max-width: 100%;
      margin: 20px 0px auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }


/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .container-top-trends {
    margin: 30px 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem !important;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  p {
    font-size: 1.05rem;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .container-top-trends {
    margin: 20px 15px;
    padding: 0 10px;
  }

  h1 {
    font-size: 1.4rem !important;
    margin-bottom: 35px;
    text-align: center;
  }

  h2 {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: left; /* better readability on narrow screens */
  }

  .article-img {
    margin: 15px auto;
    border-radius: 4px;
  }
}

   .recent-posts {
      
      
      max-width: 1200px;
      margin: 40px 105px auto;
      padding: 0 20px;
    }

    .recent-posts h2 {
      font-size: 1.8rem !important;
      text-align: left;
      font-weight: 600 !important;
      margin-bottom: 20px;
      color: #004d40;
    }

    .posts-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .post {
      text-align: left;
    }

    .post img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      display: block;
      margin: 20px auto ;
    }

    .post-title {
      margin: 0px 0 20px;
      font-size: 18px;
      font-weight: 500;
    }

    .post-title a {
      text-decoration: none;
      color: #004d40;
      transition: color 0.3s ease;
    }

    .post-title a:hover {
      color: #00796b;
    }

  
/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .recent-posts {
    margin: 30px 40px auto;
    padding: 0 15px;
  }

  .recent-posts h2 {
    font-size: 1.6rem !important;
  }

  .post-title {
    font-size: 16px;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .recent-posts {
    margin: 20px auto;
    padding: 0 10px;
  }

  .recent-posts h2 {
    font-size: 1.4rem !important;
    text-align: center; /* center heading on small screens */
  }

  .posts-container {
    grid-template-columns: 1fr; /* stack posts in 1 column */
    gap: 15px;
  }

  .post-title {
    font-size: 15px;
    text-align: center;
  }

  .post img {
    margin: 10px auto;
  }
}





.paper-based {
  position: relative;
  width: 100%;
  background: url("/latest_article/paper-based/img/paper-based-product.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}


/* Tablet Responsive */
@media (max-width: 992px) {
  .paper-based {
    height: 60vh;            /* reduce height for tablets */
    padding-right: 5%;       /* less side padding */
    justify-content: center; /* center text instead of right */
    text-align: center;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .paper-based {
    height: 50vh;             /* smaller height */
    padding: 0 15px;          /* padding on both sides */
    justify-content: center;  /* center align */
    text-align: center;
  }
}


    .container-paperbased {
      max-width: var(--maxw);
      margin: 36px 105px ;
      padding: 0 18px;
    }

    h1 {
      text-align: left;
      color: #014d3a !important;
      font-size: 1.8rem !important;
      line-height: 1.2;
      margin: 0 0 70px;
      font-weight: 700;
    }

    h2 {
      color: black;
      font-size: 1.2rem !important;
      margin: 28px 0 8px;
      line-height: 2.2vw !important;
      font-weight: 750 !important;
    }

    p {
      margin: 14px 0;
      text-align: justify;
      font-size: 1.2rem;
    }

    /* Images appear between paragraphs (block style) */
    .article-img {
      display: block;
      max-width: 100%;
      margin: 20px 0px auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }


/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .container-paperbased {
    margin: 30px 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem !important;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  p {
    font-size: 1.05rem;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .container-paperbased {
    margin: 20px 15px;
    padding: 0 10px;
  }

  h1 {
    font-size: 1.4rem !important;
    margin-bottom: 35px;
    text-align: center;
  }

  h2 {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: left; /* better readability on narrow screens */
  }

  .article-img {
    margin: 15px auto;
    border-radius: 4px;
  }
}


.recent-posts {
      
      
      max-width: 1200px;
      margin: 40px 105px auto;
      padding: 0 20px;
    }

    .recent-posts h2 {
      font-size: 1.8rem !important;
      text-align: left;
      font-weight: 600 !important;
      margin-bottom: 20px;
      color: #004d40;
    }

    .posts-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .post {
      text-align: left;
    }

    .post img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      display: block;
      margin: 20px auto ;
    }

    .post-title {
      margin: 0px 0 20px;
      font-size: 18px;
      font-weight: 500;
    }

    .post-title a {
      text-decoration: none;
      color: #004d40;
      transition: color 0.3s ease;
    }

    .post-title a:hover {
      color: #00796b;
    }

  
/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .recent-posts {
    margin: 30px 40px auto;
    padding: 0 15px;
  }

  .recent-posts h2 {
    font-size: 1.6rem !important;
  }

  .post-title {
    font-size: 16px;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .recent-posts {
    margin: 20px auto;
    padding: 0 10px;
  }

  .recent-posts h2 {
    font-size: 1.4rem !important;
    text-align: center; /* center heading on small screens */
  }

  .posts-container {
    grid-template-columns: 1fr; /* stack posts in 1 column */
    gap: 15px;
  }

  .post-title {
    font-size: 15px;
    text-align: center;
  }

  .post img {
    margin: 10px auto;
  }
}


.paper-comeback {
  position: relative;
  width: 100%;
  background: url("/latest_article/paper-comeback/img/paper-comeback.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}



/* Tablet Responsive */
@media (max-width: 992px) {
  .paper-comeback {
    height: 60vh;            /* reduce height for tablets */
    padding-right: 5%;       /* less side padding */
    justify-content: center; /* center text instead of right */
    text-align: center;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .paper-comeback {
    height: 50vh;             /* smaller height */
    padding: 0 15px;          /* padding on both sides */
    justify-content: center;  /* center align */
    text-align: center;
  }
}



    .container-paper {
      max-width: var(--maxw);
      margin: 36px 105px ;
      padding: 0 18px;
    }

    h1 {
      text-align: left;
      color: #014d3a !important;
      font-size: 1.8rem !important;
      line-height: 1.2;
      margin: 0 0 70px;
      font-weight: 700;
    }

    h2 {
      color: black;
      font-size: 1.2rem !important;
      margin: 28px 0 8px;
      line-height: 2.2vw !important;
      font-weight: 750 !important;
    }

    p {
      margin: 14px 0;
      text-align: justify;
      font-size: 1.2rem;
    }

    /* Images appear between paragraphs (block style) */
    .article-img {
      display: block;
      max-width: 100%;
      margin: 20px 0px auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }


/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .container-paper {
    margin: 30px 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem !important;
    margin-bottom: 50px;
  }

  h2 {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  p {
    font-size: 1.05rem;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .container-eco {
    margin: 20px 15px;
    padding: 0 10px;
  }

  h1 {
    font-size: 1.4rem !important;
    margin-bottom: 35px;
    text-align: center;
  }

  h2 {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: left; /* better readability on narrow screens */
  }

  .article-img {
    margin: 15px auto;
    border-radius: 4px;
  }
}



.recent-posts {
      
      
      max-width: 1200px;
      margin: 40px 105px auto;
      padding: 0 20px;
    }

    .recent-posts h2 {
      font-size: 1.8rem !important;
      text-align: left;
      font-weight: 600 !important;
      margin-bottom: 20px;
      color: #004d40;
    }

    .posts-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .post {
      text-align: left;
    }

    .post img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      display: block;
      margin: 20px auto ;
    }

    .post-title {
      margin: 0px 0 20px;
      font-size: 18px;
      font-weight: 500;
    }

    .post-title a {
      text-decoration: none;
      color: #004d40;
      transition: color 0.3s ease;
    }

    .post-title a:hover {
      color: #00796b;
    }

  
/* 📱 Tablet Responsiveness */
@media (max-width: 992px) {
  .recent-posts {
    margin: 30px 40px auto;
    padding: 0 15px;
  }

  .recent-posts h2 {
    font-size: 1.6rem !important;
  }

  .post-title {
    font-size: 16px;
  }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .recent-posts {
    margin: 20px auto;
    padding: 0 10px;
  }

  .recent-posts h2 {
    font-size: 1.4rem !important;
    text-align: center; /* center heading on small screens */
  }

  .posts-container {
    grid-template-columns: 1fr; /* stack posts in 1 column */
    gap: 15px;
  }

  .post-title {
    font-size: 15px;
    text-align: center;
  }

  .post img {
    margin: 10px auto;
  }
}













  .contactUs {
  position: relative;
  width: 100%;
  background: url("/contact-us/img/contact.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  padding-right: 10%;
  color: white;
  height: 75vh;
}


/* Tablets */
@media (max-width: 1024px) {
  .contactUs {
    height: 45vh;               /* shrink a bit */
    justify-content: center;    /* center content */
    text-align: center;
    padding: 0 5%;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .contactUs {
    height: auto;               /* flexible height */
    min-height: 40vh;           /* ensure image still shows */
    justify-content: center;
    text-align: center;
    padding: 20px;

    /* ✅ show full image on mobile */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to, rgba(0, 80, 60, 0.8), rgba(0, 0, 0, 0));
}

.contactUs h1 {
      position: relative;
  font-size: 50px !important;
    font-weight: 500;
    font-family: 'Poppins';
    color: white !important;
}

/* ---------- Responsive Styles ---------- */

/* Tablets */
@media (max-width: 992px) {
  .contactUs {
    justify-content: center;   /* center text instead of pushing right */
    padding: 0 5%;
    height: 65vh;
    text-align: center;
  }

  .contactUs h1 {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .contactUs {
    height: 50vh;
    padding: 0 20px;
    justify-content: center;
    text-align: center;
  }

  .contactUs h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}



.contact-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 200px; /* space between items */
  padding: 70px 0px 30px 0px;
  flex-wrap: wrap; /* allow wrapping for smaller screens */
}

.contact-items {
  display: flex;
  flex-direction: column;  /* stack image on top, text below */
  align-items: center;     /* center horizontally */
  text-align: center;
  color: #014d3a; /* dark green */
  font-family: Arial, sans-serif;
}

.contact-item img {
  width: 40px;   /* adjust size of your icons */
  height: auto;
  margin-bottom: 10px;
}

.contact-item p {
  font-size:18px !important;
    margin-top: 12px !important;
    margin-bottom: 1rem;
}
/* ---------- Responsive Breakpoints ---------- */

/* Tablets */
@media (max-width: 992px) {
  .contact-info {
    gap: 60px; /* reduce gap */
    padding: 50px 20px;
  }

  .contact-item p {
    font-size: 1.2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .contact-info {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 30px;
    padding: 40px 15px;
  }

  .contact-item img {
    width: 35px;
  }

  .contact-item p {
    font-size: 1rem;
  }
}



.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 0px 15px 40px 15px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #014d3a;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  border: none;
  background: #014d3a;
  color: white;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #01795a;
}

.contact-map {
  flex: 1;
  min-width: 320px;
  height: 500px;
}


/* ✅ Responsive Fix */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .contact-map {
    min-height: 300px;
  }
}








/* ---------------- Responsive ---------------- */

/* Tablets */
@media (max-width: 992px) {
  .contact-container {
    gap: 20px;
    padding: 0px 10px 30px 10px;
  }

  .form-row {
    flex-direction: column; /* stack inputs */
  }

  .contact-map {
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-map {
    width: 100%;
    min-width: unset;
  }

  .contact-form h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .contact-map {
    height: 300px;
  }
}



