.whatsapp-float{
    position: fixed;
    left: 30px;
    bottom: 30px;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37,211,102,.45);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: all .3s ease;
}

.whatsapp-icon{
    flex-shrink: 0;
}

.whatsapp-float:hover{
    color:#fff;
    transform: translateY(-3px) scale(1.05);
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.6);}
    70%{box-shadow:0 0 0 18px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

@media (max-width:768px){
    .whatsapp-float{
        left:15px;
        bottom:70px;
        padding:5px 10px;
        font-size:14px;
        display:none;
    }

    .whatsapp-icon{
        width:20px;
        height:20px;
    }
    .main-footer .sub-footer{
        padding: 5px 0 45px 0;
        margin-top: 0;
    }
    .progress-wrap{
        bottom:70px;
    }
    #totop{
        bottom:60px;
    }
}

  /* line 188, ../../sass/base/footer.scss */
.sticky-footer-section {
  display: none;
}
@media (max-width: 767px) {
  /* line 188, ../../sass/base/footer.scss */
  .sticky-footer-section {
    display: block;
    height: 50px;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
  }
  /* line 198, ../../sass/base/footer.scss */
  .sticky-footer-section .arrow-btn-sticky {
    width: 10%;
    border-right: 1px solid #fff;
    height: 50px;
    padding-top: 15px;
    background: #cda274;
    text-align: center;
    cursor: pointer;
  }
  /* line 207, ../../sass/base/footer.scss */
  .sticky-footer-section .sticky-footer-new {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    background: #cda274;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
  }
  /* line 217, ../../sass/base/footer.scss */
  .sticky-footer-section .sticky-footer-new .border-mobile-sticky {
    height: 50px;
    border: 1px solid #fff;
    width: 1px;
  }
  /* line 222, ../../sass/base/footer.scss */
  .sticky-footer-section .sticky-footer-new a {
    margin-bottom: 0;
    color: #ffffff !important;
    font-style: normal;
    font-weight: 700;
    font-size: 15px !important;
  }
  /* line 229, ../../sass/base/footer.scss */
  .sticky-footer-section .sticky-footer-new a p{
    color: #fff;
  }
  /* line 232, ../../sass/base/footer.scss */
  .sticky-footer-section .sticky-footer-new p img {
    vertical-align: middle;
  }
  /* line 236, ../../sass/base/footer.scss */
  .sticky-footer-section .sticky-footer-new .call-now-sticky,
  .sticky-footer-section .sticky-footer-new .let-chat-sticky,
  .sticky-footer-section .sticky-footer-new .share-btn-sticky {
    height: 50px;
    padding: 15px 0px;
    width: 33.3%;
    display: block;
    text-align: center;
    cursor: pointer;
  }
  
  /* Toggle hidden state */
.sticky-footer-section.footer-collapsed .sticky-footer-new {
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

/* Rotate arrow when hidden */
.sticky-footer-section.footer-collapsed .arrow-btn-sticky img {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}
  
}