@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Satisfy&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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');

.contactimgdivmain {
    width: 100%;
    position: relative;
}

.contactimgdivinner {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: url(./Assets/7.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* ensures overlay stays within bounds */
}

.contactimgdivinner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
    z-index: 1;
}

/* Ensure content inside is above the overlay */
.contactimgdivinner>* {
    position: relative;
    z-index: 2;
    color: white;
    /* Optional: makes text visible on dark overlay */
}

.contactimgdivinner img {
    width: 100%;
    height: 100%;
}


.contactheadinner {
    width: 80%;
    margin: auto;
    padding-top: 150px;
}

.contactheadinner h2 {
    color: white;
    font-size: 60px;
    font-family: "Satisfy", cursive;
}

.contactheadinner p {
    color: white;
    font-size: 20px;
       font-family: "Poppins", sans-serif;
}


.contactmainsectioninner {
    display: flex;
    padding: 100px 0px;
}

.contactmainsectionleft {
    width: 50%;
    /* border: 2px solid red; */
}

.contactmainsectionleft img {
    width: 100%;
    height: 100%;
}

.contactmainsectionright {
    width: 50%;
    /* border: 2px solid green; */
}

.contactmainsectionright h2 {
    margin-bottom: 30px;
    font-size: 40px;
       font-family: "Poppins", sans-serif;
}


.contactbtn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 20px 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #66ff66;
    color: ghostwhite;
}

.contactbtn span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.contactbtn:hover span {
    color: black;
}

.contactbtn::before,
.contactbtn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contactbtn::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.contactbtn:hover::before {
    transform: translate3d(100%, 0, 0);
}

.form-control {
    width: 70% !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.form-control:focus {
    background-color: black;
    border-color: black !important;
    outline: 0;
    box-shadow: none !important;
}



/* connect us start */

.connectusmaindiv {
    width: 100%;
    height: 60vh;
    background-image: url(./Assets/s6.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* ensures overlay stays inside */
}

.connectusmaindiv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* black with 50% opacity */
    z-index: 1;
}

/* Ensure content stays above the overlay */
.connectusmaindivinner {
    position: relative;
    z-index: 2;
    color: white;
    /* Optional: to contrast with dark overlay */
    text-align: center;
}

.connectusmaindivinner h3 {
    color: white;
    font-family: "Satisfy", cursive;
    font-size: 50px;
}

.connectusmaindivinner p {
    font-size: 25px;
    color: white;
       font-family: "Poppins", sans-serif;
}

/* connect us end */

.contactmapiframe {
    width: 100%;
    height: 60vh;
}


@media(max-width:600px) {
    .contactheadinner h2 {
        color: white;
        font-size: 30px;
    }

    .contactheadinner p {
        color: white;
        font-size: 16px;
    }

    .contactmainsectioninner {
        display: flex;
        flex-direction: column;
        padding: 60px 0px;
    }

    .contactmainsectionleft {
        width: 100%;
    }

    .contactmainsectionright {
        width: 90%;
        margin: auto;
    }

    .contactmainsectionright h2 {
        margin-bottom: 30px;
        margin-top: 30px;
        font-size: 30px;
        text-align: center;
    }

    .form-control {
        width: 100% !important;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .contactbtn {
        outline: none;
        cursor: pointer;
        border: none;
        padding: 7px 30px;
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        position: relative;
        display: inline-block;
        letter-spacing: 0.05rem;
        font-weight: 700;
        font-size: 12px;
        border-radius: 500px;
        overflow: hidden;
        background: #66ff66;
        color: ghostwhite;
        display: block;
        margin: auto;
        margin-top: 30px;
    }
    /* connect us  */

    .connectusmaindivinner h3 {
        color: white;
        font-size: 25px;
    }

    .connectusmaindivinner p {
        font-size: 18px;
        color: white;
    }

    /* connect us  */
}

@media(min-width:1800px) {
    .contactheadinner h2 {
        color: white;
        font-size: 75px;
    }

    .contactheadinner p {
        color: white;
        font-size: 25px;
    }
}