@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FDCC09;
    background-image: url(/images/bg-drop.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 604px;
    font-family: "Barlow", sans-serif;
    position: relative;
}




a {
    text-decoration: none;
}

.container {
    width: 90%;
    margin: auto;
}

/* Header */
header {
    width: 100%;
    padding: 1rem 0;
    /* position: sticky;
    top: 0;
    left: 0;
    background: #FDCC09;
    z-index: 9; */
}

.logo img {
    max-width: 180px;
}

/* Main Section */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Coming Soon Section */
.coming-soon-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 2rem 0;
}

/* Slider Section */
.coming-soon-slider {
    width: 60%;
    overflow: hidden;
}

.slider-flex-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 0 50% 50% 50%;
}


.swiper img {
    width: 100%;
    display: block;
}

/* Side Content */
.side-content {
    width: 16vw;
    height: 16vw;
    aspect-ratio: 1 / 1;
    font-weight: bold;
    background-color: white;
    color: #00315B;
    border-radius: 50%;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.side-content p {
    width: 100%;
    font-size: 2vw;
    font-weight: 300;
}

/* Text Section */
.coming-soon-text {
    width: 35%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}



/* Bottom Content */
.bottom-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bottom-content p:nth-of-type(1) {
    font-weight: 400;
    font-size: 52px;
    color: black;
}

.bottom-content p:nth-of-type(2) {
    font-weight: 400;
    font-size: 23px;
    color: black;
    font-style: normal;
}

.bottom-content a {
    font-weight: 400;
    color: black;
}

.bottom-content a:nth-of-type(2) {
    font-size: 28px;
}

.bottom-content a:nth-of-type(3) {
    font-size: 23px;
}

.bottom-content a:last-child {
    font-weight: 400;
    font-size: 23px;
}

.social-media-flex {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2rem;
}

.mapqr img {
    filter: invert(0) !important;
    width: 25% !important;
}

.socila-media-flex img {
    width: 30px;
    height: 30px;
}

.enquiry {
    position: absolute;
    top: 12%;
    right: 6%;
    background: black;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    width: 50px;
    height: 50px;
    transition: width 0.3s ease-in-out, padding 0.3s ease-in-out;
    justify-content: center;
    cursor: pointer;
    z-index: 9;
}

.enquiry img {
    width: 24px;
    transition: transform 0.3s ease-in-out;
}

.enquiry p {
    color: white;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 0;
    margin-left: 0;
    transition: width 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.enquiry:hover {
    width: auto;
    padding: 1rem 1.5rem;
    border-radius: 50px;
}

.enquiry:hover p {
    width: auto;
    opacity: 1;
    margin-right: 10px;
}


/* popup */
.enquiry-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 100%;
}


.enquiry-popup.show {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    position: relative;
    width: 600px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.enquiry-form input {
    width: 100%;
    padding: 0.8rem;
    border-bottom: 1px solid grey;
    border-radius: 0;
    outline: unset;
    background-color: unset;
    box-shadow: unset;
    color: #282828;
    border-left: unset;
    border-right: unset;
    border-top: unset;
}

.enquiry-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-bottom: 1px solid grey;
    border-radius: 0;
    outline: unset;
    background-color: unset;
    box-shadow: unset;
    color: #282828;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    border-left: unset;
    border-right: unset;
    border-top: unset;
}

.enquiry-form input[type="submit"] {
    background: #00315B;
    font-size: 16px;
    font-weight: 500;
    color: #f9f9f9;
    cursor: pointer;
    width: 30%;
    border-radius: 30px
}

.sbt-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}


.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: white;
    color: black;
    font-size: 1.2rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Footer */
footer {
    margin-top: 1rem;
    width: 100%;
    background: #EEBF03;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.footer-flex p {
    font-size: 18px;
    color: #3E3E3E;
}

.footer-flex img {
    max-width: 150px;
}



/* preloader */
.formPreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 48, 49, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    z-index: 9999;
}

.spinner {
    width: 100px;
    height: 100px;
    border: 4px solid #fff0;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    border-radius: 50%;
}

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

    100% {
        transform: rotate(360deg);
    }

}

.response_message_div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dddada;
    display: none;
    z-index: 9999;
}

.response_message_div p {
    top: 50%;
    left: 50%;
    position: fixed;
    text-align: center;
    transform: translate(-50%, -50%);
    color: #008900;
    font-weight: 500;
    font-size: 1.4rem;
}

.response_message_div img {
    position: fixed;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -20%);
}

.verror-message {
    text-align: left;
    color: red;
    margin-bottom: 0.5rem;
}

.btn-mdisclosure {
    border: 1px solid #000;
    border-radius: 30px;
    /* border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px; */
    padding: 0.8rem 2rem;
    color: var(--black);
    background: transparent;
    transition: all 0.5s ease;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
}

.btn-mdisclosure:hover {
    background: black;
    color: white;
}