
          *{
            box-sizing: border-box;
          }
       
        html{
          scroll-behavior: smooth;
        }
        #scrollTopBtn {
            position: fixed;
            bottom: 60px;
            right: 30px;
            background-color: #44b75e;
            color: white;
            border: none;
            cursor: pointer;
            display: none; /* Default hidden */
            transition: opacity 0.3s, visibility 0.3s;
        }

        #scrollTopBtn:hover {
            background-color:rgb(12, 109, 12);
        }
   


       
    /* Custom Styling */
    .input-group {
      display: flex;
      align-items: center;
      /* border: 1px solid #ccc; */
      padding: 1px 0px;
     
      /* width: 200px; */
      /* border-radius: 5px; */
      /* background-color: #aab39b; */
    }

    .input-group img {
      width: 20px;
      height: 15px;
      margin-right: 5px;
    }


    #phone-flag {
  width: 20px; /* Adjust the size of the flag */
  height: 15px; /* Adjust the size of the flag */
}



    .phone-input {
      /* border: none; */
      /* padding: 2px; */
      /* padding-left: 30px;  */
    
      padding: 12px 30px;
      outline: none;
      width: 100%;
      font-size: 16px;
      /* background-color: #949db5 */
    }

    #custom-dropdown {
      /* width: 250px; */
      position: relative;
      font-family: Arial, sans-serif;
      
    }

    #selected-country {
      padding: 12px;
      /* border: 1px solid #ccc; */
      display: flex;
      align-items: center;
      cursor: pointer;
      /* background-color: #949db5 */
      /* border-radius: 5px; */
    }

    #selected-country img {
      width: 20px;
      height: 15px;
      margin-right: 10px;
    }

    #dropdown-list {
      display: none;
      position: absolute;
      width: 100%;
      max-height: 200px;
      overflow-y: auto;
      border: 1px solid #ccc;
      background-color: white;
      z-index: 1000;
    }

    .dropdown-item {
      padding: 10px;
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .dropdown-item img {
      width: 20px;
      height: 15px;
      margin-right: 10px;
    }

    .dropdown-item:hover {
      background-color: #f0f0f0;
    }

    #search-box {
      width: 97%;
      padding: 5px;
      margin: 4px 4px;
      border: 1px solid #ccc;
      border-radius: 3px;
      outline: none;
    }
 