   img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }

        /* ===== HEADER / NAV ===== */
        .site-header {
            background: #ffffff;
            box-shadow: 0 2px 16px rgba(31,99,6,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-inner {
            max-width: 1300px;
            margin: auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            font-size: 26px;
            font-weight: 800;
            color: #1f6306;
            letter-spacing: -0.5px;
        }
        .logo span { color: #66bb6a; }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            font-size: 14.5px;
            font-weight: 500;
            color: #000000;
            transition: color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active { color: #1f6306; }
        .nav-btn {
            background: #1f6306;
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600 !important;
            font-size: 14px !important;
            transition: background 0.2s, transform 0.2s !important;
        }
        .nav-btn:hover { background: #2e7d32; transform: translateY(-1px); }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: #1f6306;
            border-radius: 2px;
            transition: 0.3s;
        }

        /* ===== HERO SECTION ===== */
        .careers-hero {
            background: linear-gradient(180deg, #d4eed5c7 0%, transparent 70%);
            padding: 80px 20px 90px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .careers-hero::before {
            content: '';
            position: absolute;
            top: -80px; left: 50%;
            transform: translateX(-50%);
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(102,187,106,0.15) 0%, transparent 65%);
            pointer-events: none;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(31,99,6,0.1);
            color: #1f6306;
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        .hero-badge i { font-size: 12px; }
        .careers-hero h1 {
            font-size: clamp(36px, 6vw, 62px);
            font-weight: 800;
            color: #1b5e20;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        .careers-hero h1 span {
            background: linear-gradient(90deg, #2e7d32, #66bb6a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .careers-hero p {
            max-width: 580px;
            margin: 0 auto 40px;
            font-size: 17px;
            color: #000000;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-green {
            background: #1f6306;
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-green:hover {
            background: #2e7d32;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(31,99,6,0.25);
        }
        .btn-outline {
            background: transparent;
            color: #1f6306;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            border: 2px solid #1f6306;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline:hover {
            background: rgba(31,99,6,0.07);
            transform: translateY(-2px);
        }

        /* ===== STATS STRIP ===== */
        .stats-strip {
            background: #ffffff;
            border-top: 1px solid rgba(31,99,6,0.1);
            border-bottom: 1px solid rgba(31,99,6,0.1);
            padding: 32px 20px;
        }
        .stats-inner {
            max-width: 1300px;
            margin: auto;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 24px;
        }
        .stat-item { text-align: center; }
        .stat-num {
            font-size: 36px;
            font-weight: 800;
            color: #1f6306;
            line-height: 1;
        }
        .stat-label { font-size: 13px; color: #888; margin-top: 4px; font-weight: 500; }

        /* ===== SECTION COMMON ===== */
        .prt-row { padding: 80px 20px; }
        .section-inner { max-width: 1300px; margin: auto; }
        .section-header { text-align: center; margin-bottom: 56px; }
        .section-header .eyebrow {
            display: inline-block;
            background: rgba(31,99,6,0.1);
            color: #1f6306;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 14px;
            margin-bottom: 16px;
        }
        .section-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            color: #1b5e20;
            margin-bottom: 14px;
        }
        .section-header p { max-width: 540px; margin: 0 auto; color: #000000; font-size: 16px; }

        /* ===== WHY JOIN US – CARDS ===== */
        .why-section { background: linear-gradient(180deg, #ffffff 0%, #f9fdf9 100%); }
        .AYUSHWRAPPER {
            max-width: 1300px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .AYUSHSIDE { width: 32%; display: flex; flex-direction: column; gap: 25px; }
        .AYUSHCARD {
            background: #ffffff;
            padding: 28px 25px;
            border-radius: 24px;
            box-shadow: 0 18px 35px -8px rgba(0,0,0,0.08), 0 6px 12px rgba(0,0,0,0.02);
            display: flex;
            align-items: flex-start;
            gap: 18px;
            text-align: left;
            transition: 0.3s ease;
        }
        .AYUSHCARD:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 45px -12px rgba(58,141,47,0.18);
        }
        .AYUSHICON {
            flex-shrink: 0;
            width: 56px; height: 56px;
            background: linear-gradient(145deg, #e2f0da, #cde3c2);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #1f5e1a;
            box-shadow: 0 10px 15px -5px rgba(0,0,0,0.1), inset 0 -3px 0 rgba(0,0,0,0.08), inset 0 2px 8px rgba(255,255,255,0.9);
        }
        .AYUSHCARD h3 { margin-bottom: 6px; color: #1f5e1a; font-size: 18px; font-weight: 700; }
        .AYUSHCARD p { font-size: 14px; line-height: 1.55; color: #3f4a3c; }
        .HOMECENTER {
            width: 32%;
            text-align: center;
        }
        .HOMECENTER .center-img-placeholder {
            background: linear-gradient(145deg, #e2f0da, #cde3c2);
            border-radius: 30px;
            padding: 40px 30px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
            text-align: center;
        }
        .HOMECENTER .center-img-placeholder .big-icon { font-size: 100px; }
        .HOMECENTER .center-img-placeholder h3 { color: #1b5e20; font-size: 22px; font-weight: 700; margin: 16px 0 8px; }
        .HOMECENTER .center-img-placeholder p { color: #3f4a3c; font-size: 14px; }

        /* ===== JOB OPENINGS ===== */
        .jobs-section { background: #f8fbf9; }
        .filter-bar {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
            justify-content: center;
        }
        .filter-btn {
            padding: 9px 22px;
            border-radius: 50px;
            border: 2px solid rgba(31,99,6,0.2);
            background: #ffffff;
            color: #3f4a3c;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        .filter-btn.active, .filter-btn:hover {
            background: #1f6306;
            color: #fff;
            border-color: #1f6306;
        }
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }
        .job-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 26px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(31,99,6,0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .job-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(31,99,6,0.12);
            border-color: rgba(31,99,6,0.2);
        }
        .job-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
        .dept-badge {
            background: rgba(31,99,6,0.1);
            color: #1f6306;
            border-radius: 6px;
            font-size: 11.5px;
            font-weight: 700;
            padding: 4px 12px;
            letter-spacing: 0.5px;
        }
        .job-type-badge {
            font-size: 11.5px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 6px;
            border: 1px solid #ddd;
            color: #666;
        }
        .job-card h3 { font-size: 18px; font-weight: 700; color: #1b5e20; }
        .job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
        .job-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #888;
        }
        .job-meta i { color: #1f6306; font-size: 12px; }
        .job-desc { font-size: 13.5px; color: #000000; line-height: 1.6; flex: 1; }
        .job-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid #f0f4f0; }
        .apply-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #1f6306;
            color: #fff;
            padding: 10px 22px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 600;
            transition: background 0.2s, transform 0.2s;
        }
        .apply-link:hover { background: #2e7d32; transform: translateY(-1px); }
        .posted-date { font-size: 12px; color: #aaa; }

        /* ===== PROCESS SECTION ===== */
        .process-section { background: linear-gradient(180deg, #ffffff 0%, #d4eed5c7 100%); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 36px; left: 12.5%;
            width: 75%;
            height: 2px;
            background: linear-gradient(90deg, #2e7d32, #66bb6a);
            z-index: 0;
        }
        .step-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 22px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            position: relative;
            z-index: 1;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .step-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px rgba(31,99,6,0.12); }
        .step-num {
            width: 56px; height: 56px;
            background: linear-gradient(90deg, #2e7d32, #66bb6a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            margin: 0 auto 18px;
            box-shadow: 0 8px 20px rgba(31,99,6,0.3);
        }
        .step-card h4 { font-size: 16px; font-weight: 700; color: #1b5e20; margin-bottom: 8px; }
        .step-card p { font-size: 13.5px; color: #000000; line-height: 1.55; }

        /* ===== PERKS SECTION ===== */
        .perks-section { background: #f8fbf9; }
        .perks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }
        .perk-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px 26px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-left: 4px solid #1f6306;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }
        .perk-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(31,99,6,0.1); }
        .perk-icon {
            width: 52px; height: 52px;
            flex-shrink: 0;
            background: linear-gradient(145deg, #e2f0da, #cde3c2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }
        .perk-card h4 { font-size: 17px; font-weight: 700; color: #1b5e20; margin-bottom: 6px; }
        .perk-card p { font-size: 13.5px; color: #000000; line-height: 1.55; }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
            padding: 90px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; }
        .cta-section p { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 40px; position: relative; }
        .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
        .btn-white {
            background: #ffffff;
            color: #1f6306;
            padding: 14px 36px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
        .btn-ghost {
            background: transparent;
            color: #fff;
            padding: 14px 36px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            border: 2px solid rgba(255,255,255,0.5);
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #1b5e20;
            color: rgba(255,255,255,0.75);
            text-align: center;
            padding: 28px 20px;
            font-size: 14px;
        }
        .site-footer strong { color: #fff; }

        /* ===== MODAL ===== */
        .modal-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-overlay.open { display: flex; }
        .modal {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            max-width: 560px;
            width: 100%;
            position: relative;
            box-shadow: 0 30px 70px rgba(0,0,0,0.18);
            animation: slideUp 0.3s ease;
        }
        @keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        .modal-close {
            position: absolute; top: 20px; right: 22px;
            background: none; border: none; font-size: 22px;
            color: #999; cursor: pointer;
        }
        .modal-close:hover { color: #333; }
        .modal h2 { font-size: 24px; font-weight: 800; color: #1b5e20; margin-bottom: 6px; }
        .modal .role-name { font-size: 15px; color: #888; margin-bottom: 28px; }
        .form-group { margin-bottom: 18px; }
        .form-group label { display: block; font-size: 13.5px; font-weight: 600; color: #1b5e20; margin-bottom: 6px; }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #ddd;
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            color: #333;
            transition: border-color 0.2s;
            background: #f9fdf9;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1f6306;
            background: #fff;
        }
        .form-group textarea { resize: vertical; min-height: 90px; }
        .file-input-label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border: 1.5px dashed #1f6306;
            border-radius: 10px;
            background: rgba(31,99,6,0.04);
            cursor: pointer;
            font-size: 13.5px;
            color: #1f6306;
            font-weight: 500;
        }
        .file-input-label input { display: none; }
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: #1f6306;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            margin-top: 8px;
        }
        .submit-btn:hover { background: #2e7d32; transform: translateY(-1px); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .AYUSHWRAPPER { flex-direction: column; }
            .AYUSHSIDE, .HOMECENTER { width: 100%; max-width: 640px; margin: 0 auto; }
            .HOMECENTER { order: -1; }
            .jobs-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .process-steps::before { display: none; }
            .perks-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-links { display: none; }
            .hamburger { display: flex; }
        }
        @media (max-width: 640px) {
            .jobs-grid { grid-template-columns: 1fr; }
            .perks-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr; }
            .stats-inner { gap: 14px; }
            .stat-num { font-size: 28px; }
            .prt-row { padding: 60px 16px; }
            .modal { padding: 28px 22px; }
            .hero-actions { flex-direction: column; align-items: center; }
            .cta-actions { flex-direction: column; align-items: center; }
        }
        @media (max-width: 480px) {
            .nav-inner { padding: 0 16px; }
            .careers-hero { padding: 60px 16px 70px; }
        }