@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */
/* font-family: "Playfair Display", serif; */

/* CSS Boilerplate */

/* Reset some default browser styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set base font and background */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    /* font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5; */
    background-color: #fff;
    color: #222;
    scroll-behavior: smooth;
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    /* margin-bottom: 0.5em; */

}

/* Links */
a {
    color: #222;
    text-decoration: none;
}

.mobile-navbar {
    display: none;
}

@media only screen and (max-width:768px) {
    body {
        cursor: default;
    }

    .cursor-inner,
    .cursor-outer {
        display: none;
    }

    .navigation {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }
}

#ContactMain {
    width: 100%;
    height: 100%;
}

/* hero */
.contactHero {
    width: 100%;
    height: auto;
    /* min-height: 550px; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
    background-image: url(/assets/images/contact\ hero\ bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;


    .absolute-float-blur-circle,
    .absolute-float-blur-circle2 {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: none;
        /* backdrop-filter: blur(20px); */
        z-index: -1;
        filter: blur(30px);
    }

    .absolute-float-blur-circle {
        top: 30%;
        left: 10%;
        background: #F2EFF8;
    }

    .absolute-float-blur-circle2 {
        bottom: 0%;
        right: 10%;
        background: #FAF4FF;
    }

    .contactContainer {
        width: 100%;
        max-width: 1400px;
        height: auto;
        margin: 120px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h4 {
            display: inline-block;
            color: #3B0070;
            background-color: #931BFF25;
            padding: 3px 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            max-width: 950px;

            .special-heading {
                color: transparent;
                background: linear-gradient(90deg, #3B0070, #931BFF);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        >p {
            font-size: 1.1rem;
            line-height: 1.6rem;
            color: #363545;
            margin-bottom: 20px;
            max-width: 750px;
            text-align: center;
        }


        .conCards {
            width: 100%;
            height: auto;
            margin-top: 30px;
            display: flex;
            align-items: start;
            justify-content: center;
            gap: 40px 40px;

            .con-card {
                width: 20%;
                height: auto;
                min-height: 250px;
                padding: 20px;
                border: 1px solid #fdfdfd;
                border-radius: 15px;
                background-color: #fff;
                box-shadow: 2px 2px 20px #36354515;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;

                i {
                    font-size: 2rem;
                    font-weight: 500;
                    padding: 15px;
                    border-radius: 15px;
                    color: #fafafa;
                    margin-bottom: 20px;
                }

                h2 {
                    font-size: 1.2rem;
                    color: #363545;
                    margin-bottom: 10px;
                }

                >a {
                    color: #222;
                    font-size: 1.2rem;
                    margin-bottom: 10px;
                    padding: 5px 10px;
                    background: linear-gradient(90deg, #36354510, #22222210);
                    border-radius: 5px;
                    transition: all .3s ease-in-out;

                    &:hover {
                        background: linear-gradient(90deg, #22222215, #36354515);
                        transform: scale(1.05);
                    }
                }

                >small {
                    font-size: 14px;
                    color: #555;
                }
            }

            .con-card:nth-child(1) i {
                background: linear-gradient(90deg, #382A4B, #9174B8);
            }

            .con-card:nth-child(2) i {
                background: linear-gradient(90deg, #363545, #565574);
            }

            .con-card:nth-child(3) i {
                background: linear-gradient(90deg, #18250E, #324522);
            }

            .con-card:nth-child(4) i {
                background: linear-gradient(90deg, #382A4B, #9174B8);
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .contactHero {
        padding: 0 10px;

        .contactContainer {
            padding: 0;
            margin: 40px 0px;

            .absolute-float-blur-circle,
            .absolute-float-blur-circle2 {
                width: 150px;
                height: 150px;
            }

            h4 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            h1 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            p {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .conCards {
                flex-wrap: wrap;
                gap: 20px;

                .con-card {
                    width: 100%;
                    max-width: 90%;
                }
            }
        }
    }
}

/* hero */

/* details and form */
.formSection {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .formContainer {
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin: 50px 0;
        padding: 0;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 30px;

        .Mainform-left {
            width: 60%;
            height: auto;
            min-height: 600px;
            max-height: auto;
            padding: 20px;
            background: #fff;
            box-shadow: 4px 4px 20px #22222210;
            padding: 30px;
            border-radius: 15px;

            h3 {
                font-size: 1.5rem;
                line-height: 2rem;
                margin-bottom: 20px;
                color: #181818;
            }

            #Contact-form {
                width: 100%;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;

                .form-group {
                    width: 100%;
                    height: auto;
                    margin-bottom: 40px;
                    display: flex;
                    align-items: start;
                    justify-content: space-between;
                    gap: 20px;

                    .form-field {
                        width: 50%;
                        height: auto;
                        display: flex;
                        align-items: start;
                        justify-content: start;
                        flex-direction: column;

                        label {
                            font-size: 1.1rem;
                            line-height: 1.4rem;
                            margin-bottom: 10px;
                            color: #222222;
                        }

                        input,
                        select,
                        option,
                        textarea {
                            width: 100%;
                            height: auto;
                            padding: 10px 8px;
                            background-color: #36354510;
                            border: none;
                            border-radius: 8px;
                        }

                    }
                }

                .form-group:nth-child(3) {
                    width: 100%;
                    height: auto;

                    .form-field {
                        width: 100%;
                    }

                }

                .form-group:nth-child(5) {
                    width: 100% !important;
                    /* background-color: #181818; */
                    height: auto;

                    .form-field {
                        width: 100% !important;

                        textarea {
                            width: 100% !important;
                            height: 200px !important;
                        }
                    }
                }

                .submit-btn {
                    width: 100%;
                    height: auto;
                    padding: 15px;
                    font-size: 1.1rem;
                    font-weight: 500;
                    background: linear-gradient(125deg, #3B0070, #382A4B);
                    color: #fafafa;
                    border: none;
                    border-radius: 15px;
                    text-transform: capitalize;
                    transition: all .3s ease-in-out;

                    &:hover {
                        box-shadow: 5px 5px 60px #3B007025;
                    }
                }
            }

            #Contact-form .project-details-text {
                width: 100% !important;
                
                
                .form-field{
                    width: 100%;
                }

                textarea {
                    width: 100% !important;
                    height: 200px !important;
                }

            }

        }

        .whychoose-right {
            width: 40%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            padding: 0px 20px;

            .why-grapify {
                width: 100%;
                height: auto;
                padding: 20px 15px;
                border-radius: 15px;
                background: linear-gradient(-160deg, #F3E5FF, #FAF4FF);
                /* display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column; */
                gap: 20px;

                h5 {
                    font-size: 1.5rem;
                    font-weight: 550;
                    color: #181818;
                    margin-bottom: 20px;
                    text-align: left;
                    padding: 0 10px;
                }

                .grap-card {
                    width: 100%;
                    height: auto;
                    padding: 20px 25px;
                    margin-bottom: 10px;
                    display: flex;
                    border-radius: 10px;
                    background-color: #FAF4FF;
                    align-items: start;
                    text-align: left !important;
                    /* background-color: #181818; */
                    justify-content: space-between;
                    gap: 20px;

                    .g-left {
                        width: 10% !important;
                        height: auto;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        i {
                            font-size: 1.5rem;
                            line-height: 2rem;
                            font-weight: 500;
                            color: #fafafa;
                            padding: 15px;
                            border-radius: 8px;
                            background: linear-gradient(90deg, #3B0070, #382A4B);

                        }

                    }

                    .g-right {
                        width: 90% !important;
                        height: auto;
                        /* background-color: #08CB00; */
                        display: flex;
                        align-items: start;
                        justify-content: start;
                        flex-direction: column;

                        h4 {
                            font-size: 1.1rem;
                            color: #222222;
                            font-weight: 550;
                            margin-bottom: 6px;
                        }

                        small {
                            font-size: 1rem;
                            font-weight: 400;
                            color: #777;
                        }
                    }
                }

            }

            .resp-time {
                width: 100%;
                height: auto;
                padding: 30px 20px;
                display: flex;
                align-items: start;
                justify-content: start;
                gap: 20px;
                background: #fff;
                border: none;
                box-shadow: 3px 3px 30px #18181810;
                border-radius: 15px;
                flex-direction: column;

                h3 {
                    font-size: 1.2rem;
                    color: #222222;

                    i {
                        font-weight: 500;
                        color: #3B0070;
                    }
                }

                >p {
                    color: #363545;
                    font-size: 1rem;
                }

                small {
                    font-size: 14px;
                    color: #08CB00;
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .formSection {
        padding: 0 10px;
        margin: 0;

        .formContainer {
            padding: 0px;
            margin: 40px 0;
            flex-wrap: wrap;

            .Mainform-left,
            .whychoose-right {
                width: 100%;
                height: auto;
                /* padding: 0; */
            }

            .Mainform-left {
                padding: 25px;
            }
            .whychoose-right{
                padding: 0;
            }
        }
    }
}

/* details and form */