.sticky-container {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 9999;
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
        }

        /* Individual button styling */
        .sticky-button {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: #333;
            color: white;
            text-decoration: none;
            border-radius: 12px 0 0 12px;
            transition: all 0.3s ease;
            box-shadow: -2px 2px 10px rgba(0,0,0,0.2);
        }

        .sticky-button svg {
            width: 40px;
            height: 40px;
            fill: currentColor;
        }

        .whastapp {width: 50px!important;height: 50px!important;}

        /* Tooltip Styling */
        .tooltip {
            position: absolute;
            right: 60px; /* Position to the left of the button */
            background-color: #333;
            color: #fff;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 13px;
            white-space: nowrap;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        /* Tooltip Arrow */
        .tooltip::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #333;
        }

        /* Hover Effects */
        .sticky-button:hover {
            /* width: 55px; */
            /* padding-right: 5px; */
            padding-left: 2px;
            border-right:8px solid #012c2f;  /* #6d42a7; */
            transform: translateX(-3px);
        }

        .sticky-button:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }

        /* Brand Colors */
        /* .whatsapp { background-color: #25D366; }
        .telegram { background-color: #0088cc; }
        .chat-agent { background-color: #007bff; }
        .quote { background-color: #f39c12; } */

        .quote, .telegram, .whatsapp {background-color:#024b4f; /* #00b3cc; 6d42a7*/ } 