/*basically this page contain css of home page which we can use in other page as well */
* {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    letter-spacing: normal;
}
/*start of hero section css*/
.pm-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 🔥 Full background image */
.pm-hero-bg {
    margin: 1%;
    border-radius: 10px;
    position: absolute;
    inset: 0;
    background-image: url("../images/group_of_people_two.png");
    background-size: cover;        /* key line */
    background-position: center;   /* center crop */
    background-repeat: no-repeat;
}

/* Dark gradient overlay */
.pm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 722px;
    padding: 40px 6vw;          /* responsive horizontal spacing */
    margin-left: 3.5vw;          /* keeps content pushed from left */
    color: #fff;
    font-family: Inter, sans-serif;
}

.pm-hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Inter';
    font-weight: 400;
}

.pm-hero-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pm-hero-btn {
    width: 18%;
    padding: 8px 16px;
    font-size: 14px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Tablet */
@media (max-width: 1024px) {
    .pm-hero-content {
        max-width: 720px;
        padding: 30px 5vw;
        margin-left: 5vw;
    }
}
@media (max-width: 768px) {
    .pm-hero {
        min-height: 420px;
    }

    .pm-hero-content {
        max-width: 100%;
        padding: 24px 20px;
        margin-left: 0;
    }

    .pm-hero-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .pm-hero-content {
        padding: 20px 16px;
    }
    .pm-hero-content h1 {
        font-size: 22px;
    }
}
/*end of hero section css*/

/*start of section two css*/
.pm-section-two {
    padding: 60px 20px;
    font-family: Inter, sans-serif;
}

.pm-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 426px 1fr;
    gap: 30px;
}

/* LEFT SIDE */
.pm-left {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.pm-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            rgba(115, 115, 115, 0)
    );
}

.pm-left-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

.pm-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: Inter;
    word-wrap: break-word
}

.pm-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
}

.pm-logo {
    width: 25%;
}

/* RIGHT SIDE */
.pm-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pm-box {
    background: #f6f6f6;
    border-radius: 10px;
    padding: 25px;
}

.pm-heading {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
}

.pm-text {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    font-weight: 300;
}

.pm-small-heading {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 300;
    color: #000;
}

.pm-list {
    padding-left: 18px;
    font-weight: 300;
    color: #000;
}

.pm-list li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pm-container {
        grid-template-columns: 1fr;
    }

    .pm-left {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .pm-heading {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .pm-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .pm-left-content {
        left: 6%;
    }
    .pm-section-two {
        padding: 15px 5px;
    }
    .pm-box {
        padding: 15px;
    }
    .pm-logo {
        width: 22%;
        padding: 0px 0px;
    }
}
/*end of section two css*/

/*start of section three css*/
.pm-section-three {
    padding: 0px 20px 60px 20px;
    font-family: Inter, sans-serif;
}

.pm-section-three__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pm-section-three__title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}

.pm-section-three__subtitle {
    font-size: 14px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Grid */
.pm-section-three__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Cards */
.pm-section-three__card {
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 24px;
    text-align: left;
}

.pm-section-three__card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}

.pm-section-three__card ul {
    padding-left: 18px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 768px) {
    .pm-section-three__card {
        padding: 15px;
    }
    .pm-section-three__subtitle {
        text-align: left;
        margin: 0 auto 30px;
    }
    .pm-section-three__title {
        font-size: 25px;
        text-align: left;
    }

    .pm-section-three__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .pm-section-three {
        padding: 25px 15px;
    }

    .pm-section-three__title {
        font-size: 25px;
        text-align: left;
    }

    .pm-section-three__card h3 {
        font-size: 18px;
    }
}
/*end of section three css*/

/*start of section four css*/
.pm-section-four {
    padding: 0px 20px 60px 20px;
    font-family: Inter, sans-serif;
}

.pm-section-four__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* Left image */
.pm-section-four__image {
    flex: 1;
    background: #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
}

.pm-section-four__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right content */
.pm-section-four__content {
    flex: 1.4;
    background: #f6f6f6;
    border-radius: 10px;
    padding: 30px;
}

.pm-section-four__title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 8px;
}

.pm-section-four__subtitle {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Lists */
.pm-section-four__lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pm-section-four__lists ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
}

.pm-section-four__lists li::before {
    content: "• ";
}

/* Tablet */
@media (max-width: 900px) {
    .pm-section-four__container {
        flex-direction: column;
        gap: 20px;
    }

    .pm-section-four__title {
        font-size: 32px;
    }

    .pm-section-four__lists {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .pm-section-four {
        padding: 20px 10px 0px 10px;
    }

    .pm-section-four__title {
        font-size: 25px;
    }

    .pm-section-four__content {
        padding: 15px;
    }
    .pm-section-four__lists {
        gap: 0px;
    }
}
/*end of section four css*/

/*start of section five */
.pm-section-five {
    padding: 0px 20px 60px 20px;
    font-family: Inter, sans-serif;
}

.pm-section-five__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    overflow: hidden;
    padding: 0.8px;
}

/* Left Content */
.pm-section-five__content {
    flex: 1;
    padding: 40px;
}

/* Right Image */
.pm-section-five__image {
    flex: 1;
}

.pm-section-five__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Typography */
.pm-section-five__title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
}

.pm-section-five__subtitle {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
}

.pm-section-five__list {
    font-size: 13px;
    font-weight: 300;
    line-height: 25px;
    padding-left: 18px;
    margin-bottom: 15px;
}

.pm-section-five__note {
    font-size: 12px;
    font-weight: 300;
}

/* Tablet */
@media (max-width: 900px) {
    .pm-section-five__container {
        flex-direction: column;
    }

    .pm-section-five__title {
        font-size: 30px;
    }

    .pm-section-five__image img {
        height: auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .pm-section-five {
        padding: 40px 15px;
    }

    .pm-section-five__content {
        padding: 15px;
    }

    .pm-section-five__title {
        font-size: 22px;
    }
}

/*end of section five */

/*start of section six css*/
.pm-section-six {
    padding: 0px 20px 60px 20px;
    font-family: 'Inter', sans-serif;
}

.pm-section-six .container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 14px;
    font-weight: 300;
}

/* Grid Layout */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Box styling */
.industry-box {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: 300;
}

/* Optional: center last two boxes if grid has extra space */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 25px;
    }
    .pm-section-four__lists {
        gap: 0px;
    }
    .pm-section-four__subtitle {
        margin-bottom: 10px;
    }
    .section-header h2 {
        font-size: 25px;
    }
    .pm-section-six {
        padding: 0px 10px 0px 10px;
    }
    .industries-grid {
        justify-items: center; /* centers all boxes on small screens */
    }

    .industry-box {
        width: 90%; /* optional, makes boxes fill most of the screen on mobile */
    }
}
/*end of section six css*/

/*start of section seven css*/
.pm-section-seven {
    padding: 0px 20px 60px 20px;
    font-family: Inter, sans-serif;
}

.pm-section-seven__container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: stretch;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
}

/* LEFT IMAGE */
.pm-section-seven__image {
    flex: 1;
}

.pm-section-seven__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* RIGHT CONTENT */
.pm-section-seven__content {
    flex: 2;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
}

.pm-section-seven__title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}

.pm-section-seven__subtitle {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* ROLE LIST */
.pm-section-seven__roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pm-section-seven__col span {
    display: block;
    font-size: 13px;
    font-weight: 300;
    padding: 12px 0;
    border-bottom: 0.2px solid #000;
}

.pm-section-seven__col span:last-child {
    border-bottom: none;
}

/* --------------------
   RESPONSIVE STYLES
--------------------- */

/* Tablets */
@media (max-width: 992px) {
    .pm-section-seven__container {
        gap: 0px;
    }

    .pm-section-seven__title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pm-section-seven__container {
        flex-direction: column;
        border-radius: 10px;
    }

    .pm-section-seven__image {
        width: 100%;
        height: auto;
    }

    .pm-section-seven__image img {
        height: auto;
        max-height: 280px;
    }

    .pm-section-seven__content {
        padding: 15px;
    }

    .pm-section-seven__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .pm-section-seven__subtitle {
        font-size: 13px;
    }

    .pm-section-seven__roles {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pm-section-seven {
        padding: 40px 10px;
    }

    .pm-section-seven__title {
        font-size: 22px;
    }

    .pm-section-seven__col span {
        font-size: 13px;
        padding: 10px 0;
    }
}
/*end of section seven css*/

/*start of section eight css*/
.pm-section-eight {
    padding: 0px 20px 30px 20px;
    font-family: Inter, sans-serif;
}

.pm-section-eight__container {
    max-width: 1180px;
    margin: auto;
    background: white;
    border-radius: 10px;
    padding: 0px 30px 0px 30px;
}

/* Heading */
.pm-section-eight__title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 8px;
}

.pm-section-eight__subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Items row */
.pm-section-eight__items {
    display: flex;
    background: #F6F6F6;
    border-radius: 10px;
    padding: 20px 20px;
}

.pm-section-eight__item {
    background: #F6F6F6;
    flex: 1; /* IMPORTANT: equal width, no percentages */
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

/* Remove divider from last item */
.pm-section-eight__item:last-child {
    border-right: none;
}

.pm-section-eight__item img {
    margin-bottom: 15px;
}

.pm-section-eight__item p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
}

/* Vertical divider */
.pm-section-eight__divider {
    width: 1px;
    background-color: #000;
    opacity: 0.2;
    flex-shrink: 0;
    align-self: stretch;
}

/* Tablet */
@media (max-width: 992px) {
    .pm-section-eight__items {
        gap: 20px;
    }

    .pm-section-eight__item {
        width: 100%;
        border-right: none;
        padding: 15px 15px;
    }

    .pm-section-eight__divider {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pm-section-eight {
        padding: 0px 10px 20px 10px;
    }
    .pm-section-eight__container {
        padding: 0px 10px 0px 10px;
    }
    .pm-section-eight__items {
        flex-direction: column;
        gap: 10px;
    }

    .pm-section-eight__title {
        font-size: 25px;
    }

    .pm-section-eight__subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .pm-section-eight__item p {
        font-size: 13px;
    }
}

/*end of section eight css*/

/*start of section nine css*/
.mandatory-mark{
    color: red;
}
.pm-section-nine {
    width: 100%;
    padding: 0px 20px 60px 20px;
    color: black !important;
}

.pm-section-nine__container {
    max-width: 1120px;
    margin: 0 auto;
}

.pm-section-nine__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.pm-section-nine__header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    text-align: left;
}

.pm-section-nine__icon {
    width: 32px;
    height: 32px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pm-section-nine__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
            max-height 0.45s ease,
            opacity 0.35s ease,
            transform 0.35s ease;
}

.pm-section-nine__content p {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    padding-bottom: 24px;
    max-width: 700px;
}

/* Active (opened) */
.pm-section-nine__item.active .pm-section-nine__content {
    max-height: 400px; /* enough for content */
    opacity: 1;
    transform: translateY(0);
}

/* Smooth icon animation */
.pm-section-nine__icon {
    transition: transform 0.3s ease;
}

.pm-section-nine__item.active .pm-section-nine__icon {
    transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 768px) {
    .pm-section-nine__icon {
        width: 32px;
        height: 32px;
    }
    .pm-section-nine {
        padding: 0px 20px 40px 20px;
    }
    .pm-section-nine__header {
        font-size: 18px;
        padding: 18px 0;
    }

    .pm-section-nine__content p {
        font-size: 12px;
    }
}
/*end of section nine css*/

/*start of section 10 css*/
/* =========================
   APPLY SECTION
========================= */

.pm-section-apply {
    padding: 60px 20px;
    font-family: Inter, sans-serif;
    background: #f6f6f6;
}

.pm-section-apply__container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
}

.pm-section-apply__title {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

.pm-section-apply__subtitle {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}

/* Form Grid */
.pm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pm-form-group {
    display: flex;
    flex-direction: column;
}

.pm-form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 400;
}

.pm-form-group input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: Inter, sans-serif;
}

.pm-form-group input:focus {
    outline: none;
    border-color: #000;
}

/* Submit */
.pm-form-submit {
    margin-top: 30px;
    text-align: center;
}

.pm-form-submit button {
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.pm-form-submit button:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .pm-section-apply__title {
        font-size: 25px;
    }

    .pm-section-apply__container {
        padding: 20px;
    }

    .pm-form-grid {
        grid-template-columns: 1fr;
    }
}
/*end of section 10 css*/
