/* loader */

.spinner_container {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 555;
    background-color: rgba(0, 0, 0, 0.8);
    /* Semi-transparent background */
}

.nb-spinner {
    width: 75px;
    height: 75px;
    margin: 0;
    background: transparent;
    border-top: 4px solid #FFE91A;
    border-right: 4px solid transparent;
    border-radius: 50%;
    animation: 1s spin linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

body {

    font-family: "IBM Plex Sans Arabic",
        sans-serif;
    background-color: #000000;
    position: relative;
    overflow-x: hidden;
}

.position-relative {
    position: relative !important;
}

/* main style */
.main-container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0px;
}

.main-container .section {
    max-width: 768px;
}

.main-container .section img {
    width: 100%;
    height: auto;
}

.s2,
.s4,
.s6 {
    position: relative !important;
}

button:focus {
    outline: none;
}

.transparent-button {
    z-index: 100;
    direction: ltr !important;
    min-width: 300px;
    min-height: 70px;
    width: fit-content;
    height: fit-content;
    font-family: "IBM Plex Sans Arabic",
        sans-serif;
    padding: 10px 30px;
    border-radius: 17px;
    cursor: pointer;
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    vertical-align: top;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}


.transparent-button svg {
    width: 19px;
    height: 18px;
    transition: transform 0.3s ease;
}

.transparent-button:hover svg,
.transparent-button:active svg {
    transform: rotate(90deg);
    /* Rotate the arrow */
}

.s2 button {
    background-color: rgba(255, 255, 255, 0.16);
    /* Semi-transparent white */
    border: 2px solid rgba(255, 255, 255, 0.16);
    color: #00FF66;
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(16px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(16px);
    /* For Safari */
}

.s4 button {
    background-color: rgba(0, 0, 0, 0.14);
    /* Semi-transparent white */
    border: 2px solid rgba(140, 255, 255, 0.8);
    color: #FFFFFF;
    position: absolute;
    bottom: 1%;
    left: 50%;
    /* Soft glowing effect */
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(14px);
    /* For Safari */
}

.s6 button {
    background-color: rgba(0, 0, 0, 0.14);
    /* Semi-transparent white */
    border: none;
    color: #FFFFFF;
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(16px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(16px);
    /* For Safari */
}

.s6 .transparent-button::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Cover the button */
    padding: 2px;
    /* Border thickness */
    border-radius: 17px;
    /* Match button border radius */
    background: linear-gradient(90deg, #6B23FF, transparent 30%, transparent 70%, #FFD700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    /* Masks to make border */
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    /* Place behind the button */
}





.thankyou-container {
    max-width: 768px;
    height: 100%;
    margin: 0 auto;
    padding: 0px;

}

.thankyou-container .thankyou {
    width: 100%;
    -webkit-touch-callout: none;
    /* Disable long press */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    /* Prevent any interaction */
}


/* form styles */

.form-container {
    font-family: "Readex Pro",
        sans-serif !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px;
}

.form-container h5 {
    font-family: "Readex Pro",
        sans-serif !important;
    color: #EAEAEA;
    font-weight: 400;
    font-size: 18px;
    line-height: 52px;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0%;
    margin-bottom: 0px !important;
}

.form-container h1 {
    font-family: "Readex Pro",
        sans-serif !important;
    color: #EAEAEA;
    font-weight: 500;
    font-size: 32px;
    line-height: 52px;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0%;
    margin-bottom: 20px !important;
}

.form-container form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-container .custom-input {
    font-size: 16px;
    line-height: 25px;
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 20px 25px;
    border-radius: 18px;
    border: 1.5px solid #989898;
    background-color: #1B1B1B;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
}

.form-container .custom-input::placeholder {
    color: #656161;
}

.company-type {
    padding: 0px 10px;
    display: flex;
    justify-content: start;
    width: 100%;
    margin: 10px 0;
}

.company-type .header-title {
    /* text-align: left; */
    font-size: 17px;
    color: #656161;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}

.company-type .header-title .color {
    color: #E1251C !important;
}

.checkboxes__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.checkboxes__item {
    text-align: right;
    padding: 0px 0px 0px 0px;
}

/* STYLE C */

.checkbox.style-c {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0px !important;
}

.checkbox.style-c input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-c input:checked~.checkbox__checkmark {
    background-color: #FFE91A;
}

.checkbox.style-c input:checked~.checkbox__checkmark:after {
    opacity: 1;
}

.checkbox.style-c:hover input~.checkbox__checkmark {
    background-color: #1B1B1B;
}

.checkbox.style-c:hover input:checked~.checkbox__checkmark {
    background-color: #FFE91A;
}

.checkbox.style-c .checkbox__checkmark {
    position: absolute;
    top: 2px;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: #1B1B1B;
    transition: background-color 0.25s ease;
    border-radius: 4px;
}

.checkbox.style-c .checkbox__checkmark:after {
    content: "";
    position: absolute;
    right: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}



.checkbox.style-c .checkbox__body {
    color: #656161;
    line-height: 1.4;
    font-size: 15px;
    text-align: right;
}

/* Apply white color to the checkbox__body for the selected radio */
.checkbox.style-c input[type="radio"]:checked+.checkbox__checkmark+.checkbox__body {
    color: #fff !important;
}

/* Ensure other checkbox__body elements have default color */
.checkbox.style-c input[type="radio"]:not(:checked)+.checkbox__checkmark+.checkbox__body {
    color: #656161 !important;
}

.btn_container {
    width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;

}

.form_submit_btn {
    z-index: 999;
    min-width: 240px;
    min-height: 52px;
    width: fit-content;
    height: fit-content;
    font-family: "Readex Pro",
        sans-serif !important;
    border-radius: 52px;
    cursor: pointer;
    font-size: 23px;
    line-height: 34px;
    letter-spacing: 0%;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    text-align: center;
    color: #000000;
    background-color: #FFE91A;
    border: none !important;
}

.form_error {
    color: #ac4a4a !important;
    align-self: start !important;
    font-size: 15px !important;
    line-height: 22px !important;
    padding: 5px !important;
}

.custom-input.invalid {
    border: 1px solid #ac4a4a !important;
}
