/* ============================================
   Waymore Solutions - Business & Consulting Website
   Modern, Clean Stylesheet
   ============================================ */

/* ---------- Root Variables ---------- */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --success: #16a34a;
    --warning: #f59e0b;
    --info: #0891b2;
    --danger: #dc2626;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --radius: 10px;
    --radius-lg: 14px;
    --transition: all 0.25s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Navbar ---------- */
.navbar {
    padding: 0.75rem 0;
    transition: var(--transition);
    background: var(--white) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    height: 45px;
}

.navbar-brand .text-primary {
    color: var(--primary) !important;
}

.navbar-brand img.navbar-logo {
    height: 100%;
}

/* ---------- Text Logo ---------- */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.brand-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.brand-logo-name span {
    color: var(--primary);
}

.brand-logo-tagline {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Uploaded logo image */
.brand-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-logo-img-footer {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer logo variant */
footer .brand-logo-name {
    color: #fff;
}

footer .brand-logo-tagline {
    color: rgba(255, 255, 255, 0.5);
}

footer .brand-logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
}

/* Dropdown menu */
.dropdown-menu {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background-color: var(--primary-light);
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, #0f172a 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 50px 0 30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title,
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.hero-subtitle,
.hero-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-search,
.hero-search-box {
    max-width: 640px;
}

.hero-search .form-control,
.hero-search-box .form-control {
    height: 56px;
    border: none;
    border-radius: 12px 0 0 12px;
    padding-left: 20px;
    font-size: 1rem;
    background: var(--white);
}

.hero-search .btn,
.hero-search-box .btn {
    height: 56px;
    border-radius: 0 12px 12px 0;
    padding: 0 28px;
    font-weight: 600;
}

.hero-search .form-control:focus,
.hero-search-box .form-control:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.hero-search-box.glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-search-box.glass .form-control,
.hero-search-box.glass .form-select {
    border-radius: var(--radius);
    height: 48px;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    margin-top: -40px;
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
    padding: 0.75rem 1rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

/* Variant: stats inside hero (white text) */
.hero-section .stat-number {
    color: var(--white);
}

.hero-section .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ---------- Section Styles ---------- */
section {
    padding: 5rem 0;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subheading {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Centered heading variant with underline accent */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ---------- Job Cards ---------- */
.job-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.job-card .job-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.job-card .job-title a {
    color: inherit;
    text-decoration: none;
}

.job-card .job-title a:hover {
    color: var(--primary);
}

.job-card .company-name,
.job-card .job-company {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.job-card .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.job-card .job-meta i {
    width: 16px;
    text-align: center;
    color: var(--primary);
    margin-right: 0.15rem;
}

.job-card .job-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card .job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

/* Job type badges */
.badge-job-type {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
}

.badge-fulltime,
.bg-success {
    background-color: #dcfce7 !important;
    color: #15803d !important;
}

.badge-parttime,
.bg-info {
    background-color: #e0f2fe !important;
    color: #0369a1 !important;
}

.badge-contract,
.bg-warning {
    background-color: #fef3c7 !important;
    color: #b45309 !important;
}

.badge-remote,
.bg-primary.badge {
    background-color: var(--primary-light) !important;
    color: var(--primary-dark) !important;
}

.skill-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    margin: 0 6px 8px 0;
    transition: var(--transition);
}

.skill-badge:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------- Filter Bar ---------- */
.filter-bar {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
}

.filter-bar .form-control,
.filter-bar .form-select {
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    height: 46px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.filter-bar .btn {
    height: 46px;
    border-radius: var(--radius);
    font-weight: 600;
}

/* ---------- Why Choose Us / Feature Cards ---------- */
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.65;
}

/* ---------- How It Works ---------- */
.steps-section {
    background: var(--white);
}

.step-card,
.step-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

/* Connecting line between steps */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 56px;
    left: calc(50% + 44px);
    width: calc(100% - 88px);
    height: 3px;
    background: var(--gray-light);
    z-index: 1;
}

.step-card h5,
.step-item h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-card p,
.step-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, var(--dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

/* ---------- Buttons ---------- */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

/* ---------- Pagination ---------- */
.pagination .page-link {
    border-radius: var(--radius) !important;
    margin: 0 3px;
    border: 1px solid var(--gray-light);
    color: #334155;
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: #eff6ff;
    color: var(--primary);
    border-color: #bfdbfe;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #cbd5e1;
    background: var(--light);
}

/* ---------- Footer ---------- */
footer {
    background: var(--dark) !important;
}

footer a {
    transition: var(--transition);
}

footer a img.footer-logo {
    height: 42px;
}

footer a:hover {
    color: var(--primary) !important;
}

footer h5,
footer h6 {
    color: var(--white);
}

/* ---------- Modal ---------- */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 1.5rem 1.5rem 0.75rem;
    border-bottom: none;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.modal-body {
    padding: 1rem 1.5rem 1.5rem;
}

.modal-body .form-label {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.modal-body .btn-lg {
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
}

#formAlert {
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ---------- Page Hero Section (About, Contact, Terms, Privacy) ---------- */
.bg-crumb-header
{
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, #0f172a 100%);
    padding: 48px 0 36px;
}
.page-hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, #0f172a 100%);
    padding: 60px 0 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-section h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero-section .lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .page-hero-section {
        padding: 40px 0 35px;
    }
    .page-hero-section h1 {
        font-size: 1.75rem;
    }
}

/* ---------- Job Detail Page ---------- */
.job-detail-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f172a 100%);
    padding: 48px 0 36px;
    color: var(--white);
}

.job-detail-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.job-detail-header .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.job-detail-content {
    margin-top: -24px;
    position: relative;
    z-index: 1;
}

/* Main description card */
.detail-card,
.job-description-content {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

/* Prose formatting inside job descriptions */
.job-prose h1, .job-prose h2, .job-prose h3,
.job-prose h4, .job-prose h5, .job-prose h6,
.job-description-content h2,
.job-description-content h3,
.job-description-content h4 {
    font-weight: 700;
    color: var(--dark);
    margin-top: 1.5em;
    margin-bottom: 0.6em;
}

.job-description-content h2 { font-size: 1.35rem; }
.job-description-content h3 { font-size: 1.15rem; }

.job-prose p,
.job-description-content p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1em;
}

.job-prose ul, .job-prose ol,
.job-description-content ul,
.job-description-content ol {
    padding-left: 1.25em;
    margin-bottom: 1em;
    color: #475569;
}

.job-prose li,
.job-description-content li {
    margin-bottom: 0.4em;
    color: #475569;
    line-height: 1.65;
}

.job-description-content li::marker {
    color: var(--primary);
}

/* Sidebar card for company info */
.sidebar-card,
.job-sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.job-sidebar-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--light);
}

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

.sidebar-info-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.sidebar-info-item .info-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.sidebar-info-item .info-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skills-list .skill-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Empty State ---------- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 3.5rem;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.empty-state h5 {
    font-weight: 700;
    color: #475569;
}

.empty-state p {
    color: #94a3b8;
}

/* ---------- 404 State ---------- */
.not-found-section {
    text-align: center;
    padding: 100px 20px;
}

.not-found-section h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gray-light);
}

/* ---------- Utility ---------- */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary-btn {
    background-color: var(--primary) !important;
}

.fw-medium {
    font-weight: 500;
}

/* ---------- Loading Spinner ---------- */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* ---------- Selection ---------- */
::selection {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 400px;
    }

    .hero-title,
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .stats-bar {
        margin-top: 0;
        border-radius: 0;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .nav-link {
        padding: 0.5rem 0.75rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 350px;
        padding: 60px 0 50px;
    }

    .hero-title,
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle,
    .hero-section p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-heading,
    .section-header h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .job-detail-header h1 {
        font-size: 1.5rem;
    }

    .job-detail-header .meta-item {
        display: flex;
        margin-bottom: 0.5rem;
    }

    .detail-card,
    .job-description-content {
        padding: 20px;
    }

    .sidebar-card,
    .job-sidebar-card {
        position: static;
        margin-top: 1.5rem;
    }

    .filter-bar {
        padding: 16px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .modal-dialog {
        margin: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-search,
    .hero-search-box {
        max-width: 100%;
    }

    .hero-search .form-control,
    .hero-search-box .form-control {
        height: 48px;
        border-radius: 10px 0 0 10px;
    }

    .hero-search .btn,
    .hero-search-box .btn {
        height: 48px;
        border-radius: 0 10px 10px 0;
        padding: 0 18px;
    }

    .job-card {
        padding: 18px;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .feature-card {
        padding: 24px 18px;
    }
}

/* ---------- Career Readiness Section ---------- */
.career-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-support-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}

.career-support-list li:last-child {
    border-bottom: none;
}

.career-highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    text-align: center;
}

.career-highlight-box .highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.career-highlight-box .highlight-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.career-highlight-box .highlight-tagline {
    font-size: 1.15rem;
    margin: 0;
}

/* ---------- Testimonial Slider ---------- */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
}

.testimonial-card {
    padding: 2.5rem 2rem 3.5rem;
}

.testimonial-quote {
    margin-bottom: 1.2rem;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--primary-color, #0d6efd);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    margin-top: 1rem;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #888;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #0d6efd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.3s;
}

.testimonial-arrow:hover {
    background: #0a58ca;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.testimonial-indicators {
    position: relative;
    bottom: 0;
    margin-top: 0.5rem;
}

.testimonial-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    opacity: 1;
    transition: background-color 0.3s;
}

.testimonial-indicators button.active {
    background-color: var(--primary-color, #0d6efd);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1rem 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* ---------- Clients Carousel ---------- */
.clients-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.clients-carousel {
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scroll-clients 30s linear infinite;
    width: max-content;
}

.client-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    margin: 0 20px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.client-logo:hover {
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

/* ---------- Disclaimer Section ---------- */
.disclaimer-section {
    border-top: 1px solid var(--gray-light);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ---------- Content Protection ---------- */
body.protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 767.98px) {
    .career-highlight-box {
        padding: 30px 20px;
    }

    .client-logo {
        width: 140px;
        height: 80px;
        margin: 0 10px;
    }

    .clients-carousel-wrapper::before,
    .clients-carousel-wrapper::after {
        width: 50px;
    }
}

/* ---------- Service Detail Blocks ---------- */
.service-detail-block {
    scroll-margin-top: 100px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.service-feature-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}

.service-feature-item i {
    flex-shrink: 0;
    font-size: 1rem;
}

/* ---------- FAQ Page ---------- */
.faq-section .accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    padding: 1.1rem 1.25rem;
    background: var(--white);
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.faq-section .accordion-button::after {
    background-size: 1rem;
}

.faq-section .accordion-body {
    padding: 0.75rem 1.25rem 1.25rem;
    color: var(--gray);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ---------- Employer/Client Inquiry ---------- */
.employer-benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.employer-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.employer-benefit-card .benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.employer-benefit-card h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.employer-benefit-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0;
}

.text-justify {
    text-align: justify !important;
}