:root {
      --box-width: 75px;
      --box-height: 40px;
    }

    body {
      font-family: Arial, sans-serif;
    }
    .suport-call-chat-email-section{
      position: fixed;
      right: 10px;
      bottom: 00px;
    }

    /* 24x7 Floating Tab */
    .enquiry-tab {
      position: fixed;
      right: 10px;
      bottom: 05px;
      width: var(--box-width);
      height: var(--box-height);
      background: #000;
      color: #fff;
      font-weight: bold;
      font-size: 13px;
      border: none;
      cursor: pointer;
      z-index: 1002;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.4s ease;
    }

    /* Enquiry Box */
    .enquiry-box {
      position: fixed;
      right: 10px;
      bottom: 05px;
      width: var(--box-width);
      background: #fff;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      transform: scaleY(0);
      transform-origin: bottom center;
      transition: transform 0.35s ease;
      z-index: 1001;
    }

    .enquiry-box.open {
      transform: scaleY(1);
    }

    /* Header (Close Button) */
    .enquiry-box .header {
      background: #000;
      color: #fff;
      height: var(--box-height);
    }

    /* Common contact button style */
    .contact-method {
      height: var(--box-height);
    }

    .contact-method i {
      font-size: 18px;
    }

    .phone { background: #c44e19; color: #fff; }
    .whatsapp { background: #ffffff; color: #070479; }
    .envelope { background: #02542d; color: #fff; }