.section {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.wrap {
    padding-top: 0;
}

/* Main image section styling starts here */
.section_main_img {
    width: 100%;
    height: 100vh;
    /* background: url(../img/landing_main_img.jpg) center / cover no-repeat; */
    /* background: url(../img/pexels-cristian-rojas-8853500.jpg) top / cover no-repeat; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_main_img {
    background: url(../img/screwing_bolt_to_panel.jpg) top / cover no-repeat;
}

.section_main_img_text {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0 0 10px rgba(3, 3, 3, 0.5));
    /* text-align: center; */
    /* text-shadow: 0 0 5px var(--black); */
}

.company_name {
    width: 600px;
}

.section_main_img h1 {
    font-size: 120px;
    font-weight: 800;
    line-height: 130px;
    color: #fff;
}

.section_main_img p {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    color: #fff;
}
/* Main image section styling ends here */

/* Section (that has images) styling starts here */
.section_with_img {
    width: 100%;
    padding: 120px 150px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.main_img_in_section {
    max-width: 500px;
    border-radius: 14px;
    box-shadow: 5px 5px 10px rgba(3, 3, 3, 0.2);
    overflow: hidden;
}

.section_with_img_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section_with_img_title {
    font-size: 70px;
}

.section_with_img_desc {
    font-size: 20px;
    line-height: 30px;
}

.contact_us_btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    transition-duration: 0.3s;
}

.contact_us_btn a {
    border-radius: 1000px;
    border: 2px solid var(--black);
    padding: 15px 30px;
    transition-duration: 0.3s;
    cursor: pointer;
}

.contact_us_btn a:hover {
    background-color: var(--white);
    border: 2px solid var(--darkBlue);
    color: var(--darkBlue);
}
/* Section (that has images) styling starts here */

/* About us background color */
.section_about_us {
    /* background-color: var(--lightBlue); */
    background: linear-gradient(var(--darkBlue), var(--lightBlue));
}

/* Email form section styling starts here */
.section_email_form {
    width: 100%;
    padding: 150px 50px;
    background: linear-gradient(var(--white), var(--lightBlue));
    display: flex;
    justify-content: center;
    gap: 50px;
}

.section_text {
    max-width: 500px;
    /* max-width: calc(90% - 500px); */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section_title {
    font-size: 60px;
}

.section_desc {
    max-width: 600px;
    font-size: 25px;
}

/* Email form styling starts here */
.email_form {
    max-width: 550px;
    padding: 50px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 0 15px rgba(30, 115, 182, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.form_contents_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_input_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    gap: 20px;
}

.form_input_element {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.form_input_element input {
    background-color: var(--white);
    padding: 15px;
    border: 0;
    /* border: 1px solid var(--darkBlue); */
    background-color: var(--lightBlue);
    /* box-shadow: inset 0 0 10px rgba(30, 115, 182, 0.2); */
    border-radius: 8px;
    font-size: 18px;
}

.form_termsOfService {
    width: 100% ;
    font-size: 14px;
    color: var(--darkGrey);
}

.form_termsOfService a {
    display: inline;
    color: var(--darkBlue);
    text-decoration: underline;
}

.form_submit_btn {
    padding: 15px 50px;
    background-color: var(--darkBlue);
    border: 0;
    border-radius: 1000px;
    color: var(--black);
    font-family: 'BR Sonoma', sans-serif;
    font-size: 18px;
    transition-duration: 0.3s;
    cursor: pointer;
}

.form_submit_btn:hover {
    background-color: var(--black);
    color: var(--white);
}
/* Email form styling starts here */
/* Email form section styling starts here */


/* Services section styling starts here */
.section_services {
    /* background-color: var(--grey); */
    background: linear-gradient(var(--white), var(--grey));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
}

.section_services_wrap {
    width: 100%;
    display: flex;
}

.section_services_service {
    width: 25%;
    border-right: 1px solid var(--darkGrey);
    padding: 20px 40px;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.section_services_service:hover .section_services_img_wrap {
    transform: rotate(10deg);
}

.section_services_service:last-child {
    border-right: 0;
}

.section_services_img_wrap {
    max-width: 60%;
    align-self: center;
    transition-duration: 0.3s;
}
/* Services section styling ends here */


/* Newsletter section styling starts here */
.newsletter_form {
    max-width: 500px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.newsletter_subscribe_checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#newsletter_confirm {
    appearance: none;
    width: 20px;
    height: 20px;
    margin: 0;
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 0;
    color: var(--black);
    display: grid;
    place-content: center;
}

#newsletter_confirm::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--darkBlue);
}

#newsletter_confirm:checked::before {
  transform: scale(1);
}

.contact_us_btn a,
.newlsetter_submit_btn {
    box-shadow: 0 0 10px rgba(3, 3, 3, 0.2);
}
/* Newsletter section styling ends here */

/* ========== Media query 1500 start here ========== */
@media screen and (max-width: 1500px) {
    .section_with_img  {
        padding: 120px 80px;
    }
}

/* ========== Media query 1024 start here ========== */
@media screen and (max-width: 1024px) {
    .section_with_img  {
        flex-direction: column;
    }

    .main_img_in_section {
        max-width: 100%;
        max-height: 500px;
    }

    .section_text {
        /* max-width: 80%; */
        max-width: 100%;
    }

    .section_email_form {
        padding: 120px 80px;
        flex-direction: column;
        align-items: center;
    }

    .section_with_img_title,
    .section_title {
        font-size: 50px;
    }

    .section_with_img_desc,
    .section_desc {
        font-size: 18px;
    }

    .section_services_service {
        font-size: 18px;
    }
}

/* ========== Media query 800 start here ========== */
@media screen and (max-width: 800px) {
    .section_main_img h1 {
        font-size: 100px;
        line-height: 110px;
    }

    .company_name {
        width: 400px;
    }

    .section_main_img p {
        /* font-size: 60px;
        line-height: 70px; */
        font-size: 40px;
        line-height: 50px;
    }

    .section_with_img_title,
    .section_title {
        font-size: 50px;
    }

    .section_with_img_desc,
    .section_desc {
        font-size: 18px;
    }

    .section_services_wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section_services_service {
        width: 45%;
        border: 0;
        /* border-top: 1px solid var(--darkGrey); */
    }

    .section_services_service:first-child {
        border-right: 1px solid var(--darkGrey);
    }

    .section_services_service:nth-child(2) {
        border-bottom: 1px solid var(--darkGrey);
    }

    .section_services_service:nth-child(3) {
        border-top: 1px solid var(--darkGrey);
    }

    .section_services_service:nth-child(4) {
        border-left: 1px solid var(--darkGrey);
    }
}

/* ========== Media query 750 start here ========== */
@media screen and (max-width: 750px) {
    .section_with_img,
    .section_email_form  {
        padding: 120px 60px;
    }

    .section_email_form {
        min-height: 100svh;
    }
}

/* ========== Media query 600 start here ========== */
@media screen and (max-width: 600px) {
    .section_main_img h1 {
        font-size: 80px;
        line-height: 95px;
    }

    .section_main_img p {
        font-size: 30px;
        line-height: 40px;
    }

    .section_with_img,
    .section_email_form  {
        padding: 100px 40px;
    }
}

/* ========== Media query 500 start here ========== */
@media screen and (max-width: 500px) {
    .section_main_img h1 {
        font-size: 60px;
        line-height: 95px;
    }

    .company_name {
        width: 300px;
    }

    .section_main_img p {
        font-size: 25px;
        line-height: 30px;
    }

    .section_text {
        max-width: 90%;
    }

    .section_with_img_title,
    .section_title {
        font-size: 50px;
    }

    .section_with_img_desc,
    .section_desc {
        font-size: 18px;
    }

    .section_email_form {
        padding: 100px 40px;
    }

    .email_form {
        padding: 40px 30px;
    }

    .section_services_service {
        padding: 20px 30px;
    }
}

/* ========== Media query 400 start here ========== */
@media screen and (max-width: 400px) {
    .company_name {
        width: 250px;
    }
    .section_with_img,
    .section_email_form  {
        padding: 100px 30px;
    }
}