:root {
    --ijc-primary-green: #097a3b;
    --ijc-primary-blue: #0646a5;
    --ijc-secondary-blue: #004e9a;
    --ijc-secondary-green: #027b3b;
    --ijc-slate: #6f7075;
    --ijc-surface: #f3f5f8;
    --ijc-white: #ffffff;
    --ijc-text: #131923;
    --ijc-muted: #5f6772;
    --ijc-border: rgba(19, 25, 35, 0.1);
    --ijc-accent-start: #d1651a;
    --ijc-accent-end: #c1282a;
    --ijc-shadow-soft: 0 20px 45px rgba(19, 25, 35, 0.08);
    --ijc-shadow-card: 0 10px 30px rgba(19, 25, 35, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ijc-text);
    background: #ffffff;
    font-family: "Rubik", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ijc-container {
    width: min(1170px, calc(100% - 32px));
    margin: 0 auto;
}

.ijc-topbar {
    color: rgba(255, 255, 255, 0.88);
    background: #131923;
    font-size: 13px;
}

.ijc-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.ijc-topbar-social {
    display: flex;
    gap: 14px;
}

.ijc-nav-shell {
    position: sticky;
    top: 0;
    z-index: 50;
    overflow: visible;
    background: linear-gradient(135deg, var(--ijc-slate), var(--ijc-primary-blue));
    box-shadow: 0 8px 24px rgba(19, 25, 35, 0.12);
}

.ijc-nav-inner {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    overflow: visible;
}

.ijc-brand img {
    width: 170px;
}

.ijc-primary-nav > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
    list-style: none;
}

.ijc-primary-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--ijc-white);
    font-size: 14px;
    font-weight: 500;
}

.ijc-has-submenu {
    position: relative;
}

.ijc-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 60;
    min-width: 280px;
    padding: 12px 0;
    border-radius: 10px;
    background: var(--ijc-white);
    box-shadow: var(--ijc-shadow-soft);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.ijc-submenu li a {
    display: block;
    min-height: unset;
    padding: 10px 18px;
    color: var(--ijc-text);
}

.ijc-has-submenu:hover .ijc-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ijc-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ijc-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--ijc-white);
}

.ijc-page {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ijc-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    color: var(--ijc-white);
    background:
        linear-gradient(135deg, rgba(9, 122, 59, 0.88), rgba(6, 70, 165, 0.92)),
        url("https://ijudani.in/wp-content/uploads/2025/02/Option-1.png") center center / cover no-repeat;
}

.ijc-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.14), transparent 24%);
    pointer-events: none;
}

.ijc-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 32px;
    align-items: center;
}

.ijc-eyebrow {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--ijc-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ijc-eyebrow::before,
.ijc-eyebrow::after {
    width: 34px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--ijc-accent-start), var(--ijc-accent-end));
}

.ijc-eyebrow-dark {
    color: var(--ijc-primary-green);
}

.ijc-hero h1,
.ijc-section-heading h2,
.ijc-value-card h3,
.ijc-job-card h3,
.ijc-form-aside h3,
.ijc-site-footer h4 {
    font-family: "Poppins", sans-serif;
}

.ijc-hero h1 {
    max-width: none;
    margin: 0 0 20px;
    color: var(--ijc-white);
    font-size: clamp(36px, 4.7vw, 54px);
    line-height: 1.08;
}

.ijc-heading-line,
.ijc-heading-company {
    display: block;
}

.ijc-heading-company {
    white-space: nowrap;
    font-size: inherit;
    line-height: inherit;
}

.ijc-hero p {
    max-width: 62ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.8;
}

.ijc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    align-items: center;
    margin-top: 34px;
}

.ijc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 20px 34px 18px;
    border: 0;
    border-radius: 5px;
    color: var(--ijc-white);
    background-image: linear-gradient(135deg, var(--ijc-primary-green), var(--ijc-primary-blue));
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ijc-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--ijc-shadow-soft);
}

.ijc-hero-note {
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.ijc-hero-panel {
    display: grid;
    gap: 16px;
}

.ijc-stat-card {
    padding: 26px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: var(--ijc-shadow-soft);
}

.ijc-stat-value {
    display: block;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.ijc-stat-label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.ijc-section {
    padding: 88px 0;
}

.ijc-values,
.ijc-application {
    background: var(--ijc-surface);
}

.ijc-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.ijc-section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3.5vw, 42px);
    line-height: 1.2;
}

.ijc-section-heading p {
    margin: 0;
    color: var(--ijc-muted);
    font-size: 17px;
    line-height: 1.8;
}

.ijc-value-grid,
.ijc-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ijc-value-card,
.ijc-job-card,
.ijc-form-aside,
.ijc-form-card {
    border-radius: 12px;
    background: var(--ijc-white);
    box-shadow: var(--ijc-shadow-card);
}

.ijc-value-card {
    padding: 30px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ijc-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ijc-shadow-soft);
}

.ijc-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--ijc-white);
    background: linear-gradient(135deg, var(--ijc-primary-green), var(--ijc-primary-blue));
    font-size: 18px;
    font-weight: 700;
}

.ijc-value-card h3,
.ijc-job-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.35;
}

.ijc-value-card p,
.ijc-job-card p,
.ijc-form-aside li,
.ijc-form-aside p,
.ijc-hint,
.ijc-field small[data-word-counter] {
    color: var(--ijc-muted);
    font-size: 15px;
    line-height: 1.8;
}

.ijc-job-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 24px;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--ijc-primary-green), var(--ijc-primary-blue)) 1;
}

.ijc-job-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ijc-job-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--ijc-secondary-blue);
    background: var(--ijc-surface);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ijc-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    list-style: none;
}

.ijc-job-meta li {
    color: var(--ijc-text);
    font-size: 14px;
    font-weight: 500;
}

.ijc-job-card .ijc-button {
    align-self: flex-start;
    margin-top: auto;
}

.ijc-form-shell {
    padding: 42px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 1));
    box-shadow: var(--ijc-shadow-soft);
}

.ijc-form-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.ijc-form-aside {
    padding: 30px 24px;
    color: var(--ijc-white);
    background: linear-gradient(180deg, rgba(9, 122, 59, 0.96), rgba(6, 70, 165, 0.96));
}

.ijc-form-aside h3 {
    margin: 0 0 16px;
    color: var(--ijc-white);
    font-size: 24px;
}

.ijc-form-aside ul {
    padding-left: 18px;
    margin-bottom: 18px;
}

.ijc-form-aside li,
.ijc-form-aside p,
.ijc-form-aside a {
    color: rgba(255, 255, 255, 0.9);
}

.ijc-form-card {
    padding: 30px;
}

.ijc-alert {
    display: none;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

.ijc-alert.is-visible {
    display: block;
}

.ijc-alert-success {
    color: #0b5f31;
    background: rgba(9, 122, 59, 0.12);
    border: 1px solid rgba(9, 122, 59, 0.22);
}

.ijc-alert-error {
    color: #8b1d24;
    background: rgba(193, 40, 42, 0.1);
    border: 1px solid rgba(193, 40, 42, 0.18);
}

.ijc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
}

.ijc-field {
    display: flex;
    flex-direction: column;
}

.ijc-field-full {
    grid-column: 1 / -1;
}

.ijc-field label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

.ijc-field input[type="text"],
.ijc-field input[type="email"],
.ijc-field input[type="tel"],
.ijc-field input[type="url"],
.ijc-field input[type="file"],
.ijc-field select,
.ijc-field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid var(--ijc-border);
    border-radius: 8px;
    background: var(--ijc-white);
    color: var(--ijc-text);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ijc-field textarea {
    min-height: 160px;
    resize: vertical;
}

.ijc-field input:focus,
.ijc-field select:focus,
.ijc-field textarea:focus {
    border-color: rgba(6, 70, 165, 0.45);
    outline: none;
    box-shadow: 0 0 0 4px rgba(6, 70, 165, 0.08);
}

.ijc-field .is-invalid {
    border-color: rgba(193, 40, 42, 0.45);
    box-shadow: 0 0 0 4px rgba(193, 40, 42, 0.08);
}

.ijc-field-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 16px;
    margin-top: 8px;
}

.ijc-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.ijc-checkbox input {
    margin-top: 4px;
}

.ijc-field small[data-error-for] {
    min-height: 20px;
    margin-top: 6px;
    color: #b21f24;
    font-size: 13px;
}

.ijc-submit[disabled] {
    opacity: 0.72;
    cursor: wait;
}

.ijc-site-footer {
    color: rgba(255, 255, 255, 0.88);
    background: linear-gradient(180deg, #161d29 0%, #0f1520 100%);
}

.ijc-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 1fr;
    gap: 28px;
    padding: 72px 0 48px;
}

.ijc-site-footer h4 {
    margin: 0 0 16px;
    color: var(--ijc-white);
    font-size: 22px;
}

.ijc-footer-about img {
    width: 180px;
    margin-bottom: 18px;
}

.ijc-footer-about p,
.ijc-footer-contact p,
.ijc-footer-contact li,
.ijc-footer-links li,
.ijc-footer-bottom p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.ijc-footer-links ul,
.ijc-footer-contact ul {
    list-style: none;
}

.ijc-footer-links li,
.ijc-footer-contact li {
    margin-bottom: 8px;
}

.ijc-careers-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ijc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ijc-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: space-between;
    padding: 18px 0 24px;
}

@media (max-width: 1199px) {
    .ijc-value-grid,
    .ijc-jobs-grid,
    .ijc-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .ijc-nav-toggle {
        display: inline-block;
    }

    .ijc-primary-nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        display: none;
        padding: 18px;
        border-radius: 12px;
        background: var(--ijc-white);
        box-shadow: var(--ijc-shadow-soft);
    }

    .ijc-primary-nav.is-open {
        display: block;
    }

    .ijc-primary-nav > ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .ijc-primary-nav a {
        color: var(--ijc-text);
    }

    .ijc-has-submenu {
        width: 100%;
    }

    .ijc-submenu {
        position: static;
        min-width: unset;
        padding: 8px 0 0 14px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .ijc-hero {
        padding: 90px 0 72px;
    }

    .ijc-hero-grid,
    .ijc-form-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ijc-container {
        width: min(1170px, calc(100% - 24px));
    }

    .ijc-section {
        padding: 72px 0;
    }

    .ijc-hero h1 {
        font-size: 34px;
    }

    .ijc-heading-company {
        white-space: normal;
    }

    .ijc-hero p,
    .ijc-section-heading p {
        font-size: 16px;
    }

    .ijc-value-grid,
    .ijc-jobs-grid,
    .ijc-form-grid,
    .ijc-footer-grid {
        grid-template-columns: 1fr;
    }

    .ijc-form-shell,
    .ijc-form-card {
        padding: 24px 18px;
    }

    .ijc-job-card .ijc-button,
    .ijc-submit,
    .ijc-hero .ijc-button {
        width: 100%;
    }

    .ijc-footer-bottom-inner {
        justify-content: flex-start;
    }
}
