    /* 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;
    }
    
    .textinput {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
      margin-bottom: 5px;
      transition: border-color 0.3s;
    }
    .form-label{
        font-size: 12px !important;
        text-align: left !important;
        color: black !important;
    }
    .selectinput {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
      margin-bottom: 5px;
      transition: border-color 0.3s;
    }
    
    .textinput:focus, .selectinput:focus {
      border-color: #3498db;
      outline: none;
    }
    
    label p {
      font-weight: 500;
      color: black;
      margin-bottom: 5px;
    }
    
    .security-notice {
      background-color: #E4C34E;
      text-align: center;
      padding: 10px;
      border-radius: 5px;
      margin: 15px 0px;
    }
    
    .security-notice span {
      font-size: 14px;
      color: black;
      font-weight: 500;
    
    }
    
    #leadform1,  #leadform, #leadform2 {
      width: 100%;
      padding: 8px;
      background-color: #3498db;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    #leadform1:hover, #leadform:hover, #leadform2:hover {
      background-color: #2980b9;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .modal-container {
        width: 95%;
        padding: 15px;
      }
      
      .modal-title {
        font-size: 1.2rem;
      }
    }
    
    @media (max-width: 480px) {
       .textinput, .selectinput, #leadform1 {
        padding: 10px;
        font-size: 14px;
      }
      
      .modal-container {
        padding: 10px;
      }
    }

    /* Enhanced Form Aesthetics (Theme-Aligned) */
    .hero-form-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,251,252,0.98) 100%);
      border: 1px solid rgba(30, 90, 142, 0.2);
      position: relative;
      overflow: hidden;
    }

    .hero-form-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(120px 120px at 90% 0%, rgba(30, 90, 142, 0.18), transparent 60%);
      pointer-events: none;
    }

    .form-header {
      padding-bottom: 6px;
    }

    .form-header h3 {
      color: var(--primary);
      font-weight: 800;
      letter-spacing: 0.2px;
    }

    .form-header p {
      color: var(--text-light);
    }

    .form-placeholder {
      /* background: #ffffff; */
      /* border: 1px solid rgba(30, 90, 142, 0.12); */
    }

    .textinput,
    .selectinput {
      background: #ffffff;
      border: 1px solid rgba(30, 90, 142, 0.2);
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 15px;
      color: #1e293b;
      transition: border-color 0.2s ease, transform 0.2s ease, outline-color 0.2s ease;
    }

    .textinput::placeholder {
      color: rgba(100, 116, 139, 0.85);
    }

    .textinput:focus,
    .selectinput:focus {
      border-color: var(--accent);
      outline: 3px solid rgba(30, 90, 142, 0.18);
      outline-offset: 2px;
      transform: translateY(-1px);
    }

    .security-notice {
      background: linear-gradient(135deg, rgba(243, 156, 18, 0.18), rgba(243, 156, 18, 0.28));
      border: 1px solid rgba(243, 156, 18, 0.35);
      color: #4b3b00;
    }

    #leadform1, #leadform, #leadform2 {
      background: var(--gradient-accent);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 16px;
      letter-spacing: 0.2px;
    }

    #leadform1:hover, #leadform:hover, #leadform2:hover {
      background: linear-gradient(135deg, #2d7bb9 0%, #1e5a8e 100%);
      transform: translateY(-1px);
    }

    .modal-container {
      border: 1px solid rgba(30, 90, 142, 0.18);
    }

    form {
      box-shadow: none !important;
      border: none !important;
    }
 