    /* 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;
      color:#717171 ;
    }
    
    .selectinput {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
      margin-bottom: 5px;
      transition: border-color 0.3s;
      color: #717171;
    }
    
    .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;
    }




         body {
         font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
         }
         h1 {
         font-size: 16px;
         margin-top: 0;
         }
         p {
         color: rgb(107, 114, 128);
         font-size: 15px;
         margin-bottom: 10px;
         margin-top: 5px;
         }
         .card {
         max-width: 620px;
         margin: 0 auto;
         padding: 16px;
         border: 1px solid lightgray;
         border-radius: 16px;
         }
         .card p:last-child {
         margin-bottom: 0;
         }
         .gradient-bg {
         background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
         }
         .card-hover:hover {
         transform: translateY(-5px);
         box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
         }
         .specialization-card {
         transition: all 0.3s ease;
         }
         .input-color{
         color: black;
         }
         .specialization-card:hover {
         background-color: #2563eb;
         color: white;
         }
         .timeline-item:not(:last-child):after {
         content: '';
         position: absolute;
         left: 50%;
         bottom: -30px;
         transform: translateX(-50%);
         width: 2px;
         height: 30px;
         background-color: #2563eb;
         }
         .accordion-content {
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease-out;
         }
         .btn-loader {
         display: inline-block;
         width: 16px;
         height: 16px;
         border: 2px solid rgba(255,255,255,0.3);
         border-radius: 50%;
         border-top-color: #fff;
         animation: spin 1s ease-in-out infinite;
         margin-right: 8px;
         vertical-align: middle;
         }
         @keyframes spin {
         to { transform: rotate(360deg); }
         }
         .error-message {
         color: red;
         /* padding: 2rem; */
         }
         .success-message {
         text-align: center;
         padding: 2rem;
         color: black;
         }
         .success-message .icon {
         font-size: 3rem;
         color: #4CAF50;
         margin-bottom: 1rem;
         }
         .error-block {
         background: #fee2e2;
         color: #b91c1c;
         border-radius: 8px;
         padding: 1rem;
         margin-bottom: 1rem;
         text-align: center;
         font-weight: bold;
         }
         .form-container {
         max-width: 480px;
         min-width: 320px;
         margin-left: auto;
         margin-right: auto;
         }

    
    /* 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;
      }
    }
 