 /* Shake keyframes */
/* @keyframes shake {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(-2px); }
  20%  { transform: translateX(2px); }
  30%  { transform: translateX(-2px); }
  40%  { transform: translateX(2px); }
  50%  { transform: translateX(-1px); }
  60%  { transform: translateX(1px); }
  70%  { transform: translateX(-1px); }
  80%  { transform: translateX(1px); }
  90%  { transform: translateX(-1px); }
  100% { transform: translateX(0); }
} */

/* Class you add to the button */
/* .btn-shake {
  animation: shake 1.2s ease-in-out 5s infinite;
}  */



@keyframes shake {
  0%   { transform: translateX(0); }
  10%  { transform: translateX(-2px); }
  20%  { transform: translateX(2px); }
  30%  { transform: translateX(-2px); }
  40%  { transform: translateX(2px); }
  50%  { transform: translateX(-1px); }
  60%  { transform: translateX(1px); }
  70%  { transform: translateX(-1px); }
  80%  { transform: translateX(1px); }
  90%  { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

.btn-shake {
  animation: shake 1s ease-in-out;
  animation-play-state: paused;
}


/* 
@keyframes quote-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
} */

/* Wrapper controls visibility */
.quote-btn-wrapper {
  position: fixed;
  right: 30px;
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.quote-btn-wrapper.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Label box */
.quote-label {
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
  width: 150px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text animation */
.quote-label span {
  position: absolute;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.default-text {
  opacity: 1;
  transform: translateY(0);
}

.hover-text {
  opacity: 0;
  transform: translateY(20px);
}

.quote-btn-wrapper:hover .default-text {
  opacity: 0;
  transform: translateY(-20px);
}

.quote-btn-wrapper:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Button */
.quote-btn {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatUpDownPause 4s ease-in-out infinite;
}

@keyframes floatUpDownPause {
  0%, 100% { transform: translateY(0); }
  10% { transform: translateY(-20px); }
  20% { transform: translateY(0); }
}



/* .grecaptcha-badge {
  left: 15px !important;     
  right: auto !important;    
  bottom: 15px !important;   
} */
.grecaptcha-badge {
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.grecaptcha-badge:hover {
  opacity: 0.1;
}

/* price lis old */

/* .popup-box {
  position: fixed;
  bottom: 30px;
  left: -350px; 
  width: 250px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 10px 10px;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  opacity: 0;
  transition: all 0.6s ease;
  box-sizing: border-box;
}

.popup-box.show {
  left: 30px; 
  opacity: 1;
}

.popup-box h4 {
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  color: #555;
}

.popup-box input {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.send-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.no-thanks {
  margin-top: 10px;
}

.no-thanks a {
  font-size: 12px;
  color: #888;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #000;
} */


/* price list new */

/* Common popup box */
.popup-box, .success-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  padding: 20px;
  width: 280px;
  display: none;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
  z-index: 9999;
}

.popup-box.show, .success-popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.popup-box h4 {
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.form-control-plaintext {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.send-btn {
  background: #a3e635;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #777;
}

.close-btn:hover {
  color: #000;
}

/* Success popup specific */
.success-box {
  text-align: center;
  padding: 10px;
}

.success-box .icon {
  background: #a3e635;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 10px;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-box h3 {
  color: #6bbb00;
}



/***** Faq Section start *****/  

.faq-section {
  background-color: #f9f9f9;
}
.faq-section .accordion-button {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 2rem !important;
}
.faq-section .accordion-button:hover {
  background: #f1f1f1;
}
.faq-section .accordion-body {
  background: #fff;
  border-radius: 0 0 6px 6px;
}


/***** End Section *****/
/* .service-icon {
  width: 70px;          
  height: 70px;         
  object-fit: contain;  
  display: inline-block;
  filter: brightness(0) invert(1); 
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}
.service-text img.service-icon {
  margin-bottom: 1.5rem;
}
 */
.service-item .service-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-item .service-icon:hover {
  transform: scale(1.1);
}

.service-item .service-text {
  text-align: center;
}

.service-item .bg-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

/* Contact section adjustments */
.background-img {
  position: relative;
  background: url('../img/contact_img.jpeg') center center no-repeat;
  background-size: cover;
}

/* Overlay effect */
.background-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(214, 215, 216, 0.5); /* light overlay with 0.5 opacity */
  z-index: 1;
}

/* Ensure content stays above the overlay */
.background-img .container-xxl {
  position: relative;
  z-index: 2;
}


    .my-custom-shadow-element {
      box-shadow: 0 2rem 5rem rgba(5, 139, 212, 0.5) !important; /* Red shadow with 50% opacity */
    }

    .text-shadow {
  text-shadow: 2px 2px 4px rgba(5, 139, 212,0.5),
                        -1px -1px 3px rgba(17, 16, 16,0.3);
  
  
  /* text-shadow: 2px 2px 4px rgba(0,0,0,0.6), 
               -1px -1px 3px rgba(0,0,0,0.3); */
              /* color: #fff;
  -webkit-text-stroke: 1px #000;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6); */


}
