/* =========================================================
   TEAM IMPECCABLE – CAREERS / CURRENT VACANCIES PAGE
   ✅ Fast, consistent, smooth, clean, professional
   ✅ Colors & fonts reusable via :root
   ✅ Layout stable
   ✅ Animations fluid
   ✅ Mobile perfect (responsive grids + nav)
========================================================= */


/* ===============================
   SAFE GLOBAL MOBILE RESET
================================ */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Media safety */

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}


/* Mobile layout safety */

@media (max-width: 991px) {
    section,
    header,
    footer {
        height: auto !important;
        min-height: auto !important;
    }
    /* Navbar/header stay fixed via new.css – do not override */
}


/* Floating buttons safe */

.floating-actions {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
}


/* ========= HERO SECTION ========= */

.career-hero {
    background: #e9edf3;
    padding: 60px 6vw 70px;
}

.career-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
}

.career-hero-left .career-eyebrow {
    color: #39b449;
    font-weight: 600;
    margin-bottom: 6px;
}

.career-heading {
    font-size: 58px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.career-heading span {
    color: var(--sky);
}

.career-sub {
    font-size: 18px;
    color: #333;
}

.career-hero-right {
    text-align: right;
}

.career-hero-right img {
    max-width: 360px;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ========= EMPLOYEE FIRST SECTION ========= */

.employee-first {
    padding: 60px 6vw 80px;
    background: linear-gradient(to bottom, #f7f9ff 0%, #eef3ff 60%, #f7f9ff 100%);
}

.ef-heading {
    text-align: center;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.ef-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 22px;
}

.ef-card {
    border-radius: 10px;
    padding: 28px 26px 26px;
    text-align: center;
    color: #ffffff;
    background: #ffafbd;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.ef-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.7);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.ef-icon {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.ef-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ef-card p {
    font-size: 13px;
    line-height: 1.45;
}


/* gradients */

.ef-yellow {
    background: linear-gradient(135deg, #ffe98a, #ffb347);
}

.ef-green {
    background: linear-gradient(135deg, #55c75a, #00b35c);
}

.ef-pink {
    background: linear-gradient(135deg, #f5a7ff, #ff70a8);
}

.ef-blue {
    background: linear-gradient(135deg, #8ab4ff, #5c7cff);
}

.ef-pink2 {
    background: linear-gradient(135deg, #ff9ad5, #f569c5);
}

.ef-mint {
    background: linear-gradient(135deg, #a7ffeb, #4fd6c6);
}

.ef-purple {
    background: linear-gradient(135deg, #c3a1ff, #9e6dff);
}

.ef-green2 {
    background: linear-gradient(135deg, #b2ff7e, #5ad769);
}

.ef-yellow2 {
    background: linear-gradient(135deg, #ffe9a3, #ffc85a);
}

.ef-deepgreen {
    background: linear-gradient(135deg, #8ee28b, #2c9f5b);
}

.ef-violet {
    background: linear-gradient(135deg, #d6a4ff, #b06cff);
}

.ef-sky {
    background: linear-gradient(135deg, #9ad2ff, #598dff);
}


/* ========= RESPONSIVE ========= */

@media (max-width: 1024px) {
    .career-hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
    }
    .career-heading {
        font-size: 46px;
    }
    .ef-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .career-hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .career-hero-right {
        text-align: center;
    }
    .career-hero-right img {
        max-width: 260px;
        margin-top: 20px;
    }
    .career-heading {
        font-size: 38px;
    }
    .ef-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= WHAT WE LOOK FOR ================= */

.we-look-for {
    padding: 60px 6vw 90px;
    text-align: center;
}

.wlf-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wlf-sub {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}

.wlf-grid {
    display: grid;
    max-width: 1200px;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wlf-card {
    padding: 32px 26px 28px;
    border-radius: 14px;
    border: 2px dashed #00eaff;
    background: #fff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
}

.wlf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.12);
}

.num-circle {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    background: #dff1ff;
    color: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.wlf-card h3 {
    font-size: 16px;
    color: #2a991f;
    margin-bottom: 10px;
}

.wlf-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.45;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .wlf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wlf-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= RECRUITMENT PROCESS ================= */

.recruit-section {
    padding: 70px 6vw 90px;
    background: #eaf0ff;
    text-align: center;
}

.recruit-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.recruit-sub {
    font-size: 15px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px;
}

.recruit-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.recruit-card {
    padding: 40px 34px 36px;
    color: #ffffff;
    text-align: left;
}

.rp-1 {
    background: #39454d;
}

.rp-2 {
    background: #4b3838;
}

.rp-3 {
    background: #5b5b5b;
}

.rp-num {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 14px;
}

.rp-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.rp-list {
    list-style: decimal;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.rp-list li+li {
    margin-top: 10px;
}

.rp-label {
    font-weight: 700;
}


/* ====== RESPONSIVE ====== */

@media (max-width: 992px) {
    .recruit-steps {
        grid-template-columns: 1fr;
    }
    .recruit-card+.recruit-card {
        margin-top: 16px;
    }
}


/* ================= CAREER OPENINGS ================= */

.career-openings {
    padding: 70px 6vw 90px;
    background: #f8fafc;
}

.career-banner {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 30px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.career-banner::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 80%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff9b30, #ff7a18);
    transform: translateX(-50%);
}

.career-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
}

.career-banner p {
    font-size: 16px;
    line-height: 1.5;
}

.career-email {
    font-weight: 700;
    color: var(--royal);
    cursor: pointer;
    position: relative;
}


/* हल्का hilne वाला animation – hover par */

.career-email:hover {
    animation: wiggle 0.4s ease-in-out infinite;
}

@keyframes wiggle {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    50% {
        transform: translateX(2px);
    }
    75% {
        transform: translateX(-1px);
    }
    100% {
        transform: translateX(0);
    }
}


/* JOB CARDS */

.job-cards-wrap {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
}

.job-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.job-img-wrap {
    position: relative;
    overflow: hidden;
}

.job-img-wrap img {
    width: 100%;
    display: block;
}


/* overlay text on hover */

.job-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-align: center;
    padding: 0 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.job-card:hover .job-overlay {
    opacity: 1;
}

.job-title {
    padding: 16px 18px 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--royal);
    text-align: center;
}


/* =============== MODALS =============== */

.job-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    font-family: var(--font);
}

.job-modal.is-open {
    display: flex;
}

.job-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.job-modal-content {
    position: relative;
    background: #f5f5f5;
    width: min(1000px, 96%);
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.job-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #ffffff;
}

.modal-logo {
    height: 32px;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: none;
    background: #d7d7d7;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--royal);
}

.job-modal-body {
    padding: 26px 30px 10px;
    overflow-y: auto;
}

.job-modal-body h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.job-modal-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.job-modal-body ul {
    list-style: disc;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.job-modal-footer {
    padding: 14px 30px 18px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f0f0f0;
}


/* buttons */

.btn-primary,
.btn-secondary {
    min-width: 120px;
    padding: 10px 22px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: var(--royal);
    color: #ffffff;
}

.btn-secondary {
    background: #e77536;
    color: #ffffff;
}


/* apply form modal */

.apply-body {
    padding: 26px 30px 26px;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apply-form input[type="text"],
.apply-form input[type="email"] {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
}

.file-label {
    display: flex;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    overflow: hidden;
    font-size: 15px;
}

.file-label span {
    padding: 10px 14px;
    background: #f5f5f5;
    border-right: 1px solid #d0d0d0;
}

.file-label input[type="file"] {
    flex: 1;
    padding: 8px 10px;
    border: none;
}

.full-width {
    width: 100%;
    margin-top: 4px;
}


/* responsive for modals/cards */

@media (max-width: 768px) {
    .job-cards-wrap {
        grid-template-columns: 1fr;
    }
    .career-banner h2 {
        font-size: 24px;
    }
    .job-modal-content {
        width: 95%;
    }
}


/* ===================== BRAND TOKENS ===================== */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
    --black: #0b111b;
    --font-main: 'Poppins', sans-serif;
    --font-alt: 'Open Sans', sans-serif;
}


/* ===================== HERO SECTION ===================== */

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient( 1200px 600px at 60% 75%, rgba(42, 42, 255, 0.22), transparent 60%), url("images/career3.jpg") center / cover no-repeat;
    /* 🔥 IMAGE BRIGHT & 4K */
    filter: brightness(1.18) contrast(1.12) saturate(1.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ===================== SOFT OVERLAY (NO DULL) ===================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(11, 17, 27, 0.15), rgba(11, 17, 27, 0.45));
    z-index: 1;
}


/* ===================== HERO CONTENT ===================== */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: clamp(24px, 5vw, 80px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    animation: heroFadeUp 1.4s cubic-bezier(.25, .8, .25, 1) forwards;
}


/* ===================== HERO TITLE (PURE WHITE) ===================== */

.hero-title {
    font-family: var(--font-main);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: clamp(2.4rem, 5vw, 5rem);
    color: var(--white);
    /* 🔥 3D WHITE GLOW */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 80px rgba(255, 255, 255, 0.35);
    animation: titleFloat 6s ease-in-out infinite;
}


/* ===================== GLASS BOX ===================== */

.glass-box {
    width: 100%;
    max-width: 720px;
    padding: clamp(22px, 4vw, 42px);
    border-radius: 28px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 90px rgba(42, 42, 255, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    text-align: center;
}


/* ===================== GLASS TEXT – ALL WHITE ===================== */

.glass-box h2 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 14px;
    color: var(--white);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.glass-box p {
    font-family: var(--font-alt);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.75;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
}


/* ===================== CTA BUTTON ===================== */

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    border-radius: 999px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient( 135deg, var(--blue), var(--violet));
    box-shadow: 0 18px 50px rgba(42, 42, 255, 0.55);
    transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 32px 80px rgba(42, 42, 255, 0.75);
}


/* ===================== ANIMATIONS ===================== */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
    .glass-box {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content {
        gap: 24px;
    }
    .cta-btn {
        width: 100%;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #8B00FF;
    --violet: #B300FF;
    --white: #ffffff;
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.14);
    --stroke: rgba(255, 255, 255, 0.22);
    --shadow-1: 0 18px 55px rgba(0, 0, 0, 0.22);
    --shadow-2: 0 32px 90px rgba(0, 0, 0, 0.30);
    --shadow-in: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    --font-h: "Poppins", sans-serif;
    --font-b: "Open Sans", sans-serif;
    --font-ui: "Outfit", sans-serif;
}


/* Footer: same as index (home) — uses new.css .imp-footer styles */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #ffffff;
    --text: #f5f5f5;
    --font: 'Poppins', sans-serif;
}


/* RESET */

*/
/* {margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:var(--font);
  
  color:#fff;
} */


/* ================= TOP INFO BAR + NAVBAR ================= */
/* Uses new.css (same as home page) – no overrides */

/* ==============================
   🌐 SOCIAL ICONS
============================== */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .1));
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    transition: .35s;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    html.nav-open, body.nav-open {
        overflow: hidden !important;
        height: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    body.nav-open .header-sticky-wrapper,
    body.nav-open .premium-navbar,
    body.nav-open .nav-container { overflow: visible !important; }
    .premium-navbar { overflow: visible; }
    .nav-container { overflow: visible; }
    .hamburger {
        display: flex;
        position: relative;
        z-index: 100002;
    }
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100%;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh;
        min-height: 100dvh;
        margin: 0 !important;
        padding: clamp(80px, 18vw, 100px) clamp(20px, 5vw, 24px) 40px;
        background: linear-gradient(180deg, var(--blue), var(--purple), var(--violet));
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: clamp(16px, 4vw, 17px);
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .dropdown.active .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: linear-gradient(180deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
        border-radius: 14px;
        margin: 8px 0 12px 16px;
        padding: 8px 0;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        font-weight: 600;
        font-size: clamp(14px, 3.5vw, 15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding-left: 24px;
    }
    .social-icons {
        display: none;
    }
}