.ContactFormPage form .input_fild{
    border-bottom: 2px solid #B1B1B1;
    outline: none;
  }
  
  .checkbox-container {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    /* padding: 10px 20px; */
    border: 2px solid #B1B1B1;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
    overflow: hidden;
  }
  
  /* Hide Default Checkbox */
  .checkbox-container input {
    display: none;
  }
  
  .checkbox-text{
    padding: 8px 20px 5px 20px;
    color: #000;
    font-size: 18px;
    /* background-color: #f1f1f1; */
    /* border-radius: 5px; */
    transition: background 0.3s ease;
  }
  /* Custom Checkbox Style */
  
  /* Change Background on Click */
  input:checked {
    background-color: #E77025;
    border-color: #E77025;
  }
  
  input:checked::after {
    display: block;
  }
  
  /* Change Background of Entire Box on Click */
  input:checked ~ .checkbox-text {
    background-color: #E77025;
    color: white;
    /* padding: 5px 10px; */
    /* border-radius: 5px; */
  }
  
  /* .submit_btn{
    width: 100%;
    padding: 8px 20px 5px 20px;
    background-color: #FFF;
    color: #000;
    font-size: 22px;
    border: 1px solid #B1B1B1;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  } */ 
  
  .ContactFormPage .Custome_form_animation{
    position: relative;
    width: 100%;
    height: 185px;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
  }
  
  /* .ContactFormPage .Custome_form_animation .label_text{
    color: #3A3A3A;
    font-size: 48px;
    font-weight: 700;
  }
  .ContactFormPage .Custome_form_animation .input_fild{
    color: #3A3A3A;
    font-size: 30px;
    font-weight: 700;
  } */
  
  .ContactFormPage .Custome_form_animation .label_text {
    color: #3A3A3A;
    font-size: 48px;
    font-weight: 700;
    transition: font-size 0.5s ease-in-out;
  }
  
  .ContactFormPage .Custome_form_animation .input_fild {
    color: #E77025;
    font-size: 30px;
    font-weight: 700;
    transition: font-size 0.5s ease-in-out;
  }
  .Custome_form_animation.expanded {
    height: 100%;
  }
  
  /* ✅ Shrink होने पर */
  .Custome_form_animation.shrinked .input_fild {
    font-size: 20px;
  }
  
  .Custome_form_animation.shrinked .label_text {
    font-size: 25px;
  }
  
  .ContactFormPage .LetsTalk{
    color: #3A3A3A;
    font-size: 70px;
    font-weight: 700;
    transition: font-size 0.5s ease-in-out;
  }
  
  .ContactFormPage .LetsTalk.hide-text {
    font-size: 0px;
  }
  
  .backAnima {
    cursor: pointer;
    height: 0px;
    transition: height 0.3s ease-in-out;
    opacity: 0;
  }
  
  .backAnima.show-btn {
    height: 20px;
    opacity: 1;
  }

  .country-dropdown-container {
    position: relative;
    width: 100%;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
  }
  
  .dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .dropdown-menu li:hover {
    background-color: #f1f1f1;
  }



@media (max-width: 768px) {
    .ContactFormPage .LetsTalk {
        font-size: 48px;
    }
    .ContactFormPage .Custome_form_animation .label_text {
        font-size: 18px;
        width: 100% !important;
    }
    .ContactFormPage .Custome_form_animation .input_fild {
        color: #e77025;
        width: 100%;
        font-size: 16px;
        padding-top: 10px;
    }
    .ContactFormPage .Custome_form_animation .cuntriw {
        width: 20%;
    }
    .ContactFormPage .Custome_form_animation .numberw {
        width: 80%;
    }
    .ContactFormPage .Custome_form_animation {
        width: 100%;
    }
}