    .export-section {
      /*max-width: 1200px;*/
      margin: auto;
      padding: 20px 20px;
      text-align: center;
    }
    
    .productheading{
        display:none;
    }
    
    .mobilesize{
         display:none;
    }
    
    @media(max-width:575px){
        .export-section {
          margin: auto;
          padding: 10px 0px;
          text-align: center;
        }
        
         .export-card {
          background: linear-gradient(to top, #1b4b80, #40b2e4);
          color: #fff;
          border-radius: 16px;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          padding: 10px 10px;
          /*width: 250px;*/
          transition: 0.3s ease;
          cursor: pointer;
          position: relative;
          overflow: hidden;
        }
        
        .nav-tabs .nav-link {
            cursor: pointer;
            padding: 2px 7px !important;
            text-align: center;
            margin: 4px 4px !important;
            border: 1px solid #ccc;
            border-radius: 4px;
            color: #333;
            background: #f8f8f8;
        }
        .productheading{
            display:block;
        }
         .mobilesize{
         display:block;
      }
    }

    .export-title {
      font-size: 32px;
      color: #222;
      margin-bottom: 10px;
    }

    .export-subtitle {
      font-size: 16px;
      color: #666;
      margin-bottom: 40px;
    }

    .export-card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .export-card {
      background: linear-gradient(to top, #1b4b80, #40b2e4);
      color: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 30px 20px;
      width: 250px;
      transition: 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .export-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .icon-circle {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .icon-circle i {
      font-size: 28px;
      color: #fff;
    }

    .export-heading {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
      color: #fff;
    }

    .export-subheading {
      font-size: 13px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .export-text {
      font-size: 14px;
      color: #f8f8f8;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .export-card-container {
        flex-direction: column;
        align-items: center;
      }

      .export-card {
        width: 100%;
      }
      
    }
    
    /*about section*/
    
        .about-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #42b1e1, #0f5e9b);
      padding: 20px 20px;
      color: #fff;
    }

    .about-image {
      /* flex: 1 1 400px; */
      max-width: 600px;
      padding: 20px;
      animation: fadeInLeft 1s ease-in-out;
    }

    .about-image img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .about-content {
      flex: 1 1 400px;
      max-width: 750px;
      padding: 20px;
      animation: fadeInRight 1s ease-in-out;
    }

    .about-content span {
      font-size: 20px;
      margin-bottom: 10px;
      color: #fff;
      text-transform: uppercase;
      /* text-shadow: 1px 3px 2px #ffffff; */
    }

    .about-content h4 {
      font-size: 15px;
      font-weight: normal;
      margin-bottom: -5px;
      color: #fff;
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #f9f9f9;
      text-align:justify;
    }

    .about-content .read-more-btn {
      background: #fff;
      color: #1a4a7e;
      padding: 6px 28px;
      font-size: 15px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: 0.3s ease;
      display: inline-block;
    }

    .about-content .read-more-btn:hover {
      background: #333;
      color: #fff;
    }

    /* Animations */
    @keyframes fadeInLeft {
      from {opacity: 0; transform: translateX(-50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @keyframes fadeInRight {
      from {opacity: 0; transform: translateX(50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-content h2 {
        font-size: 26px;
      }

      .about-content p {
        font-size: 15px;
      }

      .about-content, .about-image {
        padding: 10px;
      }
    }
    
    
    /*product*/
 .product-section {
      /*max-width: 1200px;*/
      margin: auto;
      padding: 0px 0px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
    }

    .product-card {
      background: #fff;
      border: 1px solid #1a4a7e;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .product-card:hover {
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
      transform: translateY(-6px);
    }

    .product-image {
      position: relative;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: auto;
      transition: transform 0.4s ease;
      display: block;
    }

    .product-image a {
      display: block;
    }

    .product-image:hover img {
      transform: scale(1.1);
    }

    .product-content {
      padding: 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-name {
      font-size: 16px;
      color: #333;
      height: 48px;
      line-height: 1.4;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2; /* Show 2 lines */
      -webkit-box-orient: vertical;
      margin-bottom: 12px;
    }

    .product-buttons {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .product-buttons a {
      padding: 3px 20px;
      font-size: 13px;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
    }

    .btn-whatsapp:hover {
      background: #1ebe59;
    }

    .btn-details {
      background: #0f5e9b;
      color: white;
    }

    .btn-details:hover {
      background: #000;
    }

    @media (max-width: 768px) {
      .product-buttons a {
        flex: 1 1 100%;
        justify-content: center;
      }
    }
    
    /*Production*/
    
    .arrow-section {
      padding: 20px 0px;
      text-align: center;
      /*max-width: 1200px;*/
      margin: auto;
    }

    .arrow-title {
      font-size: 20px;
      margin-bottom: 0px;
      color: #1a4a7e;
      text-transform: uppercase;
    }

    .arrow-subtitle {
      font-size: 16px;
      color: #777;
      margin-bottom: 15px;
    }

    .arrow-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      position: relative;
      gap: 20px;
    }

    .arrow-box {
      position: relative;
      background: linear-gradient(to right, #226992, #3fadde);
      color: #fff;
      padding: 30px 20px;
      border-radius: 12px;
      width: 300px;
      text-align: left;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .arrow-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

    .arrow-box::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -20px;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 20px solid #1a4a7e;
    }

    .arrow-box:last-child::after {
      display: none;
    }

    .arrow-icon {
      font-size: 30px;
      margin-bottom: 12px;
    }

    .arrow-heading {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .arrow-text {
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .arrow-container {
        flex-direction: column;
        gap: 40px;
      }

      .arrow-box {
        width: 100%;
        text-align: center;
      }

      .arrow-box::after {
        display: none;
      }
    }
    
    /*Testimonial*/
/* Section Layout */
.testimonial-section {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 24px;
  color: #1a4a7e;
  text-transform: uppercase;
}

.testimonial-section p.subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 16px;
}

/* Swiper Layout */
.swiper-slide {
  display: flex;
  height: auto;
}

.testimonial-box {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

/* Content */
.client-name {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 4px;
}

.client-position {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.star-rating {
  color: #f4b400;
  margin-bottom: 10px;
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding-top: 10px;
}

.testimonial-text::before {
  content: "“";
  font-size: 30px;
  color: #ccc;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

/* Custom Prev/Next Buttons */
.swiper-button-prev.custom-nav,
.swiper-button-next.custom-nav {
  background-color: #1a4a7e;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

.swiper-button-prev.custom-nav::after,
.swiper-button-next.custom-nav::after {
  font-size: 18px;
}

.swiper-button-prev.custom-nav:hover,
.swiper-button-next.custom-nav:hover {
  background-color: #3ca1d2;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-box {
    padding: 20px;
  }

  .swiper-button-prev.custom-nav,
  .swiper-button-next.custom-nav {
    width: 35px;
    height: 35px;
  }
}

  
  /*taget country*/
  
      .country-carousel .item {
        text-align: center;
        padding: 10px;
        transition: transform 0.3s ease;
    }
    .country-carousel .item img {
        width: 200px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.4s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .country-carousel .item:hover img {
        transform: scale(1.05);
    }
    .country-carousel .item h3 {
        /* margin-top: 10px; */
        font-size: 1rem;
        color: #333;
        font-weight: 600;
    }
    
     .blog-content {
        display: -webkit-box;
        /* Use flex-like behavior for text */
        -webkit-line-clamp: 3;
        /* Limit to 3 lines */
        -webkit-box-orient: vertical;
        /* Specify vertical orientation */
        overflow: hidden;
        /* Hide the overflow text */
        text-overflow: ellipsis;
        /* Show ellipsis for truncated text */
        max-height: 4.5em;
        /* Approximate height for 3 lines, adjust based on line-height */
        line-height: 1.5em;
        /* Line height */
    }
    
    .contact-info-box {
        font-size: 16px;
        color: #fff;
    }

@media(max-width:575px){
    .contact-info-box {
        font-size: 16px;
        color: #fff;
        justify-items: anchor-center;
    }
    
    .pq-footer-social{
        justify-items: anchor-center;
    }
}

.contact-info-box p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.contact-info-box i {
    font-size: 18px;
    color: #fff;
    margin-right: 12px;
    min-width: 22px;
    text-align: center;
}

.contact-info-box a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/*about us*/


.about-company-container {
  margin: 0 auto;
  background: #fff;
  padding: 11px 96px;
  border-radius: 12px;
}

.company-name {
  font-size: 24px;
  color: #326684;
  font-weight: 700;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #0d6efd;
}

.company-description {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 600px) {
  .company-name {
    font-size: 20px;
  }

  .company-description {
    font-size: 15px;
  }

  .about-company-container {
    padding: 20px;
  }
}

.business-journey-section {
  padding: 30px 20px;
  background: #f6f6f6;
  font-family: 'Segoe UI', sans-serif;
}

.journey-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  /* margin: auto; */
  gap: 30px;
}

.journey-image {
  flex: 1 1 45%;
  text-align: center;
}

.journey-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.journey-content {
  flex: 1 1 50%;
}

.journey-content h2 {
  font-size: 20px;
  color: #0f5e9b;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.journey-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 768px) {
  .journey-container {
    flex-direction: column;
  }

  .journey-content h2 {
    text-align: center;
  }

  .journey-content, .journey-image {
    flex: 1 1 100%;
  }

  .journey-image img {
    max-width: 100%;
  }
}

.mv-section {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  padding: 30px 20px;
}

.mv-part {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  gap: 30px;
}

.mv-part .mv-image {
  flex: 1 1 45%;
  text-align: center;
}

.mv-part .mv-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.mv-part .mv-image img:hover {
  transform: scale(1.03);
}

.mv-content {
  flex: 1 1 50%;
  background: #ffffff;
  padding: 9px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.mv-content h2 {
  color: #0f5e9b;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.mv-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

/* Animate on load */
.mv-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s forwards;
}

.mv-animate:nth-child(1) {
  animation-delay: 0.3s;
}

.mv-animate:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mv-part {
    flex-direction: column;
  }

  .mv-content, .mv-image {
    flex: 1 1 100%;
  }

  .mv-content {
    text-align: center;
  }

  .mv-content h2 {
    font-size: 20px;
  }

  .mv-content p {
    font-size: 15px;
  }
}

.manufacturing-section {
  background-image: url('../image/smartcrop.jpeg'); /* Replace with your actual image URL */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0px;
  position: relative;
  color: #fff;
}

.manufacturing-overlay {
  background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.manufacturing-content {
  max-width: 800px;
}

.manufacturing-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px #000;
}

.manufacturing-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px #000;
  text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .manufacturing-section {
    padding: 80px 15px;
    background-attachment: scroll; /* for mobile compatibility */
  }

  .manufacturing-content h2 {
    font-size: 24px;
  }

  .manufacturing-content p {
    font-size: 16px;
  }
}
    .why-choose {
      padding: 30px 20px;
      /* max-width: 1200px; */
      margin: auto;
    }

    .why-choose h2 {
      text-align: center;
      font-size: 22px;
      margin-bottom: 0px;
    }

    .why-choose p.subtitle {
      text-align: center;
      color: #666;
      margin-bottom: 10px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .feature-box {
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      color: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    }

    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .feature-icon {
      font-size: 24px;
      width: 60px;
      height: 60px;
      line-height: 60px;
      margin: 0 auto 20px;
      border-radius: 50%;
      color: #fff;
    }

    .feature-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 14px;
    }

    /* Box Background Colors */
    .box1 { background-color: #1976d2; }
    .box2 { background-color: #8e24aa; }
    .box3 { background-color: #388e3c; }
    .box4 { background-color: #f57c00; }
    .box5 { background-color: #d32f2f; }
    .box6 { background-color: #5e35b1; }
    .box7 { background-color: #0097a7; }
    .box8 { background-color: #689f38; }
    .box9 { background-color: #6d4c41; }

    /* Icon Backgrounds - Contrasting/Light */
    .box1 .feature-icon { background-color: #bbdefb; color: #0d47a1; }
    .box2 .feature-icon { background-color: #e1bee7; color: #4a148c; }
    .box3 .feature-icon { background-color: #c8e6c9; color: #1b5e20; }
    .box4 .feature-icon { background-color: #ffe0b2; color: #e65100; }
    .box5 .feature-icon { background-color: #ffcdd2; color: #b71c1c; }
    .box6 .feature-icon { background-color: #d1c4e9; color: #311b92; }
    .box7 .feature-icon { background-color: #b2ebf2; color: #006064; }
    .box8 .feature-icon { background-color: #dcedc8; color: #33691e; }
    .box9 .feature-icon { background-color: #d7ccc8; color: #3e2723; }

    @media (max-width: 768px) {
      .feature-box {
        padding: 25px 15px;
      }
    }
    
    /*Export process*/
    .roadmap-section {
  padding: 20px 20px;
  text-align: center;
  background-color: #fff;
}

.roadmap-section h2 {
  font-size: 28px;
  color: #1a4a7e;
}

.roadmap-section .subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
}

.roadmap-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  counter-reset: roadmap-counter;
}

.step-box {
  position: relative;
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
}

.step-content {
  position: relative;
  padding: 0;
  text-align: left;
}

.step-number {
  background: #1a4a7e;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.step-content h4 {
  font-size: 18px;
  color: #1a4a7e;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Arrows on desktop */
.step-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: #1a4a7e;
}

.step-box:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #1976d2;
  border-top: 2px solid #1976d2;
  background: transparent;
}

/* Mobile: Stack vertically, arrow becomes downward */
@media (max-width: 768px) {
  .roadmap-flow {
    flex-direction: column;
    align-items: center;
  }

  .step-box:not(:last-child)::after {
    top: auto;
    bottom: -20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
  }

  .step-box:not(:last-child)::before {
    top: auto;
    bottom: -20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
    border: none;
    border-left: 2px solid #1976d2;
    border-top: 2px solid #1976d2;
    width: 10px;
    height: 10px;
  }
}

/* Add background color variations */
.step-box:nth-child(6n+1) {
  background-color: #e3f2fd; /* Light Blue */
}

.step-box:nth-child(6n+2) {
  background-color: #fce4ec; /* Light Pink */
}

.step-box:nth-child(6n+3) {
  background-color: #e8f5e9; /* Light Green */
}

.step-box:nth-child(6n+4) {
  background-color: #fff3e0; /* Light Orange */
}

.step-box:nth-child(6n+5) {
  background-color: #ede7f6; /* Light Purple */
}

.step-box:nth-child(6n+6) {
  background-color: #f3e5f5; /* Light Violet */
}
.step-box {
  border-left: 5px solid #1976d2;
  background-clip: padding-box;
}

    
    /*certificate*/
    .certificate-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* responsive 4x4 layout */
    gap: 20px;
    padding: 30px;
}

.certificate-box {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.certificate-box img {
    width: 100%;
    height: 140px !important;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.certificate-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.certificate-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .certificate-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 480px) {
    .certificate-gallery {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
.certification-header {
    text-align: center;
    padding: 15px 20px 0px;
}

.certification-header h2 {
    font-size: 25px;
    color: #1a4a7e;
    margin-bottom: 12px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}


.certification-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.packaging-section {
    padding: 20px 20px;
    background-color: #f9f9f9;
}

.packaging-heading {
    text-align: center;
    margin-bottom: 40px;
}

.packaging-heading h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2c3e50;
}

.packaging-heading p {
    font-size: 1.1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.packaging-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid transparent;
}

.packaging-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.card-style-1 { background-color: #e8f8f5; border-left-color: #1abc9c; }
.card-style-2 { background-color: #fef9e7; border-left-color: #f1c40f; }
.card-style-3 { background-color: #fbeee6; border-left-color: #e67e22; }
.card-style-4 { background-color: #eaf2f8; border-left-color: #3498db; }

.packaging-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.packaging-card ul {
    padding-left: 18px;
    margin: 0;
}

.packaging-card ul li {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

/*product details*/

    .product-details-page { padding: 0px 0; }
    .product-main-image img { width: 100%; border-radius: 10px; max-height: 500px; }
    .product-thumbnails img { height: 80px; cursor: pointer; border: 2px solid #ddd; margin: 5px; border-radius: 5px; }
    .product-thumbnails img.active { border-color: #007bff; }
    .product-title {font-size: 20px;margin-bottom: 15px;line-height: 30px;color: #1a4a7e;}
    .product-description {font-size: 15px;margin-bottom: 0px;}
    .product-actions a {
      margin-right: 10px;
      padding: 3px 20px;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
      font-size: 15px;
    }
    
    @media(max-width:575px){
        .product-actions a {
          margin-right: 0px;
          padding: 3px 7px;
          border-radius: 5px;
          text-decoration: none;
          display: inline-block;
          font-size: 12px;
        }
    }
    
    .btn-whatsapp {background-color: #25d366;color: white;/* margin-right: 45px; */}
    .btn-back {background-color: #1a4a7e;color: white;/* margin-left: 20px; */}
    .related-products {padding: 15px;}
    .related-heading {font-size: 22px;text-align: center;margin-bottom: 5px;text-transform: uppercase;color: #1a4a7e;}
    .related-item {border: 1px solid #eee;padding: 0px;border-radius: 10px;transition: 0.3s;text-align: center;}
    .related-item:hover { box-shadow: 0 0 10px rgba(0,0,0,0.1); }
    .related-item img {width: 100%;height: 300px;object-fit: cover;border-top-left-radius: 10px;border-top-right-radius: 10px;}
    .related-title {
      font-size: 16px;
      margin-top: 10px;
      padding: 4px;
      color: #000;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .related-buttons{
        margin-bottom:10px;
    }
    .related-buttons a {
      display: inline-block;
      margin-top: 8px;
      padding: 3px 12px;
      font-size: 14px;
      border-radius: 5px;
      text-decoration: none;
    }
    .swiper-button-next, .swiper-button-prev { color: #007bff; }
    
      .about-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
  }

  .slider-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slider-images img {
    min-width: 100%;
    border: 4px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  .slider-buttons button {
    background-color: rgba(0,0,0,0.5);
    border: none;
    width: 30px;
    height: 30px;
    line-height: 10px;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  @media (max-width: 576px) {
    .slider-buttons button {
      padding: 6px;
    }
     .nav-tabs .nav-link {
        cursor: pointer;
        padding: 2px 16px;
        margin: 0 4px;
        font-size:12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        color: #333;
        background: #f8f8f8;
    }
  }
  
  .nav-tabs .nav-link {
    cursor: pointer;
    padding: 2px 16px;
    margin: 0 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    background: #f8f8f8;
}

.nav-tabs .nav-link.active {
    background-color: #1a4a7e;
    color: white;
    font-weight: bold;
}
.mission-image img{
   border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.our-products-section {
  padding: 20px 20px;
  background: #f8f9fa;
  text-align: center;
}

.our-products-title {
  font-size: 23px;
  color: #1a4a7e;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.our-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.our-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 400px;
  height: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.our-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.our-product-card:hover img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.our-product-card:hover .product-overlay {
  opacity: 1;
}

.product-title {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 768px) {
  .our-product-card {
    width: 100%;
    max-width: 100%;
    height: 250px;
  }
}
/*our team*/

.our-team-section {
  padding: 20px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.team-heading {
  font-size: 24px;
  color: #1a4a7e;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-card {
  width: 290px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.team-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 6px;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.team-role {
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    width: 100%;
    max-width: 350px;
  }
}
