        .career-banner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(90deg, rgb(20, 40, 55), rgb(28, 50, 64), rgb(33, 80, 103));
            overflow: hidden;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: relative;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .career-banner::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width:100%;
            background: url('/img/inner_page_banners/career_image.webp') no-repeat center right;
            background-size: cover;
            mix-blend-mode: overlay;
            opacity: 0.8;
        }
        .career-content {
            padding: 3rem 2rem 3rem 3rem;
            max-width: 60%;
            position: relative;
            z-index: 1;
        }
        .career-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: rgb(245, 17, 82);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }     
        .career-description {
            font-size: 1.25rem;
            color: white;
            line-height: 1.5;
            margin-bottom: 2rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
      .career-cta {
            display: inline-block;
            background-color: rgb(245, 17, 82);
            color: white;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-size: 1rem;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        .career-cta:hover {
            background-color: #e67016;
        }
        @media (max-width: 768px) {
            .career-banner {
                flex-direction: column-reverse;
            }  
            .career-banner::after {
                width: 100%;
                height: 200px;
                position: relative;
                mix-blend-mode: normal;
                opacity: 1;
            }
            .career-content {
                max-width: 100%;
                padding: 2rem;
            } 
            .career-title {
                font-size: 1.8rem;
            }
        }
/* ------------------------------------------------------------------------------ */
        /* Scoped styles with specific class prefixes */
        .career-page {
            background-color: white;
            color: #333;
            line-height: 1.6;
            padding-bottom: 20px;
        }
        .career-main-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .career-page-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-size: 38px;
            font-weight: normal;
        }
        /* Job Cards Grid */
        .career-job-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        /* Job Card Styles */
       .career-job-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
    transition: transform 0.2s, box-shadow 0.2s;
}

        .career-job-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            font-weight: normal;
        }
        .career-job-location,
        .career-job-experience {
            color: #666;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .career-view-apply-btn {
            display: inline-block;
            margin-top: 15px;
            color: #2196f3;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: color 0.3s;
        }
        .career-view-apply-btn:hover {
            color: #0d8bf0;
        }
        /* Modal Styles */
        .career-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        .career-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .career-modal-container {
            background-color: white;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 5px;
            position: relative;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        .career-modal-overlay.active .career-modal-container {
            transform: translateY(0);
        }
        .career-modal-title {
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2196f3;
            color: #333;
            font-weight: normal;
        }
        .career-modal-description {
            margin-bottom: 30px;
            color: #555;
            line-height: 1.6;
        }
        .career-section-title {
            font-size: 18px;
            margin-bottom: 15px;
            margin-top: 30px;
            color: #333;
        }
        .career-requirements-list,
        .career-responsibilities-list {
            list-style-type: none;
            margin-bottom: 20px;
        }
        .career-requirements-list li,
        .career-responsibilities-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
            line-height: 1.5;
        }
        .career-requirements-list li::before,
        .career-responsibilities-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #2196f3;
        }
        .career-qualification-item {
            margin-bottom: 10px;
            color: #555;
        }
        .career-qualification-label {
            font-weight: bold;
            color: #333;
        }
        .career-apply-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .career-apply-text {
            margin-bottom: 15px;
            color: #555;
        }
        .career-email-link {
            color: #2196f3;
            text-decoration: none;
            font-weight: bold;
        }
        .career-email-link:hover {
            text-decoration: underline;
        }
        .career-close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #e0f3ff;
            color: #2196f3;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            border: none;
            transition: background-color 0.3s;
        }
        .career-close-modal:hover {
            background-color: #cbe7fd;
        }
        /* Extra small devices (phones, 600px and down) */
        @media only screen and (max-width: 600px) {
            .career-job-cards-container {
                grid-template-columns: 1fr;
            }
            .career-page-title {
                font-size: 28px;
                margin-bottom: 30px;
            }
            .career-job-card {
                padding: 20px;
            }
            .career-modal-container {
                width: 95%;
                padding: 15px;
            }
            .career-modal-title {
                font-size: 20px;
            }
            .career-section-title {
                font-size: 16px;
            }
        }
        /* Small devices (portrait tablets and large phones, 600px and up) */
        @media only screen and (min-width: 600px) {
            .career-job-cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* Medium devices (landscape tablets, 768px and up) */
        @media only screen and (min-width: 768px) {
            .career-job-cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .career-modal-container {
                width: 90%;
                padding: 20px;
            }
        }
        /* Large devices (laptops/desktops, 992px and up) */
        @media only screen and (min-width: 992px) {
            .career-job-cards-container {
                grid-template-columns: repeat(3, 1fr);
            }
            .career-main-container {
                padding: 0 30px;
            }
        }
        /* Extra large devices (large laptops and desktops, 1200px and up) */
        @media only screen and (min-width: 1200px) {
            .career-main-container {
                max-width: 1200px;
            }
            .career-modal-container {
                max-width: 800px;
            }
        }
        /* Specific breakpoint for when to adjust modal size */
        @media only screen and (max-width: 768px) {
            .career-modal-container {
                width: 80%;
                max-height: 85vh;
            }
            .career-modal-title {
                font-size: 22px;
            }
        }
        /* Landscape phones and smaller tablets */
        @media only screen and (max-width: 480px) and (orientation: landscape) {
            .career-job-cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .career-modal-container {
                max-height: 80vh;
            }
        }
        /* Very small phones */
        @media only screen and (max-width: 400px) {
            .career-page-title {
                font-size: 24px;
            }
            .career-job-title {
                font-size: 16px;
            }
            .career-job-location,
            .career-job-experience {
                font-size: 13px;
            }
        }
        /* Tall mobile devices (common in newer phones) */
        @media only screen and (min-height: 700px) and (max-width: 600px) {
            .career-main-container {
                margin: 20px auto;
            }
            .career-job-card {
                padding: 25px 20px;
            }
        }
        /* Short mobile devices */
        @media only screen and (max-height: 600px) {
            .career-modal-container {
                max-height: 80vh;
            }
        }
        /* Foldable devices and dual-screen */
        @media (spanning: single-fold-vertical) {
            .career-main-container {
                max-width: calc(100vw - env(fold-left) - env(fold-width));
            }
        }
        /* Print styles */
        @media print {
            .career-job-cards-container {
                grid-template-columns: 1fr;
            }
            .career-job-card {
                break-inside: avoid;
                page-break-inside: avoid;
            }
        }
        #careers{
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }