/* :root{
    --gradient-1: rgb(17,168,255);
    --gradient-2: rgb(152,17,255);
    --bg-color: #fff;
    --main-text: #161616;
}

*{
    margin:  0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 400;
    color: var(--main-text);
}

html, body{
    overflow: hidden;
    overscroll-behavior: none;
    background-color: var(--bg-color);
}

main{
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height:100vh;
    overflow-y: scroll;
}

p,
.footer__links a {
    font-size: 1rem;
}

h5{
    font-size: 1.2rem;
}

h4{
    font-size: 144rem;
}

h3{
    font-size: 1.728rem;
}

h2{
    font-size: 2.074rem;
}
h1{
    font-size: 2.488rem;
} */


:root {
    --gradient-1: rgb(14, 219, 141);
    --gradient-2: rgb(76, 238, 171);
    --bg-color: #fff;
    --main-text: #161616;
    --secondary-text: #555;
  }

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 400;
    color: var(--main-text);
  }

  html,
  body {
    /* overflow: hidden; */
    background-color: var(--bg-color);
  } 


.nav-container {
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    align-items: center;
    padding: 0 3rem;
    z-index: 999;
  }
  
  .nav-logo {
    width: 120px;
    padding: 1rem 0;
  }
  
  .nav-logo img {
    width: 100%;
    object-fit: cover;
  }
  
  .nav-links-container {
    padding: 16px 0;
  }
  
  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links > .nav-link-item {
    display: inline-block;
    margin: 0 24px;
    position: relative;
  }
  
  .nav-links > .nav-link-item > a {
    text-decoration: none;
    display: flex;
    padding: 16px 0;
    color: #777;
    font-weight: 500;
    transition: color 0.3s ease;
    align-items: center;
  }
  
  .nav-links > .nav-link-item:hover > a {
    color: #A7B688;
  }
  
  .nav-link-item > a > .fa-chevron-down {
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    pointer-events: none;
  }
  
  .nav-link-item:hover > a > .fa-chevron-down {
    transform: rotate(-180deg);
    color:#A7B688;
  }
  
  .nav-links > .nav-link-item > .dropdown-menu {
    display: flex;
    flex-direction: column;
    width: 175px;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transform: translateY(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 99;
  }
  
  .nav-links > .nav-link-item:hover > .dropdown-menu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  
  .nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a {
    text-decoration: none;
    display: block;
    color: #777;
    font-weight: 500;
    padding: 16px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  
  .nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a:hover {
    color: #fff;
    background-color: #A7B688;
    width: 100%;
    cursor: pointer;
  }
  
  .nav-container .open-menu {
    display: block;
    font-size: 24px;
    color: #A7B688;
    cursor: pointer;
  }
  
  .nav-container .close-menu {
    display: block;
    font-size: 24px;
    color: #FFF;
    cursor: pointer;
  }

    
  /* ✅ Responsive: hide mobile icons on desktop */
  @media (min-width: 993px) {
    .open-menu,
    .close-menu {
      display: none !important;
    }
  }
  

@media (max-width: 992px) {
    body {
      max-width: 992px;
      /* overflow: hidden; */
    }
  
    .nav-container {
      padding: 0 3rem;
    }
  
    .nav-logo {
      padding: 1.5rem 0;
    }
  
    .nav-container .nav-links-container {
      position: fixed;
      right: -400px;
      visibility: hidden;
      width: 100%;
      height: 100%;
      top: 0;
      overflow-y: auto;
      background-color: #A7B688;
      z-index: 999;
      padding: 15px;
      transition: all 0.3s ease-in;
    }

    .nav_d{
      color:#fff;
    }

    .nav-link-item:hover > a > .fa-chevron-down {
      color:#fff;
    }
  
    .nav-container .nav-links-container.open {
      visibility: visible;
      right: 0;
      transition: all 0.3s ease-out;
    }
  
    .nav-links-container > .nav-links > .nav-link-item {
      display: block;
      margin: 0;
    }
  
    .nav-links-container > .nav-links > .nav-link-item > a {
      color: #FFF;
      padding: 24px 16px;
      border-bottom: 1px solid #ffffff20;
      display: flex;
      justify-content: space-between;
    }
  
    .nav-link-item:hover > a > .fa-chevron-down {
      transform: rotate(0);
    }
  
    .dropdown-menu-branch.active > a .fa-chevron-down {
      transform: rotate(-180deg);
    }
  
    .nav-links > .nav-link-item > .dropdown-menu {
      width: 100%;
      position: relative;
      opacity: 1;
      visibility: visible;
      border-radius: 0;
      border-bottom: 1px solid #ffffff20;
      background-color: transparent;
      transform: translateY(0px);
      box-shadow: none;
      padding: 0px;
      left: auto;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
  
    .nav-links > .nav-link-item:hover > .dropdown-menu {
      transform: translateY(0px);
    }
  
    .nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a {
      color: #fff;
      border: none;
      padding: 12px 16px;
      display: block;
    }
  
    .nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a:hover {
      color: #b6b6b6;
    }
  
    .nav-container .open-menu {
      cursor: pointer;
      display: block;
    }
  
    .nav-container .close-menu {
      display: block;
      padding: 16px;
      cursor: pointer;
      width: fit-content;
      color: #FFF;
    }

    
  }
  

  /* Nav End */


/* modal */

 .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00c9a7;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #00ad92;
  transform: translateY(-2px);
}

/* Modal styles */

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: white;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 25px;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
}

.modal-close {
  font-size: 22px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
}

.modal-close:hover {
  color: #333;
}

/* Form styles */
.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #00c9a7;
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.file-upload {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-upload .file-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload .file-label {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background-color: #f8f9fa;
  border: 1px dashed #ddd;
  border-radius: 4px;
  color: #6c757d;
  cursor: pointer;
}

.file-upload .file-label i {
  margin-right: 8px;
}

.file-upload .file-name {
  margin-top: 5px;
  font-size: 14px;
  color: #6c757d;
}

.form-submit {
  background-color: #00c9a7;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.form-submit:hover {
  background-color: #00ad92;
}

.alert {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: none;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}



.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: #85ee88;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: auto;
  max-width: 90vw;
  min-width: 200px;
  text-align: center;
  word-wrap: break-word;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.toast-icon {
  margin-right: 12px;
  font-size: 22px;
}

.toast-message {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

/* Responsive enhancements */
@media (max-width: 576px) {
  .toast {
    padding: 14px 20px;
    font-size: 14px;
  }

  .toast-icon {
    font-size: 18px;
  }

  .toast-message {
    font-size: 14px;
  }
}


/* modal  End*/




/* Hero section */
/* ========= HERO SECTION COMPLETE RESPONSIVE CSS ========= */




#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 30px; 
  background: linear-gradient(to bottom, #ffffff 20%, #f8f9fa 100%);
  
}

/* Background Canvas and Blobs */
#squareCanvas,
.left__gradient,
.right__gradient,
.blob__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.blob__container .class {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  opacity: 0.3;
}

.blob__container .green {
  background-color: #A7B688;
  top: 20%;
  left: 10%;
}

.blob__container .white {
  background-color: #ffffff;
  top: 40%;
  left: 60%;
}



/* Content Container */
#hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero section z-index fix */
#hero {
  position: relative;
  z-index: 2;
  
}

.left__gradient,
.right__gradient,
#squareCanvas {
  z-index: 0 !important;
}

.cta__area {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}



.primary__cta,
.secondary__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.primary__cta {
  background-color: #00cc99;
  color: white;
}

.secondary__cta {
  background-color: white;
  border: 2px solid #00cc99;
  color: #00cc99;
}



/* cli  */

.certi-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  padding: 0;
}

 .cli-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #A7B688;  
  padding: 1rem 2rem;
  border-radius: 8px;
  color: #fff;
  max-width: 300px;
  margin: 20px auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.cli-circle {
  background-color: white;
  color: #A7B688;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}


.cli-circle span, sup {
  color: #A7B688;
}

.cli-text p strong {
  margin: 0;
  font-size: 1rem;
  text-align: left;
  line-height: 1.2;
  color: #fff;
}

.cli-text .registered {
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 0.25rem;
  color: #fff;
}



.cli-link {
  text-decoration: none;
  display: inline-block;
}

.cli-link:hover .cli-badge {
  box-shadow: 0 0 10px rgba(106, 216, 72, 0.377);
  transform: scale(1.02);
  transition: all 0.3s ease;
}


@media (max-width: 480px) {
  
  .certi-wrapper{
    display: flex;
    justify-content: center;
  }
  .cli-badge {
    flex-direction: column;
    text-align: center;
    
    
  }

  .cli-text p {
    text-align: center;
  }
} 

 /* cli End  */


/* Main Section Container */
.container_head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  
}

/* Left Side: Text and Badge */
.intro__area {
  flex: 1 1 60%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding-top: 40px;
}

.intro_p {
  color: #333;
  font-weight: 600; 
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero__header {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111;
  line-height: 1.2;
  text-align: center;
}



/* CTA Buttons */
.cta__area {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  background-color: #00c897;
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00aa7f;
}

.secondary__cta {
  border: 2px solid #00c897;
  color: #00c897;
  padding: 0.9rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.secondary__cta:hover {
  background-color: #f0fffa;
}




/* Right Side: Image */
.hero__image {
  flex: 1 1 40%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem;
  z-index: 2;
}

.hero__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .container_head {
    padding: 3rem 1.5rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container_head {
    flex-direction: column;
    text-align: center;
  }

  .cta__area {
    justify-content: center;
  }

  .hero__header {
    font-size: 2.2rem;
  }

  .cli-badge {
    margin: 0 auto;
  }

  .hero__image {
    margin-top: 1rem;
   
    
  }

  .intro__area{
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .container_head {
    padding: 2rem 1rem;
  }

  #hero{
    width:100%;
  }

  .hero__header {
    font-size: 1.8rem;
  }

  .intro_p,
  .intro__area p {
    font-size: 0.95rem;
  }

  .btn,
  .secondary__cta {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .cta__area {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cli-badge {
    flex-direction: column;
    text-align: center;
  }

  .cli-text {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero__image {
    margin-top: 1rem;
  }
 
}


/* Success Stories */

.bravo_container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}
.heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 36px;
  color: #333;
  font-weight: 700;

}


.cards_quote {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.card_quote {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(24, 54, 80, 0.08);
  padding: 36px 28px 32px 28px;
  flex: 1 1 320px;
  max-width: 360px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.card_quote .card_img_quote {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #f6faf9;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(24, 54, 80, 0.05);
}


.company {
  font-size: 1.2rem;
  font-weight: 600;
  color: #183650;
  margin-bottom: 4px;
  text-align: center;
}


.name {
  font-size: 1rem;
  color: #3a4a5e;
  margin-bottom: 18px;
  text-align: center;
}
.quote {
  color: #183650;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  text-align: center;
  padding: 1rem; /* Add padding for spacing */
  margin: 0 auto; /* Center the quote container */
  max-width: 90%;
}
.quote::before {
  content: "“";
  color: #A7B688;
  font-size: 2.5rem;
  position: absolute;
  left: 10px;
  top: -10px;
  font-family: serif;
}
.quote::after {
  content: "”";
  color: #A7B688;
  font-size: 2.5rem;
  position: absolute;
  right: 10px;
  bottom: -10px;
  font-family: serif;
}


.card_quote:hover {
  background: #A7B688; /* or any dark color for contrast */
  transition: background 0.3s;
}


.card_quote:hover .company,
.card_quote:hover .name,
.card_quote:hover .quote,
.card_quote:hover .quote::before,
.card_quote:hover .quote::after {
  color: #fff;
}


@media (max-width: 900px) {
  .cards_quote {
    flex-direction: column;
    align-items: center;
  }
  .card_quote {
    max-width: 95vw;
    min-width: unset;
  }
  
  .quote {
    font-size: 1rem; /* Slightly reduce font size */
    padding: 0.8rem;
    max-width: 95%; /* Ensure it fits within smaller screens */
  }

  .quote::before,
  .quote::after {
    font-size: 2rem; /* Reduce the size of the quotation marks */
    left: 5px;
    right: 5px;
  }

}
@media (max-width: 600px) {
  .heading {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .card_quote {
    padding: 24px 12px 20px 12px;
  }
 

  .quote {
    font-size: 1rem; /* Further reduce font size for mobile */
    padding: 1.3rem;
    max-width: 95%;
  }

  .quote::before,
  .quote::after {
    font-size: 1.8rem; /* Adjust quotation marks for mobile */
    left: 3px;
    right: 3px;
  }
}

/* Success Stories End */


/* order parts start */


.order_container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.order_h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.step {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.step .order_img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}



.step h3 {
  color: #A7B688;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #A7B688;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0077cc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .step {
    flex: 1 1 100%;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }
}

/* order parts End */

/* manufacturing applications start */

.industry_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.item {
  width: 30%;
  min-width: 200px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.item img {
  max-width: 50px;
  height: auto;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}

.industry_item {
  fill: #A7B688;
}

/* Responsive design */
@media (max-width: 768px) {
  .item {
      width: 50%;
  }
}

@media (max-width: 480px) {
  .item {
      width: 100%;
  }
}

/* manufacturing applications End */

/* contact */

#contact {
  background: #f9f9f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;

}
.contact_title{
  display:flex;
  justify-content: center;
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-top: 0;
  

}
.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  width: 100%;
  
}

.contact-form,
.contact-info {
  flex: 1 1 450px;
}

.contact-form h2,
.contact-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  background: #00c38a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #009e6c;
}

.contact-info p {
  margin-bottom: 12px;
  color: #444;
  font-size: 16px;
}

.contact-info i {
  margin-right: 10px;
  color: #00c38a;
}

.map iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-top: 10px;
}

/* Toast styling */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00c38a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
  z-index: 999;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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


/* contact End  */

/* manufaturing  */
.manufacturing {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.center-container {
  max-width: 1000px;
  width: 100%;
  padding: 20px;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;

}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #eee;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tab.active {
  background: #A7B688;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  background: #fff;
  margin-top: 20px;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

.tab-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

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

.feature {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  text-align: center;
  position: relative;
}

.feature:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.feature .icon {
  font-size: 24px;
  margin: 10px 0;
  color: #A7B688;
  display: block;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.upload-btn {
  display: block;
  margin: 30px auto 0;
  padding: 12px 24px;
  background-color: #A7B688;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.upload-btn:hover {
  background-color: #A7B688;
}

@media (max-width: 600px) {
  .tab {
    flex: 1 1 100%;
    text-align: center;
  }

  .tab-content {
    padding: 20px 15px;
  }
}

/* manufaturing  End*/

/*  Trusted */

.trusted {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trusted-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  color:#333;
}

.trusted-title::before,
.trusted-title::after {
  content: "";
  height: 2px;
  width: 40px;
  background: gold;
  display: inline-block;
  margin: 0 1rem;
  vertical-align: middle;
}

.trusted-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  font-size: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  background: #fff7ed;
  color: #ff9900;
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 0.5rem;
  display: inline-block;
}


.trusted-logos-scroll {
  overflow: hidden;
  background-color: rgb(14, 219, 141, 0.5);
  width: 100%;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 3rem;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

.logos-track img {
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.logos-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.trusted-logos-scroll:hover .logos-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .logos-track {
    gap: 2rem;
  }

  .logos-track img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .logos-track {
    gap: 1.5rem;
  }

  .logos-track img {
    height: 24px;
  }
}


/*  Trusted End */






