* { box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lexend", sans-serif;

}

.categories {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fafafa;
  }
  
  .categories h4 {
    font-size: 1rem;
    color: #717171;
    margin-bottom: 0.5rem;
  }
  
  .categories h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .categories h2 span {
    color: #d4a373;
  }
  
  .category-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .category-item {
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 160px;
  }
  
  .category-item img {
    width: 100%;
    /* height: 140px; */
    object-fit: cover;
background-color: none !important;
  }
  
  .category-item h3 {
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    margin-top: 0.75rem;
  }
  
  .category-item p {
    font-size: 0.9rem;
    color: #717171;
    margin-bottom: 1rem;
  }
  
  .category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
    /* haerto */
    .promo-section {
      padding: 60px 20px;
      background-color: #fafafa;
      font-family: 'Arial', sans-serif;
  }

  .containerr {
      display: flex;
      align-items: center;
      justify-content: center;
      /* max-width: 1200px; */
      margin: 0 auto;
      gap: 30px;
  }

  .content {
      max-width: 500px;
      animation: fadeInLeft 1s ease;
  }

  .promo-section h2 {
      font-size: 32px;
      color: #000;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.3;
  }

  .promo-section p {
      font-size: 16px;
      color: #555;
      margin-bottom: 25px;
      line-height: 1.6;
  }

  .buttons {
      display: flex;
      gap: 15px;
  }

  .promo-section .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .promo-section .primary-btn {
      background-color: #0a58ca;
      color: #fff;
      border: 2px solid #0a58ca;
  }

  .primary-btn:hover {
      background-color: #fff;
      color: #0a58ca;
      transform: translateY(-3px);
  }

  .secondary-btn {
      background-color: #f5f5f5;
      color: #333;
      border: 2px solid #ddd;
  }

  .secondary-btn:hover {
      background-color: #ddd;
      color: #000;
      transform: translateY(-3px);
  }

  .image img {
      width: 100%;
      max-width: 400px;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      animation: fadeInRight 1s ease;
  }

  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes fadeInRight {
      from {
          opacity: 0;
          transform: translateX(30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @media (max-width: 768px) {
      .containerr {
          flex-direction: column;
          text-align: center;
      }

      .buttons {
          justify-content: center;
      }

      .image img {
          max-width: 100%;
      }
    }


    .container {  margin: 0 auto; padding: 20px; }
        .hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
        .hero-text { max-width: 50%; }
        .hero h1 { font-size: 36px; color: #333; }
        .hero p { font-size: 18px; color: #666; }
        .hero img { max-width: 45%; border-radius: 8px; }
        
        .service-card { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: space-between; width: 100%; }
        .service-content { flex: 1; }
        .btn { background: #004a99; color: white; padding: 10px 20px; border: none; cursor: pointer; border-radius: 5px; text-decoration: none; }
        .sidebar { position: fixed; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; }
        .sidebar a { background: #004a99; color: white; padding: 10px 15px; margin: 5px; text-decoration: none; writing-mode: vertical-rl; transform: rotate(180deg); }
        @media (max-width: 768px) {
            .hero { flex-direction: column; text-align: center; }
            .hero-text, .hero img { max-width: 100%; }
            .services { flex-direction: column; }
            .service-card { flex-direction: column; text-align: center; }
        }


     

        .faq-section {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          padding: 60px 5%;
          gap: 40px;
        }
    
        .faq-left {
          flex: 1;
          min-width: 300px;
        }
    
        .faq-left h2 {
          font-size: 2.5rem;
          font-weight: 700;
          margin-bottom: 20px;
        }
    
        .faq-left p {
          font-size: 1.1rem;
          line-height: 1.6;
          margin-bottom: 30px;
        }
    
        .faq-left button {
          background-color: #000;
          color: #fff;
          padding: 15px 30px;
          font-weight: bold;
          border: none;
          border-radius: 40px;
          cursor: pointer;
          font-size: 1rem;
          transition: background 0.3s;
        }
    
        .faq-left button:hover {
          background-color: #333;
        }
    
        .faq-right {
          flex: 1;
          min-width: 300px;
        }
    
        .faq-item {
          background-color: #f5f5f5;
          margin-bottom: 10px;
          padding: 20px;
          border-radius: 6px;
          cursor: pointer;
          transition: all 0.3s ease;
        }
    
        .faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-weight: 600;
          font-size: 1.1rem;
        }
    
        .faq-answer {
          display: none;
          margin-top: 15px;
          font-size: 0.95rem;
          color: #333;
          line-height: 1.5;
        }
    
        .faq-item.active .faq-answer {
          display: block;
        }
    
        .faq-item.active .plus {
          transform: rotate(45deg);
        }
    
        .plus {
          transition: transform 0.3s ease;
          font-size: 1.5rem;
        }
    
        @media (max-width: 768px) {
          .faq-section {
            flex-direction: column;
          }
        }





        .global-section {
          max-width: 1200px;
          margin: 0 auto;
          padding: 40px 20px;
          text-align: center;
        }
    
        .global-section h1 {
          font-size: 2.5rem;
          font-weight: 700;
        }
    
        .global-section a.discover-link {
          color: #007BDB;
          font-weight: 500;
          text-decoration: none;
          font-size: 1.1rem;
          display: block;
          margin-top: 10px;
        }
    
        .info-banner {
          position: relative;
          margin: 40px auto 0;
          /* max-width: 1000px; */
          overflow: hidden;
          height: 325px;
          border-radius: 8px;
        }
    
        .info-banner img {
          width: 100%;
          /* height: 305px; */
          display: block;
        }
    
        .banner-content {
          position: absolute;
          top: 50%;
          left: 40px;
          transform: translateY(-50%);
          color: #fff;
          text-align: left;
          max-width: 500px;
        }
    
        .banner-content h2 {
          font-size: 2rem;
          margin-bottom: 10px;
          font-weight: 700;
        }
    
        .banner-content p {
          font-size: 1.1rem;
          line-height: 1.5;
          margin-bottom: 20px;
        }
    
        .cta-button {
          background: #004a99;
          color: #fff;
          padding: 12px 24px;
          border: none;
          border-radius: 4px;
          font-weight: bold;
          cursor: pointer;
          text-decoration: none;
          font-size: 1rem;
          display: inline-block;
        }
    
        .cta-button:hover {
          background: rgba(0, 0, 0, 0.85);
        }
    
        @media (max-width: 768px) {
          .banner-content {
            left: 20px;
            right: 20px;
            max-width: 100%;
          }
    
          .banner-content h2 {
            font-size: 1.5rem;
          }
    
          .banner-content p {
            font-size: 1rem;
          }
        }






/* product-page  */
/* banner  */
.product-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(40,40,40,0.1)), 
              url('embossing.jpg') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;

  z-index: 1;
  padding-top: 100px;
}

.display-4{
  /* color: #191970; */
  text-align: center;
}
.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #d1eaff; */
}

.product-hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .product-hero {
    padding: 60px 0;
    text-align: center;
  }
}







.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.main-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .main-image {
    flex: none;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    align-items: flex-start !important;
    justify-content: center;
    display: block; 
  }

  .main-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .display-flex-container {
    flex-direction: column;
    align-items: flex-start !important;
  }
}





.gallery-container > div:nth-child(2) {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}




.footer-link {
  font-size: 0.95rem;
  text-decoration: none;
  color: #000;
  opacity: 0.75;
  transition: all 0.3s;
}

.footer-link:hover,
.social-hover:hover {
  color: red !important;
  opacity: 1;
}



/* Make columns evenly spaced on larger screens */
@media (min-width: 992px) {
  .footer .row > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }

  .footer .link-wrapper ul {
    flex-grow: 1;
  }

  .footer .row {
    gap: 0px !important; /* remove Bootstrap gutter gap if needed */
  }

  .footer .row > div {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* Consistent spacing for UL elements */
.footer .link-wrapper ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Optional: fix minor icon alignment */
.footer i {
  width: 18px;
  display: inline-block;
}


/*Side fixed iocns Start*/

#promo-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 40%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#promo-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 10px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;
    border-radius: 30px;
}  

#promo-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#promo-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#promo-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#promo-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#promo-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#promo-enquiry-forms .form-content {
    background-color: #00000094;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#promo-enquiry-forms .form-content h2 {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

#promo-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
}

#promo-enquiry-forms .popup-form form input,
#promo-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#promo-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #234084;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#promo-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}

/*Side fixed iocns ends*/