/* ================================================================
   MyCareerJob.in — Complete CSS
   ================================================================ */

:root {
    --orange: #FF6B00;
    --orange2: #FF8C38;
    --navy: #1A1A2E;
    --navy2: #16213E;
    --blue: #0F3460;
    --red: #E94560;
    --txt: #1a1a2e;
    --muted: #6b7280;
    --light: #9ca3af;
    --bg: #f8f9fa;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 16px rgba(0, 0, 0, .10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .13);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .16);
    --r: 12px;
    --r2: 20px;
    --head: 'Baloo 2', cursive;
    --body: 'Mukta', sans-serif;
    --ease: all .3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    color: var(--txt);
    background: #e6ace22b;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--ease);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

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

ul {
    list-style: none;
}

input,
select,
textarea {
    font-family: inherit;
}


/* ── Particles ───────────────────────── */

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pt {
    position: absolute;
    border-radius: 50%;
    background: #ef2b2b;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh);
        opacity: 0
    }
    10% {
        opacity: .22
    }
    90% {
        opacity: .12
    }
    100% {
        transform: translateY(-10vh);
        opacity: 0
    }
}


/* ── Header ─────────────────────────── */

.hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: var(--ease);
}

.hdr.scrolled {
    box-shadow: var(--shadow);
}

.hdr-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    height: 66px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--txt);
    white-space: nowrap;
}

.logo-ico {
    font-size: 1.7rem;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(0)
    }
    25% {
        transform: rotate(-8deg)
    }
    75% {
        transform: rotate(8deg)
    }
}

.logo span {
    color: var(--orange);
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav a {
    padding: 7px 13px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    transition: var(--ease);
}

.nav a:hover,
.nav a.active {
    color: var(--orange);
    background: rgba(255, 107, 0, .08);
}

.nav .cta {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff!important;
    border-radius: 20px;
    padding: 7px 15px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, .4)
    }
    50% {
        box-shadow: 0 0 0 7px rgba(255, 107, 0, 0)
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 7px;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: var(--ease);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
    opacity: 0
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}


/* ── Hero ───────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 45%, var(--blue) 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.blob-1 {
    width: 480px;
    height: 480px;
    background: rgba(255, 107, 0, .14);
    top: -80px;
    right: -80px;
    animation: morph1 8s ease-in-out infinite alternate;
}

.blob-2 {
    width: 320px;
    height: 320px;
    background: rgba(233, 69, 96, .09);
    bottom: -60px;
    left: -60px;
    animation: morph2 10s ease-in-out infinite alternate;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: rgba(52, 152, 219, .11);
    top: 50%;
    left: 45%;
    animation: morph3 6s ease-in-out infinite alternate;
}

@keyframes morph1 {
    to {
        border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
        transform: scale(1.1) rotate(12deg)
    }
}

@keyframes morph2 {
    to {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
        transform: scale(1.15)
    }
}

@keyframes morph3 {
    to {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, .2);
    border: 1px solid rgba(255, 107, 0, .4);
    color: #FF8C38;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: .05em;
}

.hero h1 {
    font-family: var(--head);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--orange), #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 34px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    max-width: 620px;
    margin: 0 auto 22px;
    transition: var(--ease);
}

.search-box:focus-within {
    box-shadow: 0 20px 60px rgba(255, 107, 0, .28), 0 0 0 3px rgba(255, 107, 0, .18);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: .97rem;
    color: var(--txt);
    background: transparent;
    min-width: 0;
}

.search-box button {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    padding: 11px 26px;
    border-radius: 40px;
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
    transition: var(--ease);
}

.search-box button:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(255, 107, 0, .4);
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
}

.quick-tags span {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .85);
    padding: 7px 15px;
    border-radius: 20px;
    font-size: .83rem;
    cursor: pointer;
    transition: var(--ease);
}

.quick-tags span:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    padding: 18px 36px;
    margin-top: 44px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-family: var(--head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--orange);
}

.stat span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.stat-div {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, .14);
}

.live-badge {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .55);
    font-size: .8rem;
    margin-top: 14px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)
    }
    70% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, 0)
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
    }
}


/* ── Ticker ──────────────────────────── */

.ticker-wrap {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
}

.ticker-label {
    background: var(--red);
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: .07em;
    flex-shrink: 0;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
}

.ticker-inner {
    white-space: nowrap;
    display: inline-block;
    animation: scroll 90s linear infinite;
    font-size: .87rem;
    padding-left: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}


/* ── Page Wrapper ────────────────────── */

.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px;
}


/* ── Section ─────────────────────────── */

.sec {
    margin-bottom: 54px;
}

.sec-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.sec-title {
    font-family: var(--head);
    font-size: 1.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    border-radius: 50%;
    animation: dotP 1.5s ease-in-out infinite;
}

@keyframes dotP {
    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }
    50% {
        transform: scale(1.5);
        opacity: .6
    }
}

.see-all {
    color: var(--orange);
    font-weight: 600;
    font-size: .88rem;
}

.see-all:hover {
    text-decoration: underline;
}


/* ── Filters ─────────────────────────── */

.filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.filter-btns {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.fbtn {
    padding: 7px 16px;
    border-radius: 20px;
    border: 2px solid var(--border);
    font-size: .87rem;
    font-weight: 600;
    color: var(--muted);
    background: #fff;
    transition: var(--ease);
}

.fbtn:hover,
.fbtn.on {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 0, .06);
}

.sort-sel {
    padding: 8px 13px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: .87rem;
    color: var(--txt);
    background: #fff;
    outline: none;
    cursor: pointer;
}

.sort-sel:focus {
    border-color: var(--orange);
}


/* ── Job Card ────────────────────────── */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 18px;
}

.grid.list {
    grid-template-columns: 1fr;
}

.card {
    background: #fff;
    border-radius: var(--r2);
    padding: 22px;
    border: 1.5px solid var(--border);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeUp .45s ease-out both;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c, var(--orange)), #FFB347);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 0, .2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.card.hot::after {
    content: 'NEW';
    position: absolute;
    top: 2px;
    right: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 22px;
    letter-spacing: .05em;
}

.card.urgent {
    border-color: rgba(231, 76, 60, .2);
}

.card.urgent::after {
    content: '🔴 URGENT';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #E74C3C;
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
}

.card-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 11px;
}

.card-logo {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.card-meta {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-family: var(--head);
    font-size: .97rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-org {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.tag {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 9px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.tag-loc {
    background: rgba(107, 114, 128, .1);
    color: var(--muted);
}

.tag-vac {
    background: rgba(52, 152, 219, .09);
    color: #2980b9;
}

.tag-hot {
    background: rgba(231, 76, 60, .1);
    color: #E74C3C;
}

.card-desc {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 11px;
    border-top: 1px solid #f3f4f6;
}

.card-date {
    font-size: .74rem;
    color: var(--light);
}

.card-date.urgent {
    color: #dc2626;
}

.apply-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    padding: 7px 16px;
    border-radius: 18px;
    font-size: .8rem;
    font-weight: 700;
    transition: var(--ease);
}

.apply-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 0, .35);
}


/* ── Skeleton ────────────────────────── */

.skel {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    height: 210px;
    border-radius: var(--r2);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}


/* ── Category Cards ─────────────────── */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 13px;
}

.cat-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    background: #fff;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    transition: var(--ease);
    cursor: pointer;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cc, var(--orange));
}

.cat-ico {
    font-size: 1.7rem;
}

.cat-name {
    font-weight: 700;
    font-size: .9rem;
    display: block;
}

.cat-cnt {
    font-size: .75rem;
    color: var(--muted);
}

.cat-arr {
    margin-left: auto;
    color: var(--light);
    transition: var(--ease);
}

.cat-card:hover .cat-arr {
    color: var(--cc, var(--orange));
    transform: translateX(3px);
}


/* ── Load More ───────────────────────── */

.load-wrap {
    text-align: center;
    margin-top: 28px;
}

.load-btn {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 11px 34px;
    border-radius: 26px;
    font-size: .92rem;
    font-weight: 700;
    transition: var(--ease);
}

.load-btn:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 107, 0, .3);
}


/* ── Ad Banner ───────────────────────── */

.ad-slot {
    background: #fff;
    border: 1.5px dashed var(--border);
    border-radius: var(--r);
    padding: 16px;
    text-align: center;
    margin-bottom: 38px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    color: var(--light);
}


/* ── Subscribe Section ───────────────── */

.sub-sec {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 24px;
    padding: 46px;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}

.sub-sec h2 {
    font-family: var(--head);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-sec p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 26px;
}

.sub-form {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    max-width: 680px;
    margin: 0 auto;
}

.sub-form input,
.sub-form select {
    flex: 1;
    min-width: 150px;
    padding: 11px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: .9rem;
}

.sub-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
    transition: var(--ease);
}

.sub-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(255, 107, 0, .4);
}

.sub-note {
    margin-top: 14px;
    font-size: .77rem;
    color: rgba(255, 255, 255, .5);
}


/* ── Location Tags ───────────────────── */

.loc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.loc-tag {
    padding: 7px 16px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    font-size: .86rem;
    font-weight: 500;
    transition: var(--ease);
}

.loc-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}


/* ── No Results ──────────────────────── */

.empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 56px 20px;
    color: var(--muted);
}

.empty .ei {
    font-size: 3rem;
    margin-bottom: 14px;
}

.empty h3 {
    font-family: var(--head);
    font-size: 1.2rem;
    color: var(--txt);
    margin-bottom: 6px;
}


/* ── Count Badge ─────────────────────── */

.badge {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 9px;
    vertical-align: middle;
}


/* ── View Toggle ─────────────────────── */

.view-tog {
    display: flex;
    gap: 6px;
}

.vbtn {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--muted);
    transition: var(--ease);
}

.vbtn.on {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 107, 0, .07);
}


/* ── Footer ──────────────────────────── */

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .8);
    padding: 56px 0 0;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
    margin-bottom: 36px;
}

.f-logo {
    font-family: var(--head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.f-desc {
    font-size: .83rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.65;
    margin-bottom: 18px;
}

.footer-col h4 {
    font-family: var(--head);
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col li a {
    font-size: .83rem;
    color: rgba(255, 255, 255, .48);
    transition: var(--ease);
}

.footer-col li a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
}


/* ── Back to top ─────────────────────── */

#btt {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 107, 0, .4);
    opacity: 0;
    transform: translateY(16px);
    transition: var(--ease);
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btt.show {
    opacity: 1;
    transform: translateY(0);
}

#btt:hover {
    transform: translateY(-4px) scale(1.05);
}


/* ── Animations ──────────────────────── */

.fade-up {
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp .65s cubic-bezier(.4, 0, .2, 1) forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    animation-delay: .12s
}

.d2 {
    animation-delay: .24s
}

.d3 {
    animation-delay: .36s
}

.d4 {
    animation-delay: .48s
}

.d5 {
    animation-delay: .60s
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(50px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}


/* ── Job Detail Page ─────────────────── */

.detail-wrap {
    max-width: 960px;
    margin: 90px auto 60px;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.detail-card {
    background: #fff;
    border-radius: var(--r2);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.detail-hdr {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    flex-shrink: 0;
}

.detail-title {
    font-family: var(--head);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 7px;
}

.detail-org {
    font-size: .88rem;
    color: var(--muted);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
}

.meta-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    color: var(--muted);
    background: #f3f4f6;
    padding: 5px 12px;
    border-radius: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 11px;
    margin-bottom: 22px;
}

.info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 13px;
    border-left: 3px solid var(--orange);
}

.info-box .lbl {
    font-size: .68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 3px;
}

.info-box .val {
    font-weight: 700;
    font-size: .92rem;
}

.detail-body {
    line-height: 1.85;
    color: #374151;
    font-size: .95rem;
}

.detail-body h3 {
    font-family: var(--head);
    font-size: 1.05rem;
    color: var(--orange);
    margin: 18px 0 8px;
}

.detail-body ul,
.detail-body ol {
    padding-left: 20px;
    margin-bottom: 11px;
}

.detail-body li {
    margin-bottom: 5px;
}

.detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 11px 0;
    font-size: .88rem;
}

.detail-body th {
    background: #f3f4f6;
    padding: 7px 11px;
    text-align: left;
    border: 1px solid var(--border);
}

.detail-body td {
    padding: 7px 11px;
    border: 1px solid var(--border);
}

.apply-box {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 14px;
    padding: 26px;
    text-align: center;
    color: #fff;
    margin-top: 22px;
}

.apply-box h3 {
    font-family: var(--head);
    font-size: 1.25rem;
    margin-bottom: 7px;
}

.apply-box p {
    color: rgba(255, 255, 255, .68);
    font-size: .87rem;
    margin-bottom: 18px;
}

.apply-big {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    padding: 14px 38px;
    border-radius: 26px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--ease);
}

.apply-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255, 107, 0, .4);
}

.share-row {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 15px;
    border-radius: 9px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sh-wa {
    background: #25D366;
    color: #fff;
}

.sh-tg {
    background: #0088cc;
    color: #fff;
}

.sh-cp {
    background: #6b7280;
    color: #fff;
}


/* ── Category Listing Page ───────────── */

.cat-hero {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    padding: 100px 24px 50px;
    text-align: center;
}

.cat-hero h1 {
    font-family: var(--head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cat-hero p {
    color: rgba(255, 255, 255, .7);
}


/* ── Marathi Page ────────────────────── */

.mr-hero {
    background: linear-gradient(135deg, var(--orange), #C0392B);
    color: #fff;
    padding: 100px 24px 56px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mr-hero-inner {
    max-width: 700px;
}

.mr-hero h1 {
    font-family: var(--head);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.mr-hero h1 span {
    color: #FFD700;
}

.mr-hero p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
    margin-bottom: 28px;
}


/* ── Responsive ──────────────────────── */

@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .burger {
        display: flex
    }
    .nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 18px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: var(--ease);
        margin-left: 0
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all
    }
    .hero-stats {
        flex-direction: column;
        gap: 14px;
        padding: 18px
    }
    .stat-div {
        width: 38px;
        height: 1px
    }
    .grid {
        grid-template-columns: 1fr
    }
    .cat-grid {
        grid-template-columns: 1fr 1fr
    }
    .sub-sec {
        padding: 28px 18px
    }
    .footer-grid {
        grid-template-columns: 1fr
    }
    .filters {
        flex-direction: column;
        align-items: flex-start
    }
    .detail-hdr {
        flex-direction: column
    }
    .info-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .search-box {
        flex-direction: column;
        border-radius: var(--r);
        padding: 12px
    }
    .search-box button {
        width: 100%;
        text-align: center;
        padding: 12px
    }
    .cat-grid {
        grid-template-columns: 1fr
    }
    .sub-form {
        flex-direction: column
    }
}
