/* -------------------------------------------------background color to the entire website------------------------------------------------------------- */

/* Apply background color to the entire website */
html,
body {
    /* Dark background color */


    background-color: white;
    color: #FEC536;
    /* Text color for better contrast */
    font-family: 'Poppins', sans-serif;
    /* Default font */
    margin: 0;
    /* Remove default margin */
    padding: 0;
    /* Remove default padding */
    height: 100%;
    /* Ensure the background color covers full height */
    box-sizing: border-box;
    /* Ensure padding and border are included in width and height */
}

/* --------------------------------------------------------- banner (Laptop mobile view)----------------------------------------------------------------------- */

/* Inquiry Banner Section */
.inquiry-banner {
    width: 100%;
    height: 500px;
    /* Adjust height as per your requirement */
    background-image: url('../../../images/newimage/career/inquirybg.webp');
    /* Set your background image */
    background-size: cover;
    background-position: center;
    position: relative;
}
/* 
.inquiry-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Overlay color, adjust opacity as needed */
    /* z-index: 1;
} */

.banner-content {
    /* position: absolute; */
    bottom: 10px;
    left: 20px;
    z-index: 2;
}

.banner-title {
    color: white;
    /* Title text color */
    font-size: 60px;
    /* Adjust title size */
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0px 0px 100px 35px;
}

/* Mobile View */
@media (max-width: 768px) {
    .inquiry-banner {
        height: 200px;
        /* Adjust height for mobile view */
    }

    .banner-title {
        font-size: 30px !important;
        /* position: absolute; */
        top: 50%;
        left: 50%;
        transform: translate(160%, -160%);
        margin: 0;
        text-align: center;
    }

}

@media (max-width: 2560px) {

    .banner-title {
        font-size: 55px !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(160%, -160%);
        margin: 0;
        text-align: center;
    }
}

/* --------------------------------------------------- US Info --------------------------------------------------------------- */


/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* US Info Section Styling */
.us-info {
    position: relative;
    background-image: url('../../../images/newimage/career/careerbg.webp');
    /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Ensures content stays within rounded corners */
    margin-top: 60px;
}

/* Create the transparent black overlay */
.us-info::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Added margin for top */
    left: 50px;
    /* Added margin for left */
    right: 50px;
    /* Added margin for right */
    bottom: 50px;
    /* Added margin for bottom */
    border-radius: 30px;
    /* Rounded corners for the overlay */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    /* Added shadow */
    background: rgba(0, 0, 0, 0.5);
    /* Transparent black background */
    z-index: 1;
    /* Ensure the overlay is below the text */
    box-sizing: border-box;
    /* Ensure the margin is inside the overlay */
}

/* Title and Subtitle */
.title-main {
    font-size: 36px;
    margin-top: 30px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    /* Ensure the text is above the overlay */
}

.subtitle-main {
    font-size: 24px;
    margin: 10px 0;
    font-weight: normal;
    position: relative;
    z-index: 2;
    /* Ensure the text is above the overlay */
}

/* Paragraph Styling */
.paragraph-1 {
    font-size: 18px;
    margin: 10px auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    /* Ensure the text is above the overlay */
}

.paragraph-2 {
    font-size: 18px;
    font-weight: 500;
    margin: 10px auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    /* Ensure the text is above the overlay */
}

/* Second Title and Paragraph */
.title-2 {
    font-size: 28px;
    margin-top: 40px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    /* Ensure the text is above the overlay */
}

/* Mobile Number and Email */
.contact-info-m {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px 0px 5px 0px;
    position: relative;
    z-index: 2;
    /* Ensure the text is above the overlay */
}

.contact-info-e {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 30px 0px;
    position: relative;
    z-index: 2;
    /* Ensure the text is above the overlay */
}

.contact-info-m img {
    width: 40px;
    height: auto;
}

.contact-info-e img {
    width: 40px;
    height: auto;
}

.contact-info-m,
.contact-info-e span {
    font-size: 18px;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .title-main {
        font-size: 28px;
    }

    .subtitle-main {
        font-size: 17px;
        margin: 10px 70px;
    }

    .title-2 {
        font-size: 24px;
    }

    .paragraph-1 {
        font-size: 17px;
        margin: 10px 70px;
    }

    .paragraph-2 {
        font-size: 17px;
        margin: 10px 70px;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-info img {
        margin-left: 0;
        margin-top: 10px;
    }

    .contact-info-m,
    .contact-info-e span {
        font-size: 15px;
    }
}

/* ------------------------------------ Job Positions ----------------------------------------------- */


/* Job Positions Section Styling */
.job-positions {
    padding: 100px 20px 50px 20px;
    text-align: center;
    /* background-color: #f4f4f4; */
}

.job-positions-header {
    margin-bottom: 30px;
}

.job-positions-title-container {
    text-align: center;
}

.job-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.job-image {
    width: 25px;
    /* Adjust the size of the image */
    height: auto;
    margin-right: 5px;
    border-radius: 50%;
}

.job-positions-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #1B8836;
    margin: 0px;
}

.job-positions-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C5730;
}

/* Styling for the job boxes */
.job-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

/* Styling for individual job boxes */
.job-box {
    background-color: #fff;
    padding: 20px;
    width: 320px;
    border-radius: 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on the job boxes */
.job-box:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.job-box h3 {
    font-size: 17px;
    height: 30px;
    margin: 10px 0px;
}

.job-box p {
    font-size: 16px;
    color: #3c3c3c;
}

.apply-btn {
    background-color: #1B8836;
    color: white;
    padding: 10px 20px;
    margin: 10px 0px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-5px);
    background-color: #2C5730;
}



/* Media Queries for Laptop */
@media (max-width: 1440px) and (min-width: 1024px) {

    .job-box {
        width: 290px;
    }

    .job-box h3 {
        font-size: 15px;
    }
    .banner-title {
        color: white;
        font-size: 60px !important;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        margin: 0px 0px 100px 35px !important;
    }

}


/* Media Queries for Mobile */
@media (max-width: 768px) {

    .job-positions {
        padding: 70px 20px 30px 20px;
    }

    .job-positions-header {
        flex-direction: column;
        align-items: center;
    }

    .job-image {
        margin-bottom: 20px;
    }

    .job-positions-title-container {
        text-align: center;
    }

    .job-boxes {
        flex-direction: column;
        align-items: center;
    }

    .job-box {
        width: 100%;
        /* Make the boxes full-width in smaller screens */
        margin-bottom: 20px;
    }

    .job-positions-title {
        font-size: 28px;
    }

    .job-box h3 {
        font-size: 22px;
        height: 55px;
    }

    .job-box p {
        font-size: 14px;
    }

    .apply-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* ------------------------------------------------- our policy ----------------------------------------------------------- */


/* General styling for the Our Policy section */
.our-policy {
    padding: 50px 20px;
    text-align: center;
}

.our-policy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C5730;
}

.our-policy-subtitle {
    width: 55%;
    font-size: 22px;
    font-weight: 400;
    color: #1B8836;
    margin: 0px auto 50px;
}

/* Styling for the policy boxes */
.policy-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Styling for individual policy boxes */
.policy-box {
    background-color: #fff;
    padding: 20px;
    width: 270px;
    border-radius: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-box:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.policy-image {
    width: 115px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.policy-box-title {
    font-size: 18px;
    color: #333;
}


/* Media Queries for Laptop */
@media (max-width: 1440px) and (min-width: 1024px) {

    .policy-image {
        width: 90px;
    }

    .policy-box {
        width: 250px;
    }

}


/* Media Queries for Mobile */
@media (max-width: 768px) {

    .our-policy {
        padding: 0px 20px;
    }

    .policy-boxes {
        flex-direction: column;
        align-items: center;
    }

    .policy-box {
        width: 70%;
        /* Make the boxes full-width in smaller screens */
        margin-bottom: 20px;
    }

    .our-policy-title {
        font-size: 28px;
        margin: 0px 30px 20px;

    }

    .our-policy-subtitle {
        font-size: 20px;
        width: 100%;
    }

    .policy-box-title {
        font-size: 16px;
    }

    .policy-image {
        width: 155px;
    }

}