
        /* 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: 10px;
            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-btn {
            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: 18px;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            list-style: none;
        }

        /* =============enquiry form style============== */
        
        .side-tab-btn {
            position: fixed;
            top: 40%;
            right: 0;
            transform: translateY(-50%); /* Centers it vertically */
            z-index: 1050; /* Ensures it stays on top */
            border-top-left-radius: 0; /* Flat edge against the wall */
            border-bottom-left-radius: 0;
            font-size: 15px;
            padding: 15px 10px;
            font-weight: bold;
            letter-spacing: 1px;
            box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: translateY(-50%) rotate(180deg);
            font-family: Roboto,ExtraLight;
        }

        .modal-header {
            background-color: #78B159; /* Green for 'Farms' */
            color: white;
        }
        
        .btn-submit {
            background-color: #78B159;
            color: white;
            width: 100%;
            font-size: 15px;
            padding-top: 7px;
            padding-bottom: 7px;
        }
        
        .btn-submit:hover {
            background-color: #78B159;
            color: white;
        }
        /* =============enquiry form style end============== */