/* Floating WhatsApp Icon */
        #whatsapp-btn {
            position: fixed;
            bottom: 150px;
            right: 25px;
            width: 60px;
            height: 60px;
            /* background: #25d366; */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 1000;
        }

        #whatsapp-btn img {
            width: 60px;
        }

        /* Chat Box */
        #chat-box {
            position: fixed;
            bottom: 220px;
            right: 30px;
            width: 280px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            display: none;
            z-index: 1000;
        }

        #chat-header {
            background: #25d366;
            color: #fff;
            padding: 12px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #chat-header .close-btnn {
            cursor: pointer;
            font-size: 25px;
        }

        #chat-content {
            padding: 15px;
            background: #f8fdf8;
            min-height: 80px;
        }

        .chat-bubble {
            background: #fff;
            padding: 10px 14px;
            border-radius: 12px;
            display: inline-block;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        #open-chat-btn {
            background: #25d366;
            margin: 15px;
            padding: 10px;
            width: calc(100% - 30px);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            list-style: none;
        }

        #open-chat-btn img {
            width: 18px;
            margin-left: 8px;
        }


        /* social media style start */
        .social-bar {
            position: fixed;
            top: 35%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 18px;
            z-index: 9999;
        }

        /* Transparent circle background */
        .social-bar .icon {
            width: 40px;
            height: 40px;
            background: #DAB939;
            /* fully transparent */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            text-decoration: none;
            color: white;
            font-size: 18px;
            /* border: 2px solid rgba(88, 71, 71, 0.35); */
            /* thin border like screenshot */
        }

        /* Hover effect */
        .social-bar .icon:hover {
            background: #FDF374;
            transform: scale(1.1);
            color: #6b5b15ff;
        }