* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.enquiryForm {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formEnquiry {
    width: 90%;
    margin: 0 auto;
}

.enquiryForm {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}


.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.6);
    animation: zoomFade 25s infinite;
    z-index: 0;
}


.bg-slide:nth-child(1) {
    animation-delay: 0s;
}

.bg-slide:nth-child(2) {
    animation-delay: 5s;
}

.bg-slide:nth-child(3) {
    animation-delay: 10s;
}

.bg-slide:nth-child(4) {
    animation-delay: 15s;
}

.bg-slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes zoomFade {
    0% {
        opacity: 1;
        transform: scale(1.6);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }

    60% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}


.formEnquiry {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.textContainer {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.textContainer h1 {
    width: 90%;
    font-size: 2.5rem;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    /* font-family: "Anton", sans-serif; */
    font-weight: 800;
}

.textContainer p {
    width: 70%;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: white;
    margin-top: 2%;
}

.FormContainer {
    width: 50%;
    height: 60%;
    background: #121518f0;
    border-radius: 16px;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    margin-top: 5%;
}

.circle {
    position: absolute;
    top: -6%;
    right: -5%;
    width: 110px;
    border-radius: 50%;
    height: 110px;
    background: orange;
}

.headingForm {
    width: 90%;
    margin: 7% auto;
}

.headingForm h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.headingForm p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: white;
}

.companyName {
    width: 90%;
    margin: 40px auto;
    position: relative;
}

.companyName input {
    width: 80%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccccd2;
    padding-bottom: 15px;
    font-size: 0.85rem;
    color: white;
    outline: none;
    position: relative;
    z-index: 1;
}

.companyName::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 0;
    height: 1px;
    width: 80%;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.companyName:focus-within::after {
    transform: scaleX(1);
}


.companyName:focus-within input {
    border-bottom-color: transparent;
}

.submitButton {
    width: 90%;
    margin: 20px auto;
    margin-top: 7%;
    margin-bottom: 40px !important;
}

.submitButton button {
    height: 40px;
    width: 81%;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: all 600ms ease-in-out;
}

.submitButton button:hover {
    transform: scale(1.05);
    background: transparent;
    color: white;
    border: 1px solid white;
}

.socialIcon {
    width: 36%;
    display: flex;
    margin: 20px auto;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 25px;
}

.socialIcon a {
    text-decoration: none;
}

.allIcons {
    background: #15191b;
    height: 38px;
    width: 38px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    margin: 0 8px;
    justify-content: center;
    transition: all 400ms ease-in-out;
    cursor: pointer;
}

.allIcons i {
    font-size: 1.1rem;
    color: white;
}

.allIcons:hover {
    background: #ffffffb0;
    transform: scale(1.1);
}

.allIcons:hover i {
    font-size: 1.1rem;
    color: #16191c;
}

.lets {
    color: orange;
}

.companyName3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* spacing between dropdowns */
    width: 80%;
    margin: 25px auto;
    flex-wrap: wrap;
}

.selectTags select {
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white'><path d='M4 5l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
}

.selectTags select:focus,
.selectTags select:hover {
    border-color: #ffa500;
    box-shadow: 0 0 4px rgb(255 165 0 / 31%);
    outline: none;
}

.selectTags select option {
    background: #121518;
    color: white;
    font-family: "Poppins", sans-serif;
}

.numberInput {
    -moz-appearance: textfield;
}

.numberInput::-webkit-outer-spin-button,
.numberInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.newHeaderAdd {
    width: 100%;
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 9;
}

.addHeader {
    width: 90%;
    display: flex;
    align-items: 0;
    justify-content: center;
    margin: 15px auto;
}

.LogoOfWF {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.WFimgAdd {
    width: 200px;
    overflow: hidden;
}

.WFimgAdd img {
    width: 100%;
}

.BackToButton {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.BackToButton button {
    width: 106px;
    height: 38px;
    border: none;
    /* box-shadow: 2px 2px 5px #252529ab; */
    font-size: 0.9rem;
    border-radius: 2px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 400ms ease-in-out;
    cursor: pointer;
}

.BackToButton button:hover {
    transform: scale(1.05);
    background: transparent;
    color: white;
    border: 1px solid white;
}

.BackToButton button i {
    color: #191c27;
    margin-left: 5px;
}


.BackToButton button:hover i {
    color: orange;
}

.rotateBox {
    display: inline-block;
    animation: spinPause 5s infinite;
    transform-style: preserve-3d;
    /* rotate: x 10deg; */
}

@keyframes spinPause {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }

    50% {
        transform: rotateY(360deg) rotateX(10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

.error {
    border-bottom: 2px solid red !important;
}

.error-select {
    border: 2px solid red !important;
}

.modalOpen {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newModal {
    background: white;
    padding: 30px 50px;
    border-radius: 12px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.displayForPopup {
    display: none;
}

#closeModal {
    margin-top: 15px;
    padding: 6px 12px;
    background: orange;
    border: none;
    border-radius: 2px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

#closeModal:hover {
    background: darkorange;
}

.newModal h2 {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
}

.newModal p {
    font-family: "Poppins", sans-serif;
    margin-top: 7px;
    font-size: 0.85rem;
}

.ThanKUPopup {
    /* color: darkorange; */
}

@media (max-width: 400px) {
    .WFimgAdd {
        width: 170px;
    }

    .BackToButton button {
        width: 80px;
        height: 28px;
        font-size: 0.75rem;
    }

    .enquiryForm {
        width: 100%;
        height: auto !important;
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .formEnquiry {
        position: relative;
        z-index: 1;
        color: white;
        text-align: center;
        padding: 0px 0px;
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
        justify-content: start;
        width: 100%;
    }

    .textContainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .FormContainer {
        width: 100%;
        height: 100dvh;
        background: #121518f0;
        border-radius: 0px;
        padding: 15px 0;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* position: sticky; */
        margin-top: 0%;
        /* top: 0; */
    }

    .textContainer h1 {
        width: 90%;
        font-size: 1.2rem;
        color: white;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
        /* font-family: "Anton", sans-serif; */
        font-weight: 800;
        position: absolute;
        top: 13%;
        z-index: 99;
    }

    .textContainer p {
        width: 70%;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        color: white;
        margin-top: 2%;
        position: absolute;
        top: 0;
        z-index: 99;
        display: none;
    }

    .socialIcon {
        width: 90%;
        display: flex;
        margin: 20px auto;
        align-items: center;
        justify-content: center;
        margin-top: 25px;
        position: absolute;
        /* top: 0; */
        z-index: 99;
        bottom: 1%;
    }

    .companyName3 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 80%;
        margin: 25px auto;
        flex-wrap: wrap;
    }

    .selectTags select {
        /* width: 100%; */
        padding: 6px 43px 6px 32px;
        font-size: 0.75rem;
    }

    .submitButton {
        margin-top: 11%;
    }

    .submitButton button {
        font-size: 0.8rem;
    }

    .headingForm h1 {
        display: none;
    }

    .formTags {
        margin-top: 12%;
    }

    .companyName input {
        width: 88%;
    }

    .selectTags select {
        padding: 6px 34px 6px 23px;
        font-size: 0.75rem;
    }

    .allIcons i {
        font-size: 0.9rem;
    }

    .newModal {
        height: 190px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .newModal h2 {
        font-size: 1rem;
        margin-bottom: 9px;
    }

    .newModal p {
        font-family: "Poppins", sans-serif;
        margin-top: 7px;
        font-size: 0.85rem;
    }

    #closeModal {
        margin-top: 15px;
        width: 90%;
        font-size: 0.85rem;
    }

}

@media (min-width: 400px) and (max-width: 500px) {
    .WFimgAdd {
        width: 170px;
    }

    .BackToButton button {
        width: 80px;
        height: 28px;
        font-size: 0.75rem;
    }

    .enquiryForm {
        width: 100%;
        height: auto !important;
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .formEnquiry {
        position: relative;
        z-index: 1;
        color: white;
        text-align: center;
        padding: 0px 0px;
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
        justify-content: start;
        width: 100%;
    }

    .textContainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .FormContainer {
        width: 100%;
        height: 100dvh;
        background: #121518f0;
        border-radius: 0px;
        padding: 15px 0;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* position: sticky; */
        margin-top: 0%;
        /* top: 0; */
    }

    .textContainer h1 {
        width: 90%;
        font-size: 1.2rem;
        color: white;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
        /* font-family: "Anton", sans-serif; */
        font-weight: 800;
        position: absolute;
        top: 13%;
        z-index: 99;
    }

    .textContainer p {
        width: 70%;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        color: white;
        margin-top: 2%;
        position: absolute;
        top: 0;
        z-index: 99;
        display: none;
    }

    .socialIcon {
        width: 90%;
        display: flex;
        margin: 20px auto;
        align-items: center;
        justify-content: center;
        margin-top: 25px;
        position: absolute;
        /* top: 0; */
        z-index: 99;
        bottom: 12%;
    }

    .companyName3 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 80%;
        margin: 25px auto;
        flex-wrap: wrap;
    }

    .selectTags select {
        /* width: 100%; */
        padding: 6px 43px 6px 32px;
        font-size: 0.75rem;
    }

    .submitButton {
        margin-top: 11%;
    }

    .submitButton button {
        font-size: 0.8rem;
    }

    .headingForm h1 {
        display: none;
    }

    .formTags {
        margin-top: -7%;
    }

    .companyName input {
        width: 88%;
    }

    .selectTags select {
        /* width: 100%; */
        padding: 6px 48px 6px 32px;
        font-size: 0.75rem;
    }

    .allIcons i {
        font-size: 0.9rem;
    }

    .newModal {
        height: 190px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .newModal h2 {
        font-size: 1rem;
        margin-bottom: 9px;
    }

    .newModal p {
        font-family: "Poppins", sans-serif;
        margin-top: 7px;
        font-size: 0.8rem;
    }

    #closeModal {
        margin-top: 15px;
        width: 90%;
        font-size: 0.85rem;
    }

    .newModal {
        background: white;
        padding: 10px 15px;

    }

}

@media (min-width: 500px) and (max-width: 800px) {
    .WFimgAdd {
        width: 170px;
    }

    .BackToButton button {
        width: 80px;
        height: 28px;
        font-size: 0.75rem;
    }

    .enquiryForm {
        width: 100%;
        height: auto !important;
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .formEnquiry {
        position: relative;
        z-index: 1;
        color: white;
        text-align: center;
        padding: 0px 0px;
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
        justify-content: start;
        width: 100%;
    }

    .textContainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .FormContainer {
        width: 100%;
        height: 100dvh;
        background: #121518f0;
        border-radius: 0px;
        padding: 15px 0;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* position: sticky; */
        margin-top: 0%;
        /* top: 0; */
    }

    .textContainer h1 {
        width: 90%;
        font-size: 1.2rem;
        color: white;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
        /* font-family: "Anton", sans-serif; */
        font-weight: 800;
        position: absolute;
        top: 13%;
        z-index: 99;
    }

    .textContainer p {
        width: 70%;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        color: white;
        margin-top: 2%;
        position: absolute;
        top: 0;
        z-index: 99;
        display: none;
    }

    .socialIcon {
        width: 90%;
        display: flex;
        margin: 20px auto;
        align-items: center;
        justify-content: center;
        margin-top: 25px;
        position: absolute;
        /* top: 0; */
        z-index: 99;
        bottom: 12%;
    }

    .companyName3 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 80%;
        margin: 25px auto;
        flex-wrap: wrap;
    }

    .selectTags select {
        /* width: 100%; */
        padding: 6px 43px 6px 32px;
        font-size: 0.75rem;
    }

    .submitButton {
        margin-top: 11%;
    }

    .submitButton button {
        font-size: 0.8rem;
    }

    .headingForm h1 {
        display: none;
    }

    .formTags {
        margin-top: -7%;
    }

    .companyName input {
        width: 88%;
    }

    .selectTags select {
        /* width: 100%; */
        padding: 6px 48px 6px 32px;
        font-size: 0.75rem;
    }

    .allIcons i {
        font-size: 0.9rem;
    }

    .newModal {
        height: 190px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .newModal h2 {
        font-size: 1rem;
        margin-bottom: 9px;
    }

    #closeModal {
        margin-top: 15px;
        width: 90%;
        font-size: 0.85rem;
    }

    .newModal p {
        font-family: "Poppins", sans-serif;
        margin-top: 7px;
        font-size: 0.85rem;
    }

    .newModal {
        background: white;
        padding: 10px 15px;

    }


}

@media (min-width: 800px) and (max-width: 1000px) {

    .formEnquiry {
        position: relative;
        flex-direction: column;
        z-index: 1;
        color: white;
        text-align: center;
        padding: 80px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .textContainer {
        width: 100%;
    }

    .FormContainer {
        width: 100%;
    }

}

@media (min-width: 1000px) and (max-width: 1200px) {

    .textContainer {
        width: 45%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .FormContainer {
        width: 55%;
        height: 60%;
        background: #121518f0;
        border-radius: 16px;
        padding: 15px 0;
        overflow: hidden;
        position: relative;
        margin-top: 5%;
    }

    .textContainer h1 {
        width: 90%;
        font-size: 1.5rem;
        color: white;
        margin-bottom: 2%;
    }

    .textContainer p {
        width: 90%;
        font-size: 0.85rem;
        margin-top: 2%;
    }

    .FormContainer {
        width: 55%;
    }

    .headingForm h1 {
        font-size: 1.5rem;
    }

    .companyName {
        width: 90%;
    }

    .companyName3 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 90%;
    }

    .selectTags select {
        padding: 6px 30px 6px 11px;
        font-size: 0.8rem;
    }

    .socialIcon {
        width: 90%;
        margin-top: 25px;
        justify-content: center;
    }

    .allIcons {
        background: #15191b;
        height: 30px;
        width: 30px;
    }

    .allIcons i {
        font-size: 0.9rem;
    }

}

@media (min-width: 1200px) and (max-width: 1400px) {


    .textContainer h1 {
        width: 90%;
        font-size: 2.1rem;
        margin-bottom: 2%;
    }

    .headingForm h1 {
        font-family: "Montserrat", sans-serif;
        font-size: 1.6rem;
    }

    .headingForm {
        margin-top: 3% !important;
    }

    .submitButton {
        margin-top: 5% !important;
        margin-bottom: 3% !important;
    }
}
