/* banner start */
.tj-breadcrumb-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 0 120px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.tj-breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 124 234 / .5);
    z-index: -2
}

.tj-breadcrumb-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(1 15 52 / .3);
    z-index: -1
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tj-breadcrumb-area {
        padding: 200px 0 100px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

@media (max-width:575px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

.tj-breadcrumb-bg-shape {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(4%, -30%);
    -ms-transform: translate(4%, -30%);
    transform: translate(4%, -30%);
    z-index: -1
}

.tj-breadcrumb-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    margin-bottom: 12px;
    font-size: var(--tj-fs-h2);
}

.tj-breadcrumb-body {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    font-size: 18px;
    color: var(--tj-color-common-white);
    margin-bottom: 0
}

.tj-breadcrumb-body .spacing {
    margin: 0 10px 0
}
/* ===== Breadcrumb Area ===== */
/* banner  closed */
.jobs-section {
    padding: 70px 15px;
    background: #f9fafc;
    font-family: Arial, sans-serif;
}

.jobs-container {
    max-width: 1200px;
    margin: auto;
}

/* Titles */
.jobs-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 25px;
    color: #0c1b36;
}

.jobs-subtitle {
    font-size: 26px;
    text-align: center;
    margin: 40px 0 15px;
    color: #12306b;
}

/* Text */
.jobs-text {
    font-size: 15.8px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
}

/* Card Grid */
.jobs-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
}

/* Cards */
.jobs-card,
.jobs-step {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    text-align: center;
}

/* Icons */
.jobs-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Steps */
.jobs-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .jobs-card-grid,
    .jobs-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* FORCE SMALL CARD HEADINGS */
.jobs-card h3,
.jobs-step h3 {
    font-size: 17px !important;   /* Desktop */
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
}

/* Tablet */
@media (max-width: 992px) {
    .jobs-card h3,
    .jobs-step h3 {
        font-size: 16px !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .jobs-card h3,
    .jobs-step h3 {
        font-size: 15px !important;
    }
}

@media (max-width: 600px) {
    .jobs-title {
        font-size: 28px;
    }

    .jobs-subtitle {
        font-size: 22px;
    }

    .jobs-card-grid,
    .jobs-steps {
        grid-template-columns: 1fr;
    }
}
      .faq-section {
                background: #dcf0ff;
            }

            .faq-header {
                max-width: 900px;
                margin: 0 auto 40px;
                text-align: center;
            }

            .faq-header h2 {
                font-size: 34px;
                font-weight: 700;
                margin-bottom: 12px;
            }

            .faq-header p {
                font-size: 16px;
                color: #555;
                line-height: 1.7;
            }

            /* Accordion */
            .faq-accordion {
                max-width: 900px;
                margin: 0 auto;
            }

            .faq-item {
                background: #fff;
                border-radius: 14px;
                margin-bottom: 16px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }

            .faq-question {
                width: 100%;
                padding: 20px 24px;
                background: none;
                border: none;
                text-align: left;
                font-size: 17px;
                font-weight: 600;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .faq-icon {
                font-size: 22px;
                transition: transform .3s ease;
            }

            /* Answer */
            .faq-answer {
                max-height: 0;
                overflow: hidden;
                transition: max-height .35s ease;
            }

            .faq-answer p {
                padding: 0 24px 22px;
                color: #555;
                line-height: 1.7;
                font-size: 15px;
            }

            /* Active */
            .faq-item.active .faq-answer {
                max-height: 400px;
            }

            .faq-item.active .faq-icon {
                transform: rotate(45deg);
            }

            /* Responsive */
            @media (max-width: 575px) {
                .faq-header h2 {
                    font-size: 26px;
                }

                .faq-question {
                    font-size: 15px;
                }
            }

            .faq-item {
                cursor: pointer;
            }
/* ===== CAREERS SECTION ===== */
.careers-section {
    padding: 70px 15px;
    background: #f9fafc;
    font-family: Arial, sans-serif;
}

.careers-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Title */
.careers-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #0c1b36;
}

/* Intro text */
.careers-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 18px;
}

/* Cards grid */
.careers-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Card */
.careers-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    height: 100%;
}

/* Card title */
.careers-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #12306b;
    text-align: center;
}

/* Card text */
.careers-card-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .careers-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .careers-title {
        font-size: 28px;
    }

    .careers-card-wrapper {
        grid-template-columns: 1fr;
    }

    .careers-card {
        padding: 22px;
    }

    .careers-card-text {
        font-size: 15px;
    }
}
