    /* float button styling */
    .floating-btn {
      background-color: #e95420; 
      color: white;
      font-family: Arial, sans-serif;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 1000;
      position: fixed;
      opacity: 0; /* Start hidden */
      pointer-events: none; /* Initially not clickable */
    }
    
    .floating-btn.visible {
      opacity: 1;
      pointer-events: auto;
    }
    
    .floating-btn:hover {
      background-color: #d44a12;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* Desktop positioning with vertical text */
    @media screen and (min-width: 769px) {
      .floating-btn {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 20px 10px;
        border-radius: 0px 8px 8px 0px;
        writing-mode: vertical-lr;
        text-orientation: mixed;
        transform: rotate(180deg);
        display: flex;
        align-items: center;
      }
      
      .floating-btn svg {
        margin-bottom: 10px;
        width: 16px;
        height: 16px;
        transform: rotate(90deg);
      }
    }
    
    /* Mobile positioning */
    @media screen and (max-width: 768px) {
      .floating-btn {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 5px;
        display: flex;
        align-items: center;
      }
      
      .floating-btn svg {
        margin-right: 8px;
        width: 16px;
        height: 16px;
      }
    }
  
    
    /* Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .modal-overlay.active {
      visibility: visible;
      opacity: 1;
    }
    
    .modal-container {
      background-color: white;
      width: 90%;
      max-width: 500px;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      position: relative;
      padding: 20px;
    }
    
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .modal-title {
      font-size: 1.5rem;
      color: #333;
      font-weight: bold;
    }
    
    .modal-close {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #666;
    }
    
    .modal-close:hover {
      color: #000;
    }
    
    /* Form Styles */
    .form-group1 {
      margin-bottom: 10px;
    }

    #myForm {
      display: grid;
      gap: 12px;
    }

    #myForm br {
      display: none;
    }

    #myForm > label {
      font-size: 13px;
      font-weight: 700;
      color: #7f1d1d;
      letter-spacing: 0.2px;
      margin-top: 2px;
      margin-bottom: -4px;
    }

    .textinput,
    .selectinput {
      width: 100%;
      height: 46px;
      padding: 10px 14px;
      border: 1.5px solid #eadfdf;
      border-radius: 10px;
      font-size: 15px;
      color: #1f2937;
      background: #fffdfd;
      transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }

    .textinput::placeholder {
      color: #9ca3af;
      font-size: 14px;
    }

    .textinput:hover,
    .selectinput:hover {
      border-color: #e4b0b0;
    }

    .textinput:focus,
    .selectinput:focus {
      border-color: #c52f33;
      box-shadow: 0 0 0 4px rgba(197, 47, 51, 0.12);
      outline: none;
      transform: translateY(-1px);
      background: #fff;
    }

    .security-notice {
      background: linear-gradient(90deg, #f6df79 0%, #ecd06c 100%);
      text-align: center;
      padding: 9px 10px;
      border-radius: 8px;
      margin: 6px 0 2px;
      border: 1px solid #dfc058;
    }

    .security-notice span {
      font-size: 12px;
      color: #2a2a2a;
      font-weight: 600;
    }

    #leadform, #leadform1 {
      width: 100%;
      height: 48px;
      background: linear-gradient(135deg, #cf3131 0%, #9f2323 100%);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.3px;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(159, 35, 35, 0.28);
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    }

    #leadform:hover, #leadform1:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(159, 35, 35, 0.34);
      filter: brightness(1.03);
    }

    #leadform:active {
      transform: translateY(0);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .modal-container {
        width: 95%;
        padding: 15px;
      }
      
      .modal-title {
        font-size: 1.2rem;
      }
    }
    
    @media (max-width: 480px) {
       .textinput, .selectinput, #leadform, #leadform1 {
        padding: 10px;
        font-size: 14px;
      }
      
      .modal-container {
        padding: 10px;
      }
    }
