@import url('https://fonts.googleapis.com/css2?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');

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

html, body{
    font-family: "Poppins", sans-serif;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: #222;
}

::-webkit-scrollbar{
    display: none;
}

/* contact section */
.callback_section {
    /* margin-top: 120px; */
    padding: 50px;
    /* background: linear-gradient(15deg, #050C9C 0%, #008DDA 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.callback_container {
    width: 100%;
    max-width: 1400px;
    background: linear-gradient(15deg, #050C9C 0%, #008DDA 100%);
    /* height: 30vh; */
    padding: 40px;
    border-radius: 15px;
    margin: 0 auto;
}

/* Form Heading */
.callback_container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.callback_container p {
    color: #fffffc;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Form Inputs */
#callbackForm {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

#callbackForm input, #callbackForm select {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    background-color: #fffffc;
    border: 1px solid #008DDA;
    color: #333;
}

/* Submit Button */
.submit_btn {
    background-color: #fff;
    color: #111;
    padding: 15px 30px;
    border: 1px solid #008DDA;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    /* transition: background-color 0.3s; */
}

/* contact section */

/* footer */
.footer{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer_container{
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer_child1{
    width: 35%;
    height: auto;
    padding: 25px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.footer_child1 h2{
    color: #111;
    font-weight: 600;
    font-size: 1.4rem;
}

.footer_child1 p{
    margin-top: 10px;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}

.footer_child1 h4{
    color: #111;
    font-size: 1.1rem;
    font-weight: 550;
}

.footer_child1 > a{
    font-weight: 400;
    color: #222;
    text-decoration: none;
    margin-top: 20px;
    transition: all .3s ease-in-out;
}

.footer_child1 > a:hover{
    transform: translateX(5px);
    color: #008DDA;
}

.socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.socials i{
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    background-color: #1230AE;
    padding: 10px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.socials i:hover  {
    transform: translateY(-5px);
}

#newsletterForm input {
    width: auto;
    height: 35px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #008DDA;
}

.newsletter_btn {
    background-color: #1230AE;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.newsletter_btn:hover {
    background-color: #050C9C;
}

/* footer */


/* responsive code */

@media only screen and (max-width: 767px) {
    .footer{
        width: 100%;
        height: auto;
        padding: 10px;
    }
   
    .footer_container{
        flex-wrap: wrap;
        width: 100%;
    }

    .footer_child1{
        width: 100%;
        height: auto;
    }

    .callback_section{
        width: 100%;
        height: auto;
        padding: 10px;
        margin-top: 30px;
    }

    .callback_container{
        width: 100%;
        height: auto;
    }

    .callback_container h2{
        font-size: 1.8rem;
        font-weight: 600;
    }

    #callbackForm{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

}
/* responsive code */

