  .popup-enquiry-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    } 
    
    .popup-enquiry-overlay.show-popup {
      opacity: 1;
      visibility: visible;
    }
    

    .popup-enquiry-box {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      position: relative;
      width: 90%;
      max-width: 900px;
      border-radius: 20px;
      overflow: hidden;
      transform: translateY(80px) scale(0.9);
      transition: transform 1s ease, opacity 1s ease;
      opacity: 0;
    }
    
    .popup-enquiry-overlay.show-popup .popup-enquiry-box {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    
    .popup-enquiry-inner {
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 100%;
    }
    
    .popup-image-side {
      flex: 1;
      background: url('../images/professional-businesswoman-with-phone.jpg') no-repeat center center;
      background-size: cover;
      position: relative;
    }
    
    .popup-image-side::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.09);
    }
    
    .popup-form-side {
      flex: 1.2;
      background: rgba(255,255,255,0.8);
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .popup-form-side h2 {
      font-size: 2rem;
      /* font-weight: bold; */
      color: #004aad;
      margin-bottom: 20px;
      text-align: center;
      font-style: italic;
    }
    
    .popup-form-side input,
    .popup-form-side select,
    .popup-form-side textarea {
      width: 100%;
      padding: 14px;
      margin-bottom: 15px;
      border: 1px solid rgba(0,0,0,0.2);
      border-radius: 10px;
      background: rgba(255,255,255,0.7);
      font-size: 1rem;
    }
    
    .popup-form-side input:focus,
    .popup-form-side select:focus,
    .popup-form-side textarea:focus {
      background: white;
      outline: none;
      border-color: #004aad;
    }
    
    .form-enquire-btn-custom {
      width: 100%;
      padding: 14px;
      font-size: 1.1rem;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      color: white;
      background: linear-gradient(45deg, #004aad, #26cb2d);
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .form-enquire-btn-custom:hover {
      background: linear-gradient(45deg, #003080, #1ea41d);
    }
    
    .popup-close {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #004aad;
      color: white;
      border: none;
      border-radius: 50%;
      padding: 8px 12px;
      font-size: 1.2rem;
      cursor: pointer;
    }

    .phone-group {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      width: 100%;
      margin-bottom: 8px;
    }

    .country-code-custom {
      width: 90px;
      flex-shrink: 0;
      padding: 10px;
      font-size: 0.9rem;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.7);
      appearance: none; 
    }

    .phone-input-custom {
      flex: 1;
      min-width: 0;
      padding: 10px;
      font-size: 0.9rem;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.7);
    }

    .country-code-custom option {
      white-space: nowrap;
    }



    @keyframes bounceInUp {
      0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
      }
      60% {
        opacity: 1;
        transform: translateY(-20px) scale(1.02);
      }
      80% {
        transform: translateY(10px) scale(0.98);
      }
      100% {
        transform: translateY(0) scale(1);
      }
    }
    
    
    @media (min-width: 1900px) {
      .popup-enquiry-box {
        max-width: 990px;
        /* margin-bottom: 10px; */
      }
    
      .popup-form-container {
        padding: 50px;
      }
    
      .popup-form-container h2 {
        font-size: 2.8rem;
      }
    
      .popup-form-container input,
      .popup-form-container select,
      .popup-form-container textarea {
        padding: 16px;
        font-size: 1.1rem;
      }
    
      .form-enquire-btn-custom {
        font-size: 1.1rem;
        padding: 16px;
      }
    }
    
    
    @media (max-width: 1400px) {
      .popup-enquiry-box {
        max-width: 800px;
      }
    }
    
    @media (max-width: 1200px) {
      .popup-enquiry-box {
        max-width: 700px;
      }
    }
    
    @media (max-width: 991px) {
      .popup-enquiry-box {
        max-width: 600px;
      }
    
      .popup-form-container h2 {
        font-size: 1.6rem;
      }
    
      .popup-form-container {
        padding: 25px;
      }
    
      .popup-form-container input,
      .popup-form-container select,
      .popup-form-container textarea {
        padding: 10px;
        font-size: 0.95rem;
      }
    
      .form-enquire-btn-custom {
        font-size: 0.95rem;
        padding: 12px;
      }
    }
    
    @media (max-width: 740px) {
      .popup-enquiry-inner {
        flex-direction: column;
      }
    
      .popup-image {
        display: none;
      }
    
      .popup-form-container {
        flex: 1;
        padding: 10px;
      }
    
      .popup-enquiry-box {
        border-radius: 20px 20px 0 0;
        width: 90%;
        max-width: 400px;
        max-height: 600px;
      }

      .popup-form-container input,
      .popup-form-container select,
      .popup-form-container textarea {
        width: 100%;
        padding: 8px;
        margin-bottom: 8px;
      }

      .popup-form-container h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
      }

      .form-enquire-btn-custom {
        width: 90%;
        padding: 18px;
        font-size: 0.8rem;
      }
    }
    @media (max-width: 576px) {
      .popup-enquiry-inner {
        flex-direction: column;
      }

      .popup-image {
        display: none;
      }

      .popup-form-container {
        flex: 1;
        padding: 10px;
        overflow-y: auto;
        max-height: 900px;
        -webkit-overflow-scrolling: touch;
      }

      .popup-enquiry-box {
        border-radius: 20px 20px 0 0;
        width: 100%;
        max-width: 400px;
        max-height: 900px;
        overflow: auto;
        display: flex;
        flex-direction: column;
      }

      .popup-form-container h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        text-align: center;
      }

      .popup-form-container input,
      .popup-form-container select,
      .popup-form-container textarea {
        width: 100%;
        padding: 8px;
        margin-bottom: 8px;
        font-size: 0.9rem;
      }

      .phone-group {
        display: flex;
        /* flex-direction: row; */
        align-items: center;
        /* gap: 0px; */
        /* width: 100%; */
        /* margin-bottom: 8px; */
      }

      .country-code-custom {
        flex-shrink: 0;
        /* width: 90px; */
        padding: 0px;
        font-size: 0.6rem;
        white-space: nowrap;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.7);
      }

      /* .country-code-custom option {
        white-space: nowrap;
      } */

      .phone-input-custom {
        flex: 1;
        min-width: 0;
        padding: 8px;
        font-size: 0.9rem;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.7);
      }

      .form-enquire-btn-custom {
        width: 90%;
        padding: 16px;
        font-size: 0.8rem;
        font-weight: bold;
        border: none;
        border-radius: 30px;
        color: white;
        background: linear-gradient(45deg, #004aad, #26cb2d);
        cursor: pointer;
        transition: background 0.3s;
      }

      .form-enquire-btn-custom:hover {
        background: linear-gradient(45deg, #003080, #1ea41d);
      }
    }
