/* Override global box-sizing for elements outside the chatbot container */
body *:not(#zsalesiq, #zsalesiq,#foundry-products,#hardware-repair *) {
    box-sizing: content-box; /* or your preferred box-sizing */
}



.whatsapp-button {
  width: 20%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #ecdede;
  text-decoration: none;
  transition: background-color 0.3s ease;
}



.whatsapp-button img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}
/* Style for the button */
.send-message-btn {
  margin-left: 20px;
  width: 200px;
  background: #FFF5E1;
  color: rgb(0, 0, 0);
  border: none;
  margin-bottom:20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  font-size: 20px;
  border-radius: 25px;
  cursor: pointer;
  margin-right: 10px;
  animation: double-shadow-pulse 3.5s infinite;
}
@keyframes double-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.4), 0 0 0 0px rgba(19, 22, 26, 0.4);
  }
  50% {
    box-shadow: 0 0 7px 25px rgba(0, 0, 0, 0), 0 0 14px 30px rgba(0, 112, 244, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.4), 0 0 0 0px rgba(221, 215, 214, 0.4);
  }
}

.send-message-btn span{
  font-size: 14px;
  margin-top: 22px;
}
.send-message-btn img{
  width: 60px;
}



/* The modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Form styles */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input, .form-group textarea {
  width: 95%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-btn {
  background: #A40303;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 90%;
}
.footer-bottom{
  display: flex;
  
}
.footer-bottom a{
  margin-left: 65%;
 
}

.banner {

    button{
      margin-top: 2%;
      
    }
    }

@media(max-width:768px){
.split-container{
display:grid;
grid-template-columns:auto;
margin-left:10%;
padding:0;

}

.footer-bottom a{
  margin-left: 45%;
 
}
 .banner {

    height:280px;
    padding: 10px;
    button{
      margin-top: 10px;
      padding:5px 15px;
      a{
        font-size: 15px;
      }
    }
    }

.send-message-btn {
    width:120px;
}
.send-message-btn span {
    font-size:10px;
    margin-top:15px;
}
.send-message-btn img {
    width: 50px;
}
}

@media(max-width:568px){
.footer-bottom a{
  margin-left: 25%;
 
}
.send-message-btn{
    margin-left: 10px;
}
}
@media(max-width:428px){
.footer-bottom a{
  margin-left: 15%;
 
}

}
@media(max-width:368px){
.footer-bottom a{
  margin-left: 5%;
 
}

}


.products-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  gap: 20px; /* Adjust spacing between cards as needed */
  justify-content: space-between;
  padding: 20px;
}

@media(max-width:768px){
  .products-container{
    display: grid;
    grid-template-columns: auto ;
  }
}






