
/* --- Responsive Styles for Employer Inbox Chat Page --- */
@media (max-width: 991px) {
    .chat-app-container {
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        max-width: 100vw;
        border-radius: 0;
        margin: 0;
    }
    .chat-sidebar {
        width: 100%;
        min-width: 0;
        border-radius: 0 0 1.2rem 1.2rem;
        flex-direction: row;
        align-items: flex-start;
        box-shadow: none;
        padding: 0;
        min-height: 60px;
    }
    .chat-list {
        flex: 1;
        max-height: 120px;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    }
    .chat-list-item {
        min-width: 160px;
        border-bottom: none;
        border-right: 1px solid #2e4a6b;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.7rem 0.7rem;
    }
    .chat-list-item:last-child {
        border-right: none;
    }
    .chat-sidebar-header, .chat-search-box {
        padding: 0.7rem 0.7rem 0.3rem 0.7rem;
    }
    .chat-logo {
        width: 36px;
        height: 36px;
    }
}

/* --- Notification Page Styles --- */
.notification-list {
    margin: 0;
    padding: 0;
}
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fff;
    border-radius: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.06);
    transition: background 0.18s;
}
.notification-item.unread {
    background: #f5f7ff;
}
.notification-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.10);
    margin-right: 0.7rem;
}
/* Job Picture Grid/Thumb Images (Step 3) */
.job-pic-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.job-pic-grid {
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
    max-height:380px;
    overflow-y:auto;
}
@media (max-width: 768px) {
    .job-pic-grid {
        grid-template-columns:repeat(4,1fr);
    }
}
.success-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    /* background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666; */
    cursor: pointer;
}
.selected-job-pic-preview {
    width:210px;
    height:210px;
    background:#f8f8f8;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    /* box-shadow:0 0 0 2px #e0e0e0; */
    border: 4px solid #f2f6fc;
}
/* --- Jobseeker Profile View Page Styles --- */
.jobseeker-profile-view-bg {
    background: #f5f7ff;
    min-height: 100vh;
}
.jobseeker-profile-view-card {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px 0 rgba(38, 171, 226, 0.08);
    border: 0px;
}
.jobseeker-profile-photo-view {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    background: #eaf6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.10);
}
.profile-photo-view-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.jobseeker-profile-view-card h4 {
    font-weight: 700;
    color: #234370;
}
.jobseeker-profile-view-card .profile-view-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.jobseeker-profile-view-card .profile-view-value {
    font-size: 1.1rem;
    color: #234370;
    font-weight: 600;
    margin-bottom: 1rem;
    word-break: break-word;
}
.jobseeker-profile-view-card .btn-primary {
    border-radius: 8px;
    padding: 8px 28px;
    font-weight: 600;
    font-size: 1rem;
}
/* --- Job Requirement Step Custom Controls (Modal Only) --- */
#postNewJobForm .card {
    border-radius: 1.2rem !important;
    box-shadow: 0 2px 16px 0 rgba(38, 171, 226, 0.08) !important;
    border: 0px;
}
#postNewJobForm .card .card {
    border-radius: 1.2rem !important;
    box-shadow: 0 2px 16px 0 rgba(38, 171, 226, 0.08) !important;
    border: 1px solid #eaf7fc;
}
#postNewJobForm .card .card-header {
    border-radius: 12px 12px 0 0;
}



/* --- Job Requirement Step Custom Controls (Modal Only) --- */
.post-job-form .card {
    border-radius: 1.2rem !important;
    box-shadow: 0 2px 16px 0 rgba(38, 171, 226, 0.08) !important;
    border: 0px;
}
.post-job-form .card .card {
    border-radius: 1.2rem !important;
    box-shadow: 0 2px 16px 0 rgba(38, 171, 226, 0.08) !important;
    border: 1px solid #eaf7fc;
}
.post-job-form .card .card-header {
    border-radius: 12px 12px 0 0;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(38 171 226) !important;
}
input[type="range" i] {
    width: 100%;
}
#jobApplication .slider-flex-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2px;
}
#jobApplication .slider-labels {
    width: 100%;
    margin-left: 0;
    text-align: left;
}
#jobApplication .slider-labels-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#jobApplication .slider-labels-inner span {
    flex: 1 1 0;
    text-align: center;
    color: #222;
    font-size: .8rem;
    font-weight: 500;
}
#postNewJobForm .slider-labels-inner span {
    flex: 1 1 0;
    text-align: center;
    color: #222;
    font-size: .9rem;
    font-weight: 500;
}
input[type="range" i] {
    appearance: auto;
    cursor: default;
    color: light-dark(rgb(0, 118, 253), rgb(255, 255, 255));
    padding: initial;
    border: initial;
    margin: 2px;
}
#jobApplication .custom-flex-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    outline: none;
    margin: 0;
    position: relative;
    transition: background 0.3s;
}
#jobApplication .custom-flex-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d4c7b;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s;
}
#jobApplication .custom-flex-range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d4c7b;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s;
}
#jobApplication .custom-flex-range::-ms-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d4c7b;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s;
}
#jobApplication .custom-flex-range:focus {
    outline: none;
}
#jobApplication .range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    outline: none;
    margin: 0 4px;
    position: relative;
    pointer-events: auto;
    transition: background 0.3s;
}
#jobApplication .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0d4c7b;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background 0.2s;
}
#jobApplication .range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0d4c7b;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background 0.2s;
}
#jobApplication .range-slider::-ms-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0d4c7b;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background 0.2s;
}
#jobApplication .range-slider:focus {
    outline: none;
}
#jobApplication .range-label {
    min-width: 28px;
    text-align: center;
    color: #0d4c7b;
    font-weight: 500;
}
/* Custom checkboxes and radios for Job Requirement step */
/* Custom checkboxes and radios for Job Requirement step (global) */
.custom-skill-check input[type="checkbox"],
.custom-skill-check input[type="radio"] {
    display: none;
}
.custom-skill-check .check-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    border: 2px solid #dbeafe;
    background: #f4f8ff;
    color: #234370;
    font-weight: 500;
    cursor: pointer;
    min-width: 120px;
    justify-content: center;
    transition: all 0.15s;
    box-shadow: none;
    position: relative;
}
.custom-skill-check input[type="checkbox"]:checked + .check-btn,
.custom-skill-check input[type="radio"]:checked + .check-btn {
    background: #f4f8ff;
    color: #1976d2;
    border-color: #1976d2;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(25,118,210,0.08);
}
.custom-skill-check input[type="checkbox"]:checked + .check-btn:after,
.custom-skill-check input[type="radio"]:checked + .check-btn:after {
    content: '\2713';
    color: #1976d2;
    font-size: 1.1em;
    margin-left: 8px;
    font-weight: bold;
}
.check-btn img {
    margin-right: 6px;
}
/* Employer type radio buttons custom design */
.employer-type-radio-group {
    display: flex;
    gap: 20px;
}

.employer-type-radio {
    display: none;
}

.employer-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: #f3f3f3;
    border-radius: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: inherit;
    font-size: 16px;
    color: #3a3a3a;
    box-sizing: border-box;
}

.employer-type-radio:checked + .employer-type-label {
    border: 4px solid #26abe2;
    box-shadow: 0 2px 8px rgba(26,188,156,0.08);
}

.employer-type-label img,
.employer-type-label svg {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.employer-type-label span {
    margin-top: 4px;
    font-size: 15px;
    color: #3a3a3a;
}
/* --- Custom Pets Radio Group for Post Job Step 1 --- */
.pets-radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 0.2rem;
}
.pets-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #666;
    position: relative;
    margin-right: 1.5rem;
}
.pets-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #4dd0b0;
    border-radius: 50%;
    outline: none;
    margin-right: 10px;
    background: #fff;
    transition: border 0.2s;
    position: relative;
    vertical-align: middle;
}
.pets-radio input[type="radio"]:checked {
    border: 6px solid #4dd0b0;
    background: #fff;
}
.pets-radio span {
    font-weight: 600;
    color: #4dd0b0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.pets-radio input[type="radio"]:not(:checked) + span {
    color: #888;
}
/* --- Post New Job Stepper & Card Styles (for post-new-job-new.php) --- */
.post-job-bg {
    background: #f5f7ff;
    min-height: 100vh;
}
.dashboard-inbox-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    padding: 2.2rem 1.7rem;
    margin-bottom: 2.5rem;
}
.dashboard-inbox-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1374a6;
    margin-bottom: 1.5rem;
}
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 0.5rem;
}
.step-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}
.step-progress .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #e0e7ef;
    z-index: -1;
    transform: translateX(50%);
}
.step-progress .step.active .step-circle,
.step-progress .step.completed .step-circle {
    background: #1374a6;
    color: #fff;
    border-color: #1374a6;
}
.step-progress .step.completed .step-circle {
    background: #4d9ff7;
    border-color: #4d9ff7;
}
.step-progress .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e7ef;
    color: #1374a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid #e0e7ef;
    margin-bottom: 0.5rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.step-progress .step-label {
    font-size: 1rem;
    font-weight: 500;
    color: #1374a6;
    text-align: center;
}
.form-section {
    display: none;
    animation: fadeIn 0.3s;
}
.form-section.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.job-pic-thumb {
    border: 4px solid #f2f6fc;
    border-radius: 12px;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
    filter: grayscale(1);
}
.job-pic-thumb.selected, .job-pic-thumb:active {
    border: 4px solid #1374a6;
    box-shadow: 0 2px 8px rgba(19,116,166,0.10);
    filter: grayscale(0);
}
.job-pic-thumb:hover {
    filter: grayscale(0);
}
.btn-check:checked + .btn {
    background: #1374a6;
    color: #fff;
    border-color: #1374a6;
}
.btn-outline-secondary {
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.15s, color 0.15s, border 0.15s;
}
.btn-outline-secondary:focus, .btn-outline-secondary.active {
    background: #1374a6;
    color: #fff;
    border-color: #1374a6;
}
.btn-primary, .btn-success, .btn-secondary {
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 28px;
}
.alert-info {
    background: #eaf6fd;
    color: #1374a6;
    border: 1.5px solid #eaf7fc;
    border-radius: 8px;
}
.shadow-sm {
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07)!important;
}
.rounded {
    border-radius: 1.2rem!important;
}
.bg-white {
    background: #fff!important;
}
.p-4 {
    padding: 2.2rem 1.7rem!important;
}
.mb-4 {
    margin-bottom: 2.5rem!important;
}
.mb-3 {
    margin-bottom: 1.5rem!important;
}
.mt-4 {
    margin-top: 2.5rem!important;
}
.fw-bold {
    font-weight: 700!important;
}
.text-info {
    color: #1374a6!important;
}
.text-success {
    color: #2bb673!important;
}
.text-primary {
    color: #4d9ff7!important;
}
.form-label {
    font-weight: 600;
    color: #1374a6;
}
.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid #eaf7fc;
    background: #f7fbfd;
    color: #222;
    font-size: 1rem;
    box-shadow: none;
    transition: border-color 0.15s;
}
.form-control:focus, .form-select:focus {
    border-color: #26abe2;
    background: #fff;
}
.is-invalid {
    border-color: #e74c3c!important;
}
.pricing-card ul {
    width: 100%;
}
.pricing-card .card-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg,#1374a6 10%,#4d9ff7 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 8px rgba(23,74,166,0.08);
}
.pricing-card .fw-bold {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(90deg,#4d9ff7 10%,#1374a6 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(255,214,0,0.10);
    display: inline-block;
}
.pricing-card .fw-bold .fs-6 {
    font-size: 1.1rem !important;
    font-weight: 500;
    color: #174ea6;
    background: none;
    -webkit-text-fill-color: initial;
    text-fill-color: initial;
}
.pricing-card .btn,
.pricing-card .btn:focus {
    position: relative;
    background: linear-gradient(90deg,#1374a6 0%,#4d9ff7 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(23,74,166,0.10);
    overflow: hidden;
    transition: background 0.25s, color 0.2s, box-shadow 0.2s, transform 0.18s;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 15px;
    padding-left: 2.5rem;
}
.pricing-card .btn::before {
    content: '\f061'; /* FontAwesome arrow-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
    opacity: 0.7;
    transition: left 0.2s, opacity 0.2s;
}
.pricing-card .btn:hover, .pricing-card .btn:active {
    background: linear-gradient(90deg,#4d9ff7 0%,#1374a6 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(23,74,166,0.13);
    transform: translateY(-2px) scale(1.04);
}
.pricing-card .btn:hover::before {
    left: 1.5rem;
    opacity: 1;
}
.pricing-card .list-unstyled li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    padding: 0.5em 0.7em 0.5em 0.2em;
    border-radius: 0.7em;
    background: linear-gradient(90deg,rgba(247,249,252,0.95) 80%,rgba(255,214,0,0.04));
    transition: background 0.2s;
}
.pricing-card .list-unstyled li .fa-check, .pricing-card .list-unstyled li .fa-times {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    font-size: 1.1em;
    background: #eafaf1;
    color: #2bb673;
    box-shadow: 0 1px 4px rgba(43,182,115,0.08);
    margin-right: 6px;
}
.pricing-card .list-unstyled li .fa-times {
    background: #fbeaea;
    color: #e74c3c;
    box-shadow: 0 1px 4px rgba(231,76,60,0.08);
}
.pricing-card .list-unstyled li:not(:has(.fa-times)) {
    background: linear-gradient(90deg,rgba(232,246,255,0.7) 60%,rgba(255,214,0,0.07));
    font-weight: 500;
    color: #1374a6;
}
.pricing-card .list-unstyled li .fa {
    min-width: 1.5em;
    text-align: center;
}
/* === Agency View User Review Custom Classes === */
.review-star-display {
    font-size: 2em;
    color: #ffc107;
}
.user-review-title {
    color: #174ea6;
    font-weight: 600;
}
.user-review-name {
    font-size: 1.1em;
}
.user-review-rating {
    font-size: 1.1em;
}
/* === Agency View Page Custom Classes (extracted from inline styles) === */
.agency-view-spacing {
    margin-top: 30px;
    margin-bottom: 30px;
}
.agency-logo-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
}
.agency-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.agency-modal-radius {
    border-radius: 12px;
}
.agency-modal-header {
    border-bottom: 2px solid #ffd600;
}
.agency-modal-title {
    color: #1374a6;
    font-weight: 500;
}
.agency-modal-service {
    font-size: 1.4rem;
    font-weight: 700;
    color: #18805c;
}
.agency-modal-price {
    font-weight: 600;
    color: #222;
}
.agency-modal-desc {
    color: #444;
    font-size: 1rem;
}
/* Agency Contact Modal Custom Styles */
#agencyContactModal .modal-content.jobapply-modal-content {
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(26,60,110,0.13);
    background: #fff;
    border: 1.5px solid #fff;
    padding-bottom: 0.5rem;
}
#agencyContactModal .modal-header {
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    background: transparent;
}
#agencyContactModal .modal-body {
    font-size: 1.13rem;
    color: #1a3c6e;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    padding: 2rem 2rem 1.5rem 2rem;
}
#agencyContactModal .modal-body hr {
    border-top: 2px solid #ffd600;
    margin: 0 -2rem 1.5rem -2rem;
}
#agencyContactModal .btn-radio {
    position: relative;
    display: inline-block;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    width: 100%;
    text-align: center;
    /* padding: 10px 0; */
}
#agencyContactModal .btn-radio input[type="radio"] {
    display: none;
}
#agencyContactModal .btn-radio input[type="radio"]:checked + span {
    background: #eef6ff;
    color: #007bff;
    border-color: #007bff;
}
#agencyContactModal .btn-radio span {
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    padding: 0;
    padding: 10px 0;
    line-height: 1;
    font-size: 1rem;
}
#agencyContactModal .btn-success {
    background: #2bb673;
    border-color: #2bb673;
    font-weight: 500;
    border-radius: 6px;
    min-width: 100px;
    transition: background 0.2s, color 0.2s;
}
#agencyContactModal .btn-success:hover {
    background: #249e62;
    border-color: #249e62;
}
@media (max-width: 575px) {
    #agencyContactModal .modal-body {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    #agencyContactModal .modal-body hr {
        margin: 0 -0.7rem 1.2rem -0.7rem;
    }
}
.user-review-item hr {
    border-top: 1px solid #d3d3d3;
}
/* Help Card Icon */
.help-card-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: inline-block;
}
/* Need Any Help Cards */
.help-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 24px 20px 20px 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.help-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.help-card .fw-bold {
    font-size: 14px;
    font-weight: 600 !important;
}
.help-card-img img {
    height: 48px;
    width: auto;
    margin-bottom: 8px;
}
.help-card-link {
    color: #2346A0;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.help-card-link:hover {
    color: #0d2a5a;
    text-decoration: underline;
}

/* Employer Dashboard Background */
.light-blue-bg {
    background: #f6fdff !important;
    border: 1px solid #d8f7ff !important;
}
.employer-dashboard-bg {
    background: #f5f7ff;
    min-height: 100vh;
}
/* Employer Profile Status Card */
.employer-profile-status-card {
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    background: #fff;
    padding: 28px 32px;
}
.employer-profile-btn {
    font-weight: 600;
    padding: 8px 28px;
    border-radius: 8px;
}
.employer-profile-btn-yellow {
    color: #222 !important;
}
/* Employer Company Card Swiper Styles */
.swiper-bottom-space {
    padding-bottom: 40px;
}
.employer-company-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    padding: 20px 24px;
}
.employer-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.employer-card-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7ff;
    border-radius: 12px;
    margin-right: 16px;
}
.employer-card-img {
    max-width: 40px;
    max-height: 40px;
}
.employer-card-title-group {
    flex-grow: 1;
}
.employer-card-title {
    font-size: 1.15rem;
}
.employer-card-subtitle {
    font-size: 1rem;
}
.employer-card-badge {
    background: #e6fcf5;
    color: #17b897;
    font-weight: 500;
    font-size: 1em;
    padding: 6px 18px;
    border-radius: 8px;
}
.employer-card-divider {
    margin: 12px 0 16px 0;
    opacity: 0.12;
}
.employer-card-icon {
    color: #17b897;
    font-size: 1.2em;
    margin-right: 10px;
}
.employer-card-label {
    font-weight: 500;
}
.employer-card-value {
    margin-left: 6px;
}
.employer-card-action {
    background: #2346A0;
    border-color: #2346A0;
    font-weight: 600;
    min-width: 120px;
}
.employer-card-action-edit {
    color: #2346A0;
}
.employer-card-action-delete {
    color: #dc3545;
}
.employer-swiper-pagination {
    margin-top: 10px !important;
    position: static !important;
    text-align: center;
}
/* Stylish checkboxes as toggle buttons (matches radio button style) */
.btn-checkbox-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-checkbox {
    position: relative;
    display: inline-block;
    padding: 0px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: #fff;
    color: #ced4da;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    user-select: none;
    width: auto;
    height: 41px;
    margin-bottom: 8px;
}
.btn-checkbox input[type="checkbox"] {
    display: none;
}
.btn-checkbox input[type="checkbox"]:checked + span {
    background: #eef6ff;
    color: #007bff;
    border-color: #ffffff;
    position: relative;
    padding: 10px 30px 10px 20px;
}
.btn-checkbox input[type="checkbox"]:checked + span::after {
    content: '\2713';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
    color: #007bff;
    font-weight: bold;
}
.btn-checkbox span {
    padding-left: 2.2em;
    padding: 10px 30px 10px 20px;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    position: relative;
    line-height: 1.1;
}
.btn-checkbox input[type="checkbox"]:focus + span {
    box-shadow: 0 0 0 2px #cce0ff;
}
/* Stylish radio buttons as toggle buttons */
.btn-radio-group {
    display: flex;
    gap: 10px;
}
@media (max-width: 991px) {
    .btn-radio-group {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
}
.btn-radio {
    position: relative;
    display: inline-block;
    padding: 0px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: #fff;
    color: #ced4da;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    user-select: none;
    width: auto;
    height: 41px;
}
.btn-radio input[type="radio"] {
    display: none;
}
.btn-radio input[type="radio"]:checked + span {
    background: #eef6ff;
    color: #007bff;
    border-color: #ffffff;
    position: relative;
    padding: 10px 30px 10px 20px;
}
.btn-radio input[type="radio"]:checked + span::after {
    content: '\2713';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
    color: #007bff;
    font-weight: bold;
}
.btn-radio span {
    padding-left: 2.2em;
    padding: 10px 30px 10px 20px;
}
.btn-radio span {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    padding: 0 2px;
    position: relative;
    padding: 10px 20px 10px 20px;
}
.btn-radio input[type="radio"]:focus + span {
    box-shadow: 0 0 0 2px #cce0ff;
}
/* --- Custom View Page Card Styles --- */
:root {
    --bs-body-font-size: 1rem;
}
.form-control, .form-select {
    font-size: 1rem;
}
.view-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.5rem;
}
.view-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1374a6;
    margin-bottom: 0.5rem;
}
.view-card-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #eaf6fd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.view-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.view-card-desc {
    color: #4a5a6a;
    font-size: 1rem;
}
.view-service-card {
    border: 1.5px solid #eaf7fc;
    border-radius: 1rem;
    background: #fafdff;
    box-shadow: 0 1px 4px 0 rgba(38,171,226,0.04);
}
/* --- Agency View Page Custom Styles --- */
.agency-view-container {
    margin-top: 30px;
    margin-bottom: 30px;
}
.agency-thumbnail-img {
    width: 100%;
    max-width: 500px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}
.agency-logo-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
.agency-card-info,
.agency-card-services,
.agency-card-strengths,
.agency-card-contact,
.agency-card-review {
    /* Add any specific card spacing or overrides if needed */
}
.service-card {
    border: 1px solid #eee;
    border-radius: 10px;
}
.agency-card-map {
    /* For sidebar map card */
}
.agency-map-iframe {
    width: 100%;
    height: 200px;
    border: 0;
}
/* --- Agency Card Thumbnail --- */
.agency-card-thumb {
    width: 100%;
    height: 170px;
    background: #eaf6fd;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
}
.agency-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border-radius: 1rem;
}
/* --- Agency Tab Card Grid --- */
.agency-tab-content-inner {
    margin-bottom: 2.5rem;
}
.agency-tab-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1374a6;
}
.agency-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    transition: box-shadow 0.18s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.agency-card:hover {
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.13);
}
.agency-card-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #1374a6;
    margin-bottom: 0.2rem;
}
.agency-card .badge {
    font-size: 1rem;
    font-weight: 500;
    border-radius: 40px;
    padding: .4em 0.8em;
}
.agency-card .btn {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.7rem;
    box-shadow: 0 1px 4px 0 rgba(38, 171, 226, 0.04);
    transition: background 0.15s, color 0.15s;
    padding: 10px;
}
.agency-card .btn-success {
    background: linear-gradient(90deg, #26abe2 0%, #1374a6 100%);
    border: none;
    color: #fff;
}
.agency-card .btn-success:hover {
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    color: #fff;
}
.agency-card .btn-warning {
    background: #ffd600;
    border: none;
    color: #222;
}
.agency-card .btn-warning:hover {
    background: #ffe066;
    color: #222;
}
@media (max-width: 991px) {
    .agency-card { min-height: 260px; }
}
@media (max-width: 767px) {
    .agency-card { min-height: 180px; padding: 1.1rem 0.7rem; }
}
/* --- Agency Services Page Styles --- */
.agency-services-main-section {
    background: #f7fbfd;
    min-height: 100vh;
}
.agency-tabs-section {
    margin-top: 2.5rem;
}
/* --- Enhanced Agency Tabs --- */
.agency-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.10);
    border: 2px solid #eaf7fc;
    padding: 0rem 0.2rem 0 0.2rem;
    margin-bottom: 2.5rem;
    gap: 0rem;
    overflow-x: auto;
    overflow-y: hidden;
}
.agency-tabs .nav-item {
    flex: 1 1 0;
    min-width: 180px;
    max-width: 320px;
    display: flex;
    justify-content: center;
}
.agency-tabs .nav-link {
    width: 100%;
    color: #1374a6;
    font-weight: 700;
    font-size: 1.13rem;
    border: none;
    border-radius: 0 0;
    margin: 0 0rem;
    background: transparent;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    padding: 1.1rem 0.5rem 1rem 0.5rem;
    letter-spacing: 0.01em;
    box-shadow: none;
    position: relative;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
}
.agency-tabs .nav-link.active, .agency-tabs .nav-link:focus {
    background: #26abe2;
    color: #ffffff;
    box-shadow: 0 4px 16px 0 rgba(38, 171, 226, 0.09);
    z-index: 2;
}
.agency-tabs .nav-link.active:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #26abe2 0%, #1374a6 100%);
    border-radius: 2px;
}
@media (max-width: 991px) {
    .agency-tabs .nav-item { min-width: 120px; }
    .agency-tabs .nav-link { font-size: 1.01rem; padding: 0.8rem 0.2rem 0.7rem 0.2rem; }
}
@media (max-width: 767px) {
    .agency-tabs { padding: 0.1rem 0.1rem 0 0.1rem; gap: 0.2rem; }
    .agency-tabs .nav-link { font-size: 0.97rem; padding: 0.7rem 0.1rem 0.6rem 0.1rem; }
}
.agency-tab-content {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    padding: 2.2rem 1.7rem;
}
.agency-faq-section {
    margin-top: 3.5rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    padding: 2.2rem 1.7rem;
}
.agency-faq-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1374a6;
    margin-bottom: 2rem;
}
.accordion-button {
    font-weight: 600;
    color: #1374a6;
    background: #eaf6fd;
    border-radius: 0.7rem !important;
    margin-bottom: 0.7rem;
    box-shadow: none;
    transition: background 0.15s, color 0.15s;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(90deg, #26abe2 0%, #1374a6 100%);
}
.accordion-item {
    border: none;
    background: transparent;
}
.accordion-body {
    background: #f7fbfd;
    border-radius: 0.7rem;
    color: #4a5a6a;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    padding: 1.2rem 1.1rem;
}
@media (max-width: 991px) {
    .agency-tab-content, .agency-faq-section { padding: 1.2rem 0.7rem; }
}
@media (max-width: 767px) {
    .agency-services-main-section { padding: 1.2rem 0; }
    .agency-tabs { padding: 0.2rem 0.2rem 0 0.2rem; }
}
/* --- Creative Contact Info Card --- */
.creative-contact-card {
    background: linear-gradient(120deg, #eaf6fd 60%, #f7fbfd 100%);
    border-radius: 1.5rem;
    color: #1374a6;
    margin-top: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13);
    border: 2px solid #eaf7fc;
    padding: 2.2rem 1.7rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.18s;
}
.creative-contact-card:before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 110px;
    height: 110px;
    background: rgba(38,171,226,0.10);
    border-radius: 50%;
    z-index: 0;
}
.creative-contact-card h5 {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1374a6;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.creative-contact-card ul {
    position: relative;
    z-index: 1;
}
.creative-contact-card li {
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(38,171,226,0.04);
    border-radius: 0.7rem;
    padding: 0.7rem 1rem;
    box-shadow: 0 1px 4px 0 rgba(38,171,226,0.04);
}
.creative-contact-card li:last-child {
    margin-bottom: 0;
}
.creative-contact-card strong {
    color: #26abe2;
    font-weight: 600;
    min-width: 70px;
    display: inline-block;
}
.creative-contact-card a {
    color: #1374a6;
    text-decoration: underline;
    transition: color 0.15s;
}
.creative-contact-card a:hover {
    color: #26abe2;
}
.contact-icon {
    width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px 0 rgba(38,171,226,0.08);
    margin-right: 0.5rem;
}
/* --- Insights Single Post Card --- */
.insights-single-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.10);
    border: 2px solid #eaf7fc;
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.18s;
}
.insights-single-card:hover {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13);
}
.insights-single-thumb img {
    border-radius: 1.1rem;
}
@media (max-width: 991px) {
    .insights-single-card { padding: 1.2rem 1rem; }
}
@media (max-width: 767px) {
    .insights-single-card { padding: 0.7rem 0.5rem; }
}
/* --- Contact Page Enhancements --- */
.contact-title.text-gradient, .contact-info h5.text-gradient {
    background: linear-gradient(90deg, #26abe2 0%, #1374a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.contact-card.shadow-lg {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13) !important;
}
.contact-map-wrapper {
    min-height: 420px;
    background: #eaf6fd;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px 20px 20px;
}
/* --- Enhanced Contact Info Card --- */
.contact-info {
    background: linear-gradient(120deg, #eaf6fd 60%, #f7fbfd 100%);
    border-radius: 1.2rem;
    color: #1374a6;
    margin-top: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.10);
    border: 1.5px solid #eaf7fc;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.contact-info:before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: rgba(38,171,226,0.08);
    border-radius: 50%;
    z-index: 0;
}
.contact-info h5 {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1374a6;
}
.contact-info ul {
    position: relative;
    z-index: 1;
}
.contact-info li {
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.contact-info li:last-child {
    margin-bottom: 0;
}
.contact-info strong {
    color: #26abe2;
    font-weight: 600;
    min-width: 70px;
    display: inline-block;
}
.contact-info a {
    color: #1374a6;
    text-decoration: underline;
    transition: color 0.15s;
}
.contact-info a:hover {
    color: #26abe2;
}
    .contact-map-wrapper, .contact-map { height: 220px; min-height: 220px; }
}
/* --- Contact Page Styles --- */
.contact-main-section {
    background: #f7fbfd;
    min-height: 100vh;
}
.contact-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
}
.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1374a6;
}
.contact-desc {
    color: #4a5a6a;
    font-size: 1.08rem;
}
.contact-form .form-label {
    font-weight: 500;
    color: #1374a6;
}
.contact-form .form-control {
    border-radius: 0.7rem;
    border: 1.5px solid #eaf7fc;
    background: #f7fbfd;
    color: #222;
    font-size: 1rem;
    box-shadow: none;
    transition: border-color 0.15s;
}
.contact-form .form-control:focus {
    border-color: #26abe2;
    background: #fff;
}
.contact-form button[type="submit"] {
    background: linear-gradient(90deg, #26abe2 0%, #1374a6 100%);
    border: none;
    border-radius: 0.7rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.09);
    transition: background 0.15s;
}
.contact-form button[type="submit"]:hover {
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
}
.contact-info {
    background: #eaf6fd;
    border-radius: 1.2rem;
    color: #1374a6;
    margin-top: 1.5rem;
    width: 100%;
    margin-bottom: 20px;
}
.contact-info a {
    color: #1374a6;
    text-decoration: underline;
}
.contact-info a:hover {
    color: #26abe2;
}
@media (max-width: 767px) {
    .contact-main-section { padding: 1.2rem 0; }
    .contact-card, .contact-info { padding: 1.2rem !important; }
}
/* --- Insights View Page Styles --- */
.insights-view-main-section {
    background: #f7fbfd;
    min-height: 100vh;
}
.insights-view-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1374a6;
    margin-bottom: 2rem;
}
.insights-view-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.18s;
}
.insights-view-card:hover {
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.13);
}
.insights-view-thumb {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #eaf6fd;
}
.insights-view-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}
.insights-view-content {
    padding: 1.2rem 1.2rem 1.1rem 1.2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.insights-view-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1374a6;
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
    transition: color 0.15s;
}
.insights-view-card-title:hover {
    color: #26abe2;
}
.insights-view-meta {
    font-size: 0.98rem;
    color: #7a8fa3;
    margin-bottom: 0.3rem;
}
.insights-view-date {
    margin-right: 1.1rem;
}
.insights-view-category {
    background: #eaf6fd;
    color: #26abe2;
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 0.93rem;
    font-weight: 500;
}
.insights-view-desc {
    color: #4a5a6a;
    font-size: 1rem;
    margin-bottom: 1.1rem;
    flex: 1 1 auto;
}
.insights-view-readmore {
    color: #1374a6;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.15s;
}
.insights-view-readmore:hover {
    color: #26abe2;
}
@media (max-width: 991px) {
    .insights-view-thumb { height: 140px; }
}
@media (max-width: 767px) {
    .insights-view-main-section { padding: 1.2rem 0; }
    .insights-view-thumb { height: 110px; }
}
/* --- Insights Sidebar Styles --- */
.insights-sidebar {
    padding-top: 2rem;
}
.insights-sidebar-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    margin-bottom: 2rem;
}
.insights-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1374a6;
    margin-bottom: 1rem;
}
.insights-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.insights-categories-list li {
    margin-bottom: 0.7rem;
}
.insights-categories-list a {
    color: #1374a6;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 8px;
    display: block;
    transition: background 0.15s, color 0.15s;
    background: #f8f8f8;
}
.insights-categories-list a:hover {
    background: #eaf6fd;
    color: #26abe2;
}
.insights-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.insights-recent-item {
    gap: 0.8rem;
}
.insights-recent-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #eaf6fd;
    margin-right: 0.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.insights-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insights-recent-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1374a6;
    text-decoration: none;
    display: block;
    margin-bottom: 0.1rem;
    transition: color 0.15s;
}
.insights-recent-title:hover {
    color: #26abe2;
}
.insights-recent-date {
    font-size: 0.92rem;
}
@media (max-width: 991px) {
    .insights-sidebar { padding-top: 1.2rem; }
}
@media (max-width: 767px) {
    .insights-sidebar { margin-top: 2rem; }
}
/* --- Insights Blog Listing Page Styles --- */
.insights-main-section {
    background: #f5f7ff;
    min-height: 100vh;
}
.insights-breadcrumb-section {
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    color: #fff;
    padding: 32px 0 18px 0;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 0;
}
.insights-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
}
.insights-subtitle {
    color: #e0e7ef;
    font-size: 1.1rem;
}
.insights-list-row {
    margin-top: 0.5rem;
}
.insights-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s, transform 0.15s;
    overflow: hidden;
    border: 1.5px solid #eaf7fc;
}
.insights-card:hover {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13);
    transform: translateY(-4px) scale(1.02);
}
.insights-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #eaf6fd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.insights-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem 1.2rem 0 0;
}
.insights-card-body {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.insights-card-meta {
    font-size: 0.95rem;
    color: #6c7a99;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.insights-card-title {
    font-size: 1.13rem;
    font-weight: 600;
    color: #1374a6;
    margin-bottom: 0.3rem;
}
.insights-card-desc {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 0.7rem;
    flex: 1 1 auto;
}
.insights-card .btn {
    border-radius: 8px;
    font-weight: 500;
    min-width: 120px;
}
@media (max-width: 991px) {
    .insights-card-img { height: 140px; }
    .insights-card-body { padding: 1rem 1rem 1.2rem 1rem; }
}
@media (max-width: 575.98px) {
    .insights-title { font-size: 1.3rem; }
    .insights-card-img { height: 100px; }
    .insights-card-body { padding: 0.7rem 0.7rem 1rem 0.7rem; }
}
/* --- Profile Status Card Styles --- */
.profile-status-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    padding: 2rem 1.5rem;
    border: 1.5px solid #eaf7fc;
}
.profile-status-message span {
    font-size: 1.1rem;
    color: #444;
}
.profile-status-name {
    color: #009688;
    font-weight: 600;
}
.profile-status-actions .btn {
    min-width: 160px;
    border-radius: 10px;
    font-weight: 600;
}
.profile-status-btn-search {
    background: #22b8cf;
    border: none;
}
.profile-status-btn-available {
    background: #ffd43b;
    color: #222;
    border: none;
}
.profile-summary-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    padding: 1.5rem 1.2rem;
    max-width: 100%;
    margin: 0 auto;
}
.profile-summary-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #eaf6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
}
.profile-summary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-summary-name {
    font-size: 1.2rem;
}
.profile-summary-publish {
    font-size: 0.95rem;
    font-weight: 500;
    background: #e6fcf5 !important;
    color: #22b8cf !important;
    border-radius: 8px;
    padding: 0.3em 1em;
    float: right;
}
.profile-summary-details {
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-summary-details span {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 4px;
}
.profile-summary-download {
    border-radius: 8px;
    font-weight: 500;
    min-width: 180px;
}
/* --- Employer Inbox Chat App Styles --- */
.chat-app-container {
    display: flex;
    height: 80vh;
    background: #f5f7ff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px 0 rgba(38,171,226,0.08);
    overflow: hidden;
    margin: 2rem auto;
    max-width: 90%;
    min-height: 600px;
}
.chat-sidebar {
    width: 320px;
    background: #234370;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem;
    box-shadow: 2px 0 8px 0 rgba(38,171,226,0.04);
}
.chat-sidebar-header {
    padding: 1.2rem 1.5rem 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.chat-logo {
    /* width: 48px; */
    height: 48px;
    /* border-radius: 50%; */
    /* background: #fff; */
    object-fit: contain;
}
.chat-search-box {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
}
.chat-search-input {
    flex: 1;
    border-radius: 20px;
    border: none;
    padding: 0.5rem 1rem;
    font-size: .8rem;
    background: #fff;
    color: #234370;
    outline: none;
}
.chat-search-toggle, .chat-search-menu {
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
.chat-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}
.chat-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #2e4a6b;
}
.chat-list-item.active, .chat-list-item:hover {
    background: #1a2e4a;
}
.chat-list-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
.chat-list-info {
    flex: 1;
    min-width: 0;
}
.chat-list-title {
    font-weight: 600;
    font-size: .9rem;
    color: #fff;
    margin-bottom: 2px;
}
.chat-list-subtitle {
    font-size: 0.7rem;
    color: #b3c6e0;
}
.chat-list-time {
    font-size: 0.8rem;
    color: #b3c6e0;
    white-space: nowrap;
}
.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f7fbfd;
    border-top-right-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
    min-width: 0;
}
.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #eaf7fc;
    border-top-right-radius: 1.2rem;
}
.chat-header-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #eaf6fd;
}
.chat-header-info {
    flex: 1;
    min-width: 0;
}
.chat-header-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #234370;
}
.chat-header-status {
    font-size: 0.98rem;
    color: #7a8fa3;
}
.chat-header-menu {
    color: #234370;
    font-size: 1.2rem;
    cursor: pointer;
}
.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    background: #f7fbfd;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.chat-message {
    display: flex;
    align-items: flex-end;
    gap: 0.7rem;
    max-width: 80%;
}
.chat-message-other {
    align-self: flex-start;
}
.chat-message-self {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.chat-message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #eaf6fd;
}
.chat-message-content {
    background: #eaf6fd;
    color: #234370;
    border-radius: 1.1rem;
    padding: 0.9rem 1.2rem;
    font-size: .9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.06);
    position: relative;
    word-break: break-word;
    min-width: 60px;
    max-width: 100%;
}
.chat-message-self .chat-message-content {
    background: #d1f0ff;
    color: #1374a6;
}
.chat-message-meta {
    font-size: .8rem;
    color: #7a8fa3;
    margin-top: 0.3rem;
    text-align: right;
}
.chat-footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 1.5rem 1.1rem 1.5rem;
    background: #fff;
    border-top: 1px solid #eaf7fc;
    border-bottom-right-radius: 1.2rem;
}
.chat-input {
    flex: 1;
    border-radius: 20px;
    border: none;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    background: #f7fbfd;
    color: #234370;
    outline: none;
    resize: none;
    min-height: 44px;
    max-height: 120px;
    box-shadow: 0 1px 4px 0 rgba(38,171,226,0.04);
    transition: box-shadow 0.15s;
}
.chat-input:focus {
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.09);
}
.chat-send-btn {
    background: linear-gradient(90deg,#1374a6 0%,#4d9ff7 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.09);
}
.chat-send-btn:hover, .chat-send-btn:focus {
    background: linear-gradient(90deg,#4d9ff7 0%,#1374a6 100%);
    color: #fff;
}
/* --- Chat Header Dropdown Styles --- */
.chat-header-menu-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.chat-header-menu {
    cursor: pointer;
    color: #234370;
    font-size: 1.2rem;
    padding: 6px 10px;
    border-radius: 50%;
    transition: background 0.15s;
}
.chat-header-menu:hover {
    background: #eaf6fd;
}
.chat-header-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.13);
    z-index: 10;
    padding: 0.5rem 0;
    border: 1.5px solid #eaf7fc;
    display: none;
    animation: fadeIn 0.18s;
}
.chat-header-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.chat-header-dropdown li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.2rem;
    font-size: .8rem;
    color: #234370;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
    border-radius: 8px;
}
.chat-header-dropdown li:hover {
    background: #eaf6fd;
    color: #1374a6;
}
.chat-header-dropdown i {
    min-width: 20px;
    text-align: center;
    font-size: 1.1em;
    color: #26abe2;
}

/* --- Chat Search Dropdown Styles (Sidebar 3-dots) --- */
.chat-search-menu-wrap {
    position: relative;
    display: inline-block;
}
.chat-search-menu {
    cursor: pointer;
    color: #fff;
    font-size: 1.2rem;
    padding: 6px 10px;
    border-radius: 50%;
    transition: background 0.15s;
    display: inline-block;
}
.chat-search-menu:hover {
    background: #eaf6fd;
    color: #1374a6;
}
.chat-search-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 140px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.13);
    z-index: 20;
    padding: 0.5rem 0;
    border: 1.5px solid #eaf7fc;
    display: none;
    animation: fadeIn 0.18s;
}
.chat-search-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.chat-search-dropdown li {
    padding: 0.8rem 1.5rem;
    font-size: .8rem;
    color: #222;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.13s, color 0.13s;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.chat-search-dropdown li:hover {
    background: #f5f7ff;
    color: #1374a6;
}
.chat-search-dropdown i {
    min-width: 20px;
    text-align: center;
    font-size: 1.1em;
    color: #26abe2;
}
@media (max-width: 991px) {
    .chat-app-container {
        flex-direction: column;
        min-height: 500px;
        height: 90vh;
    }
    .chat-sidebar {
        width: 100%;
        border-radius: 1.2rem 1.2rem 0 0;
        min-height: 120px;
        flex-direction: row;
        align-items: flex-start;
        box-shadow: none;
    }
    .chat-main {
        border-radius: 0 0 1.2rem 1.2rem;
    }
}
@media (max-width: 767px) {
    .chat-app-container {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        min-height: auto;
        height: auto;
    }
    .chat-sidebar {
        min-width: 0;
        padding: 0;
    }
    .chat-header, .chat-footer, .chat-body {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}
/* --- Custom: Full-width and beautiful Find Job Tabs --- */
#findJobTab {
    display: flex;
    width: 100%;
    border-bottom: 0;
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    border-radius: 1.5rem 1.5rem 0 0;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
#findJobTab .nav-item {
    flex: 1 1 0;
    text-align: center;
}
#findJobTab .nav-link {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1rem 0;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: none;
    position: relative;
    z-index: 1;
}
#findJobTab .nav-link.active, #findJobTab .nav-link:focus, #findJobTab .nav-link:hover {
    background: #234370;
    color: #ffffff;
    box-shadow: 0 4px 16px 0 rgba(38, 171, 226, 0.10);
    border-bottom: 3px solid #234370;
    z-index: 2;
}
#findJobTab .nav-link:not(.active) {
    border-bottom: 3px solid transparent;
}
@media (max-width: 767px) {
    #findJobTab .nav-link {
        font-size: 1rem;
        padding: 0.7rem 0;
    }
}









/* --- Custom: Full-width and beautiful Find Job Tabs --- */
#findCandidatesTab {
    display: flex;
    width: 100%;
    border-bottom: 0;
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    border-radius: 1.5rem 1.5rem 0 0;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
#findCandidatesTab .nav-item {
    flex: 1 1 0;
    text-align: center;
}
#findCandidatesTab .nav-link {
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1rem 0;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: none;
    position: relative;
    z-index: 1;
}
#findCandidatesTab .nav-link.active, #findCandidatesTab .nav-link:focus, #findCandidatesTab .nav-link:hover {
    background: #234370;
    color: #ffffff;
    box-shadow: 0 4px 16px 0 rgba(38, 171, 226, 0.10);
    border-bottom: 3px solid #234370;
    z-index: 2;
}
#findCandidatesTab .nav-link:not(.active) {
    border-bottom: 3px solid transparent;
}
@media (max-width: 767px) {
    #findCandidatesTab .nav-link {
        font-size: 1rem;
        padding: 0.7rem 0;
    }
}
/* --- Creative Register Modal Role Card Styles --- */
.creative-role-card {
  background: linear-gradient(135deg, #e6fcf5 60%, #b2f2e6 100%);
  border: none;
  box-shadow: 0 8px 32px 0 rgba(38,171,226,0.10);
  border-radius: 2rem;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  min-width: 170px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.22s, transform 0.22s, background 0.22s;
  cursor: pointer;
  position: relative;
}
.creative-role-card.role-card-employer {
  background: linear-gradient(135deg, #fff9db 60%, #ffe066 100%);
}
.creative-role-card:hover {
  box-shadow: 0 16px 48px 0 rgba(38,171,226,0.18);
  transform: translateY(-8px) scale(1.045);
  background: linear-gradient(135deg, #b2f2e6 60%, #26abe2 100%);
}
.creative-role-card.role-card-employer:hover {
  background: linear-gradient(135deg, #ffe066 60%, #ffb200 100%);
}
.creative-role-icon-bg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 60%, #aadaef 100%);
  box-shadow: 0 2px 12px 0 rgba(38,171,226,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}
.creative-role-card.role-card-employer .creative-role-icon-bg {
  background: linear-gradient(135deg, #fff 60%, #ffe066 100%);
  box-shadow: 0 2px 12px 0 rgba(245,158,27,0.13);
}
.creative-role-icon-bg i.fa-search {
  color: #22b8cf;
}
.creative-role-icon-bg i.fa-user-tie {
  color: #fab005;
}
.creative-role-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}
.creative-role-gradient-text {
  background: linear-gradient(90deg, #22b8cf 0%, #26abe2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #22b8cf;
  font-weight: 700;
  font-size: 1.2rem;
}
.creative-role-gradient-text.creative-role-gradient-employer {
  background: linear-gradient(90deg, #fab005 0%, #ffb200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fab005;
}
.creative-role-desc {
  font-size: 1.08rem;
  color: #222;
  font-weight: 600;
  margin-top: 0.5rem;
}
@media (max-width: 575.98px) {
  .creative-role-card {
    min-width: 120px;
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .creative-role-title {
    font-size: 1.05rem;
  }
  .creative-role-desc {
    font-size: 0.98rem;
  }
  .creative-role-icon-bg {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
/* --- Register Modal Role Selection Creative Styles --- */
.role-select-divider {
  height: 3px;
  width: 120px;
  background: linear-gradient(90deg, #ffe066 0%, #26abe2 100%);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
}
.role-card {
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  cursor: pointer;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(38,171,226,0.10);
  border: 2.5px solid transparent;
  background-clip: padding-box;
  position: relative;
  min-width: 160px;
  max-width: 220px;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.role-card-job {
  background: linear-gradient(135deg, #e6fcf5 60%, #b2f2e6 100%);
  border-color: #b2f2e6;
}
.role-card-employer {
  background: linear-gradient(135deg, #fff9db 60%, #ffe066 100%);
  border-color: #ffe066;
}
.role-card .fa-search {
  color: #22b8cf;
  background: linear-gradient(135deg, #fff 60%, #aadaef 100%);
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 2.2rem;
  box-shadow: 0 2px 12px 0 rgba(38,171,226,0.13);
}
.role-card .fa-user-tie {
  color: #fab005;
  background: linear-gradient(135deg, #fff 60%, #ffe066 100%);
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 2.2rem;
  box-shadow: 0 2px 12px 0 rgba(245,158,27,0.13);
}
.role-card .fw-bold {
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.role-card-job .fw-bold {
  color: #22b8cf;
}
.role-card-employer .fw-bold {
  color: #fab005;
}
.role-card:hover {
  box-shadow: 0 12px 36px 0 rgba(38,171,226,0.18), 0 2px 8px 0 rgba(38,171,226,0.10);
  transform: translateY(-6px) scale(1.045);
  border-color: #26abe2;
}
.role-card-job:hover {
  background: linear-gradient(135deg, #b2f2e6 60%, #26abe2 100%);
  border-color: #26abe2;
}
.role-card-employer:hover {
  background: linear-gradient(135deg, #ffe066 60%, #ffb200 100%);
  border-color: #ffb200;
}
.role-card .mt-2 {
  font-size: 1.08rem;
  color: #222;
  font-weight: 700;
}
.role-card.selected {
  box-shadow: 0 16px 48px 0 rgba(38,171,226,0.22);
  border-color: #26abe2;
  transform: scale(1.06);
}
@media (max-width: 575.98px) {
  .role-card {
    min-width: 120px;
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}
/* --- Mobile Offcanvas Menu Creative Styles --- */
.offcanvas#mobileMenu {
  background: linear-gradient(120deg, #234370 60%, #1374a6 100%);
  color: #fff;
  border-top-left-radius: 2.2rem;
  border-bottom-left-radius: 2.2rem;
  box-shadow: 0 8px 48px 0 rgba(38,171,226,0.18);
  overflow: hidden;
}
.mobile-menu-header {
  background: transparent;
  border-bottom: none;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
}
.mobile-menu-header .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.8;
}
.mobile-menu-body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}
.mobile-menu-list {
  flex: 1 1 auto;
}
.mobile-menu-list .nav-link {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  border-radius: 1.2rem;
  padding: 0.7rem 1.2rem;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-list .nav-link:hover, .mobile-menu-list .nav-link.active {
  background: rgba(38,171,226,0.13);
  color: #26abe2;
}
.mobile-menu-contact {
  background: rgba(20,28,44,0.22);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}
.mobile-menu-social {
  gap: 1.2rem !important;
}
.mobile-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  color: #fff;
  font-size: 1.2rem;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  text-decoration: none;
}
.mobile-social-icon:hover {
  background: #fff;
  color: #1374a6;
  transform: translateY(-2px) scale(1.08);
}
.mobile-menu-btn {
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.7rem 0;
  box-shadow: 0 2px 8px 0 rgba(38,171,226,0.10);
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-btn.btn-primary {
  background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
  border: none;
}
.mobile-menu-btn.btn-outline-primary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.mobile-menu-btn.btn-outline-primary:hover {
  background: #fff;
  color: #1374a6;
}
@media (max-width: 575.98px) {
  .offcanvas#mobileMenu {
    border-radius: 1.2rem 0 0 1.2rem;
  }
  .mobile-menu-header {
    padding: 1rem 1rem 1rem 1rem;
  }
  .mobile-menu-btn {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
}
/* --- Trendy Sign In Modal Styles --- */
.signin-modal-content {
  border-radius: 1.5rem;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 48px 0 rgba(38,171,226,0.18);
  background: #fff;
  z-index: 1060 !important;
}
.signin-modal-img-col {
  position: relative;
  min-height: 420px;
  background: #181f2e;
}
.signin-modal-img-box {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem 0 0 1.5rem;
}
.signin-modal-img-box img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(0.85) blur(0px);
  border-radius: 1.5rem 0 0 1.5rem;
}
.signin-modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(179deg, rgb(255 255 255 / 0%) 0%, rgb(1 17 50) 100%);
  z-index: 1;
}
.signin-modal-img-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  color: #fff;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
}
.signin-modal-img-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.signin-modal-img-text p {
  font-size: 1.1rem;
  color: #e0e7ef;
  margin-bottom: 0;
}
.signin-modal-btn {
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.7rem 0;
  background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
  border: none;
  box-shadow: 0 2px 8px 0 rgba(38,171,226,0.10);
  transition: background 0.18s, box-shadow 0.18s;
}
.signin-modal-btn:hover {
  background: linear-gradient(90deg, var(--navy-blue) 0%, var(--dark-blue) 100%);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(245,158,27,0.18);
}
.signin-modal-divider {
  text-align: center;
  position: relative;
  margin: 1.5rem 0;
}
.signin-modal-divider span {
  background: #fff;
  padding: 0 1rem;
  color: #b3b3b3;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.signin-modal-divider:before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: #e0e7ef;
  z-index: 1;
}
.modal-backdrop.show {
  background: rgba(24,31,46,0.75);
  backdrop-filter: blur(2px);
}
@media (max-width: 767.98px) {
  .signin-modal-img-col {
    display: none !important;
  }
  .signin-modal-content {
    border-radius: 1.2rem;
  }
}
/* Featured Jobs Swiper Pagination Fix */
.job-listings-slider .swiper-pagination {
  position: relative;
  margin-top: 24px;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center;
  z-index: 2;
}
.job-listings-slider .swiper-pagination-bullet {
  background: #1e62d0;
  opacity: 0.25;
  width: 16px;
  height: 6px;
  margin: 0 6px !important;
  border-radius: 100px;
  transition: opacity 0.2s, background 0.2s;
}
.job-listings-slider .swiper-pagination-bullet-active {
  background: var(--sky-blue);
  opacity: 1;
  width: 25px;
}
/* Testimonials Swiper Pagination Fix */
.testimonials-slider .swiper-pagination {
  position: relative;
  margin-top: 24px;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center;
  z-index: 2;
}
.testimonials-slider .swiper-pagination-bullet {
  background: var(--sky-blue);
  opacity: 0.25;
  width: 16px;
  height: 6px;
  margin: 0 6px !important;
  border-radius: 100px;
  transition: opacity 0.2s, background 0.2s;
}
.testimonials-slider .swiper-pagination-bullet-active {
  background: #26abe2;
  opacity: 1;
  width: 25px;
}
/* Feature Section Styles (extracted from inline) */
.feature-section {
  background: #181f2e url('assets/images/hero-bg - Copy.jpg') center center/cover no-repeat;
}
.feature-section-overlay {
  position: absolute;
  inset: 0;
  /* background: rgb(0 35 104 / 82%); */
  background: url('../images/bg1.jpg') center center/cover no-repeat;
  z-index: 1;
}
.feature-section-content {
  z-index: 2;
}
.feature-section-title {
  color: #fff;
  font-size: 2.3rem;
}
.feature-section-desc {
  color: #e0e7ef;
  max-width: 750px;
  margin: auto;
}
.feature-card {
  background: rgb(34 49 92 / 75%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(30,98,208,0.10);
  border: 2.5px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
  position: relative;
}
.feature-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgb(72 191 241 / 18%) 0%, rgb(146 255 253 / 25%) 100%);
}
.feature-card-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 60%, #aadaef 100%);
  box-shadow: 0 2px 12px 0 rgba(38,171,226,0.13);
  position: relative;
  z-index: 1;
}
.feature-card-icon-img {
  width: 40px;
  height: 40px;
}
.feature-card-title {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.feature-card-desc {
  color: #e0e7ef;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.feature-card-highlight {
  font-weight: 600;
  color: #fff;
}
/* Feature Card Hover Effect */
.feature-card {
  transition: transform 0.22s cubic-bezier(.4,1.5,.5,1), box-shadow 0.22s cubic-bezier(.4,1.5,.5,1);
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 12px 36px 0 rgba(30,98,208,0.18), 0 2px 8px 0 rgba(38,171,226,0.10);
  z-index: 2;
}
/* --- Why Choose Expatnext Hexagon Grid Section --- */
/* --- Why Choose Us Section: Split Card Layout (Image + Features) --- */
.why-choose-section {
    /* background: linear-gradient(120deg, #eaf7fc 0%, #fff 100%); */
    padding: 3.5rem 0 3.5rem 0;
    position: relative;
    overflow: visible;
    background: url(../images/hero-bg\ -\ Copy.jpg) no-repeat center center / cover;
}
.why-choose-container {
    /* max-width: 1050px; */
    margin: 0 auto;
    background: #fafdff;
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.10);
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}
.why-choose-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a2953;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-align: left;
}
.why-choose-features {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.why-choose-feature-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.1rem 1.3rem 1.1rem 1.3rem;
    border: 1.5px solid #eaf7fc;
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
    position: relative;
}
.why-choose-feature-card:hover {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13);
    border-color: #b3d4fc;
    transform: translateY(-2px) scale(1.02);
}
.why-choose-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-top: 2px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.08);
}
/* Example icon backgrounds, use one per card */
.why-choose-feature-icon.bg-blue { background: #eaf7fc; color: #1e62d0; }
.why-choose-feature-icon.bg-purple { background: #f3eafd; color: #7c3aed; }
.why-choose-feature-icon.bg-pink { background: #ffeaf7; color: #ff4d8b; }
.why-choose-feature-icon.bg-green { background: #eafff3; color: #00b97c; }
.why-choose-feature-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1a2953;
    margin-bottom: 0.2rem;
    margin-top: 0.1rem;
}
.why-choose-feature-desc {
    color: #6b7a99;
    font-size: 0.98rem;
    font-weight: 400;
    margin-bottom: 0;
}
.why-choose-image-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-choose-image-box {
    background: #eaf7fc;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(38,171,226,0.08);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #eaf7fc;
    /* max-width: 340px; */
    width: 100%;
    /* min-height: 220px; */
}
.why-choose-image-box img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}
@media (max-width: 991.98px) {
    .why-choose-container {
        flex-direction: column;
        padding: 1.5rem 0.7rem 1.5rem 0.7rem;
        gap: 1.5rem;
    }
    .why-choose-title {
        font-size: 1.3rem;
        text-align: center;
    }
    .why-choose-image-box {
        max-width: 98vw;
    }
}
@media (max-width: 575.98px) {
    .why-choose-title {
        font-size: 1.05rem;
    }
    .why-choose-feature-title {
        font-size: 0.98rem;
    }
    .why-choose-feature-card {
        padding: 0.8rem 0.7rem 0.8rem 0.7rem;
    }
}
/* --- Browse by Category Section --- */
.category-section {
    background: #fff;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.category-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: #1a2953;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
.category-subtitle {
    color: #6b7a99;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}
.category-slider {
    padding: 0 0 0 0;
}
.category-swiper-prev::after {
    font-size: 24px;
}
.category-swiper-next:after {
    font-size: 24px;
}
.cat-swiper-nav {
    position: relative;
    top: -60px;
    margin: 0 -40px;
}
.category-card {
    background: #fff;
    border: 1.5px solid #e6ecf5;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(30,98,208,0.03);
    padding: 1.5rem 2.2rem 1.2rem 1.2rem;
    min-width: 260px;
    min-height: 110px;
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
}
.category-card:hover {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.10);
    border-color: #b3d4fc;
    transform: translateY(1px) scale(1.01);
}
.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eaf7fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e62d0;
    margin-right: 0.5rem;
}
.bg-blue-100 {
    background: #eaf7fc !important;
    color: #1e62d0 !important;
}
.category-label {
    font-size: 1rem;
    color: #1a2953;
    font-weight: 700;
    margin-bottom: 0.1rem;
}
.category-count {
    color: #6b7a99;
    font-size: 0.98rem;
    font-weight: 400;
}
.category-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}
/* Category Swiper Navigation Arrows */
.category-slider .swiper-button-prev,
.category-slider .swiper-button-next {
    background: #eaf0fa;
    color: #1e62d0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(30,98,208,0.08);
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.18s, color 0.18s;
    opacity: 1 !important;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
}
.category-slider .swiper-button-prev:hover,
.category-slider .swiper-button-next:hover {
    background: #1e62d0;
    color: #fff;
}
.category-slider .swiper-button-prev:after,
.category-slider .swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: 700;
}
.category-slider .swiper-button-prev {
    left: -48px;
}
.category-slider .swiper-button-next {
    right: -48px;
    left: auto;
}
.category-slider .swiper-button-next.swiper-button-disabled {
    pointer-events: auto !important;
    opacity: 0.5 !important;
}
}
@media (max-width: 991.98px) {
    .category-slider .swiper-button-prev {
        left: -18px;
    }
    .category-slider .swiper-button-next {
        right: -18px;
    }
}
@media (max-width: 991.98px) {
    .category-card {
        min-width: 200px;
        padding: 1rem 1.2rem 1rem 1rem;
    }
    .category-title {
        font-size: 1.5rem;
    }
    .category-slider .swiper-button-prev {
        left: -18px;
    }
    .category-slider .swiper-button-next {
        right: -18px;
    }
}
@media (max-width: 575.98px) {
    .category-card {
        min-width: 160px;
        padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    }
    .category-title {
        font-size: 1.1rem;
    }
}
/* --- Footer Section (Modern Gradient, Newsletter, Columns, App Buttons) --- */
.footer-section {
    position: relative;
    background: none;
    padding-top: 0;
    color: #fff;
    overflow: hidden;
}
.footer-gradient-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    opacity: 1;
}
.footer-section .container {
    position: relative;
    z-index: 2;
}
.footer-newsletter {
    margin-top: 0;
    margin-bottom: 2.5rem;
}
.footer-newsletter h2 {
    color: #fff;
    font-size: 2rem;
}
.footer-newsletter p {
    color: #e0e7ef;
    font-size: 1rem;
}
.footer-newsletter-form {
    max-width: 500px;
    background: #fff;
    border-radius: 2rem;
    padding: 0.25rem 0.3rem 0.25rem 1.5rem;
    box-shadow: 0 2px 16px 0 rgba(30,98,208,0.08);
}
.footer-newsletter-input {
    border: none;
    border-radius: 2rem 0 0 2rem;
    outline: none;
    box-shadow: none;
    font-size: 1rem;
    background: transparent;
}
.footer-newsletter-input:focus {
    box-shadow: none;
}
.footer-newsletter-btn {
    border-radius: 0 2rem 2rem 0;
    font-weight: 500;
    min-width: 120px;
    background: var(--navy-blue);
    color: #fff;
    border: none;
    transition: background 0.2s;
}
.footer-newsletter-btn:hover {
    background: #ff9800;
    color: #fff;
}
.footer-logo {
    height: 48px;
    width: auto;
}
footer {
    color: #e0e7ef !important;
}
.footer-link-list li {
    margin-bottom: 0.5rem;
    color: #e0e7ef;
}
.footer-link-list a {
    color: #e0e7ef;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-link-list a:hover {
    color: #ffb200;
}
.footer-app-btn {
    border-radius: 0.75rem;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    background: #23272f;
    color: #fff;
    border: none;
    transition: background 0.2s;
    text-align: left;
}
.footer-app-btn:hover {
    background: #1e62d0;
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
}
.footer-social a {
    color: #e0e7ef;
    font-size: 1.25rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #ffb200;
}
@media (max-width: 991.98px) {
    .footer-section .row > div {
        margin-bottom: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
@media (max-width: 575.98px) {
    .footer-newsletter-form {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    .footer-newsletter-input, .footer-newsletter-btn {
        border-radius: 2rem !important;
        width: 100%;
    }
    .footer-app-btn {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --sky-blue: #26abe2;
    --dark-blue: #1374a6;
    --navy-blue: #234370;
    --main-font: 'Poppins', Arial, Helvetica, sans-serif;
}

body, html {
    font-family: var(--main-font) !important;
}

.bg-sky-blue {
    background-color: var(--sky-blue);
}

.text-sky-blue {
    color: var(--sky-blue);
}
.text-navy-blue {
    color: var(--navy-blue);
}

.btn-primary {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}
.btn-secondary {
    color: var(--sky-blue);
    border-color: var(--navy-blue);
    background-color: var(--navy-blue) !important;
}
.btn-outline-primary {
    color: var(--sky-blue);
    border-color: var(--sky-blue);
    /* background-color: var(--navy-blue) !important; */
}

.btn-outline-primary:hover {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
    color: white;
}

/* Extracted from index.php inline/internal styles */
.preloader-z {
    z-index: 9999 !important;
}
.preloader-logo {
    max-width: 150px;
}
.icon-box-80 {
    width: 80px;
    height: 80px;
    line-height: 80px;
}
.sticky-icons-z {
    z-index: 1000 !important;
}
.sticky-icon-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.whatsapp-bg {
    background-color: #25D366 !important;
}

/* Creative Header Enhancements */
.creative-header {
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.08);
    border-bottom: 2px solid var(--sky-blue);
    background: linear-gradient(90deg, #fff 80%, #eaf7fc 100%);
}
.creative-tagline {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-style: italic;
    opacity: 0.85;
}
.creative-globe {
    animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.spin {
    animation: spin 4s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
.creative-menu .creative-link {
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
    font-size: 1rem;
}
.creative-menu .creative-link:hover {
    color: var(--dark-blue);
}
.creative-menu .creative-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: width 0.3s;
    margin: 0 auto;
}
.creative-menu .creative-link:hover::after {
    width: 80%;
}
.creative-btn {
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.08);
    transition: transform 0.15s;
    padding: .45rem 1.5rem;
    font-size: 14px;
}
.creative-btn.btn-primary {
    background: var(--navy-blue);
    color: #fff;
    border-color: var(--navy-blue);
}
.creative-btn:hover {
    transform: translateY(-2px) scale(1.04);
}

/* Beautiful Hero Section Enhancements */
.hero-section {
    /* background: linear-gradient(120deg, #eaf7fc 0%, #fff 100%); */
    position: relative;
    overflow: hidden;
    background: url(../images/hero-bg.jpg) no-repeat center center / cover;
}
/* .hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #26abe2 0%, #eaf7fc 80%, transparent 100%);
    opacity: 0.18;
    z-index: 0;
} */
/* .hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #1374a6 0%, #eaf7fc 80%, transparent 100%);
    opacity: 0.12;
    z-index: 0;
} */
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff 40%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section .lead {
    font-size: 1rem;
    color: #ffffff;
    opacity: 1;
    font-weight: 400;
}
.hero-section .btn-primary, .hero-section .btn-outline-primary {
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 16px 0 rgba(38,171,226,0.10);
    transition: transform 0.15s;
}
.hero-section .btn-primary:hover, .hero-section .btn-outline-primary:hover {
    transform: translateY(-2px) scale(1.04);
}
.hero-section .btn-outline-primary {
    border-width: 2px;
    color: #fff;
    border: 2px solid #ffffff;
}
.hero-section .img-fluid.rounded {
    border-radius: 2rem !important;
    /* box-shadow: 0 8px 32px 0 rgba(38,171,226,0.10); */
    transition: box-shadow 0.2s;
}
.hero-section .img-fluid.rounded:hover {
    /* box-shadow: 0 12px 48px 0 rgba(38,171,226,0.18); */
}

/* Beautiful Featured Jobs Section Enhancements */
.section-header h2 {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #26abe2 40%, #1374a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.section-header .btn-outline-primary {
    border-radius: 30px;
    font-weight: 600;
    border-width: 2px;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.08);
}
.job-listings-slider .swiper-slide {
    padding-top: 10px;
    padding-bottom: 10px;
}
.job-listings-slider .card {
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    background: linear-gradient(120deg, #fff 80%, #eaf7fc 100%);
}
.job-listings-slider .col-md-4 {
    margin-bottom: 30px;
}
.job-listings-slider .card:hover {
    box-shadow: 0 16px 48px 0 rgba(38,171,226,0.18);
    transform: translateY(-4px) scale(1.03);
}
.job-listings-slider .company-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #eaf7fc;
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.08);
    margin-right: 1rem;
}
.job-listings-slider h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2953;
    margin-bottom: 0.2rem !important;
    margin-top: 0.3rem !important;
}
.job-listings-slider p {
    font-size: 0.9rem !important;
    color: #6c757d;
    margin-bottom: 0rem !important;
}
.job-listings-slider .badge {
    border-radius: 20px;
    font-size: 0.95rem;
    padding: 0.4em 1em;
    background: #eaf7fc;
    color: #1374a6;
    font-weight: 500;
}
.job-listings-slider .btn-sm {
    border-radius: 20px;
    font-weight: 400;
    padding: 0.4em 1.5em;
    font-size: .9rem;
}
.job-listings-slider .fw-bold.text-sky-blue {
    font-size: 1.1rem;
}
.job-listings-slider .card-body {
    position: relative;
    z-index: 2;
}
.job-listings-slider .card-body::after {
    content: '\f0b1'; /* briefcase icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2.5rem;
    color: #eaf7fc;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

/* Equalize text-muted content length in job cards */
.job-listings-slider .card .text-muted {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 2.8em;
    max-height: 2.8em; */
    line-height: 1.4em;
    font-size: 1rem;
    color: #6c757d !important;
    margin-bottom: 10px !important;
}

/* About Section - Clean Split Layout (like given image) */
.about-section {
    background: #fff;
    /* border-radius: 1.2rem; */
    /* box-shadow: 0 4px 32px 0 rgba(38,171,226,0.10); */
    padding: 0;
    margin-bottom: 2.5rem;
    min-height: 420px;
    display: flex;
    align-items: stretch;
    overflow: visible;
}
.about-section .container {
    max-width: 1200px;
    padding: 0;
}
.about-section .row {
    margin: 0;
    width: 100%;
    align-items: stretch;
}
.about-section .about-img-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: none;
    box-shadow: none;
    border-radius: 1.2rem 0 0 1.2rem;
    overflow: hidden;
    padding: 0;
    min-height: 100%;
}
.about-section .about-img-full {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 1.2rem 1.2rem;
    box-shadow: none;
    border: none;
    background: #fff;
    padding-right: 60px;
}
.about-section .about-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
}
.about-section .about-gradient-text,
.about-section h2 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #1a2953;
    background: none;
    margin-bottom: 1.2rem;
}
.about-section .lead {
    font-size: 1.1rem;
    color: #1a2953;
    opacity: 0.95;
    margin-bottom: 1.1rem;
    font-weight: 400;
}
.about-section p {
    font-size: 1.05rem;
    color: #444;
    opacity: 0.92;
    margin-bottom: 0.8rem;
}
.about-section .d-flex.gap-3.mt-4 {
    margin-top: 2.2rem !important;
    gap: 2.5rem !important;
}
.about-section .text-center h3 {
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
    color: #1374a6;
    background: none;
}
.about-section .text-center p {
    font-size: 1rem;
    color: #888;
    opacity: 0.85;
}
@media (max-width: 991px) {
    .about-section {
        flex-direction: column;
        border-radius: 1rem;
        min-height: unset;
    }
    .about-section .about-img-container {
        border-radius: 1rem 1rem 0 0;
        min-height: 180px;
    }
    .about-section .about-img-full {
        border-radius: 1rem 1rem 0 0;
        min-height: 180px;
    }
    .about-section .about-content-col {
        padding: 1.5rem 1rem 1.5rem 1rem;
    }
    .about-section .about-gradient-text,
    .about-section h2 {
        font-size: 1.3rem;
    }
    .about-section .text-center h3 {
        font-size: 1.1rem;
    }
}

/* Trendy Footer Enhancements */
.footer-section {
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    color: #fff;
    padding: 3rem 0 1.5rem 0;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: 0 -8px 32px 0 rgba(38,171,226,0.10);
}
.footer-section .footer-logo {
    max-width: 160px;
    /* margin-bottom: 1.5rem; */
}
.footer-section .footer-social {
    margin-top: 1rem;
}
.footer-section .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    font-size: 1.3rem;
    margin-right: 0.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
}
.footer-section .footer-social a i {
    color: inherit !important;
    transition: color 0.2s;
    z-index: 2;
}
.footer-section .footer-social a:hover, .footer-section .footer-social a:focus {
    background: #fff;
    color: #1374a6 !important;
    transform: translateY(-2px) scale(1.08);
    text-decoration: none;
}
.footer-section .footer-social a:hover i, .footer-section .footer-social a:focus i {
    color: #1374a6 !important;
}
.footer-section .footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-section .footer-links li a {
    color: #fff;
    opacity: 0.85;
    font-weight: 500;
    transition: color 0.2s, opacity 0.2s;
    text-decoration: none;
}
.footer-section .footer-links li a:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}
.footer-section .footer-divider {
    border-top: 1px solid rgba(255,255,255,0.18);
    margin: 2rem 0 1.5rem 0;
}
.footer-section .footer-bottom {
    font-size: 1rem;
    opacity: 0.85;
    text-align: center;
}
.footer-section .footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="60" viewBox="0 0 1200 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 30 Q300 60 600 30 T1200 30 V60 H0 V30Z" fill="%23fff" fill-opacity="0.18"/></svg>') repeat-x;
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 991px) {
    .footer-section {
        padding: 2rem 0 1rem 0;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }
    .footer-section .footer-links {
        gap: 1rem;
        font-size: 0.98rem;
    }
    .footer-section .footer-logo {
        max-width: 150px;
        width: 150px;
        height: auto;
    }
}

/* Creative CTA Section Enhancements */

/* --- CTA Section (as per reference image) --- */

/* --- Creative, Trendy CTA Section --- */
.cta-section {
    background: linear-gradient(120deg, #234370 60%, #1374a6 100%);
    border-radius: 2.5rem 2.5rem 0rem 0rem;
    margin: 3rem 0 rem 0;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 8px 32px 0 rgba(38, 171, 226, 0.13); */
    padding: 20px 0 0 0;
}
.cta-section .cta-floating-shape {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #26abe2 0%, #eaf7fc 80%, transparent 100%);
    opacity: 0.18;
    z-index: 0;
    filter: blur(2px);
    pointer-events: none;
    animation: cta-float 4s ease-in-out infinite;
}
@keyframes cta-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
}
.cta-section .row {
    align-items: center;
    margin: 0;
    position: relative;
    z-index: 2;
}
.cta-section .cta-content-col {
    padding: 3.2rem 2.8rem 3.2rem 3.2rem;
}
.cta-section .cta-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #1374a6 40%, #26abe2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.1rem;
    line-height: 1.18;
    letter-spacing: -1px;
}
.cta-section .cta-title .cta-highlight {
    color: var(--sky-blue);
    background: none;
    font-weight: 900;
    -webkit-text-fill-color: initial;
}
.cta-section .cta-desc {
    color: #234370;
    opacity: 0.96;
    font-size: 1.13rem;
    margin-bottom: 1.7rem;
    font-weight: 500;
}
.cta-section .cta-btn {
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.18rem;
    background: linear-gradient(90deg, #1374a6 40%, #26abe2 100%);
    color: #fff;
    padding: 0.85rem 2.7rem;
    border: none;
    box-shadow: 0 4px 24px 0 rgba(38,171,226,0.13), 0 0 0 0 #f59e1b;
    transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
    position: relative;
    z-index: 2;
}
.cta-section .cta-btn:hover {
    background: linear-gradient(90deg, #f59e1b 40%, #ffb200 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(245,158,27,0.18), 0 0 16px 2px #f59e1b44;
}
.cta-section .cta-image-col {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding: 0;
}
.cta-section .cta-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    border-radius: 0 0 2.5rem 0;
    object-fit: contain;
    margin-right: 0;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .cta-section {
        border-radius: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    .cta-section .cta-content-col {
        padding: 2rem 1rem 2rem 1rem;
    }
    .cta-section .cta-title {
        font-size: 1.4rem;
    }
    .cta-section .cta-img {
        max-width: 180px;
    }
}
@media (max-width: 767px) {
    .cta-section .row {
        flex-direction: column-reverse;
    }
    .cta-section .cta-content-col {
        padding: 1.5rem 1rem 1.5rem 1rem;
        text-align: center;
    }
    .cta-section .cta-image-col {
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    .cta-section .cta-img {
        max-width: 180px;
    }
}

/* Sticky Call & WhatsApp Icons */
.sticky-contact-icons {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.sticky-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 60%, #eaf7fc 100%);
    box-shadow: 0 4px 16px 0 rgba(38,171,226,0.13);
    color: #fff;
    font-size: 2rem;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.sticky-contact-btn i {
    font-size: 18px;
}
.sticky-contact-btn.call {
    background: linear-gradient(135deg, #26abe2 60%, #1374a6 100%);
}
.sticky-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 60%, #1374a6 100%);
}
.sticky-contact-btn:hover {
    transform: translateY(-4px) scale(1.07);
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.18);
}
.sticky-contact-btn .fa {
    position: relative;
    z-index: 2;
}
.sticky-contact-btn .sticky-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #234370;
    color: #fff;
    font-size: 1rem;
    padding: 0.35em 1em;
    border-radius: 1.2em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s, left 0.18s;
}
.sticky-contact-btn:hover .sticky-tooltip {
    opacity: 1;
    left: 80px;
}
@media (max-width: 767px) {
    .sticky-contact-icons {
        left: 12px;
        bottom: 12px;
        gap: 12px;
    }
    .sticky-contact-btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    .sticky-contact-btn .sticky-tooltip {
        font-size: 0.95rem;
        left: 56px;
    }
}

/* Unique Agency Services Section Enhancements */
.agency-services-section {
    background: linear-gradient(120deg, #eaf7fc 0%, #fff 100%);
    /* border-radius: 2rem; */
    /* box-shadow: 0 8px 32px 0 rgba(38,171,226,0.08); */
    margin: 0rem 0 0rem 0;
    position: relative;
    overflow: hidden;
}
.agency-bg-shape {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #26abe2 0%, #eaf7fc 80%, transparent 100%);
    opacity: 0.13;
    z-index: 0;
}
.agency-services-section .agency-gradient-text {
    background: linear-gradient(90deg, #26abe2 40%, #1374a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.agency-services-section .section-header h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}
.service-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px 0 rgba(38,171,226,0.08);
    transition: box-shadow 0.18s, transform 0.18s;
    position: relative;
    z-index: 2;
    border: none;
}
.service-card:hover {
    box-shadow: 0 12px 36px 0 rgba(38,171,226,0.16);
    transform: translateY(-4px) scale(1.03);
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.10);
    border: 4px solid #fff;
    transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover .service-icon {
    box-shadow: 0 6px 18px 0 rgba(38,171,226,0.18);
    transform: scale(1.08);
}
.service-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1374a6;
}
.service-card p {
    color: #234370;
    opacity: 0.88;
    font-size: 1.05rem;
}
@media (max-width: 991px) {
    .agency-services-section {
        border-radius: 1rem;
        margin: 2rem 0 1rem 0;
        padding: 2rem 0.5rem;
    }
    .service-card {
        border-radius: 1rem;
    }
    .agency-services-section .section-header h2 {
        font-size: 1.4rem;
    }
}
.lead {
    font-size: 1rem;
    font-weight: 300;
}
.job-listings-slider .swiper-wrapper {
    padding-bottom: 0px;
}
/* .company-logos-slider img {
    border: 1px solid #eeeeee;
    border-radius: 8px;
} */

/* About Us Fun Counter Enhancements */
.about-fun-counters {
    gap: 3.5rem !important;
    margin-top: 1.5rem !important;
}
.fun-counter-box {
    background: #f7fbfd;
    border-radius: 1rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    padding: 1.2rem 2.2rem 1rem 2.2rem;
    min-width: 120px;
    transition: box-shadow 0.18s, transform 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eaf7fc;
}
.fun-counter-box:hover {
    box-shadow: 0 6px 24px 0 rgba(38,171,226,0.13);
    transform: translateY(-3px) scale(1.04);
}
.fun-counter {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.fun-counter-box p {
    font-size: 1.05rem;
    color: #1374a6;
    margin-bottom: 0;
    font-weight: 500;
}
@media (max-width: 991px) {
    .about-fun-counters {
        gap: 1.2rem !important;
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .fun-counter-box {
        min-width: 90px;
        padding: 0.8rem 1.2rem 0.7rem 1.2rem;
    }
    .fun-counter {
        font-size: 1.3rem;
    }
}
.testimonial-text {
    font-weight: 400;
    font-size: .9rem;
}
.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    right: 22px;
    top: 22px;
    z-index: 2;
    font-size: 3.5rem;
    box-shadow: none;
    background: transparent !important;
}
.testimonials-slider .swiper-wrapper {
    padding-bottom: 0px;
}

/* Hero Slider */
.carousel-caption {
    position: absolute;
    right: 15%;
    /* bottom: 24%; */
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
    width: 40%;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
}
.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #fff;
}
.carousel-caption h4 {
    font-size: 26px;
    font-weight: 700;
}
.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 1);
}
.carousel-caption .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    background-color: #26abe2;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}
.carousel-caption .btn:nth-child(2) {
    background-color: #ffffff;
    /* border: 2px solid #1374a6; */
    color: #ffffff;
}
.cat-icon {
    background: var(--sky-blue);
    color: #fff;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    position: relative;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}





.direct-hire-section {
    background: #fdfdfd;
}
.direct-hire-section h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: #1a2953;
}
.hire-card {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-color: #ffffff;
}

.hire-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.hire-card img {
    height: 200px;
    object-fit: cover;
}

.hire-card .card-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.hire-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.direct-hire-section .btn {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
    border-radius: 100px;
    padding: 6px 20px;
}




.cta1-section {
    background: linear-gradient(135deg, #03275f 0%, #000000 100%);
    padding: 3rem 0;
    border-radius: 0 0;
    position: relative;
    overflow: hidden;
}

.cta1-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../images/cta1-bg-img.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0px;
}

.cta1-content {
    position: relative;
    z-index: 2;
}

.cta1-section .title {
    background: linear-gradient(135deg, #00BCD4 0%, #3F51B5 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    display: inline-block;
    font-size: 2.5rem;
}

.cta1-section .sub-title {
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2rem;
    /* max-width: 500px; */
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.btn-secondary-custom {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background-color: #ff4d6d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 101, 132, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.cta1-content .btn {
    border-radius: 100px;
    padding: 10px 20px;
}


 @media (max-width: 992px) {
    .cta1-section::before {
        width: 100%;
        height: 300px;
        top: auto;
        bottom: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .cta1-content {
        text-align: center;
    }
    
    .sub-title {
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-container {
        justify-content: center;
    }
    .cta1-section::before {
        display: none;
    }
    .carousel-caption {
        width: 80%;
    }
    .carousel-item:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }
    .carousel-item img {
        height: 400px;
        object-fit: cover;
        object-position: 80% 10%;
    }
    .carousel-caption h4, .carousel-caption h5 {
        font-size: 16px;
        font-weight: 700;
    }
    .carousel-caption p {
        font-size: 14px;
    }
    .carousel-caption .btn {
        margin-bottom: 10px;
    }
}

/* --- Dashboard User Dropdown --- */
.dashboard-user-dropdown .dashboard-user-avatar {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 3px solid #2b6cb0;
    box-shadow: 0 2px 8px rgba(49,130,206,0.10);
    background: #fff;
}
.dashboard-user-dropdown .dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: middle;
    display: none;
}
.dashboard-user-dropdown .dropdown-menu {
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(49,130,206,0.10);
    padding: 8px 0;
    font-size: .8rem;
}
.dashboard-user-dropdown .dropdown-item {
    padding: 10px 22px;
    color: #1a2940;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.dashboard-user-dropdown .dropdown-item:hover {
    background: #f5f7ff;
    color: #2b6cb0;
}
.dashboard-user-dropdown .dropdown-item.text-danger {
    color: #e53e3e;
}
.dashboard-user-dropdown .dropdown-item.text-danger:hover {
    background: #ffeaea;
    color: #b91c1c;
}
@media (max-width: 991px) {
    .dashboard-user-dropdown .dashboard-user-avatar { width: 32px; height: 32px; }
    .dashboard-user-dropdown .dropdown-menu { min-width: 160px; }
}

/* --- Dashboard Jobseeker Page Styles --- */
.dashboard-sidebar {
    background: #2b6cb0;
    border-radius: 0 0 0 30px;
    box-shadow: 0 4px 24px rgba(49,130,206,0.12);
    min-height: 100vh;
    padding: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
/* .dashboard-sidebar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(90deg,#32afe4 0,#32afe4 100%);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    z-index: 0;
} */
.dashboard-sidebar .sidebar-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(49,130,206,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.dashboard-sidebar .sidebar-logo img {
    width: 40px;
    height: 40px;
}
.dashboard-sidebar .nav {
    width: 100%;
    position: relative;
    z-index: 1;
}
.dashboard-sidebar .nav-link {
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 14px 22px;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(49,130,206,0.08);
    background: #317dc9;
}
.dashboard-sidebar .nav-link.active {
    background: linear-gradient(90deg,#32afe4 0,#32afe4 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(49,130,206,0.16);
}
.dashboard-sidebar .nav-link:hover {
    background: #03275f;
    color: #fff;
}
.dashboard-sidebar .sidebar-footer {
    margin-top: auto;
    padding: 24px 0 16px 0;
    text-align: center;
    color: #fff;
    font-size: 0.98rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}
.dashboard-main {
    padding: 40px 32px;
}
.breadcrumb-section {
    background: linear-gradient(90deg,#2b6cb0 0,#3182ce 100%);
    color: #fff;
    border-radius: 10px;
    padding: 18px 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(49,130,206,0.08);
}
.breadcrumb-section .breadcrumb {
    background: none;
    margin-bottom: 0;
    font-size: 1.1rem;
}
.todo-card, .stats-card, .dashboard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 28px 32px;
    margin-bottom: 24px;
}
.todo-card h5 {
    font-weight: 700;
}

.todo-list .todo-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.todo-list .todo-icon {
    font-size: 2rem;
    margin-right: 16px;
}

.dashboard-btns .btn {
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    min-width: 180px;
}

.dashboard-btns .btn-success {
    background: linear-gradient(90deg, #2b6cb0 0, #2b6cb0 100%);
    border: none;
}

.dashboard-btns .btn-warning {
    background: linear-gradient(90deg, #03275f 0, #03275f 100%);
    border: none;
    color: #fff;
}

.stats-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-box .stats-icon {
    font-size: 2rem;
}

.stats-box .fw-bold {
    font-size: 1rem;
}

.dashboard-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.dashboard-card {
    flex: 1 1 220px;
    min-width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-card .dashboard-card-icon {
    font-size: 2.2rem;
}

.dashboard-card .dashboard-card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.dashboard-card .dashboard-card-desc {
    color: #6c757d;
    font-size: 0.98rem;
}

@media (max-width: 991px) {
    .dashboard-main {
        padding: 24px 8px;
    }
    .dashboard-cards-row {
        flex-direction: column;
    }
    .dashboard-sidebar {
        border-radius: 0;
        min-height: auto;
        padding: 16px 0 0 0;
    }
    .dashboard-sidebar .sidebar-logo {
        margin-bottom: 18px;
    }
}

/* --- Find Job Page Styles --- */
.findjob-breadcrumb-section {
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    color: #fff;
    padding: 0;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 0;
}
.findjob-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #fff;
}
.findjob-subtitle {
    color: #e0e7ef;
    font-size: 1.1rem;
}
.findjob-main-section {
    min-height: 600px;
}
.findjob-categories-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 2px 16px 0 rgba(38,171,226,0.08);
    padding: 2rem 1.5rem;
}
.findjob-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.findjob-category-list li {
    margin-bottom: 0.5rem;
}
.findjob-category-list a {
    color: #1374a6;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 8px;
    display: block;
    transition: background 0.15s, color 0.15s;
}
.findjob-category-list a.active, .findjob-category-list a:hover {
    background: #eaf6fd;
    color: #26abe2;
}
.findjob-search-form .form-control {
    border-radius: 2rem 0 0 2rem;
    border: 1px solid #e0e7ef;
    font-size: .9rem;
    box-shadow: none;
    padding: 10px 20px;
}
.findjob-search-form .btn {
    border-radius: 0 2rem 2rem 0;
    font-weight: 600;
    min-width: 120px;
}
.findjob-joblist {
    margin-top: 0.5rem;
}
.findjob-job-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.2rem;
    transition: box-shadow 0.15s, transform 0.15s;
}
.findjob-job-card:hover {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13);
    transform: translateY(-4px) scale(1.02);
}
.findjob-job-card-body {
    flex: 1 1 auto;
}
.findjob-job-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1374a6;
    margin-bottom: 0.2rem;
}
.findjob-job-meta {
    font-size: 0.98rem;
    color: #6c7a89;
    margin-bottom: 0.4rem;
}
.findjob-job-desc {
    font-size: 1.05rem;
    color: #222;
}
.findjob-job-card-action {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}
@media (max-width: 991px) {
    .findjob-main-section .row { flex-direction: column; }
    .findjob-categories-card { margin-bottom: 2rem; }
}
@media (max-width: 575.98px) {
    .findjob-breadcrumb-section { padding: 18px 0 10px 0; border-radius: 0 0 1rem 1rem; }
    .findjob-title { font-size: 1.3rem; }
    .findjob-categories-card { padding: 1.2rem 0.7rem; }
    .findjob-job-card { flex-direction: column; padding: 1rem 0.7rem; }
    .findjob-job-card-action { margin-left: 0; margin-top: 1rem; }
}
/* --- Find Job Page Filters & Listing Styles --- */
.findjob-filters-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 2px 16px 0 rgba(38,171,226,0.08);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}
.findjob-filters-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1374a6;
}
.findjob-filter-group {
    margin-bottom: 1.2rem;
}
.findjob-filter-label {
    font-weight: 500;
    color: #234370;
    margin-bottom: 0.4rem;
    display: block;
}
.findjob-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.findjob-filter-list li {
    margin-bottom: 0.3rem;
}
.findjob-filter-list input[type="checkbox"] {
    margin-right: 7px;
}
.findjob-filter-list label {
    font-weight: 400;
    color: #234370;
    cursor: pointer;
    font-size: 1rem;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    position: relative;
    top: 3px;
}
.findjob-filter-btn {
    width: 100%;
    border-radius: 2rem;
    font-weight: 600;
    margin-top: 1.2rem;
}
.findjob-joblist-v2 {
    margin-top: 0.5rem;
}
.findjob-job-card-v2 {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.8rem;
    transition: box-shadow 0.15s, transform 0.15s;
    position: relative;
}
.findjob-job-card-v2-empty {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
   
    align-items: flex-start;
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.8rem;
    transition: box-shadow 0.15s, transform 0.15s;
    position: relative;
}
.findjob-job-card-action-v2 .btn-outline-primary {
    padding: 6px 15px;
    border-radius: 100px;
    line-height: 1.4;
}
@media (max-width: 991px) {
    .findjob-job-card-action-v2 .btn-outline-primary {
        padding: 6px 15px;
        border-radius: 100px;
        line-height: 1.4;
        position: absolute;
        top: 42px;
        right: 20px;
    }
}
    
.findjob-job-card-v2:hover {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13);
    transform: translateY(-4px) scale(1.02);
}
.findjob-job-card-img {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eaf6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    overflow: hidden;
}
.findjob-job-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.findjob-job-card-body-v2 {
    flex: 1 1 auto;
    margin-bottom: 20px;
}
.findjob-job-title-v2 {
    font-size: 1.13rem;
    font-weight: 500;
    color: #1374a6;
    margin-bottom: 0.2rem;
}
.findjob-job-meta-v2 {
    font-size: 1rem;
    color: #6c7a89;
    margin-bottom: 0.4rem;
}
.employer-job-status {
    font-size:1rem;
    font-weight: 500;
    background:#bfae6a;
    padding: 6px 10px 4px 10px;
}
.findjob-job-desc-v2 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.findjob-job-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.findjob-job-tag {
    background: #eaf6fd;
    color: #1374a6;
    border-radius: 1rem;
    padding: 0.18rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}
.job-nature {
    position: absolute;
    left: 0;
    padding: 3px 20px;
    border-radius: 0 30px 30px 0;
    width: 110px;
    background: #26abe2;
    color: white;
}
@media (max-width: 991px) {
    .job-nature {
        position: absolute;
        left: auto;
        right: 0;
        top: 0px;
        right: 0;
        padding: 6px 20px;
        border-radius: 0px 20px 0 20px;
        width: 110px;
        background: #26abe2;
        color: white;
        text-align: center;
    }
}
.findjob-job-card-footer {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1rem;
    color: #ffffff;
    background: #234370;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 10px 10px;
    border-radius: 0 0 18px 18px;
    bottom: 0;
}
.findjob-job-card-footer .fa {
    margin-right: 0.4rem;
}
.findjob-job-card-action-v2 {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    height: 100%;
}
@media (max-width: 991px) {
    .findjob-main-section .row { flex-direction: column; }
    .findjob-categories-card, .findjob-filters-card { margin-bottom: 2rem; }
}
@media (max-width: 575.98px) {
    .findjob-job-card-v2 { flex-direction: column; padding: 1rem 0.7rem; }
    .findjob-job-card-img { margin-right: 0; margin-bottom: 1rem; }
    .findjob-job-card-action-v2 { margin-left: 0; margin-top: 1rem; }
}

/* --- Find Job Page Accordions & Pagination --- */
.findjob-filters-card .accordion-button {
  background: #f8f9fa;
  font-weight: 600;
  font-size: 1rem;
  color: #1a3c6e;
  border: none;
  box-shadow: none;
  padding: 0.75rem 1rem;
}
.findjob-filters-card .accordion-item {
  border: none;
  /* border-bottom: 1px solid #e5e5e5; */
}
.findjob-filters-card .accordion-body {
  padding: 0.75rem 1rem 0.75rem 1.5rem;
}
.findjob-filters-card .accordion-button:not(.collapsed) {
  background: #e9f2ff;
  color: #1a3c6e;
}
.findjob-filters-card .accordion-button:focus {
  box-shadow: none;
}
.findjob-filters-card .accordion {
  margin-bottom: 0.5rem;
}
.findjob-filter-btn {
  margin-top: 1rem;
  width: 100%;
}

/* Pagination styles */
.pagination {
  margin-top: 2rem;
}
.pagination .page-link {
  color: #1a3c6e;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-weight: 500;
  border-radius: 0.3rem;
  margin: 0 0.15rem;
  transition: background 0.2s, color 0.2s;
}
.pagination .page-item.active .page-link {
  background: #1a3c6e;
  color: #fff;
  border-color: #1a3c6e;
}
.pagination .page-link:hover {
  background: #e9f2ff;
  color: #1a3c6e;
}
.pagination .page-item.disabled .page-link {
  color: #bdbdbd;
  background: #f8f9fa;
  border-color: #e5e5e5;
}

/* --- Job View Page Styles --- */
.jobview-card {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}
.jobview-header {
  background: #26abe2;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 991px) {
    .jobview-header {
        background: #26abe2;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
}
.jobview-header .btn-primary {
    background: white;
    color: #007bff;
    border: 1px solid #ffffff;
}
.jobview-header .btn-primary:hover {
    background: #03275f;
    color: #ffffff;
    border: 1px solid #03275f;
}
.jobview-header-img img {
    width:90px;
    height:90px;
    object-fit:cover;
}
.jobview-sidebar-job img {
    width: ;
}
.jobview-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3c6e;
}
.jobview-title .bg-primary {
    font-size: 1rem;
    font-weight: 500;
    background: #007bff;
}
.jobview-meta {
  font-size: 1rem;
  color: #555;
}
.jobview-section {
  padding: 1.25rem 0 0.5rem 0;
}
.jobview-section-title {
  font-weight: 600;
  color: #1a3c6e;
  background: #e9f2ff;
  padding: 0.5rem 1.5rem;
  border-left: 4px solid #1a3c6e;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.jobview-req-item {
  font-size: 1rem;
  color: #1a3c6e;
  background: #f4f8fb;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.jobview-skill-block {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
@media (max-width: 991px) {
    .jobview-skill-block {
        display: block;
    }
}
.jobview-skill-block img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 0.5rem;
}
.jobview-sidebar-jobs {
  margin-top: 0.5rem;
}
.jobview-sidebar-job {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 10px;
  transition: box-shadow 0.2s;
}
.jobview-sidebar-job:hover {
  box-shadow: 0 2px 12px rgba(26,60,110,0.08);
}
.jobview-sidebar-job img {
  width: 40px !important;
  height: 40px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .jobview-card, .jobview-sidebar-job {
    margin-bottom: 1.5rem;
  }
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
}

/* --- Job Apply Modal Styles --- */
.jobapply-modal-content {
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(26,60,110,0.13);
  background: #fff;
  border: 1.5px solid #fff;
  padding-bottom: 0.5rem;
}
.jobapply-modal-content .modal-header {
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  background: transparent;
}
.jobapply-modal-content img {
  height: 38px;
  margin-right: 0.5rem;
}
.jobapply-modal-content .modal-body {
  font-size: 1.13rem;
  color: #1a3c6e;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  padding: 2rem 2rem 1.5rem 2rem;
}
.jobapply-modal-content .modal-body hr {
  border-top: 2px solid #00BCD4;
  margin: 0 -2rem 1.5rem -2rem;
}
.jobapply-modal-content .btn-outline-primary {
  color: #174ea6;
  border-color: #174ea6;
  background: #fff;
  font-weight: 500;
  border-radius: 6px;
  min-width: 100px;
  transition: background 0.2s, color 0.2s;
}
.jobapply-modal-content .btn-outline-primary:hover {
  background: #e9f2ff;
  color: #174ea6;
}
.jobapply-modal-content .btn-success {
  background: #1a3c6e !important;
  border-color: #1a3c6e !important;
  font-weight: 500;
  border-radius: 6px;
  min-width: 100px;
  transition: background 0.2s, color 0.2s;
}
.jobapply-modal-content .btn-success:hover {
  background: #249e62;
  border-color: #249e62;
}
.jobapply-modal-content .modal-footer {
  border-top: none;
}
.jobapply-modal-content .btn-close {
  /*background: none;*/ 
  font-size: 1.3rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  position: relative;
  top: -9px;
}
.jobapply-modal-content .btn-close:hover {
  opacity: 1;
}
@media (max-width: 575px) {
  .jobapply-modal-content .modal-body {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .jobapply-modal-content .modal-body hr {
    margin: 0 -0.7rem 1.2rem -0.7rem;
  }
}
.breadcrumb-item a, .breadcrumb-item {
    color: white !important;
    text-decoration: none;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

/* --- Dashboard Inbox Page Styles --- */
.dashboard-inbox-card {
  background: #fff;
  border-radius: 1.2rem !important;
  box-shadow: 0 2px 16px 0 rgba(38, 171, 226, 0.08) !important;
  padding: 2rem 1.5rem;
  min-height: 350px;
}

/* --- Candidate View Page & Similar Candidates Sidebar --- */
.candidate-view-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.candidate-view-header {
    position: relative;
    border-radius: 1.2rem 1.2rem 0 0;
    overflow: hidden;
}
.candidate-view-header-bg {
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    height: 110px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.candidate-view-badge-active {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: #e6fcf5;
    color: #17b897;
    font-weight: 500;
    font-size: 1em;
    padding: 6px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(38,171,226,0.08);
}
.candidate-view-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    padding: 1.5rem 2rem 0.5rem 2rem;
}
.candidate-view-avatar-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(38,171,226,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    overflow: hidden;
}
.candidate-view-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}
.candidate-view-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}
.candidate-view-age {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}
.candidate-view-contact-btn {
    margin-top: 0.7rem;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #1374a6 0%, #26abe2 100%);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    transition: background 0.18s;
    margin-top: 100px;
}
.candidate-view-contact-btn:hover {
    background: linear-gradient(90deg, #26abe2 0%, #1374a6 100%);
}
.candidate-view-section-title {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1374a6;
    background: #f6fdff;
    padding: 0.75rem 1.2rem;
    border-radius: 0.7rem 0.7rem 0 0;
    margin-top: 0;
    margin-bottom: 0.7rem;
    border-left: 4px solid #26abe2;
    display: block;
}

/* Similar Candidates Sidebar */
.candidate-similar-theme {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(38,171,226,0.07);
    border: 1.5px solid #eaf7fc;
    padding: 1.1rem 1.1rem 1.1rem 1.1rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.15s, transform 0.15s;
}
.candidate-similar-theme:hover {
    box-shadow: 0 8px 32px 0 rgba(38,171,226,0.13);
    transform: translateY(-2px) scale(1.02);
}
.candidate-similar-avatar-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eaf6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.candidate-similar-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.candidate-similar-info {
    flex: 1 1 auto;
}
.candidate-similar-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1374a6;
    margin-bottom: 0.1rem;
}
.candidate-similar-role {
    font-size: 0.98rem;
    color: #4a5a6a;
    margin-bottom: 0.1rem;
}
.candidate-similar-badge {
    background: #e6fcf5;
    color: #17b897;
    font-weight: 500;
    font-size: 0.93em;
    padding: 4px 12px;
    border-radius: 8px;
    margin-top: 0.2rem;
    display: inline-block;
}
.candidate-similar-item .text-muted {
    font-size: 13px !important;
}
.dashboard-inbox-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3c6e;
}
.dashboard-inbox-nodata {
  padding: 3rem 0 2rem 0;
}
.dashboard-inbox-nodata img {
  opacity: 0.7;
}
.dashboard-inbox-nodata h5 {
  color: #bdbdbd;
  font-weight: 600;
}
.dashboard-inbox-list {
  margin-top: 1.5rem;
}
.dashboard-inbox-item {
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
@media (max-width: 991px) {
    .dashboard-inbox-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
}
.dashboard-inbox-item:hover {
  box-shadow: 0 2px 12px rgba(26,60,110,0.08);
  background: #e9f2ff;
}
.dashboard-inbox-avatar img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.findjob-job-title-v2 a {
    text-decoration: none;
}

/* --- Jobseeker Settings Page Styles --- */
.jobseeker-settings-card {
  background: #fff;
  border-radius: 1.2rem !important;
  box-shadow: 0 2px 16px 0 rgba(38, 171, 226, 0.08) !important;
  padding: 2rem 1.5rem;
}
.jobseeker-settings-tabs .nav-link {
  background: #f8f9fa;
  color: #1a3c6e;
  font-weight: 600;
  border: none;
  border-radius: 8px 8px 0 0;
  margin-right: 2px;
  padding: 0.9rem 2.2rem;
  transition: background 0.2s, color 0.2s;
}
.jobseeker-settings-tabs .nav-item {
    width: 50%;
} 
.jobseeker-settings-tabs .nav-link.active {
  background: #c6f0e6;
  color: #1a3c6e;
  border-bottom: 3px solid #00BCD4;
  width: 100%;
}
.jobseeker-settings-tabs .nav-link {
  width: 100%;
}
.jobseeker-settings-tabs {
  border-bottom: none;
}
.jobseeker-settings-card .form-label {
  font-weight: 500;
  color: #1a3c6e;
}
.jobseeker-settings-card .form-control,
.jobseeker-settings-card .form-select {
  border-radius: 8px;
  border: 1.5px solid #e5e5e5;
  font-size: 1rem;
  background: #f8f9fa;
  padding: 12px 15px;
}
.jobseeker-settings-card .input-group-text {
  background: #f8f9fa;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px 0 0 8px;
}
.jobseeker-settings-card .btn-success {
  background: #00BCD4;
  border-color: #00BCD4;
  font-weight: 600;
  border-radius: 24px;
  font-size: 1.15rem;
  min-width: 160px;
  letter-spacing: 1px;
}
.jobseeker-settings-card .btn-success:hover {
  background: #00BCD4;
  border-color: #00BCD4;
}
.jobseeker-settings-card .btn-link.text-danger {
  color: #e74c3c;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}
.jobseeker-settings-card .btn-link.text-danger:hover {
  text-decoration: underline;
  color: #c0392b;
}
.jobseeker-settings-card .form-check-input:checked {
  background-color: #00BCD4;
  border-color: #00BCD4;
}
.jobseeker-settings-card .form-check-input {
  width: 2.2em;
  height: 1.2em;
}
.jobseeker-settings-card .form-check-label {
  margin-left: 0.5em;
  color: #1a3c6e;
  font-weight: 500;
}
.jobseeker-settings-card .input-group .form-control {
  border-radius: 0 8px 8px 0;
}
.jobseeker-settings-card .input-group .input-group-text {
  border-radius: 8px 0 0 8px;
}
.jobseeker-settings-card .input-group .fa-eye,
.jobseeker-settings-card .input-group .fa-eye-slash {
  cursor: pointer;
  color: #1a3c6e;
  opacity: 0.7;
}
.jobseeker-settings-card .input-group .fa-eye:hover,
.jobseeker-settings-card .input-group .fa-eye-slash:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .jobseeker-settings-card {
    padding: 1.2rem 0.5rem;
  }
  .jobseeker-settings-tabs .nav-link {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}

a {
    text-decoration: none;
}



:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}
#jobApplication .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

#jobApplication .modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

#jobApplication .modal-title {
    font-weight: 700;
}

#jobApplication .step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    justify-content: space-around;
}

#jobApplication .step-progress:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
}

#jobApplication .step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: auto;
}

#jobApplication .step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#jobApplication .step.active .step-circle {
    background-color: var(--primary-color);
    color: white;
}

#jobApplication .step.completed .step-circle {
    background-color: #03275f;
    color: white;
}

#jobApplication .step-label {
    font-size: 1rem;
    color: #6c757d;
}

#jobApplication .step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

#jobApplication .step.completed .step-label {
    color: #03275f;
}

#jobApplication .form-section {
    display: none;
}

#jobApplication .form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#jobApplication .form-control, #jobApplication .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
}

#jobApplication .form-control:focus, #jobApplication .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

#jobApplication .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 6px 25px;
    font-weight: 600;
    height: 40px;
    font-size: 14px;
}

#jobApplication .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

#jobApplication .btn-outline-secondary {
    border-radius: 8px;
    padding: 6px 25px;
    font-weight: 600;
    height: 40px;
    font-size: 14px;
}

#jobApplication .skills-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0px;
}
.form-label {
    margin-bottom: .5rem;
    /* color: #26abe2; */
    font-weight: 500;
}

#jobApplication .skills-checkbox .form-check {
    min-width: 120px;
    /* background-color: var(--light-gray); */
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 5px;
}

#jobApplication .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#jobApplication .photo-upload {
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#jobApplication .photo-upload:hover {
    border-color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.05);
}

#jobApplication .photo-upload i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

#jobApplication .experience-item {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#jobApplication .education-item {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#jobApplication .experience-item h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

#jobApplication .experience-item p {
    margin-bottom: 5px;
}

#jobApplication .add-more-btn {
    background-color: transparent;
    border: 2px dashed #ced4da;
    color: #6c757d;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#jobApplication .add-more-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#jobApplication .modal-footer {
    border-top: none;
    /* background-color: var(--light-gray); */
    padding: 0px;
}

#jobApplication .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

#jobApplication .footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.8rem;
}

#jobApplication .footer-links a:hover {
    color: var(--primary-color);
}
.job-card-details {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
    align-content: center;
    align-items: center;
}
@media (max-width: 991px) {
    .job-card-details {
        align-items: flex-start;
        flex-direction: column;
    }
}
.dashboard-job-list-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    gap: 0 !important;
}
.dashboard-job-list-card .job-card-details {
    padding: 20px;
}
.dashboard-job-list-card .dashboard-card-title {
    color: white;
}
.dashboard-job-list-card .job-date {
    color: white !important;
}
.dashboard-job-title-div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: #234370;
    padding: 6px 20px;
    border-radius: 10px 10px 0 0;
    align-items: center;
    border: 1px solid #234370;
}
.photo-upload img {
    max-height: 200px !important;
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.shortlist-strip {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #234370;
    color: white;
    border: 0;
    padding: 6px;
    border-radius: 0 0 10px 10px;
}
.shortlist-strip:hover {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #32afe4;
    color: white;
    border: 0;
    padding: 6px;
    border-radius: 0 0 10px 10px;
}
a {
    color: #32afe4;
}
.candidate-similar-list {
    margin-top: 40px;
}
#locationDropdown button {
    font-size: 14px !important;
    padding: 10px 15px;
    border: 1.5px solid #e5e5e5;
    background: #f8f9fa;
}
#locationDropdown button:hover {
    color: #333333;
}
.dropdown-item {
    font-size: 1rem;
}
.post-job-btn {
    font-size: 1rem; 
    border-radius: 24px !important; 
    font-weight: 600;
    color: white;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgb(38 171 226) !important;
}
.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px;
    font-size: 1rem;
}
.view-service-swiper {
    padding-bottom: 30px !important;
}
.view-service-card .btn-secondary {
    color: white;
}
.findjob-job-card-tags .findjob-job-tag:first-child {
    position: absolute;
    left: 0;
    padding: 3px 20px;
    border-radius: 0 30px 30px 0;
    width: 110px;
    background: #26abe2;
    color: white;
}
.employer-manage-jobs .findjob-job-card-tags .findjob-job-tag:first-child {
    position: relative;
    left: 0;
    padding: 3px 20px;
    border-radius: 30px 30px;
    width: auto;
    background: #26abe2;
    color: white;
}
.employer-manage-jobs .findjob-job-card-body-v2 {
    margin-bottom: 0;
}
.employer-manage-jobs .findjob-job-card-action-v2 {
    position: absolute;
    right: 0;
    top: 20px;
    right: 20px;
}
.progress-bar-bg {
    position:absolute;
    left:0;
    right:0;
    top:29%;
    height:4px;
    transform:translateY(-50%);
    background:#e0e7ef;
    z-index:1;
    border-radius:3px;
}
#jobStepProgressBar {
    position:absolute;
    left: 0;
    top: 29%;
    height: 4px;
    z-index: 2;
    transform: translateY(-50%);
    background: var(--primary-color,#3498db);
    border-radius: 3px;
    width: 0;
}
.step-progress .step:not(:last-child)::after {
    display: none;
}

@media (max-width: 991px) {
    .stats-card {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
    .dashboard-sidebar {
        display: none;
    }
    #jobApplication .step-label {
        font-size: .7rem;
        color: #6c757d;
        padding: 10px;
    }
}



@media (max-width: 767px) {
    .chat-search-box {
        display: none;
    }
    .chat-message {
        display: flex;
        align-items: flex-end;
        gap: 1rem;
        max-width: 100%;
    }
    .chat-app-container {
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        max-width: 100vw;
        border-radius: 0;
        margin: 0;
    }
    .chat-sidebar {
        width: 100%;
        min-width: 0;
        border-radius: 0 0 1.2rem 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: none;
        padding: 0;
        min-height: 60px;
        display: flex;
    }
    .chat-list {
        flex: 1;
        max-height: 100px;
        overflow-x: hidden;
        overflow-y: hidden;
        display: flex;
        flex-direction: row;
        gap: 0.3rem;
        padding: 0.3rem 0.3rem 0.3rem 0.3rem;
    }
    .chat-list-item {
        /* min-width: 120px; */
        border-bottom: none;
        border-right: 1px solid #2e4a6b;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.1rem;
        padding: 0.5rem 0.5rem;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
    }
    .chat-list-item:last-child {
        border-right: none;
    }
    .chat-sidebar-header, .chat-search-box {
        padding: 0.5rem 0.5rem 0.2rem 0.5rem;
    }
    .chat-logo {
        width: 128px;
        /* height: 28px; */
    }
    .chat-main {
        border-radius: 0;
        min-width: 0;
    }
    .chat-header, .chat-footer, .chat-body {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .chat-header {
        flex-direction: row;
        gap: 0.5rem;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }
    .chat-header-avatar {
        width: 32px;
        height: 32px;
    }
    .chat-header-title {
        font-size: 1rem;
    }
    .chat-header-status {
        font-size: 0.92rem;
    }
    .chat-body {
        gap: 0.7rem;
        padding-top: 5rem;
        padding-bottom: 0.7rem;
    }
    .chat-message-content {
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
    }
    .chat-message-avatar {
        width: 28px;
        height: 28px;
    }
    .chat-footer {
        gap: 0.3rem;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }
    .chat-input {
        font-size: 0.98rem;
        min-height: 36px;
        padding: 0.5rem 0.7rem;
    }
    .chat-send-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .chat-header-menu, .chat-search-menu {
        font-size: 1.1rem;
        padding: 4px 7px;
    }
    .chat-header-dropdown, .chat-search-dropdown {
        min-width: 110px;
        font-size: 0.98rem;
        right: 0;
        left: auto;
    }
    .chat-list-subtitle, .chat-list-time {
        display: none;
    }
    .chat-list-item.active .chat-list-title {
        color: white;
    }
}
@media (max-width: 767px) {
    .chat-sidebar {
        flex-direction: column;
        align-items: stretch;
        min-height: unset;
        position: fixed;
        z-index: 9;
    }
    .chat-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 0.2rem;
        border-bottom: 1px solid #eaf7fc;
    }
    .chat-search-box {
        margin-bottom: 0.2rem;
        padding-top: 0.2rem;
    }
    .chat-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        max-width: 100vw;
        width: 100%;
        margin: 0 auto 0.2rem auto;
        padding: 0.3rem 0.2rem 0.3rem 0.2rem;
        background: #f5f7ff;
        border-radius: 0 0 1.2rem 1.2rem;
        box-shadow: 0 2px 8px 0 rgba(38,171,226,0.04);
        justify-content: flex-start;
        align-items: flex-start;
    }
    .chat-list-item {
        /* min-width: 120px; */
        margin-right: 0.5rem;
        border: 1px solid #eaf7fc;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 1px 4px 0 rgba(38,171,226,0.04);
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.7rem;
        gap: 0.2rem;
        flex-direction: row;
        text-align: center;
        display: flex;
    }
    .chat-list-item:last-child {
        margin-right: 0;
    }
    .chat-list-avatar {
        margin: 0 auto 0.2rem auto;
        display: block;
    }
    .chat-list-title {
        font-size: 0.98rem;
        font-weight: 600;
        color: #234370;
    }
    .chat-list-subtitle {
        font-size: 0.92rem;
        color: #7a8fa3;
    }
    .chat-list-time {
        font-size: 0.9rem;
        color: #b3c6e0;
    }
    .chat-message-meta {
        font-size: 0.7rem;
    }
}
@media (max-width: 767px) {
    .chat-footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        background: #fff;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        box-shadow: 0 -2px 12px 0 rgba(38,171,226,0.07);
        width: 100vw;
        max-width: 100vw;
    }
    .chat-main {
        padding-bottom: 60px;
    }
}