/* ========================================
   TECHJOBHUB — GLOBAL STYLES
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #f7f9fc;
    line-height: 1.6;
}

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

.container {
    width: min(1160px, 92%);
    margin: auto;
}


/* ========================================
   NAVBAR
======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #e5e9f0;

    backdrop-filter: blur(10px);
}

.nav-container {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.logo span {
    color: #2563eb;
}


/* NAVIGATION */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: #596579;

    transition: 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.telegram-link {
    background: #2563eb;
    color: white !important;

    padding: 10px 16px;

    border-radius: 8px;
}

.telegram-link:hover {
    background: #1d4ed8;
}


/* ========================================
   HERO
======================================== */

.hero {
    padding: 85px 0 75px;

    background:
        linear-gradient(
            135deg,
            #eef5ff 0%,
            #ffffff 55%,
            #f4f8ff 100%
        );

    border-bottom: 1px solid #e7ecf4;
}

.hero-container {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 65px;

    align-items: center;
}


/* HERO CONTENT */

.hero-label {
    display: inline-block;

    color: #2563eb;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.4px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(45px, 6vw, 68px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 22px;
}

.hero h1 span {
    display: block;

    color: #2563eb;
}

.hero-description {
    max-width: 620px;

    font-size: 18px;

    color: #657184;

    margin-bottom: 30px;
}


/* ========================================
   SEARCH BOX
======================================== */

.search-box {
    background: white;

    border: 1px solid #dfe5ee;

    border-radius: 14px;

    padding: 8px;

    display: grid;

    grid-template-columns: 1fr 155px 125px;

    box-shadow:
        0 15px 40px rgba(31, 53, 88, 0.08);
}

.search-box input,
.search-box select {
    border: none;

    outline: none;

    background: transparent;

    padding: 13px;

    font-size: 14px;

    color: #455166;
}

.search-box input::placeholder {
    color: #9aa4b2;
}

.search-box button {
    border: none;

    background: #2563eb;

    color: white;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.search-box button:hover {
    background: #1d4ed8;
}


/* ========================================
   HERO STATS
======================================== */

.hero-stats {
    display: flex;

    gap: 42px;

    margin-top: 32px;
}

.stat {
    display: flex;

    flex-direction: column;
}

.stat strong {
    font-size: 21px;
}

.stat span {
    font-size: 12px;

    color: #7d8797;
}


/* ========================================
   HERO JOB CARD
======================================== */

.hero-job-card {
    background: #101827;

    color: white;

    padding: 25px;

    border-radius: 20px;

    box-shadow:
        0 25px 55px rgba(16, 24, 39, 0.2);
}

.card-header {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #b0bac9;

    font-size: 13px;

    margin-bottom: 18px;
}

.live-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #22c55e;
}

.mini-job {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 0;

    border-top: 1px solid #293445;
}

.company-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #e8f0ff;

    color: #2563eb;

    font-weight: 800;
}

.mini-job-info {
    flex: 1;
}

.mini-job-info h3 {
    font-size: 14px;

    margin-bottom: 3px;
}

.mini-job-info p {
    font-size: 12px;

    color: #8e9aac;
}

.new-label {
    font-size: 10px;

    color: #62e6be;
}

.mini-telegram {
    display: block;

    text-align: center;

    margin-top: 15px;

    padding: 12px;

    background: #1c293b;

    color: #bcd1ff;

    border-radius: 9px;

    font-size: 13px;
}


/* ========================================
   GENERAL SECTION
======================================== */

.section {
    padding: 78px 0;
}

.section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 28px;
}

.section-label {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.4px;

    font-weight: 800;

    color: #2563eb;
}

.section-heading h2 {
    font-size: 31px;

    line-height: 1.2;

    letter-spacing: -1px;

    margin-top: 6px;
}

.view-all {
    color: #2563eb;

    font-size: 14px;

    font-weight: 700;
}


/* ========================================
   CATEGORY SECTION
======================================== */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.category-card {
    background: white;

    border: 1px solid #e4e9f1;

    border-radius: 14px;

    padding: 22px;

    transition: 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(31, 53, 88, 0.08);
}

.category-icon {
    font-size: 26px;

    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 15px;

    margin-bottom: 4px;
}

.category-card p {
    font-size: 12px;

    color: #8993a3;
}


/* ========================================
   LATEST JOBS
======================================== */

.latest-jobs {
    background: white;
}

.job-list {
    display: grid;

    gap: 15px;
}

.job-card {
    background: white;

    border: 1px solid #e3e8ef;

    border-radius: 15px;

    padding: 22px;

    transition: 0.2s ease;
}

.job-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 32px rgba(31, 53, 88, 0.08);
}

.job-main {
    display: flex;

    align-items: center;

    gap: 16px;
}

.job-company-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: #e8f0ff;

    color: #2563eb;

    font-size: 18px;

    font-weight: 800;
}

.job-information {
    flex: 1;
}

.job-title-row {
    display: flex;

    align-items: center;

    gap: 10px;
}

.job-title-row h3 {
    font-size: 17px;
}

.job-badge {
    background: #eef2f7;

    color: #687487;

    padding: 4px 8px;

    border-radius: 20px;

    font-size: 10px;
}

.job-badge.new {
    background: #eafaf2;

    color: #168451;
}

.company-name {
    font-size: 14px;

    font-weight: 700;

    margin-top: 3px;
}

.job-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    color: #778294;

    font-size: 12px;

    margin-top: 8px;
}


/* JOB FOOTER */

.job-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    border-top: 1px solid #edf0f5;

    margin-top: 18px;

    padding-top: 15px;

    color: #7b8594;

    font-size: 12px;
}

.apply-button {
    background: #2563eb;

    color: white;

    padding: 9px 14px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    transition: 0.2s ease;
}

.apply-button:hover {
    background: #1d4ed8;
}


/* ========================================
   TELEGRAM SECTION
======================================== */

.telegram-section {
    padding: 58px 0;

    background: #0f172a;

    color: white;
}

.telegram-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.telegram-container h2 {
    font-size: 32px;

    margin: 7px 0;
}

.telegram-container > div > p:last-child {
    max-width: 680px;

    color: #adb8c8;

    font-size: 14px;
}

.telegram-button {
    background: #2563eb;

    color: white;

    padding: 14px 20px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: 0.2s ease;
}

.telegram-button:hover {
    background: #1d4ed8;
}


/* ========================================
   CAREER RESOURCES
======================================== */

.resource-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.resource-card {
    background: white;

    border: 1px solid #e4e9f1;

    border-radius: 14px;

    padding: 22px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    transition: 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(31, 53, 88, 0.08);
}

.resource-icon {
    font-size: 25px;
}

.resource-card div:nth-child(2) {
    flex: 1;
}

.resource-card h3 {
    font-size: 16px;
}

.resource-card p {
    color: #778294;

    font-size: 13px;

    margin-top: 5px;
}

.resource-card > span:last-child {
    color: #2563eb;

    font-size: 20px;

    font-weight: 700;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    background: #0b1220;

    color: #aab5c7;

    padding: 55px 0 20px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;
}

.footer .logo {
    color: white;
}

.footer .logo span {
    color: #60a5fa;
}

.footer-about p {
    max-width: 300px;

    font-size: 13px;

    margin-top: 12px;
}

.footer-column h4 {
    color: white;

    margin-bottom: 13px;

    font-size: 14px;
}

.footer-column a {
    display: block;

    font-size: 13px;

    margin: 8px 0;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #202b3c;

    margin-top: 40px;

    padding-top: 18px;

    font-size: 12px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .nav-menu {
        gap: 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-job-card {
        max-width: 650px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .nav-container {
        min-height: 65px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .search-box {
        grid-template-columns: 1fr;

        gap: 4px;
    }

    .search-box input,
    .search-box select,
    .search-box button {
        min-height: 45px;
    }

    .hero-stats {
        gap: 25px;
    }

    .section {
        padding: 55px 0;
    }

    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

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

    .job-title-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

    .job-footer {
        flex-direction: column;

        align-items: flex-start;
    }

    .telegram-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .telegram-container h2 {
        font-size: 27px;
    }

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

}
/* ========================================
   NO RESULTS
======================================== */

.no-results-content {
    text-align: center;

    padding: 50px 20px;

    background: #f7f9fc;

    border: 1px solid #e3e8ef;

    border-radius: 15px;
}

.no-results-icon {
    font-size: 38px;

    margin-bottom: 10px;
}

.no-results-content h3 {
    font-size: 20px;

    margin-bottom: 5px;
}

.no-results-content p {
    color: #778294;

    font-size: 14px;
}
/* ========================================
   MOBILE MENU BUTTON
======================================== */

.menu-toggle {
    display: none;

    border: none;

    background: transparent;

    font-size: 27px;

    cursor: pointer;

    color: #172033;
}


@media (max-width: 650px) {

    .menu-toggle {
        display: block;
    }

    .nav-container {
        position: relative;
    }

    .nav-menu {
        display: none;

        position: absolute;

        top: 65px;

        left: 0;

        right: 0;

        background: white;

        border: 1px solid #e5e9f0;

        padding: 15px;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        box-shadow:
            0 15px 30px rgba(31, 53, 88, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;

        border-radius: 7px;
    }

    .nav-menu a:hover {
        background: #f1f5f9;
    }

    .telegram-link {
        text-align: center;
    }

}
/* ========================================
   JOB DETAILS PAGE
======================================== */

.job-details-page {
    background: #f7f9fc;
    min-height: 100vh;
}


/* BREADCRUMB */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 25px 0;

    font-size: 12px;

    color: #8a94a5;
}

.breadcrumb a {
    color: #2563eb;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


/* JOB DETAIL HEADER */

.job-detail-header {
    background: white;

    border-top: 1px solid #e7ebf1;
    border-bottom: 1px solid #e1e7ef;

    padding: 38px 0;
}

.job-detail-header-content {
    display: flex;
    align-items: center;

    gap: 20px;
}

.detail-company-icon {
    width: 72px;
    height: 72px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: #e8f0ff;

    color: #2563eb;

    font-size: 27px;
    font-weight: 800;
}

.detail-title-area {
    flex: 1;
}

.detail-title-row {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;
}

.detail-title-row h1 {
    font-size: 34px;

    line-height: 1.2;

    letter-spacing: -1px;

    color: #172033;
}

.detail-company {
    font-size: 16px;

    font-weight: 700;

    margin-top: 7px;
}

.detail-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 10px;

    color: #718096;

    font-size: 13px;
}


/* MAIN CONTENT */

.job-detail-content {
    padding: 55px 0 75px;
}

.job-detail-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 340px;

    gap: 35px;

    align-items: start;
}


/* DESCRIPTION */

.job-description {
    background: white;

    border: 1px solid #e1e7ef;

    border-radius: 16px;

    padding: 35px;
}

.detail-section {
    padding-bottom: 30px;

    margin-bottom: 30px;

    border-bottom: 1px solid #edf0f5;
}

.detail-section:last-of-type {
    border-bottom: none;

    margin-bottom: 0;

    padding-bottom: 0;
}

.detail-section h2 {
    font-size: 21px;

    margin-bottom: 13px;

    color: #172033;
}

.detail-section p {
    color: #657184;

    font-size: 14px;

    line-height: 1.8;
}

.detail-section ul {
    padding-left: 20px;
}

.detail-section li {
    color: #657184;

    font-size: 14px;

    margin: 10px 0;

    line-height: 1.7;
}


/* SKILL TAGS */

.skill-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.skill-tags span {
    background: #eef4ff;

    color: #2563eb;

    padding: 7px 12px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 700;
}


/* ELIGIBILITY */

.eligibility-table {
    border: 1px solid #e3e8ef;

    border-radius: 10px;

    overflow: hidden;
}

.eligibility-table > div {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 14px 16px;

    border-bottom: 1px solid #edf0f5;

    font-size: 13px;
}

.eligibility-table > div:last-child {
    border-bottom: none;
}

.eligibility-table strong {
    color: #4b5565;
}

.eligibility-table span {
    color: #748093;

    text-align: right;
}


/* DISCLAIMER */

.job-disclaimer {
    margin-top: 30px;

    padding: 17px;

    background: #fff9ed;

    border: 1px solid #f1dfb7;

    border-radius: 10px;
}

.job-disclaimer strong {
    font-size: 13px;

    color: #805d16;
}

.job-disclaimer p {
    font-size: 12px;

    color: #7d6b46;

    margin-top: 5px;

    line-height: 1.6;
}


/* ========================================
   SIDEBAR
======================================== */

.job-sidebar {
    display: grid;

    gap: 18px;

    position: sticky;

    top: 95px;
}


/* APPLY CARD */

.apply-card {
    background: white;

    border: 1px solid #e1e7ef;

    border-radius: 16px;

    padding: 25px;

    box-shadow:
        0 10px 30px rgba(31, 53, 88, 0.05);
}

.apply-card h2 {
    font-size: 20px;

    margin-bottom: 7px;
}

.apply-card > p {
    color: #748093;

    font-size: 13px;

    line-height: 1.6;
}

.apply-now-button {
    display: block;

    text-align: center;

    background: #2563eb;

    color: white;

    padding: 13px;

    margin-top: 20px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.2s ease;
}

.apply-now-button:hover {
    background: #1d4ed8;
}

.apply-note {
    text-align: center;

    font-size: 10px !important;

    margin-top: 10px;
}


/* SUMMARY CARD */

.summary-card {
    background: white;

    border: 1px solid #e1e7ef;

    border-radius: 16px;

    padding: 23px;
}

.summary-card h3 {
    font-size: 17px;

    margin-bottom: 10px;
}

.summary-item {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 13px 0;

    border-bottom: 1px solid #edf0f5;

    font-size: 12px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #7a8595;
}

.summary-item strong {
    color: #354052;

    text-align: right;
}


/* SIDEBAR TELEGRAM */

.sidebar-telegram {
    background: #0f172a;

    color: white;

    border-radius: 16px;

    padding: 25px;
}

.telegram-icon {
    font-size: 25px;

    margin-bottom: 10px;
}

.sidebar-telegram h3 {
    font-size: 18px;
}

.sidebar-telegram p {
    color: #aeb9ca;

    font-size: 12px;

    margin: 7px 0 15px;

    line-height: 1.6;
}

.sidebar-telegram a {
    color: #70a2ff;

    font-size: 12px;

    font-weight: 700;
}


/* ========================================
   JOB PAGE RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .job-detail-grid {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        position: static;

        grid-template-columns: 1fr 1fr;
    }

    .sidebar-telegram {
        grid-column: span 2;
    }

}


@media (max-width: 650px) {

    .job-detail-header-content {
        align-items: flex-start;

        flex-direction: column;
    }

    .detail-title-row h1 {
        font-size: 27px;
    }

    .detail-meta {
        flex-direction: column;

        gap: 5px;
    }

    .job-description {
        padding: 22px;
    }

    .job-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-telegram {
        grid-column: auto;
    }

    .eligibility-table > div {
        flex-direction: column;

        gap: 5px;
    }

    .eligibility-table span {
        text-align: left;
    }

}
/* ========================================
   SEARCH RESULTS
======================================== */

.no-results {
    background: white;

    border: 1px solid #e1e7ef;

    border-radius: 16px;

    padding: 60px 25px;

    text-align: center;
}

.no-results-icon {
    font-size: 35px;

    margin-bottom: 12px;
}

.no-results h3 {
    font-size: 20px;

    color: #172033;

    margin-bottom: 7px;
}

.no-results p {
    color: #748093;

    font-size: 13px;

    margin-bottom: 20px;
}

.no-results button {
    border: none;

    background: #2563eb;

    color: white;

    padding: 10px 18px;

    border-radius: 7px;

    cursor: pointer;

    font-weight: 600;
}
/* ========================================
   ALL JOBS PAGE
======================================== */

.jobs-page-header {
    background: #f7f9fc;

    border-bottom: 1px solid #e4e9f0;

    padding-bottom: 45px;
}

.section-label {
    display: inline-block;

    color: #2563eb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.jobs-page-header h1 {
    font-size: 42px;

    color: #172033;

    margin-bottom: 10px;

    letter-spacing: -1px;
}

.jobs-page-header p {
    max-width: 650px;

    color: #68758a;

    font-size: 15px;

    line-height: 1.7;
}


/* SEARCH BOX */

.jobs-page-content {
    padding: 45px 0 80px;

    background: white;
}

.jobs-search-box {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        220px
        140px;

    gap: 12px;

    padding: 18px;

    border: 1px solid #e0e6ef;

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(25, 45, 75, 0.05);
}

.search-field {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.search-field label {
    font-size: 11px;

    font-weight: 700;

    color: #596579;
}

.search-field input,
.search-field select {
    width: 100%;

    height: 44px;

    border: 1px solid #dce2eb;

    border-radius: 8px;

    padding: 0 13px;

    outline: none;

    color: #253047;

    background: white;

    font-size: 13px;
}

.search-field input:focus,
.search-field select:focus {
    border-color: #2563eb;
}

.search-jobs-button {
    align-self: end;

    height: 44px;

    border: none;

    border-radius: 8px;

    background: #2563eb;

    color: white;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}

.search-jobs-button:hover {
    background: #1d4ed8;
}


/* RESULTS HEADER */

.jobs-results-header {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin: 50px 0 22px;
}

.jobs-results-header h2 {
    font-size: 27px;

    color: #172033;
}

.job-count {
    color: #718096;

    font-size: 13px;
}


/* ALL JOB LIST */

#all-job-list {
    display: grid;

    gap: 16px;
}


/* MOBILE */

@media (max-width: 800px) {

    .jobs-search-box {
        grid-template-columns: 1fr;
    }

    .search-jobs-button {
        width: 100%;
    }

}


@media (max-width: 600px) {

    .jobs-page-header h1 {
        font-size: 32px;
    }

    .jobs-results-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

}

/* ========================================
   NEW HOMEPAGE HERO
======================================== */

.hero {
    background: #f7f9fc;

    border-bottom: 1px solid #e5e9f0;

    padding: 85px 0 75px;
}

.hero-content {
    max-width: 1000px;

    text-align: center;

    margin: auto;
}

.hero-label {
    display: inline-block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: #2563eb;

    margin-bottom: 18px;
}

.hero h1 {
    max-width: 800px;

    margin: 0 auto 18px;

    font-size: 58px;

    line-height: 1.08;

    letter-spacing: -2px;

    color: #172033;
}

.hero h1 span {
    display: inline;
}

.hero p {
    max-width: 680px;

    margin: 0 auto 35px;

    color: #68758a;

    font-size: 16px;

    line-height: 1.7;
}


/* SEARCH */

.hero-search {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        220px
        150px;

    max-width: 850px;

    margin: 0 auto;

    padding: 7px;

    background: white;

    border: 1px solid #dce2eb;

    border-radius: 12px;

    box-shadow:
        0 12px 35px rgba(30, 50, 80, 0.08);

    text-align: left;
}

.hero-search-field {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 15px;

    border-right: 1px solid #e5e9ef;
}

.hero-search-field span {
    color: #7a8699;

    font-size: 20px;
}

.hero-search-field input {
    width: 100%;

    height: 50px;

    border: none;

    outline: none;

    font-size: 13px;

    color: #253047;
}

.hero-search-field input::placeholder {
    color: #8b96a7;
}

.hero-search button {
    height: 50px;

    border: none;

    border-radius: 8px;

    background: #2563eb;

    color: white;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}

.hero-search button:hover {
    background: #1d4ed8;
}


/* POPULAR SEARCHES */

.popular-searches {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 18px;

    font-size: 12px;
}

.popular-searches > span {
    color: #7a8699;

    font-weight: 600;
}

.popular-searches a {
    color: #526075;

    text-decoration: none;

    padding: 5px 9px;

    border: 1px solid #e0e5ec;

    border-radius: 6px;

    background: white;
}

.popular-searches a:hover {
    color: #2563eb;

    border-color: #2563eb;
}


/* MOBILE */

@media (max-width: 750px) {

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .hero-search {
        grid-template-columns: 1fr;
    }

    .hero-search-field {
        border-right: none;

        border-bottom: 1px solid #e5e9ef;
    }

    .hero-search button {
        margin: 5px;
    }

}


@media (max-width: 480px) {

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

    .hero p {
        font-size: 14px;
    }

    .popular-searches {
        justify-content: flex-start;
    }

}
/* ========================================
   HOMEPAGE LATEST JOBS
======================================== */

.latest-jobs {
    padding: 75px 0;
    background: white;
}


.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 30px;
}


.section-heading h2 {
    margin-bottom: 8px;

    font-size: 32px;

    color: #172033;
}


.section-heading p {
    color: #718096;

    font-size: 14px;
}


.view-all-link {
    color: #2563eb;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}


.view-all-link:hover {
    text-decoration: underline;
}


.homepage-job-list {
    display: grid;

    gap: 15px;
}


@media (max-width: 600px) {

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

}
/* ========================================
   DYNAMIC CATEGORY GRID
======================================== */

.categories {
    padding: 75px 0;

    background: #f7f9fc;
}


.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;

    margin-top: 30px;
}


.category-card {
    display: flex;

    align-items: center;

    gap: 14px;

    position: relative;

    padding: 20px;

    min-height: 105px;

    background: white;

    border: 1px solid #e2e7ef;

    border-radius: 12px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.category-card:hover {
    transform: translateY(-3px);

    border-color: #2563eb;

    box-shadow:
        0 10px 25px rgba(30, 50, 80, 0.08);
}


.category-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 10px;

    background: #eef4ff;

    font-size: 23px;
}


.category-content {
    min-width: 0;
}


.category-content h3 {
    margin: 0 0 5px;

    color: #172033;

    font-size: 14px;

    line-height: 1.4;
}


.category-content p {
    margin: 0;

    color: #7a8699;

    font-size: 12px;
}


.category-arrow {
    margin-left: auto;

    color: #8b96a7;

    font-size: 18px;
}


.category-card:hover .category-arrow {
    color: #2563eb;
}


@media (max-width: 900px) {

    .category-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 550px) {

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

}
/* ========================================
   JOB DETAILS PAGE
======================================== */

.job-details-page {
    padding: 45px 0 80px;

    background: #f7f9fc;

    min-height: 700px;
}


/* HEADER */

.job-detail-header {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 35px;

    margin-top: 25px;

    background: white;

    border: 1px solid #e2e7ef;

    border-radius: 14px;
}


.job-detail-company-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 80px;

    height: 80px;

    flex-shrink: 0;

    border-radius: 14px;

    background: #eef4ff;

    color: #2563eb;

    font-size: 32px;

    font-weight: 800;
}


.job-detail-title {
    min-width: 0;
}


.job-detail-title h1 {
    margin: 8px 0;

    color: #172033;

    font-size: 34px;

    line-height: 1.2;
}


.job-detail-title h2 {
    margin: 0 0 15px;

    color: #647084;

    font-size: 17px;

    font-weight: 600;
}


.job-detail-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 20px;

    color: #6b778c;

    font-size: 13px;
}


/* LAYOUT */

.job-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 25px;

    margin-top: 25px;
}


/* MAIN */

.job-detail-main {
    background: white;

    border: 1px solid #e2e7ef;

    border-radius: 14px;

    padding: 35px;
}


.job-detail-section {
    padding-bottom: 30px;

    margin-bottom: 30px;

    border-bottom: 1px solid #e8ecf2;
}


.job-detail-section:last-child {
    padding-bottom: 0;

    margin-bottom: 0;

    border-bottom: none;
}


.job-detail-section h2 {
    margin: 0 0 15px;

    color: #172033;

    font-size: 21px;
}


.job-detail-section p {
    margin: 0;

    color: #68758a;

    font-size: 14px;

    line-height: 1.8;
}


.job-detail-section ul {
    margin: 0;

    padding-left: 20px;

    color: #68758a;

    font-size: 14px;

    line-height: 1.9;
}


.job-detail-section li {
    margin-bottom: 8px;
}


/* SKILLS */

.skills-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.skill-tag {
    display: inline-block;

    padding: 7px 12px;

    background: #eef4ff;

    border-radius: 6px;

    color: #2563eb;

    font-size: 12px;

    font-weight: 700;
}


/* SIDEBAR */

.job-detail-sidebar {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.apply-card,
.job-summary-card {
    padding: 25px;

    background: white;

    border: 1px solid #e2e7ef;

    border-radius: 14px;
}


.apply-card h3,
.job-summary-card h3 {
    margin: 0 0 12px;

    color: #172033;

    font-size: 18px;
}


.apply-card p {
    margin: 0 0 20px;

    color: #6b778c;

    font-size: 13px;

    line-height: 1.7;
}


.apply-now-button {
    display: block;

    width: 100%;

    padding: 14px;

    border-radius: 8px;

    background: #2563eb;

    color: white;

    text-align: center;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}


.apply-now-button:hover {
    background: #1d4ed8;
}


.apply-note {
    margin-top: 12px !important;

    margin-bottom: 0 !important;

    font-size: 11px !important;

    color: #8b96a7 !important;
}


/* SUMMARY */

.summary-item {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 13px 0;

    border-bottom: 1px solid #edf0f4;

    font-size: 12px;
}


.summary-item:last-child {
    border-bottom: none;
}


.summary-item span {
    color: #7a8699;
}


.summary-item strong {
    color: #27334a;

    text-align: right;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .job-detail-layout {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .job-detail-header {
        align-items: flex-start;

        flex-direction: column;

        padding: 25px;
    }


    .job-detail-title h1 {
        font-size: 27px;
    }


    .job-detail-main {
        padding: 25px;
    }


    .job-detail-sidebar {
        width: 100%;
    }

}
/* ========================================
   ADMIN PAGE
======================================== */

.admin-page {
    padding: 55px 0 80px;

    background: #f7f9fc;

    min-height: 700px;
}


.admin-header {
    margin-bottom: 30px;
}


.admin-header h1 {
    margin: 8px 0 10px;

    color: #172033;

    font-size: 34px;
}


.admin-header p {
    margin: 0;

    color: #68758a;

    font-size: 14px;
}


/* FORM */

.admin-form {
    background: white;

    border: 1px solid #e2e7ef;

    border-radius: 14px;

    overflow: hidden;
}


.admin-form-section {
    padding: 30px;

    border-bottom: 1px solid #e8ecf2;
}


.admin-form-section:last-of-type {
    border-bottom: none;
}


.admin-form-section h2 {
    margin: 0 0 22px;

    color: #172033;

    font-size: 20px;
}


/* GRID */

.admin-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* FORM GROUP */

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {
    color: #27334a;

    font-size: 13px;

    font-weight: 700;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid #dce2eb;

    border-radius: 8px;

    background: white;

    color: #27334a;

    font-family: inherit;

    font-size: 13px;

    outline: none;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
}


.form-group textarea {
    resize: vertical;

    line-height: 1.6;
}


.form-group small {
    color: #8994a6;

    font-size: 11px;

    line-height: 1.5;
}


/* ACTIONS */

.admin-form-actions {
    display: flex;

    justify-content: flex-end;

    gap: 12px;

    padding: 25px 30px;

    background: #fafbfd;
}


.secondary-button {
    padding: 12px 20px;

    border: 1px solid #dce2eb;

    border-radius: 8px;

    background: white;

    color: #4c586c;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;
}


.secondary-button:hover {
    background: #f3f5f8;
}


/* SUCCESS */

.admin-success {
    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 20px;

    padding: 18px 20px;

    border: 1px solid #d8e8df;

    border-radius: 10px;

    background: #f1f9f4;

    color: #25633d;

    font-size: 13px;
}


.admin-success span {
    font-size: 12px;

    color: #5d7867;
}


/* RESPONSIVE */

@media (max-width: 700px) {

    .admin-form-grid {
        grid-template-columns: 1fr;
    }


    .admin-form-section {
        padding: 22px;
    }


    .admin-form-actions {
        padding: 20px 22px;

        flex-direction: column;
    }


    .secondary-button,
    .admin-form-actions .search-jobs-button {
        width: 100%;
    }


    .admin-header h1 {
        font-size: 28px;
    }

}