        /*
         * COLOUR SYSTEM — 3 base colours only
         * --dark  : #002935
         * --blue  : #1a6ef5
         * --white : #ffffff
         * All other values are opacity variants of these three.
         */
        :root {
            --dark:       #002935;
            --dark-80:    rgba(0,41,53,0.80);
            --dark-60:    rgba(0,41,53,0.60);
            --dark-40:    rgba(0,41,53,0.40);
            --dark-12:    rgba(0,41,53,0.12);
            --dark-06:    rgba(0,41,53,0.06);
            --blue:       #1a6ef5;
            --blue-dark:  #1256c4;
            --blue-20:    rgba(26,110,245,0.20);
            --blue-10:    rgba(26,110,245,0.10);
            --white:      #ffffff;
            --white-80:   rgba(255,255,255,0.80);
            --white-60:   rgba(255,255,255,0.60);
            --white-20:   rgba(255,255,255,0.20);
            --white-12:   rgba(255,255,255,0.12);
            --white-08:   rgba(255,255,255,0.08);
            --radius-sm:  8px;
            --radius-md:  14px;
            --radius-lg:  22px;
            --shadow-sm:  0 1px 6px rgba(0,41,53,0.08);
            --shadow-md:  0 4px 24px rgba(0,41,53,0.12);
            --shadow-lg:  0 12px 48px rgba(0,41,53,0.18);
        }

        /* ===== Hero ===== */
        .jobs-hero {
            background-image: url(assets/img/bg/banner.jpg);
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 100px 0 80px;
            overflow: hidden;
        }
        .jobs-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,41,53,0.92) 0%, rgba(26,110,245,0.78) 100%);
        }
        .jobs-hero .blshape { position: absolute; bottom: 0; left: 0; }
        .jobs-hero .brshape { position: absolute; bottom: 0; right: 0; }
        .hero-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px 20px 20px;
        }
        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white-12);
            border: 1px solid var(--white-20);
            color: var(--white);
            font-size: 13px;
            font-weight: 500;
            padding: 6px 18px;
            border-radius: 999px;
            margin-bottom: 24px;
            backdrop-filter: blur(6px);
        }
        .jobs-hero h1 {
            color: var(--white);
            font-size: clamp(28px, 5vw, 54px);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .hero-sub {
            color: var(--white-80);
            font-size: clamp(15px, 2vw, 18px);
            max-width: 600px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-btns a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        .btn-primary-hero {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 6px 24px var(--blue-20);
        }
        .btn-primary-hero:hover {
            background: var(--blue-dark);
            color: var(--white);
            transform: translateY(-2px);
        }
        .btn-outline-hero {
            background: var(--white-12);
            color: var(--white);
            border: 1.5px solid var(--white-20);
            backdrop-filter: blur(6px);
        }
        .btn-outline-hero:hover {
            background: var(--white-20);
            color: var(--white);
            transform: translateY(-2px);
        }
        .breadcrumb-bar {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-top: 32px;
            color: var(--white-60);
            font-size: 14px;
        }
        .breadcrumb-bar a { color: var(--white-80); text-decoration: none; }
        .breadcrumb-bar a:hover { color: var(--white); }

        /* ===== Shared Section Utilities ===== */
        .section-pad    { padding: 80px 0; }
        .section-pad-sm { padding: 60px 0; }
        .section-tag {
            display: inline-block;
            background: var(--blue-10);
            color: var(--blue);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 16px;
            border-radius: 999px;
            margin-bottom: 14px;
        }
        .section-tag-light {
            background: var(--white-20);
            color: var(--white);
        }
        .section-title {
            font-size: clamp(22px, 3.5vw, 36px);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.25;
            margin-bottom: 14px;
        }
        .section-title-light { color: var(--white); }
        .section-desc {
            color: var(--dark-60);
            font-size: 16px;
            line-height: 1.75;
            max-width: 620px;
        }
        .section-desc-light { color: var(--white-60); }

        /* ===== Intro — white bg ===== */
        .intro-section { background: var(--white); }
        .intro-content p {
            color: var(--dark-80);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .intro-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 36px;
        }
        .intro-stat { text-align: center; flex: 1; min-width: 100px; }
        .stat-num {
            font-size: 32px;
            font-weight: 700;
            color: var(--blue);
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-lbl { font-size: 13px; color: var(--dark-60); font-weight: 500; }
        .intro-visual {
            background: var(--dark);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-lg);
        }
        .visual-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            background: var(--blue-20);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
        .visual-icon-wrap i { font-size: 26px; color: var(--blue); }
        .intro-visual h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
        .intro-visual p  { color: var(--white-60); font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
        .mini-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 999px;
            background: var(--white-12);
            color: var(--white-80);
            border: 1px solid var(--white-20);
        }
        .mini-badge i { color: var(--blue); }

        /* ===== Categories — very soft dark bg ===== */
        .categories-section { background: var(--dark-06); }
        .cat-card {
            background: var(--white);
            border: 1px solid var(--dark-12);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            transition: all 0.28s ease;
            cursor: pointer;
            height: 100%;
        }
        .cat-card:hover {
            border-color: var(--blue);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .cat-card:hover .cat-icon-wrap { background: var(--blue); }
        .cat-card:hover .cat-icon-wrap i { color: var(--white); }
        .cat-icon-wrap {
            width: 54px;
            height: 54px;
            border-radius: var(--radius-sm);
            background: var(--blue-10);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.28s ease;
        }
        .cat-icon-wrap i { font-size: 22px; color: var(--blue); transition: all 0.28s ease; }
        .cat-card h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
        .cat-count { font-size: 12px; color: var(--dark-60); }

        /* ===== Featured Jobs — white bg ===== */
        .jobs-section { background: var(--white); }
        .job-card {
            background: var(--white);
            border: 1px solid var(--dark-12);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: all 0.28s ease;
            height: 100%;
        }
        .job-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--blue);
            transform: translateY(-3px);
        }
        .job-card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 16px;
        }
        .job-logo {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: var(--blue-10);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .job-logo i { font-size: 22px; color: var(--blue); }
        .job-badge {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            background: var(--blue-10);
            color: var(--blue);
        }
        .job-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
        .job-company { font-size: 13px; color: var(--dark-60); margin-bottom: 14px; }
        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }
        .job-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: var(--dark-60);
        }
        .job-meta span i { font-size: 14px; color: var(--blue); }
        .job-apply-btn {
            display: block;
            width: 100%;
            padding: 10px;
            border-radius: var(--radius-sm);
            background: var(--blue-10);
            color: var(--blue);
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border: none;
            transition: all 0.22s ease;
        }
        .job-apply-btn:hover { background: var(--blue); color: var(--white); }
        .job-card-empty {
            border-style: dashed;
            border-color: var(--dark-12);
            min-height: 220px;
        }
        .job-card-empty .empty-icon { font-size: 40px; color: var(--dark-40); margin-bottom: 14px; display: block; }
        .job-card-empty h5 { color: var(--dark); margin-bottom: 8px; }
        .job-card-empty p  { font-size: 13px; color: var(--dark-60); margin-bottom: 18px; }

        /* ===== Why Choose — dark bg ===== */
        .why-section { background: var(--dark); }
        .why-card {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 24px;
            border: 1px solid var(--white-12);
            border-radius: var(--radius-md);
            transition: all 0.25s ease;
            height: 100%;
        }
        .why-card:hover {
            border-color: var(--blue);
            background: var(--white-08);
        }
        .why-icon {
            width: 46px;
            height: 46px;
            border-radius: var(--radius-sm);
            background: var(--blue-20);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .why-icon i { font-size: 20px; color: var(--blue); }
        .why-text h5 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
        .why-text p  { font-size: 14px; color: var(--white-60); line-height: 1.65; margin: 0; }

        /* ===== Audience — soft bg ===== */
        .audience-section { background: var(--dark-06); }
        .audience-card {
            border-radius: var(--radius-lg);
            padding: 44px 40px;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .audience-card::before {
            content: '';
            position: absolute;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            right: -50px;
            bottom: -60px;
            opacity: 0.07;
        }
        .audience-card.freshers { background: var(--blue); }
        .audience-card.freshers::before { background: var(--white); }
        .audience-card.experienced { background: var(--dark); }
        .audience-card.experienced::before { background: var(--blue); }
        .aud-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            background: var(--white-20);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .aud-icon i { font-size: 26px; color: var(--white); }
        .audience-card h3 { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
        .audience-card p  { font-size: 15px; line-height: 1.75; color: var(--white-80); margin-bottom: 28px; }
        .audience-card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white-12);
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 999px;
            text-decoration: none;
            border: 1.5px solid var(--white-20);
            transition: all 0.22s ease;
        }
        .audience-card a:hover { background: var(--white-20); color: var(--white); }

        /* ===== How It Works — white bg ===== */
        .howitworks-section { background: var(--white); }
        .step-list { display: flex; flex-direction: column; }
        .step-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            position: relative;
        }
        .step-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 44px;
            width: 2px;
            height: calc(100% - 10px);
            background: var(--dark-12);
        }
        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--blue-10);
            border: 2px solid var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--blue);
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        .step-body { padding: 2px 0 32px; }
        .step-body h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
        .step-body p  { font-size: 14px; color: var(--dark-60); line-height: 1.65; margin: 0; }
        .hiw-visual {
            background: var(--dark);
            border-radius: var(--radius-lg);
            padding: 44px 36px;
            text-align: center;
        }
        .hiw-visual-icon {
            font-size: 80px;
            color: var(--blue);
            opacity: 0.2;
            display: block;
            margin-bottom: 24px;
        }
        .hiw-visual h4 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
        .hiw-visual p  { font-size: 14px; color: var(--white-60); line-height: 1.7; margin-bottom: 28px; }
        .hiw-visual a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--blue);
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            padding: 13px 28px;
            border-radius: 999px;
            text-decoration: none;
            transition: all 0.22s ease;
            box-shadow: 0 4px 20px var(--blue-20);
        }
        .hiw-visual a:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); }

        /* ===== Resume — blue bg ===== */
        .resume-section {
            background: var(--blue);
            position: relative;
            overflow: hidden;
        }
        .resume-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: var(--dark);
            opacity: 0.08;
            right: -150px;
            top: -150px;
        }
        .resume-inner { position: relative; z-index: 2; }
        .resume-inner h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: var(--white); margin-bottom: 14px; }
        .resume-inner p  { color: var(--white-80); font-size: 16px; line-height: 1.75; margin-bottom: 32px; max-width: 520px; }
        .resume-btns { display: flex; gap: 14px; flex-wrap: wrap; }
        .resume-btns a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.22s ease;
        }
        .btn-white { background: var(--white); color: var(--blue); }
        .btn-white:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
        .btn-border-white { background: transparent; color: var(--white); border: 1.5px solid var(--white-20); }
        .btn-border-white:hover { background: var(--white-12); color: var(--white); transform: translateY(-2px); }
        .resume-benefits {
            margin-top: 36px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px 28px;
        }
        .resume-benefits span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--white-80);
        }
        .resume-benefits span i { font-size: 14px; color: var(--white); }
        .cloud-icon { font-size: 160px; color: var(--white); opacity: 0.08; }

        /* ===== Final CTA — soft dark bg ===== */
        .final-cta { background: var(--dark-06); text-align: center; }
        .final-cta h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 700; color: var(--dark); margin-bottom: 14px; }
        .final-cta p  { font-size: 17px; color: var(--dark-60); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
        .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
        .cta-btns a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        .btn-primary-cta {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 6px 24px var(--blue-20);
        }
        .btn-primary-cta:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); }
        .btn-outline-cta {
            background: var(--white);
            color: var(--dark);
            border: 1.5px solid var(--dark-12);
        }
        .btn-outline-cta:hover { background: var(--dark); color: var(--white); border-color: var(--dark); transform: translateY(-2px); }

        /* ===== Responsive ===== */
        @media (max-width: 991px) {
            .section-pad  { padding: 60px 0; }
            .intro-stats  { gap: 20px; }
            .audience-card { padding: 32px 28px; }
        }
        @media (max-width: 767px) {
            .section-pad    { padding: 48px 0; }
            .section-pad-sm { padding: 40px 0; }
            .audience-card  { margin-bottom: 20px; }
            .intro-stats    { justify-content: center; }
        }
