:root {
    --ammabhoj-secondary: #E84C8B;
    --careers-dark: #2E2E2E;
    --careers-gray: #6e6e6e;
    --careers-light-bg: #FAF7F2;
}


.careers-hero {
    background: linear-gradient(135deg, #FFF0F6 0%, #ffffff 55%, #FEF0F5 100%);
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.careers-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 76, 139, 0.10) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.careers-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 76, 139, 0.07) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.careers-hero .container {
    position: relative;
    z-index: 1;
}

.careers-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 76, 139, 0.10);
    color: var(--bs-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.careers-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--careers-dark);
    line-height: 1.15;
    margin-bottom: 22px;
}

.careers-hero h1 em {
    font-style: italic;
    color: var(--bs-primary);
}

.careers-hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--careers-gray);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 36px;
}

.careers-hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: left;
}

.stat-box .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-primary);
    display: block;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.82rem;
    color: #6e6e6e;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero illustration side */
.careers-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.careers-blob-wrap {
    position: relative;
    width: 420px;
    height: 420px;
}

.careers-blob-bg {
    position: absolute;
    inset: 0;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    background: linear-gradient(135deg, rgba(232, 76, 139, 0.13) 0%, rgba(232, 76, 139, 0.06) 100%);
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    }

    33% {
        border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%;
    }

    66% {
        border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
    }
}

.careers-icon-grid {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.careers-icon-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.c-icon-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(232, 76, 139, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    animation: floatCard 4s ease-in-out infinite;
}

.c-icon-card:nth-child(2) {
    animation-delay: 0.6s;
}

.c-icon-card:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.c-icon-card i {
    font-size: 1.6rem;
    color: var(--bs-primary);
}

.c-icon-card span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #2E2E2E;
    white-space: nowrap;
}

/* =====================
   WHY JOIN SECTION
===================== */
.why-join-section {
    background: #fff;
    padding: 90px 0;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 4px 28px rgba(232, 76, 139, 0.08), 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), rgba(232, 76, 139, 0.4));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 50px rgba(232, 76, 139, 0.16), 0 4px 14px rgba(0, 0, 0, 0.07);
    border-color: rgba(232, 76, 139, 0.12);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(232, 76, 139, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--bs-primary);
    margin-bottom: 22px;
    transition: background 0.3s, transform 0.3s;
}

.why-card:hover .why-icon {
    background: var(--bs-primary);
    color: #fff;
    transform: scale(1.1);
}

.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--careers-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.93rem;
    color: #6e6e6e;
    line-height: 1.7;
    margin: 0;
}

/* =====================
   OPEN ROLES SECTION
===================== */
.roles-section {
    background: linear-gradient(160deg, #FFF8FB 0%, #ffffff 60%, #FFF0F6 100%);
    padding: 90px 0;
}

/* Filter Tabs */
.roles-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid rgba(232, 76, 139, 0.25);
    background: #fff;
    color: #6e6e6e;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 76, 139, 0.30);
}

/* Job Cards */
.job-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 24px rgba(232, 76, 139, 0.07), 0 1px 5px rgba(0, 0, 0, 0.04);
    border: 1.5px solid rgba(232, 76, 139, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), rgba(232, 76, 139, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(232, 76, 139, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(232, 76, 139, 0.22);
}

.job-card:hover::after {
    transform: scaleX(1);
}

.job-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.job-dept-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(232, 76, 139, 0.10);
    color: var(--bs-primary);
}

.job-new-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: #fff0f6;
    color: var(--bs-primary);
    border: 1.5px solid rgba(232, 76, 139, 0.3);
    display: none;
}

.job-card.is-new .job-new-badge {
    display: inline-block;
}

.job-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--careers-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.job-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #6e6e6e;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #6e6e6e;
    font-weight: 500;
}

.job-meta-item i {
    color: var(--bs-primary);
    font-size: 0.85rem;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: transparent;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    transition: all 0.28s ease;
    align-self: flex-start;
}

.job-apply-btn:hover {
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(232, 76, 139, 0.32);
}

.job-apply-btn i {
    transition: transform 0.25s ease;
}

.job-apply-btn:hover i {
    transform: translateX(4px);
}

/* hidden card for filtering */
.job-card-wrap.hidden {
    display: none;
}

/* =====================
   CULTURE SECTION
===================== */
.culture-section {
    background: #fff;
    padding: 90px 0;
    overflow: hidden;
}

.culture-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
}

.culture-photo {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.culture-photo:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
}

.culture-photo-inner {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(232, 76, 139, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.culture-photo:first-child .culture-photo-inner {
    aspect-ratio: 16 / 8;
}

.culture-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.culture-photo-placeholder i {
    font-size: 2.2rem;
    color: rgba(232, 76, 139, 0.3);
}

.culture-photo-placeholder span {
    font-size: 0.8rem;
    color: rgba(232, 76, 139, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gradient overlays for culture photos */
.culture-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232, 76, 139, 0.22) 0%, transparent 60%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.culture-photo:hover .culture-photo-overlay {
    opacity: 1;
}

/* Quote / Values side */
.culture-values {
    padding-left: 20px;
}

.culture-quote {
    background: linear-gradient(135deg, #FFF0F6, #FFF8FB);
    border-left: 4px solid var(--bs-primary);
    border-radius: 0 16px 16px 0;
    padding: 28px 28px 28px 24px;
    margin-bottom: 32px;
    position: relative;
}

.culture-quote::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(232, 76, 139, 0.15);
    position: absolute;
    top: -10px;
    left: 18px;
    line-height: 1;
}

.culture-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    color: #2E2E2E;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.culture-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.culture-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.culture-value-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(232, 76, 139, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--bs-primary);
    flex-shrink: 0;
}

.culture-value-list strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--careers-dark);
    display: block;
    margin-bottom: 3px;
}

.culture-value-list span {
    font-size: 0.88rem;
    color: #6e6e6e;
    line-height: 1.5;
}

/* =====================
   HIRING PROCESS
===================== */
.process-section {
    background: linear-gradient(160deg, #FFF8FB 0%, #ffffff 70%);
    padding: 90px 0;
}

.process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 36px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.process-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), rgba(232, 76, 139, 0.7));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(232, 76, 139, 0.30);
    flex-shrink: 0;
    z-index: 1;
}

.process-step-connector {
    width: 2px;
    flex: 1;
    min-height: 36px;
    background: linear-gradient(to bottom, rgba(232, 76, 139, 0.3), rgba(232, 76, 139, 0.08));
    margin-top: 4px;
}

.process-step:last-child .process-step-connector {
    display: none;
}

.process-step-body {
    padding-top: 10px;
    flex: 1;
}

.process-step-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--careers-dark);
    margin-bottom: 8px;
}

.process-step-body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    color: #6e6e6e;
    line-height: 1.7;
    margin: 0;
}

/* Process illustration */
.process-visual {
    background: linear-gradient(135deg, rgba(232, 76, 139, 0.08), rgba(232, 76, 139, 0.03));
    border-radius: 24px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 380px;
    border: 1.5px solid rgba(232, 76, 139, 0.10);
}

.process-visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(232, 76, 139, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bs-primary);
    margin-bottom: 22px;
    animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 76, 139, 0.25);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(232, 76, 139, 0);
    }
}

.process-visual h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--careers-dark);
    margin-bottom: 12px;
}

.process-visual p {
    font-size: 0.95rem;
    color: #6e6e6e;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto 28px;
}

/* =====================
   CTA BANNER
===================== */
.careers-cta-section {
    background: linear-gradient(135deg, #E84C8B 0%, #c93278 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.careers-cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -220px;
    right: -100px;
}

.careers-cta-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -120px;
    left: -60px;
}

.careers-cta-section .container {
    position: relative;
    z-index: 1;
}

.careers-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.careers-cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto 36px;
}

.btn-cta-white {
    background: #fff;
    color: var(--bs-primary);
    border: 2px solid #fff;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.96rem;
    transition: all 0.28s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-white:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.btn-cta-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.96rem;
    transition: all 0.28s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* =====================
   SECTION LABELS (shared)
===================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: rgba(232, 76, 139, 0.09);
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 700;
    color: var(--careers-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--careers-gray);
    line-height: 1.8;
    max-width: 540px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 991.98px) {
    .careers-hero {
        padding-top: 120px;
    }

    .careers-blob-wrap {
        width: 320px;
        height: 320px;
    }

    .culture-values {
        padding-left: 0;
        margin-top: 40px;
    }

    .culture-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .culture-photo:first-child {
        grid-column: 1 / 3;
    }
}

@media (max-width: 767.98px) {
    .careers-hero {
        padding-top: 110px;
        min-height: auto;
    }

    .careers-hero-stats {
        gap: 24px;
    }

    .why-join-section,
    .roles-section,
    .culture-section,
    .process-section {
        padding: 60px 0;
    }

    .careers-cta-section {
        padding: 60px 0;
    }

    .careers-blob-wrap {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .careers-hero {
        padding-top: 100px;
    }

    .roles-filter {
        justify-content: flex-start;
    }

    .culture-photo-grid {
        grid-template-columns: 1fr;
    }

    .culture-photo:first-child {
        grid-column: 1;
    }

    .section-title {
        font-size: 1.85rem;
    }
}