    /* SweetAlert customization */

  .high-z-index {
     z-index: 99999 !important;
 }
 .swal2-container {
     z-index: 99999 !important;
 }
    .swal2-popup {
        font-family: inherit;
        border-radius: 8px;
    }

    .swal2-title {
        font-size: 1.5rem;
        color: #333;
    }

    .swal2-confirm {
        background-color: #3085d6 !important;
        padding: 0.5rem 1.5rem !important;
        border-radius: 4px !important;
    }

    .swal2-icon.swal2-success .swal2-success-ring {
        border-color: rgba(48, 133, 214, 0.3) !important;
    }

    .swal2-icon.swal2-success [class^="swal2-success-line"] {
        background-color: #3085d6 !important;
    }

    .swal2-icon.swal2-error {
        border-color: #f27474 !important;
        color: #f27474 !important;
    }


    
    /* Form Container */
    .form-container {
        width: 100%;
        /* margin: 50px auto; */
        background: white;
        border-radius: 8px;
    
        overflow: hidden;
    }

    /* Form Header */
    .form-header {
        font-size: 18px;
        height: 200px;
        text-align: center;
        margin-bottom: 30px;
        color: #222;
        line-height: 1.8em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px 30px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .form-header a {
        text-decoration: underline;
        color: white;
        line-height: 1.8em;
    }

    .form-title {
        font-size: 55px;
        font-weight: 500;
        line-height: 1em;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .form-title-content {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 15px;
        opacity: 0.95;
    }

    /* Form Content */
    .form-content {
        padding: 20px 20px;
    }

    /* Text Input Groups with Floating Labels */
    .form-group-text {
        position: relative;
        margin-bottom: 25px;
    }
    .form-group-text-two-coumn {
        position: relative;
        margin-bottom: 0;
    }

    .form-group-text-two-coumn-two {
        position: relative;
        margin-bottom: 0;
    }

    #country {
        color: #222; /* Change to your desired color */
        -webkit-text-fill-color: #222; /* Ensures color applies in some browsers */
        opacity: 1; /* Prevents default disabled fading */
    }

    #country option[value="Australia"] {
        color: #222; /* Change this to your desired color */
    }

    .form-input-text {
        width: 100% !important;
        padding: 20px 12px 8px !important;
        border: 1px solid #ddd !important;
        border-radius: 4px !important;
        font-size: 14px;
        transition: border-color 0.3s;
        background-color: white;
        color: #333;
    }

    .form-input-text.input-textarea {
        min-height: 150px;
        resize: vertical;
        font-family: inherit;
    }

    .form-input-text:focus {
        outline: none;
        border-color: #3498db;
    }

    .form-label-text {
        position: absolute;
        top: 8px;
        left: 12px;
        padding: 0 4px;
        font-size: 16px;
        color: #444;
        font-weight: 600;
        transition: 0.2s ease all;
        pointer-events: none;
        background: white;
    }

    .form-input-text::placeholder {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* On focus, fade the placeholder in */
    .form-input-text:focus::placeholder {
        opacity: 1;
    }

    /* Float the label when input is focused or filled */
    .form-input-text:focus + .form-label-text,
    .form-input-text:not(:placeholder-shown) + .form-label-text {
        top: 2px;
        left: 8px;
        font-size: 11px;
        color: #333;
    }

    /* Required Field Indicator */
    .required:after {
        content: " *";
        color: #e74c3c;
    }

    /* Select Dropdown Styles */
    .form-group-select {
        position: relative;
        margin-bottom: 25px;
    }

    .styled-select {
        width: 100%;
        padding: 12px 12px 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        background: white;
        cursor: pointer;
        transition: border-color 0.3s;
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
    }

    .styled-select:focus {
        outline: none;
        border-color: #3498db;
    }

    /* When no value is selected (placeholder state) */
    .styled-select:invalid {
        color: #999;
    }

    /* When a value is selected */
    .styled-select:valid {
        color: #333;
    }

    /* Style for options in the dropdown */
    .styled-select option {
        color: #333;
        background: white;
    }

    /* Style for the selected option in the dropdown list */
    .styled-select option:checked {
        color: #fff;
        background: #3498db;
    }

    .form-label-select {
        position: absolute;
        top: 2px;
        left: 8px;
        padding: 0 4px;
        font-size: 11px;
        color: #333;
        font-weight: 600;
        pointer-events: none;
        transition: all 0.2s ease;
        background: white;
    }

    /* Two Column Layout */
    .two-column {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
    }

    .two-column > * {
        flex: 1;
    }

    /* Captcha Section */
    .captcha-section {
        margin-bottom: 25px;
    }

    .captcha-label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #444;
    }

    .captcha-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .captcha-equation {
        font-size: 18px;
        font-weight: 600;
        color: #374151;
    }

    .captcha-input {
        width: 80px;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        text-align: center;
        transition: border-color 0.3s;
    }

    .captcha-input:focus {
        outline: none;
        border-color: #3498db;
    }

    /* Submit Button */
    .submit-btn-request {
        background-color: #003399;
        border: #012b80 solid 1px;
        color: #fff;
        text-align: center;
        border: none;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
        display: block;
        width: 100%;
        font-weight: 600;
        padding: 18px 30px;
    }

    .submit-btn-request:hover {
        background-color: #002080;
        color: #fff;
        border: #000e36 solid 1px;
    }

    .form-input-text.error {
        border-color: #e74c3c;
    }

    .error-message {
        color: #e74c3c;
        font-size: 12px;
        margin-top: 5px;
    }

    .form-wide-error {
        padding: 10px;
        margin-bottom: 20px;
        background: #f8d7da;
        border: 1px solid #f5c6cb;
        border-radius: 4px;
    }

    /* Media Queries */
    @media (max-width: 768px) {
        .form-container {
            width: 95%;
            margin: 20px auto;
        }

        .form-header {
            padding: 30px 20px;
            height: auto;
        }

        .form-title {
            font-size: 2rem;
        }

        .form-content {
            padding: 0px;
        }

        .captcha-wrapper {
            flex-direction: column;
            align-items: flex-start;
        }
        .form-group-text-two-coumn-two {
            margin-bottom: 25px;
        }

        .form-group-select {
        margin-bottom: 25px;
        }
    }

    @media (max-width: 600px) {
        .two-column {
            flex-direction: column;
            gap: 0;
        }
    }