

.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;
          }
        }


































































/* style for product pages  */





        /* ===== Consistent SB Engg Styles ===== */
        :root {
          --primary: #0a58ca;
          --secondary: #234084;
          --dark: #1e293b;
          --light: #f8fafc;
      }
      
      body {
          margin: 0;
          padding: 0;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          background: #ffffff;
          color: #334155;
      }
      
      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }
      
      .section-title {
          font-size: 36px;
          font-weight: 700;
          color: var(--dark);
          margin-bottom: 20px;
          /* position: relative; */
          /* display: inline-block; */
          text-align: center;
      }
      
      .section-title span {
          color: var(--primary);
      }
      
      /* .section-title::after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 0;
          width: 100%;
          height: 3px;
          background: linear-gradient(90deg, var(--primary), var(--secondary));
      }
       */
      .divider {
          width: 80px;
          height: 4px;
          background: linear-gradient(90deg, var(--primary), var(--secondary));
          margin: 20px 0;
          border-radius: 2px;
      }
      
      /* ===== UPDATED: Product Hero (Now with BG Image) ===== */
      /* .product-hero {
          background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/embossing-machine-bg.jpg') center/cover no-repeat;
          padding: 120px 0;
          text-align: center;
          color: white;
          margin-top: 70px;
      }
      
      .product-title {
          font-size: 42px;
          margin-bottom: 15px;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .product-subtitle {
          font-size: 18px;
          max-width: 700px;
          margin: 0 auto;
          opacity: 0.9;
      } */
      
      /* ===== UPDATED: Key Features (Jumping Animation) ===== */
      .features-grid {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        /* width: 300px; */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: transform 0.3s;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
    }
    
    .feature-media img,
    .feature-media video {
        width: 100%;
        border-radius: 10px;
        height: 180px;
        object-fit: cover;
        margin-bottom: 15px;
    }
    
      
      
      
      /* Product Gallery */
      .product-gallery {
          padding: 40px 0;
          background: var(--light);
      }
      
      .gallery-container {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 30px;
      }
      
      .main-image {
          /* height: 400px; */
          /* background: white; */
          border-radius: 12px;
          overflow: hidden;
          /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
      }
      
      .main-image img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          padding: 20px;
      }
      
      .thumbnails {
          display: flex;
          gap: 15px;
          margin-top: 20px;
      }
      
      .thumbnail {
          width: 80px;
          height: 80px;
          border: 2px solid #ddd;
          border-radius: 8px;
          overflow: hidden;
          cursor: pointer;
          transition: all 0.3s ease;
      }
      
      .thumbnail:hover, .thumbnail.active {
          border-color: var(--primary);
      }
      
      .thumbnail img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
      
      /* Specifications */
      .specs-section {
          /* padding: 80px 0; */
          background: white;
      }
      
      .specs-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }
      
      .specs-card {
          background: var(--light);
          padding: 30px;
          border-radius: 12px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      }
      
      .specs-card h3 {
          color: var(--primary);
          margin-bottom: 20px;
          font-size: 22px;
      }
      
      .specs-list {
          list-style: none;
      }
      
      .specs-list li {
          padding: 12px 0;
          border-bottom: 1px solid #e2e8f0;
          display: flex;
          justify-content: space-between;
      }
      
      .specs-list li span:first-child {
          font-weight: 600;
          color: var(--dark);
      }
      
      /* Features */
      .features-section {
          padding: 50px 0;
          background: var(--light);
      }
      
      .features-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }
       
      
      .feature-icon {
          width: 80px;
          height: 80px;
          background: #f1f5fe;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 25px;
          color: var(--primary);
          font-size: 32px;
          transition: all 0.3s ease;
      }
      
      .feature-card:hover .feature-icon {
          background: var(--primary);
          color: white;
      }
      
      /* Technology */
      .tech-section {
          padding: 20px 0;
          background: white;
          margin-bottom: 40px;
      }
      
      .tech-item {
          display: flex;
          gap: 50px;
          align-items: center;
          /* margin-bottom: 60px; */
      }
      
      .tech-item:nth-child(even) {
          flex-direction: row-reverse;
      }
      
      .tech-image {
          flex: 1;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      }
      
      .tech-image img {
          width: 100%;
          height: auto;
          display: block;
      }
      
      .tech-content {
          flex: 1;
      }
      
      
      
      /* Responsive */
      @media (max-width: 992px) {
          .gallery-container {
              grid-template-columns: 1fr;
          }
          
          .tech-item, .tech-item:nth-child(even) {
              flex-direction: column;
          }
      }
      
      @media (max-width: 768px) {
          .section-title {
              font-size: 28px;
          }
          
          .product-title {
              font-size: 32px;
          }
      }




