/* Main Slider Styles */
.hero-slider {
    width: 100%;
    height: 80vh;
    /* Adjust height as needed */
    position: relative;
    overflow: hidden;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.slider-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.slider-content h4 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slider-content span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 20px;
}

.main-border-button a {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 25px;
    display: inline-block;
    transition: all 0.3s;
}

.main-border-button a:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

.right-content .about_button {
    margin-top: 35px;
}

.right-content .about_button a {
    color: #2a2a2a;
    border: 2px solid #2a2a2a;
    padding: 10px 25px;
    display: inline-block;
    transition: all 0.3s;
    font-size: 13px;
}

.nav .about_button a {
    color: #2a2a2a;
    border: 1px solid #2a2a2a;
    padding: 10px 25px;
    display: inline-block;
    transition: all 0.3s;
    font-size: 13px;
}

.form-control {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    border-color: #999;
    box-shadow: 0 0 5px #999;
    background-color: #fff;
    color: #000;
    outline: none;
}


/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    text-align: center;
}

.lightbox img {
    max-width: 50%;
    max-height: 50%;
    margin-top: 5%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}


.left-images img {
    height: 450px;
}


.thumbnail-img {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.thumbnail-img:hover {
    transform: scale(1.05);
}

.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.success {
    color: green;
    font-size: 14px;
    margin-top: 20px;
}


/* Hide arrows in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


.faq{
 /* background-color: #F5F5F5; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* margin: 50px 0; */
}

.wrapper-faq {
    width: 70%;
  }
  
  
  .wrapper-faq .container-faq{
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
    margin: 20px 0;
  }
  
  .question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
  }
  
  .question.active::after {
    transform: rotate(45deg);
  }
  
  .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
  }
  
  .question.active + .answercont {
  }
  
  @media screen and (max-width: 790px){
    html {
      font-size: 14px;
    }
    .wrapper {
    width: 80%;
  }
  .slider-item {
      height: 75%;
  }
  
      footer {
          text-align: left;
      }
  
  .about-us .left-image img{
      height: 310px;
  }
  
  #product .left-images img{
      height: 250px;
  }
  
  
  .hero-slider{
      height: 30vh;
  }
  
  .page-heading{
      height: 150px;
  }
  
  }
  
  
  /* Floating Icons Styles */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-button {
    width: 40px;
    height: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.floating-button:hover {
    transform: scale(1.1);
}

.call-button {
    background-color: #34b7f1; 
}

.top-button {
    background-color: #ec912b; 
    display: none;
}
