 /*fixed coversation box css start*/
     .dubblePulse-wrapper {
            position: fixed;
            width: 80px;
            height: 80px;
            bottom: 3%;
            right: 10px;
        }

        .dubblePulse {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 45px;
            height: 45px;
            background-color: #ed1d26;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulseEffect 2s infinite ease-out;
        }

        .dubblePulse:nth-child(2) {
            animation-delay: 0.4s;
        }

       .contact-button {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 70px;
        height: 70px;
        background-color: #ed1d26;
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: white;
        font-weight: bold;
        cursor: pointer;
        font-size: 10px;
    }

    .contact-button i {
        font-size: 24px;
    }

    .flex_center_column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease-in-out;
        width: 0;
        height: 0;
        opacity: 0;
        transform: scale(0);
    }

    .active_contact_widget {
        width: 57px !important;
        height: 57px !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .active_contact_widget_slide {
        width: 50px !important;
        height: 50px !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }



    .contact_widget_scale_inactive {
        transform: scale(0);
    }

    .contact_widget_scale_active {
        transform: scale(1);
    }

    .contact_widget_hide {
        display: none !important;
    }

    .slide_icons {
        width: 0px;
        height: 0px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease-in-out;
        transform: scale(0);
        opacity: 0;
        overflow: hidden;
        position: relative;


    }

    .slide_icons i {
        position: absolute;
        color: red;
        opacity: 0;
        font-size: 30px;
        transform: translateX(25px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide_icons i.active {
        opacity: 1;
        transform: translateX(0);
    }

    .slide_icons i.exit {
        opacity: 0;
        transform: translateX(-25px);
    }

        @keyframes pulseEffect {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.7;
            }

            70% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }

            100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }
        }
        
    .contact-box {
     background: white;
    border-radius: 12px;
    padding: 16px;
    width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 17%;
    right: 2%;
    transform: translateY(-100px);
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.2s;
    overFlow: hidden;
    }
    
    .inner_contact_box{
     opacity: 0;
     visibility: hidden;
     transform: translateY(100px);
     transition: all ease-in-out 0.5s;
    }

    .contact-box::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
    }

    .contact-option {
     display: flex;
     align-items: center;
     margin-bottom: 5px;
     position: relative;
     padding: 5px;
     border-radius: 10px;
    }
    
    .contact-option:hover {
       background:#f0f0f0;
       transition: all 0.2s ease-in-out;
    }

    .contact-option:last-child {
      margin-bottom: 0;
    }

    .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      margin-right: 12px;
      position: relative;
    }

    .icon-circle.email { background-color: #ff6e40; }
    .icon-circle.call { background-color: #4db6ac; }
    .icon-circle.chat { background-color: #00e676; }

    .status-dot {
      position: absolute;
      bottom: 2px;
      right: 2px;
      width: 10px;
      height: 10px;
      background-color: limegreen;
      border-radius: 50%;
      box-shadow: 0 0 0 rgba(0, 255, 0, 0.7);
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
      0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5);
      }
      70% {
        box-shadow: 0 0 0 6px rgba(0, 255, 0, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
      } 
    }

    .contact-text {
      font-size: 16px;
      color: #333;
    }
    
    .open_contact_box{
          transform: translateY(0px);
        opacity: 1;
        visibility: visible;
      
    }
    
    .cancel_widget{
        position: fixed;
        right: 2px;
        top: 3px;
        z-index: 1;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
    }
    .cancel_widget:hover{
       transform: scale(1.2);
    }
    .cancel_widget i{
       font-size: 30px;
    }
    
    #contact-box,
    #dubblePulse-wrapper {
      visibility: hidden; /* hide first */
    }
    
    .mobile-ready #contact-box,
    .mobile-ready #dubblePulse-wrapper {
      visibility: visible;
    }
    
    
    /* Responsive adjustments */
        @media (max-width: 767px) {
            .dubblePulse-wrapper{
               position: absolute;
                width: 100%;
                height: 100%;
                bottom: 0;
                top: 0;
                left: 0;
                right: 0;
            }
            
            .contact-box {
                bottom: 150%;
                right: auto;
            }
            
            .contact-button,.dubblePulse{
                background: var(--primary-blue-colour);
            }
            .slide_icons i{
                color: var(--primary-blue-colour);
            }
            
        }
    /*fixed coversation box css end*/