/* ============================================================
   CareerSetu Pro / Nearby Job Search
   Homepage Styles
   File: public_html/assets/css/home.css
   Version: V50 Ultra Premium
   ============================================================ */


/* ============================================================
   01. HOME ROOT
============================================================ */

.cs-home {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.cs-home *,
.cs-home *::before,
.cs-home *::after {
    box-sizing: border-box;
}


/* ============================================================
   02. HERO
============================================================ */

.cs-hero {
    position: relative;
    padding: 90px 0 72px;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 15%,
            rgba(14, 165, 233, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
    isolation: isolate;
}

.cs-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    pointer-events: none;
    z-index: -1;
}

.cs-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -190px;
    top: 30px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.05);
    pointer-events: none;
    z-index: -1;
}


/* ============================================================
   03. HERO CONTENT
============================================================ */

.cs-hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.cs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 7px 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.cs-hero-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: #eaf2ff;
    color: #2563eb;
}

.cs-hero-title {
    margin: 0;
    max-width: 820px;
    color: #0f172a;
    font-size: clamp(48px, 5.1vw, 78px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.cs-hero-title span {
    display: block;
    margin-top: 7px;
    background: linear-gradient(
        90deg,
        #2563eb 0%,
        #0284c7 52%,
        #0ea5e9 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2563eb;
}

.cs-hero-description {
    max-width: 720px;
    margin: 27px 0 0;
    color: #526176;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}


/* ============================================================
   04. HERO SEARCH
============================================================ */

.cs-hero-search {
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        1px
        minmax(0, 0.92fr)
        auto;
    align-items: center;
    width: 100%;
    max-width: 790px;
    min-height: 78px;
    margin-top: 34px;
    padding: 9px 10px 9px 18px;
    border: 1px solid #dce6f2;
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.09),
        0 4px 14px rgba(15, 23, 42, 0.04);
}

.cs-search-field {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 56px;
}

.cs-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    margin-right: 7px;
    border-radius: 11px;
    color: #2563eb;
    font-size: 18px;
}

.cs-search-input {
    flex: 1;
    min-width: 0;
}

.cs-search-input input {
    display: block;
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 0 12px 0 2px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #0f172a;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
}

.cs-search-input input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.cs-search-input input:focus {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.cs-search-divider {
    width: 1px;
    height: 38px;
    background: #e2e8f0;
}

.cs-search-button {
    min-width: 150px;
    min-height: 56px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    white-space: nowrap;
}

.cs-search-button i {
    font-size: 17px;
}


/* ============================================================
   05. COMMON HOME BUTTONS
============================================================ */

.cs-home .cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease;
    cursor: pointer;
}

.cs-home .cs-btn:hover {
    transform: translateY(-2px);
}

.cs-home .cs-btn-primary {
    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #0ea5e9 100%
    );
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.cs-home .cs-btn-primary:hover {
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.30);
}

.cs-home .cs-btn-outline {
    min-height: 50px;
    padding: 0 22px;
    border-color: #cbd5e1;
    border-radius: 13px;
    background: #ffffff;
    color: #0f172a;
}

.cs-home .cs-btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.cs-home .cs-btn-light {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.cs-home .cs-btn-ghost-light {
    min-height: 52px;
    padding: 0 24px;
    border-color: rgba(255, 255, 255, 0.30);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.cs-home .cs-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}


/* ============================================================
   06. HERO TRUST
============================================================ */

.cs-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 22px;
}

.cs-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.cs-hero-trust-item i {
    color: #2563eb;
    font-size: 15px;
}


/* ============================================================
   07. HERO VISUAL
============================================================ */

.cs-hero-visual {
    position: relative;
    width: 100%;
    max-width: 550px;
    min-height: 590px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-hero-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.18) 0%,
        rgba(14, 165, 233, 0.09) 38%,
        transparent 72%
    );
    transform: translate(-50%, -50%);
    filter: blur(8px);
    pointer-events: none;
}


/* ============================================================
   08. HERO DASHBOARD CARD
============================================================ */

.cs-hero-dashboard-card {
    position: relative;
    z-index: 3;
    width: calc(100% - 46px);
    max-width: 500px;
    padding: 28px;
    border: 1px solid rgba(203, 213, 225, 0.78);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 32px 80px rgba(15, 23, 42, 0.14),
        0 8px 24px rgba(37, 99, 235, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cs-hero-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
}

.cs-mini-label {
    display: block;
    margin-bottom: 7px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cs-hero-card-header h2 {
    margin: 0;
    color: #0f172a;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.cs-online-dot {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    margin-top: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.cs-online-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 50%;
}


/* ============================================================
   09. HERO JOB PREVIEW
============================================================ */

.cs-hero-job-preview {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid #edf2f7;
}

.cs-job-preview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 19px;
}

.cs-job-preview-content {
    min-width: 0;
}

.cs-job-preview-content strong {
    display: block;
    margin-bottom: 3px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 750;
}

.cs-job-preview-content span {
    display: block;
    color: #64748b;
    font-size: 12px;
    line-height: 1.55;
}

.cs-job-preview-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    font-size: 14px;
}


/* ============================================================
   10. PROFILE CARD
============================================================ */

.cs-hero-profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 17px;
    border: 1px solid #dbeafe;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        #eff6ff 0%,
        #f0f9ff 100%
    );
}

.cs-profile-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.cs-profile-progress-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 13px;
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.10);
}

.cs-profile-progress strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.cs-profile-progress span {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.45;
}

.cs-profile-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    color: #2563eb;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.cs-profile-action:hover {
    color: #1d4ed8;
}


/* ============================================================
   11. FLOATING HERO CARDS
============================================================ */

.cs-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 175px;
    padding: 13px 15px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cs-floating-card-one {
    left: -8px;
    top: 126px;
}

.cs-floating-card-two {
    right: -4px;
    bottom: 105px;
}

.cs-floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
}

.cs-floating-card strong {
    display: block;
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
}

.cs-floating-card small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 10px;
}


/* ============================================================
   12. HOME STATS
============================================================ */

.cs-home-stats {
    position: relative;
    z-index: 8;
    padding: 0 0 24px;
    background: #ffffff;
}

.cs-stats-wrapper {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;
    align-items: center;
    min-height: 122px;
    padding: 20px 28px;
    margin-top: -38px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.cs-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 20px;
}

.cs-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 19px;
}

.cs-stat-content strong {
    display: block;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.cs-stat-content span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.cs-stat-divider {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
}


/* ============================================================
   13. COMMON SECTIONS
============================================================ */

.cs-section {
    position: relative;
    padding: 92px 0;
}

.cs-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.cs-section-heading > div:first-child {
    max-width: 680px;
}

.cs-section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cs-section-heading h2,
.cs-centered-heading h2,
.cs-why-content h2,
.cs-service-info-content h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.cs-section-heading p,
.cs-centered-heading p {
    max-width: 620px;
    margin: 13px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}

.cs-section-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding-bottom: 4px;
    color: #2563eb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.cs-section-link:hover {
    color: #1d4ed8;
}

.cs-centered-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}


/* ============================================================
   14. CATEGORIES
============================================================ */

.cs-categories-section {
    background: #ffffff;
}

.cs-category-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 15px;
    min-height: 112px;
    height: 100%;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 19px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.035);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.cs-category-card:hover {
    transform: translateY(-5px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.10);
}

.cs-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        #eff6ff 0%,
        #e0f2fe 100%
    );
    color: #2563eb;
    font-size: 23px;
}

.cs-category-content {
    min-width: 0;
}

.cs-category-content h3 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.cs-category-content span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}

.cs-category-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.cs-category-card:hover .cs-category-arrow {
    background: #2563eb;
    color: #ffffff;
}


/* ============================================================
   15. FEATURED JOBS
============================================================ */

.cs-featured-jobs {
    background: #f8fafc;
}

.cs-job-card {
    height: 100%;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.cs-job-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.cs-job-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cs-company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    background: #f8fafc;
}

.cs-company-logo img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}

.cs-company-logo span {
    color: #2563eb;
    font-size: 22px;
    font-weight: 800;
}

.cs-job-main {
    min-width: 0;
}

.cs-job-main h3 {
    margin: 1px 0 7px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.cs-job-main h3 a {
    color: #0f172a;
    text-decoration: none;
}

.cs-job-main h3 a:hover {
    color: #2563eb;
}

.cs-job-company {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
}

.cs-job-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 21px;
}

.cs-job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 9px;
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
}

.cs-job-meta i {
    color: #2563eb;
}

.cs-job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #edf2f7;
}

.cs-job-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
}

.cs-job-status i {
    font-size: 7px;
}

.cs-job-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.cs-section-action,
.cs-how-action {
    margin-top: 38px;
    text-align: center;
}

.cs-section-action .cs-btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
}


/* ============================================================
   16. EMPTY JOBS
============================================================ */

.cs-empty-jobs {
    max-width: 680px;
    margin: 0 auto;
    padding: 52px 30px;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}

.cs-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 28px;
}

.cs-empty-jobs h3 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
}

.cs-empty-jobs p {
    max-width: 500px;
    margin: 10px auto 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.cs-empty-jobs .cs-btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 13px;
}


/* ============================================================
   17. HOW IT WORKS
============================================================ */

.cs-how-section {
    background: #ffffff;
}

.cs-step-card {
    position: relative;
    height: 100%;
    min-height: 285px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.cs-step-number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #e2e8f0;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.cs-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.20);
}

.cs-step-card h3 {
    margin: 0 0 11px;
    color: #0f172a;
    font-size: 19px;
    font-weight: 800;
}

.cs-step-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}


/* ============================================================
   18. COMPANIES
============================================================ */

.cs-companies-section {
    background: #f8fafc;
}

.cs-company-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 16px;
    height: 100%;
    min-height: 124px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.cs-company-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.cs-company-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #f8fafc;
}

.cs-company-card-logo img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}

.cs-company-card-logo span {
    color: #2563eb;
    font-size: 23px;
    font-weight: 800;
}

.cs-company-card-content {
    min-width: 0;
}

.cs-company-card-content h3 {
    margin: 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
}

.cs-company-card-content p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px 0;
    color: #64748b;
    font-size: 11px;
}

.cs-company-card-content span {
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
}

.cs-company-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
}


/* ============================================================
   19. WHY SECTION
============================================================ */

.cs-why-section {
    background: #ffffff;
}

.cs-why-content {
    max-width: 520px;
}

.cs-why-content p {
    margin: 20px 0 27px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

.cs-why-content .cs-btn {
    min-height: 52px;
    padding: 0 23px;
    border-radius: 14px;
}

.cs-feature-card {
    height: 100%;
    padding: 26px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.035);
}

.cs-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 19px;
    border-radius: 15px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 20px;
}

.cs-feature-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
}

.cs-feature-card p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   20. SERVICE INFORMATION
============================================================ */

.cs-service-info-section {
    padding-top: 20px;
    background: #ffffff;
}

.cs-service-info-card {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border: 1px solid #dbeafe;
    border-radius: 27px;
    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eff6ff 50%,
            #f0f9ff 100%
        );
}

.cs-service-info-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    top: -110px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.07);
}

.cs-service-info-content {
    position: relative;
    z-index: 2;
}

.cs-service-info-content p {
    max-width: 760px;
    margin: 17px 0 0;
    color: #526176;
    font-size: 14px;
    line-height: 1.8;
}

.cs-service-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 760px;
    margin-top: 19px;
    padding: 14px 16px;
    border: 1px solid #dbeafe;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.75);
    color: #475569;
    font-size: 12px;
    line-height: 1.65;
}

.cs-service-notice i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #2563eb;
}

.cs-service-info-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.cs-service-info-action .cs-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 14px;
}

.cs-text-link {
    color: #475569;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.cs-text-link:hover {
    color: #2563eb;
}


/* ============================================================
   21. FINAL CTA
============================================================ */

.cs-home-cta {
    padding: 30px 0 95px;
    background: #ffffff;
}

.cs-home-cta-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 62px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172554 42%,
            #1d4ed8 100%
        );
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.cs-cta-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cs-cta-glow-one {
    width: 330px;
    height: 330px;
    right: -80px;
    top: -120px;
    background: rgba(56, 189, 248, 0.20);
    filter: blur(10px);
}

.cs-cta-glow-two {
    width: 240px;
    height: 240px;
    left: 30%;
    bottom: -160px;
    background: rgba(37, 99, 235, 0.22);
    filter: blur(20px);
}

.cs-home-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.cs-cta-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cs-home-cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.cs-home-cta-content p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

.cs-home-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}


/* ============================================================
   22. LARGE DESKTOP
============================================================ */

@media (min-width: 1400px) {

    .cs-hero {
        padding-top: 100px;
        padding-bottom: 82px;
    }

    .cs-hero-visual {
        min-height: 610px;
    }
}


/* ============================================================
   23. LAPTOP / SMALL DESKTOP
============================================================ */

@media (max-width: 1199.98px) {

    .cs-hero {
        padding: 75px 0 68px;
    }

    .cs-hero-title {
        font-size: 56px;
    }

    .cs-hero-search {
        grid-template-columns: 1fr;
        gap: 4px;
        max-width: 620px;
        padding: 12px;
    }

    .cs-search-field {
        padding: 0 5px;
        border: 1px solid #e2e8f0;
        border-radius: 13px;
    }

    .cs-search-divider {
        display: none;
    }

    .cs-search-button {
        width: 100%;
        margin-top: 3px;
    }

    .cs-hero-visual {
        min-height: 540px;
    }

    .cs-floating-card-one {
        left: 0;
    }

    .cs-floating-card-two {
        right: 0;
    }

    .cs-stats-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .cs-stat-divider {
        display: none;
    }

    .cs-stat-item {
        justify-content: flex-start;
        border-bottom: 1px solid #edf2f7;
    }

    .cs-stat-item:nth-child(n+5) {
        border-bottom: 0;
    }
}


/* ============================================================
   24. TABLET
============================================================ */

@media (max-width: 991.98px) {

    .cs-hero {
        padding: 64px 0 65px;
    }

    .cs-hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .cs-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .cs-hero-title {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        font-size: 54px;
    }

    .cs-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cs-hero-search {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .cs-hero-trust {
        justify-content: center;
    }

    .cs-hero-visual {
        max-width: 600px;
        min-height: 570px;
        margin: 28px auto 0;
    }

    .cs-hero-dashboard-card {
        max-width: 520px;
    }

    .cs-stats-wrapper {
        margin-top: -28px;
    }

    .cs-section {
        padding: 75px 0;
    }

    .cs-section-heading {
        align-items: flex-start;
    }

    .cs-service-info-action {
        max-width: 320px;
    }

    .cs-home-cta-card {
        padding: 50px;
    }
}


/* ============================================================
   25. MOBILE
============================================================ */

@media (max-width: 767.98px) {

    .cs-hero {
        padding: 48px 0 56px;
    }

    .cs-hero-badge {
        min-height: 34px;
        padding: 6px 11px;
        margin-bottom: 17px;
        font-size: 11px;
    }

    .cs-hero-badge-icon {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
        font-size: 10px;
    }

    .cs-hero-title {
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .cs-hero-title span {
        margin-top: 4px;
    }

    .cs-hero-description {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.75;
    }

    .cs-hero-search {
        display: flex;
        flex-direction: column;
        gap: 9px;
        min-height: auto;
        margin-top: 27px;
        padding: 11px;
        border-radius: 18px;
    }

    .cs-search-field {
        width: 100%;
        min-height: 55px;
        padding: 0 8px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: #ffffff;
    }

    .cs-search-input input {
        height: 52px;
        font-size: 14px;
    }

    .cs-search-button {
        width: 100%;
        min-height: 54px;
        margin: 0;
        border-radius: 12px;
    }

    .cs-hero-trust {
        justify-content: center;
        gap: 9px 15px;
        margin-top: 17px;
    }

    .cs-hero-trust-item {
        font-size: 11px;
    }

    .cs-hero-visual {
        min-height: auto;
        margin-top: 45px;
        padding: 20px 0 30px;
    }

    .cs-hero-visual-glow {
        width: 330px;
        height: 330px;
    }

    .cs-hero-dashboard-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-radius: 21px;
    }

    .cs-hero-card-header {
        padding-bottom: 17px;
    }

    .cs-hero-card-header h2 {
        font-size: 21px;
    }

    .cs-mini-label {
        font-size: 10px;
    }

    .cs-hero-job-preview {
        grid-template-columns: 43px minmax(0, 1fr) 28px;
        gap: 10px;
        padding: 13px 0;
    }

    .cs-job-preview-icon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

    .cs-job-preview-content strong {
        font-size: 12px;
    }

    .cs-job-preview-content span {
        font-size: 10px;
    }

    .cs-hero-profile-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .cs-profile-action {
        margin-left: 55px;
    }

    .cs-floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        display: inline-flex;
        min-width: 0;
        margin-top: 10px;
    }

    .cs-floating-card-one {
        margin-right: 6px;
    }

    .cs-floating-card-two {
        margin-left: 6px;
    }

    .cs-stats-wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
        padding: 10px;
        margin-top: -18px;
        border-radius: 19px;
    }

    .cs-stat-item {
        gap: 10px;
        padding: 16px 10px;
    }

    .cs-stat-icon {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
        border-radius: 12px;
        font-size: 16px;
    }

    .cs-stat-content strong {
        font-size: 16px;
    }

    .cs-stat-content span {
        font-size: 10px;
    }

    .cs-section {
        padding: 62px 0;
    }

    .cs-section-heading {
        display: block;
        margin-bottom: 30px;
    }

    .cs-section-heading h2,
    .cs-centered-heading h2,
    .cs-why-content h2,
    .cs-service-info-content h2 {
        font-size: 31px;
    }

    .cs-section-heading p,
    .cs-centered-heading p {
        font-size: 13px;
    }

    .cs-section-link {
        margin-top: 16px;
    }

    .cs-centered-heading {
        margin-bottom: 34px;
    }

    .cs-category-card {
        min-height: 96px;
        padding: 16px;
    }

    .cs-category-icon {
        width: 52px;
        height: 52px;
    }

    .cs-job-card {
        padding: 19px;
    }

    .cs-step-card {
        min-height: auto;
        padding: 26px;
    }

    .cs-service-info-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .cs-service-info-action {
        max-width: none;
    }

    .cs-home-cta {
        padding: 15px 0 65px;
    }

    .cs-home-cta-card {
        min-height: auto;
        padding: 40px 24px;
        border-radius: 24px;
        text-align: center;
    }

    .cs-home-cta-content h2 {
        font-size: 34px;
    }

    .cs-home-cta-content p {
        font-size: 13px;
    }

    .cs-home-cta-actions {
        justify-content: center;
    }
}


/* ============================================================
   26. SMALL MOBILE
============================================================ */

@media (max-width: 575.98px) {

    .cs-hero {
        padding-top: 40px;
    }

    .cs-hero-title {
        font-size: 38px;
    }

    .cs-hero-description {
        font-size: 13px;
    }

    .cs-hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .cs-floating-card {
        display: flex;
        width: 100%;
        margin: 9px 0 0;
    }

    .cs-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .cs-stat-item {
        border-bottom: 1px solid #edf2f7 !important;
    }

    .cs-stat-item:last-child {
        border-bottom: 0 !important;
    }

    .cs-category-card {
        grid-template-columns: 52px minmax(0, 1fr) 32px;
    }

    .cs-company-card {
        grid-template-columns: 55px minmax(0, 1fr) 34px;
        padding: 17px;
    }

    .cs-company-card-logo {
        width: 55px;
        height: 55px;
    }

    .cs-job-card-footer {
        align-items: flex-start;
    }

    .cs-home-cta-actions {
        flex-direction: column;
    }

    .cs-home-cta-actions .cs-btn {
        width: 100%;
    }
}


/* ============================================================
   27. ACCESSIBILITY / MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .cs-home *,
    .cs-home *::before,
    .cs-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ============================================================
   CAREERSETU PRO
   HOME HERO - MOBILE DISCOVERY CARD FIX
   Keep desktop unchanged
============================================================ */

@media (max-width: 767.98px) {

    /* --------------------------------------------------------
       Hero overall
    -------------------------------------------------------- */

    .home-hero,
    .hero-section,
    .careersetu-hero {
        overflow: hidden !important;
    }


    /* --------------------------------------------------------
       Right visual / discovery area
    -------------------------------------------------------- */

    .hero-visual,
    .hero-right,
    .hero-discovery,
    .career-discovery-wrapper,
    .opportunities-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        transform: none !important;
    }


    /* --------------------------------------------------------
       Main Opportunities Card
    -------------------------------------------------------- */

    .career-card,
    .discovery-card,
    .opportunities-card,
    .hero-opportunities-card {
        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        margin: 0 auto !important;

        transform: none !important;
    }


    /* --------------------------------------------------------
       Discovery list rows
    -------------------------------------------------------- */

    .career-card-item,
    .discovery-item,
    .opportunity-item {
        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) 32px !important;
        align-items: center !important;

        width: 100% !important;
        min-width: 0 !important;

        gap: 12px !important;
    }

    .career-card-item > *,
    .discovery-item > *,
    .opportunity-item > * {
        min-width: 0 !important;
    }


    /* --------------------------------------------------------
       Prevent text from creating horizontal overflow
    -------------------------------------------------------- */

    .career-card-item h3,
    .career-card-item h4,
    .career-card-item p,
    .discovery-item h3,
    .discovery-item h4,
    .discovery-item p,
    .opportunity-item h3,
    .opportunity-item h4,
    .opportunity-item p {
        max-width: 100% !important;

        overflow-wrap: break-word !important;
        word-break: normal !important;
    }


    /* --------------------------------------------------------
       Floating cards:
       Simple Process / Nearby Jobs

       IMPORTANT:
       On mobile these must become normal content instead
       of absolute floating desktop cards.
    -------------------------------------------------------- */

    .hero-floating-card,
    .floating-card,
    .process-card,
    .nearby-card,
    .simple-process-card,
    .nearby-jobs-card {
        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 10px 0 0 !important;

        transform: none !important;
    }


    /* --------------------------------------------------------
       If floating cards share one wrapper
    -------------------------------------------------------- */

    .hero-floating-cards,
    .floating-cards,
    .discovery-floating-cards {
        position: relative !important;

        display: grid !important;
        grid-template-columns: 1fr 1fr !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 10px !important;
        margin-top: 12px !important;

        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        transform: none !important;
    }

    .hero-floating-cards > *,
    .floating-cards > *,
    .discovery-floating-cards > * {
        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        transform: none !important;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 575.98px) {

    .career-card,
    .discovery-card,
    .opportunities-card,
    .hero-opportunities-card {
        border-radius: 18px !important;
    }

    .career-card-item,
    .discovery-item,
    .opportunity-item {
        grid-template-columns: 40px minmax(0, 1fr) 28px !important;
        gap: 10px !important;
    }

    /*
     Stack Simple Process + Nearby Jobs vertically.
     This prevents the exact overflow visible in screenshot.
    */

    .hero-floating-cards,
    .floating-cards,
    .discovery-floating-cards {
        grid-template-columns: 1fr !important;
    }

    .hero-floating-card,
    .floating-card,
    .process-card,
    .nearby-card,
    .simple-process-card,
    .nearby-jobs-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================================
   FINAL MOBILE HERO VISUAL FIX
   CareerSetu Pro
   Paste at END of home.css
============================================================ */

@media (max-width: 767.98px) {

    /* Hero visual must become vertical on mobile */
    .cs-home .cs-hero-visual {
        display: block !important;
        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        min-height: 0 !important;
        height: auto !important;

        margin: 38px auto 0 !important;
        padding: 0 !important;

        overflow: visible !important;
    }


    /* Background glow */
    .cs-home .cs-hero-visual-glow {
        width: 280px !important;
        height: 280px !important;

        top: 120px !important;
        left: 50% !important;

        transform: translateX(-50%) !important;
    }


    /* Main Opportunities Card */
    .cs-home .cs-hero-dashboard-card {
        position: relative !important;
        z-index: 3 !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 20px 18px !important;

        border-radius: 20px !important;

        box-sizing: border-box !important;
    }


    /* Header */
    .cs-home .cs-hero-card-header {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;

        width: 100% !important;
        gap: 12px !important;

        padding-bottom: 16px !important;
    }


    .cs-home .cs-hero-card-header > div {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }


    .cs-home .cs-mini-label {
        display: block !important;

        margin-bottom: 6px !important;

        font-size: 10px !important;
        line-height: 1.3 !important;
    }


    .cs-home .cs-hero-card-header h2 {
        margin: 0 !important;

        font-size: 21px !important;
        line-height: 1.25 !important;

        overflow-wrap: normal !important;
        word-break: normal !important;
    }


    .cs-home .cs-online-dot {
        flex: 0 0 12px !important;
        margin-top: 5px !important;
    }


    /* Job preview rows */
    .cs-home .cs-hero-job-preview {
        display: grid !important;

        grid-template-columns:
            42px
            minmax(0, 1fr)
            28px !important;

        align-items: center !important;

        width: 100% !important;

        gap: 11px !important;
        padding: 14px 0 !important;

        box-sizing: border-box !important;
    }


    .cs-home .cs-job-preview-icon {
        width: 42px !important;
        height: 42px !important;

        flex: none !important;

        border-radius: 12px !important;
        font-size: 16px !important;
    }


    .cs-home .cs-job-preview-content {
        width: 100% !important;
        min-width: 0 !important;
    }


    .cs-home .cs-job-preview-content strong {
        display: block !important;

        margin: 0 0 3px !important;

        font-size: 13px !important;
        line-height: 1.4 !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    .cs-home .cs-job-preview-content span {
        display: block !important;

        font-size: 11px !important;
        line-height: 1.5 !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    .cs-home .cs-job-preview-arrow {
        width: 28px !important;
        height: 28px !important;

        flex: none !important;
    }


    /* Profile card */
    .cs-home .cs-hero-profile-card {
        display: block !important;

        width: 100% !important;

        margin-top: 13px !important;
        padding: 15px !important;

        box-sizing: border-box !important;
    }


    .cs-home .cs-profile-progress {
        display: grid !important;

        grid-template-columns:
            42px
            minmax(0, 1fr) !important;

        align-items: center !important;

        width: 100% !important;

        gap: 11px !important;
    }


    .cs-home .cs-profile-progress-icon {
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }


    .cs-home .cs-profile-progress > div:last-child {
        min-width: 0 !important;
    }


    .cs-home .cs-profile-progress strong {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }


    .cs-home .cs-profile-progress span {
        margin-top: 3px !important;

        font-size: 10px !important;
        line-height: 1.5 !important;
    }


    .cs-home .cs-profile-action {
        display: inline-flex !important;

        margin: 11px 0 0 53px !important;

        font-size: 11px !important;
    }


    /* ========================================================
       Floating cards
       IMPORTANT: no absolute positioning on mobile
    ======================================================== */

    .cs-home .cs-floating-card {
        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        display: flex !important;
        align-items: center !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 10px 0 0 !important;
        padding: 13px 15px !important;

        gap: 11px !important;

        box-sizing: border-box !important;

        border-radius: 15px !important;
    }


    .cs-home .cs-floating-card-one,
    .cs-home .cs-floating-card-two {
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    .cs-home .cs-floating-icon {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
    }


    .cs-home .cs-floating-card > div {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }


    .cs-home .cs-floating-card strong {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }


    .cs-home .cs-floating-card small {
        margin-top: 2px !important;

        font-size: 10px !important;
        line-height: 1.4 !important;
    }

}


/* ============================================================
   EXTRA SMALL MOBILE
============================================================ */

@media (max-width: 399.98px) {

    .cs-home .cs-hero-dashboard-card {
        padding: 18px 15px !important;
        border-radius: 18px !important;
    }


    .cs-home .cs-hero-card-header h2 {
        font-size: 19px !important;
    }


    .cs-home .cs-hero-job-preview {
        grid-template-columns:
            39px
            minmax(0, 1fr)
            26px !important;

        gap: 9px !important;
    }


    .cs-home .cs-job-preview-icon {
        width: 39px !important;
        height: 39px !important;
    }


    .cs-home .cs-job-preview-content strong {
        font-size: 12px !important;
    }


    .cs-home .cs-job-preview-content span {
        font-size: 10px !important;
    }


    .cs-home .cs-profile-action {
        margin-left: 50px !important;
    }

}