﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    background-color: #f8f9fa;
}


.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.btn-login {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: #fff;
    border-radius: 12px;
    font-weight: 500;
    border: none;
    transition: all 0.25s ease;
}

    .btn-login:hover {
        background: linear-gradient(135deg, #4338ca, #7e22ce);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }
.navbar {
    backdrop-filter: blur(6px);
}
/* ===== JOB LIST ===== */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ===== CARD ===== */
.job-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: 0.2s ease;
}

    .job-card:hover {
        transform: translateY(-3px);
    }

/* ===== CONTENT ===== */
.job-card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* LEFT SIDE */
.job-info {
    max-width: 80%;
}

.job-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 15px;
    color: #6b7280;
    font-size: 14px;
    margin-top: 6px;
}
.job-desc {
    margin-top: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* LINK */
.job-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #2563eb;
}

    .job-link:hover {
        text-decoration: underline;
    }

/* RIGHT BADGE */
.job-badge {
    background: #e0edff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
/* ===== APPLICANT LIST ===== */
.applicant-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== CARD ===== */
.applicant-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #eef2ff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .applicant-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    }

/* LEFT */
.applicant-info {
    max-width: 70%;
}

.applicant-name {
    font-weight: 700;
    margin-bottom: 8px;
}

.applicant-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
}

.applicant-date {
    font-size: 13px;
    color: #9ca3af;
}

/* RIGHT */
.applicant-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Status Badge */
.status-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
/* Right Header */
.job-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

    /* Status colors */
    .status-badge.pending {
        background: #fff7ed;
        color: #c2410c;
    }

    .status-badge.reviewed {
        background: #eff6ff;
        color: #2563eb;
    }

    .status-badge.shortlisted {
        background: #ecfdf5;
        color: #047857;
    }

    .status-badge.rejected {
        background: #fef2f2;
        color: #b91c1c;
    }
/* ================= CAREERS PAGE ================= */

/* HERO */
.career-hero {
    text-align: center;
    padding: 20px 20px 60px;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.hero-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.career-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.career-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 16px;
}





.filter-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

    .filter-group strong {
        font-size: 14px;
    }

.filter-pill {
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s ease;
}

    .filter-pill:hover {
        background: #f3f4f6;
    }
    .filter-pill.active {
        background: #4f46e5;
        color: white;
        border-color: #4f46e5;
    }

/* JOB LIST */
.career-jobs {
    max-width: 1150px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-count {
    font-size: 14px;
    color: #6b7280;
}

/* JOB CARD */
.career-job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid #eef2ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .career-job-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

.job-main h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 18px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
}

.job-desc {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 14px;
    max-width: 700px;
}

.job-details {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

    .job-details:hover {
        text-decoration: underline;
    }

/* JOB TYPE BADGE */
.job-type {
    background: #e0edff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* CTA */
.career-cta {
    text-align: center;
    padding: 20px 20px;
    background: #f8fafc;
}

    .career-cta h3 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .career-cta p {
        color: #6b7280;
        margin-bottom: 24px;
    }

.cta-btn {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(79,70,229,0.35);
    }
/* ================= JOB DETAILS PAGE ================= */

/* HEADER */
.job-header {
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.job-badge {
    display: inline-block;
    background: #e6f7ec;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.job-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.job-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: #6b7280;
    font-size: 14px;
    flex-wrap: wrap;
}

/* APPLY BUTTON */
.apply-btn {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s;
}

    .apply-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(79,70,229,0.35);
    }

/* CONTENT */
.job-content {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

/* LEFT */
.job-left {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.job-section {
    margin-bottom: 32px;
}

    .job-section h3 {
        font-weight: 700;
        margin-bottom: 14px;
    }

    .job-section p {
        color: #4b5563;
        line-height: 1.7;
    }

/* LISTS */
.skill-list,
.responsibility-list {
    list-style: none;
    padding: 0;
}

    .skill-list li,
    .responsibility-list li {
        padding-left: 26px;
        margin-bottom: 10px;
        position: relative;
        color: #374151;
    }

        .skill-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #22c55e;
        }

        .responsibility-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #22c55e;
            font-size: 22px;
            top: -4px;
        }

/* RIGHT */
.job-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-summary {
    background: #f9fafb;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid #e5e7eb;
}

    .job-summary h4 {
        font-weight: 700;
        margin-bottom: 18px;
    }

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

/* SECONDARY APPLY */
.apply-secondary {
    background: #16a34a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

    .apply-secondary:hover {
        background: #15803d;
    }
/* ================= APPLY PAGE ================= */

.apply-hero {
    text-align: center;
    padding: 0px 20px 30px;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

    .apply-hero h1 {
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .apply-hero p {
        max-width: 680px;
        margin: 0 auto;
        color: #6b7280;
        font-size: 15px;
    }

.hero-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* CONTAINER */
.apply-container {
    max-width: 900px;
    margin: 0 auto 90px;
    padding: 0 20px;
}

/* CARD */
.apply-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* SECTIONS */
.form-section {
    margin-bottom: 34px;
}

    .form-section h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 16px;
    }

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

/* VALIDATION */
span.text-danger {
    font-size: 13px;
    color: #dc2626;
}

/* CONSENT */
.form-consent {
    margin: 30px 0 20px;
}


.consent-row {
    display: flex;
    align-items: center; /* Perfect vertical alignment */
    gap: 12px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

    .consent-row input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin: 0;
        cursor: pointer;
        flex-shrink: 0; /* Prevent checkbox shrinking */
    }

    .consent-row label {
        margin: 0;
        cursor: pointer;
    }

.consent-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    white-space: nowrap;
}

    .consent-wrapper input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin: 0;
        cursor: pointer;
    }

.consent-text {
    margin: 0;
    cursor: pointer;
}/* SUBMIT */
.form-submit {
    display: flex;
    justify-content: flex-end;
}

    .form-submit button {
        background: linear-gradient(135deg, #4f46e5, #9333ea);
        color: #ffffff;
        padding: 12px 26px;
        border-radius: 10px;
        border: none;
        font-weight: 600;
        cursor: pointer;
    }

        .form-submit button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79,70,229,0.3);
        }

/* NOTE */
.form-note {
    margin-top: 14px;
    font-size: 13px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= SUCCESS / THANK YOU PAGE ================= */

.success-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.success-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */
.success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e6f7ec;
    color: #16a34a;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.success-card h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-message {
    font-size: 16px;
    color: #374151;
    margin-bottom: 10px;
}

.success-subtext {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ACTIONS */
.success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

    .btn-primary:hover {
        box-shadow: 0 10px 25px rgba(79,70,229,0.35);
        transform: translateY(-2px);
    }

.btn-secondary {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

    .btn-secondary:hover {
        background: #f9fafb;
    }
.job-share {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.job-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.career-job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

    .career-job-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

.job-left {
    flex: 1;
}

.job-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 18px;
}

.job-share {
    display: flex;
    gap: 12px;
}

.share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

    .share-icon:hover {
        background: #e5e7eb;
        transform: scale(1.05);
    }

.whatsapp {
    color: #25D366;
}

.linkedin {
    color: #0A66C2;
}

.copy {
    color: #374151;
}

.job-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.job-type-badge {
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.details-btn {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .details-btn:hover {
        box-shadow: 0 10px 20px rgba(79,70,229,0.3);
        transform: translateY(-2px);
    }
/* FILTER CONTAINER */
.career-filters {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* SEARCH */
.filter-search {
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

/* CONTROLS ROW */
.filter-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* DROPDOWN */
.dropdown-filter {
    position: relative;
}

.dropdown-btn {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    min-width: 150px;
    transition: all 0.2s ease;
}

    .dropdown-btn:hover {
        background: #f3f4f6;
    }


/* DROPDOWN CONTENT */
.dropdown-content {
    display: none;
    position: absolute;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 999;
}

    /* CLEAN CHECKBOX ROW */
    .dropdown-content label {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 4px;
        font-size: 14px;
        cursor: pointer;
        margin: 0;
    }
/* HEADER */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-title {
    font-weight: 700;
}

.admin-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
/* Search */
/* SEARCH */
.admin-search {
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-width: 240px;
    font-size: 14px;
}
.search-input {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-width: 220px;
}

.admin-search:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
/* CREATE BUTTON */
.admin-btn-primary {
    height: 42px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    border: none;
}

    .admin-btn-primary:hover {
        opacity: 0.9;
        color: #fff;
    }

/* LOGOUT BUTTON */
.admin-btn-outline {
    height: 42px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid #ef4444;
    color: #ef4444;
    background: transparent;
}

    .admin-btn-outline:hover {
        background: #ef4444;
        color: #fff;
    }
/* Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
}

    .btn-gradient:hover {
        opacity: 0.9;
        color: #fff;
    }

    /* NORMAL CHECKBOX SIZE */
    .dropdown-content input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #6d28d9;
    }
.text-danger {
    font-size: 13px;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
}

    .form-control:focus {
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
        border-color: #2563eb;
    }
/* ================= ADMIN JOB PAGE ================= */

.admin-job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-job-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

    .admin-job-card:hover {
        transform: translateY(-2px);
    }

/* HEADER */
.admin-job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-job-title {
    font-weight: 700;
    margin: 0;
    font-size: 20px;
}

/* RIGHT SIDE */
.admin-job-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-status {
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* META */
.admin-job-meta {
    margin-top: 8px;
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: #6b7280;
}

/* DESCRIPTION */
.admin-job-desc {
    margin-top: 12px;
    color: #4b5563;
    line-height: 1.6;
}

/* LINK */
.admin-job-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
}

    .admin-job-link:hover {
        text-decoration: underline;
    }
