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

:root {
    --primary-color: #4a2c5a;
    --background-color: #f7f9fa;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --purple-dark: #2d1b36;
    --purple-medium: #4a2c5a;
    --purple-light: #6b4c7a;
    --gold: #c4975a;
    --gold-hover: #b8895a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-medium) 100%);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 0;
}

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

.nav-right {
    display: flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #b8d4f0;
    background: rgba(255, 255, 255, 0.1);
}

.nav-login {
    color: var(--white) !important;
}

.nav-login:hover {
    color: #b8d4f0 !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-login i {
    font-size: 0.9rem;
}

.nav-register {
    background: #4caf50 !important;
    color: var(--white) !important;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
}

.nav-register:hover {
    background: #45a049 !important;
    color: var(--white) !important;
}

.nav-recruiting {
    color: var(--white) !important;
}

.nav-recruiting:hover {
    color: #b8d4f0 !important;
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-medium) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: left;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--white);
}

.hero h1 .green-text {
    color: #22c55e;
}

.search-container {
    max-width: 1000px;
    background: rgba(74, 44, 90, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.search-box {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 2;
    min-width: 250px;
    border: none;
    padding: 18px 20px;
    font-size: 1rem;
    border-radius: 8px;
    outline: none;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: #666;
    font-weight: 400;
}

.location-input,
.radius-select {
    flex: 1;
    min-width: 120px;
    border: none;
    padding: 18px 20px;
    font-size: 1rem;
    border-radius: 8px;
    outline: none;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.search-btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(196, 151, 90, 0.3);
    min-width: 140px;
    justify-content: center;
}

.search-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(196, 151, 90, 0.4);
}

.search-btn i {
    font-size: 0.9rem;
}

/* Job Categories */
.job-categories {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.category-item {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-stats {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 25px;
    text-align: left;
}

/* Search Results Container */
.search-results-container {
    background: var(--white);
    border-radius: 15px;
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.search-summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.clear-search-btn {
    background: #ef4444;
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clear-search-btn:hover {
    background: #dc2626;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-medium);
}

.no-results-content h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.no-results-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.no-results-content ul {
    display: inline-block;
    text-align: left;
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.no-results-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.no-results-content ul li::before {
    content: "•";
    color: var(--gray-medium);
    position: absolute;
    left: 0;
}

/* Statistics Section */
.stats-section {
    background: var(--white);
    padding: 20px 0;
    color: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
}

/* Featured Jobs Section */
.featured-jobs-section {
    padding: 80px 0;
    background: #f7f9fa;
}

.featured-jobs-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-jobs-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.featured-jobs-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

.featured-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-job-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.featured-job-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.job-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    font-size: 1.2rem;
}

.job-category {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 5px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.job-center {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.job-location i {
    color: #999;
}

.job-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.job-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.job-tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid;
}

.job-tag.temporary {
    background: #f1f5f9;
    color: #64748b;
    border-color: #e2e8f0;
}

.job-tag.urgent {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.job-tag.full-time {
    background: #f0f9ff;
    color: #0284c7;
    border-color: #bae6fd;
}

.job-tag.remote {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
}

.job-tag.on-site {
    background: #fefce8;
    color: #ca8a04;
    border-color: #fef3c7;
}

.job-bottom-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-salary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.job-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.favorite-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #ccc;
    transition: var(--transition);
    padding: 8px;
}

.favorite-btn:hover,
.favorite-btn.active {
    color: #ef4444;
}

.apply-btn {
    background: #22c55e;
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.apply-btn:hover {
    background: #16a34a;
}

/* See More Jobs Button */
.see-more-container {
    text-align: center;
    margin-top: 40px;
}

.see-more-btn {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.see-more-btn:hover {
    background: #22c55e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.see-more-btn:active {
    transform: translateY(0);
}

/* Services Section */
.services-section {
    background: var(--white);
    padding: 60px 0 80px;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    width: 100%;
    max-width: none;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 25px 0 15px;
    padding: 0 20px;
}

.service-item p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
    padding: 0 20px;
    margin-bottom: 25px;
}

.service-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 25px;
}

.service-btn:hover {
    background: #004080;
    transform: translateY(-1px);
}

/* Get the Job Section */
.get-job-section {
    padding: 80px 0;
    background: #f7f9fa;
}

.get-job-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.get-job-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
    white-space: nowrap;
}

.get-job-left p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--black);
}

.get-job-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bear-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
}

.bear-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.person-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff9a56, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.person-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b5a3c, #6d4428);
    border-radius: 50%;
    position: relative;
}

.person-avatar::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #f4d1ae;
    border-radius: 50%;
}

.person-avatar::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: #d4a574;
    border-radius: 50px 50px 0 0;
}

.stats-bubble {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #e6f3ff;
}

.top-stat {
    top: 10%;
    right: 10%;
    text-align: center;
}

.top-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.top-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.candidates-bubble {
    position: absolute;
    bottom: 20%;
    left: 10%;
    background: var(--white);
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.candidate-avatars {
    display: flex;
    margin-right: 5px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid var(--white);
}

.avatar-1 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.avatar-2 {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.avatar-3 {
    background: linear-gradient(135deg, #45b7d1, #3498db);
}

.candidate-info {
    display: flex;
    flex-direction: column;
}

.candidate-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.candidate-label {
    font-size: 0.8rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.success-indicator {
    position: absolute;
    top: 25%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.success-indicator i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Job Slider Section */
.job-slider-section {
    padding: 80px 0;
    background: var(--white);
}

.job-slider-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--black);
}

.job-slider {
    overflow: hidden;
    position: relative;
}

.job-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.job-card {
    min-width: 300px;
    background: var(--gray-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.job-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.job-card .company {
    font-weight: 600;
    margin-bottom: 8px;
}

.job-card .location {
    color: var(--gray-medium);
    margin-bottom: 15px;
}

.job-card .detail {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: var(--background-color);
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--black);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-3px);
}

.logo-placeholder {
    font-weight: 600;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

/* Search Sections */
.search-sections {
    padding: 80px 0;
    background: var(--white);
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.search-section h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--black);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.sector-item {
    background: var(--gray-light);
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.sector-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.sector-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.location-dropdown {
    margin-bottom: 30px;
}

.location-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
}

.popular-locations h4 {
    margin-bottom: 15px;
    color: var(--black);
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.city-tag:hover {
    background: #004080;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-medium) 100%);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.social-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    letter-spacing: 0.25px;
}

/* Saved Jobs Page Styles */
.saved-jobs-header {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-medium) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
}

.saved-jobs-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.saved-jobs-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.saved-jobs-section {
    padding: 60px 0;
    background: #f7f9fa;
    min-height: 60vh;
}

.saved-jobs-content {
    max-width: 1000px;
    margin: 0 auto;
}

.saved-jobs-count {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-weight: 500;
}

.saved-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.saved-job-card {
    position: relative;
}

.saved-date {
    color: var(--gray-medium);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 5px;
}

.remove-saved-btn {
    background: #ef4444;
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.remove-saved-btn:hover {
    background: #dc2626;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-medium);
}

.empty-icon {
    font-size: 4rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.browse-jobs-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.browse-jobs-btn:hover {
    background: #004080;
    transform: translateY(-1px);
}

/* Heart Icon States */
.favorite-btn.active i {
    color: #ef4444;
}

.favorite-btn i {
    transition: all 0.2s ease;
}

.favorite-btn:hover i {
    transform: scale(1.1);
}

/* Notification Styles */
.notification {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-left-menu {
        display: none;
    }

    .nav-left {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-right-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--purple-medium);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 15px;
    }

    .nav-right-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-left-menu {
        display: none;
    }

    .hero {
        text-align: center;
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .search-container {
        padding: 20px;
    }

    .search-box {
        flex-direction: column;
        gap: 12px;
    }

    .search-input,
    .location-input,
    .radius-select {
        min-width: auto;
        width: 100%;
    }

    .search-btn {
        width: 100%;
        min-width: auto;
    }

    .job-categories {
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }

    .category-item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .search-results-container {
        padding: 20px;
        margin-top: 20px;
    }

    .search-results-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .get-job-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .get-job-left h2 {
        font-size: 2rem;
    }

    .job-seeker-illustration {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .person-image {
        width: 150px;
        height: 150px;
    }

    .person-avatar {
        width: 120px;
        height: 120px;
    }

    .top-stat {
        top: 5%;
        right: 5%;
        padding: 10px 15px;
    }

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

    .candidates-bubble {
        bottom: 15%;
        left: 5%;
        padding: 10px 15px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .featured-job-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .job-right {
        align-items: center;
    }

    .job-tags {
        justify-content: center;
    }

    .job-bottom-row {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .search-container {
        padding: 15px;
    }

    .search-input,
    .location-input,
    .radius-select,
    .search-btn {
        padding: 15px;
        font-size: 0.95rem;
    }

    .get-job-left h2 {
        font-size: 1.8rem;
    }

    .get-job-left p {
        font-size: 1rem;
    }

    .job-seeker-illustration {
        width: 250px;
        height: 250px;
    }

    .person-image {
        width: 120px;
        height: 120px;
    }

    .person-avatar {
        width: 100px;
        height: 100px;
    }

    .top-stat {
        padding: 8px 12px;
    }

    .top-stat .stat-number {
        font-size: 1.3rem;
    }

    .top-stat .stat-label {
        font-size: 0.8rem;
    }

    .candidates-bubble {
        padding: 8px 12px;
    }

    .candidate-count {
        font-size: 1rem;
    }

    .candidate-label {
        font-size: 0.7rem;
    }

    .success-indicator {
        width: 35px;
        height: 35px;
    }

    .success-indicator i {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .featured-job-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .job-right {
        align-items: center;
    }

    .job-tags {
        justify-content: center;
    }

    .job-bottom-row {
        justify-content: center;
        flex-wrap: wrap;
    }
}