@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --primary-darker: #172554;
    --secondary: #eff6ff;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --container-width: 1200px;
    --nav-height: 76px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --shadow-nav: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.d-none {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    outline: none;
    gap: 8px;
}

.btn:active {
    transform: scale(0.97);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

.btn-icon {
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    min-width: 40px;
    height: 40px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border-color: transparent;
    color: var(--primary-darker);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-outline-primary {
    background-color: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-darker);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background-color: #f8fafc;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Navbar Component */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-nav);
    border-bottom-color: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-darker);
}

.nav-brand img {
    background: transparent;
    padding: 0;
    border-radius: var(--radius-sm);
}

.nav-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.nav-brand p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-darker);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-darker);
}

.nav-auth {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.close-menu-btn {
    background: var(--secondary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-main);
}

.mobile-nav-links a i {
    color: var(--primary);
    width: 20px;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
    background: var(--secondary);
    color: var(--primary-darker);
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-auth-buttons .btn {
    width: 100%;
    justify-content: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Hero Section */
.hero {
    background: linear-gradient(145deg, var(--primary-darker) 0%, #0f172a 100%);
    padding: 6rem 0 8rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    background-size: cover;
    pointer-events: none;
}

.badge-new {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.text-neon-blue {
    color: #38bdf8;
    /* Bright sky blue */
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.6), 0 0 20px rgba(56, 189, 248, 0.4), 0 0 30px rgba(56, 189, 248, 0.2);
    position: relative;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 10;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 8px;
    display: flex;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: var(--shadow-glass);
    position: relative;
    z-index: 10;
}

.search-input {
    flex: 1.5;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    gap: 12px;
}

.search-input.location-input {
    flex: 1;
}

.search-input i {
    color: var(--primary);
    font-size: 1.2rem;
}

.search-input input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 1.1rem 0;
    font-size: 1.05rem;
    outline: none;
    color: var(--text-main);
    font-weight: 500;
}

.search-input input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.divider {
    width: 2px;
    height: 48px;
    background-color: var(--border);
    margin: 0 5px;
}

.btn-search {
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    font-size: 1.05rem;
    height: auto;
}

.popular-searches {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.popular-searches span {
    font-weight: 600;
}

.popular-searches a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
    transition: all 0.2s;
}

.popular-searches a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Common Section Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.header-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.header-text p {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 1.05rem;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all i {
    transition: transform 0.2s;
}

.view-all:hover {
    color: var(--primary-dark);
}

.view-all:hover i {
    transform: translateX(4px);
}

/* Categories Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.icon-blue {
    background-color: #e0f2fe;
    color: #0284c7;
}

.icon-green {
    background-color: #dcfce3;
    color: #16a34a;
}

.icon-orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.icon-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.icon-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.icon-indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.category-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Jobs Section */
.tabs {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.tab {
    background: none;
    border: none;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.tab:hover {
    color: var(--text-main);
}

.tab.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.job-card {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.job-card.featured {
    border: 2px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.1);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 24px;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.job-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.company-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.logo-bg-1 {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.logo-bg-2 {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.logo-bg-3 {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.logo-bg-4 {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.job-title {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.2s;
}

.job-title:hover {
    color: var(--primary);
}

.company-name {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.job-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-desc-more {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: -12px;
    margin-bottom: 16px;
}

.job-desc-more:hover {
    text-decoration: underline;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.detail-item i {
    width: 16px;
    text-align: center;
    color: var(--text-light);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag-blue {
    background-color: #e0f2fe;
    color: #0284c7;
}

.tag-gray {
    background-color: #f1f5f9;
    color: #475569;
}

.tag-green {
    background-color: #dcfce3;
    color: #16a34a;
}

.tag-orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.tag-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px dashed var(--border);
}

.time-posted {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-save {
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.btn-save:hover {
    color: var(--primary);
    background: #e0f2fe;
    border-color: #bae6fd;
}

/* Top Companies */
.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.c-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-muted);
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: default;
}

.c-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--text-main);
    transform: scale(1.05);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text h2 {
    margin-bottom: 1rem;
}

.feature-text>p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dcfce3;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-image {
    position: relative;
}

.glass-mockup {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.glass-mockup::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.5;
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-body {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mockup-loader {
    padding: 1rem;
    color: var(--text-light);
    font-weight: 500;
    animation: fadeInOut 2s infinite;
    display: none;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-darker);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #0c4a6e 0%, #0369a1 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: var(--radius-lg);
}

.cta-text {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.15rem;
    color: #bae6fd;
    line-height: 1.6;
}

.cta-action {
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #1e293b;
    color: var(--white);
    transition: all 0.2s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item i {
    margin-top: 4px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 1.5rem;
}

.bottom-links a {
    color: #64748b;
    font-size: 0.9rem;
}

.bottom-links a:hover {
    color: var(--white);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 900px) {

    .nav-links,
    .nav-auth {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 4rem 0 6rem;
    }

    .search-box {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 10px;
    }

    .search-input {
        background: var(--white);
        width: 100%;
        border-radius: var(--radius);
        padding: 5px 15px;
    }

    .divider {
        display: none;
    }

    .btn-search {
        width: 100%;
        margin-top: 10px;
        padding: 1.25rem;
    }

    .btn-search .d-none {
        display: inline-block !important;
        margin-left: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tabs {
        width: 100%;
        display: flex;
    }

    .tab {
        flex: 1;
        text-align: center;
    }

    .job-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}