@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --thm-font: "Inter", sans-serif;
    --thm-font-2: "reeyregular";
    --thm-base: #ff7a00;
    --thm-base-rgb: 255, 122, 0;
    --thm-primary: #182978;
    --thm-primary-rgb: 24, 41, 120;
    --thm-gray: #515151;
    --thm-gray-rgb: 81, 81, 81;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #202020;
    --thm-black-rgb: 32, 32, 32;
    --thm-gray-bg: #f5f5f5;
    --thm-main-bg: #202020;
}

:root {
    --swiper-theme-color: #007aff;
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0));
}

* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: var(--thm-font);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}


.page-name {
    width: 100%;
    height: 350px;
    background: url(../image/IMG_8529.jpg);
    background-size: cover;

    .cover {
        width: 100%;
        height: 100%;
        display: flex;
        font-size: 35px;
        color: var(--thm-white);
        font-weight: 800;
        align-items: center;
        padding-left: 70px;
        background-color: rgba(0, 0, 0, 0.7);
    }
}

.queries {
    width: 100%;
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 120px;
    padding-left: 80px;
    padding-right: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);


    .queries-head {
        width: 100%;
        height: 300px;
        padding-top: 100px;


        .detail1 {
            width: 100%;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--swiper-theme-color);
                font-weight: 600;

                i {
                    color: var(--thm-base);
                }
            }
        }

        .detail2 {
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;

            h2 {
                font-weight: 800;
                color: var(--thm-black);
                font-size: 50px;
            }
        }

        .detail3 {
            width: 100%;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--thm-black);
                font-weight: 600;
                font-size: 18px;
            }
        }
    }

    .queries-body {
        width: 100%;
        height: 100vh;
        display: flex;


        .queries-left {
            width: 35%;
            height: 100vh;
            background-color: brown;

            img {
                width: 100%;
                height: 100%;
            }
        }

        .queries-right {
            width: 65%;
            height: 100vh;
            background-color: #f7f7f7;
            display: flex;
            align-items: center;
            padding-left: 70px;
            padding-right: 70px;


            form {
                width: 100%;
                display: block;

                input {
                    width: 100%;
                    height: 60px;
                    margin-bottom: 20px;
                    padding: 10px;
                    padding-left: 30px;
                    border: 1px solid var(--bs-gray);
                    font-weight: 700;
                    color: var(--bs-dark);
                }

                input:focus {
                    border: 1px solid var(--thm-base);
                    outline: var(--thm-base);
                }

                input::placeholder {
                    color: var(--bs-gray);
                    font-weight: 700;
                }

                textarea {
                    width: 100%;
                    height: 150px;
                    margin-bottom: 20px;
                    padding: 10px;
                    padding-left: 30px;
                    border: 1px solid var(--bs-gray);
                    font-weight: 700;
                    color: var(--bs-dark);
                }

                textarea:focus {
                    border: 1px solid var(--thm-base);
                    outline: var(--thm-base);
                }

                textarea::placeholder {
                    color: var(--bs-gray);
                    font-weight: 700;
                }

                button {
                    text-decoration: none;
                    color: var(--thm-white);
                    background-color: var(--thm-base);
                    padding: 20px 35px;
                    font-weight: 600;
                    font-size: 20px;
                    border: none;
                    position: relative;
                    overflow: hidden;
                    transition: background-color 0.7s ease, color 0.7s ease;
                    z-index: 1;

                    i {
                        margin-left: 5px;
                        background-color: #e6a466;
                        border-radius: 100px;
                        padding: 5px 5px;
                    }
                }

                button:after {
                    content: "";
                    position: absolute;
                    top: 0;
                    right: -100%;
                    width: 100%;
                    height: 100%;
                    background-color: var(--thm-black);
                    transition: right 0.7s ease;
                    z-index: -1;
                }

                button:hover:after {
                    right: 0;
                }

                button:hover i {
                    background-color: #9f9696;
                    color: var(--thm-gray);
                }
            }
        }
    }
}


.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: white;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 500px;
    margin: 20% auto;

    .cont{
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 70px;
        color: var(--bs-success);
    }

    .note{
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: var(--bs-gray);
        margin-top: 20px;
    }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}