:root {
    --navy-blue: #0a192f;
    --gold: #d4af37;
    --light-gold: #f4e4a6;
    --dark-navy: #020c1b;
    --light-navy: #112240;
    --white: #ffffff;
    --light-gray: #ccd6f6;
    --dark-gray: #8892b0;
}

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

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

/* Header Styles */
.header {
    background: var(--dark-navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-link i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--gold);
    background: var(--light-navy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Banner Styles */
.banner {
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.9)), 
            url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.2;
}

.banner p {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.search-box input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: var(--navy-blue);
}

.search-box input::placeholder {
    color: var(--dark-gray);
}

.search-box button {
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.search-box button:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Banner Stats */
.banner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        padding: 120px 0 80px;
        background-attachment: scroll;
        min-height: 50vh;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.1rem;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 15px;
        max-width: 90%;
    }
    
    .search-box input,
    .search-box button {
        width: 100%;
        border-radius: 0;
        padding: 1rem 1.5rem;
    }
    
    .banner-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .banner-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
}

/* Jobs Grid */
.jobs-section {
    padding: 80px 0;
    background: var(--light-navy);
}

.section-title {
    text-align: center;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.avail{
      text-align: center;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}



.jobs-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: var(--dark-navy);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gold);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.job-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.job-company {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.job-location {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-type {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-blue);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.job-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-job-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.view-job-btn:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background: var(--dark-navy);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border: 2px solid var(--gold);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
}

.modal-title {
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    background: var(--light-navy);
    color: var(--light-gray);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--light-gold);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--light-gray);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--light-navy);
    padding-top: 1rem;
    color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-navy);
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .search-box {
        flex-direction: column;
        border-radius: 10px;
    }

    .search-box input,
    .search-box button {
        width: 100%;
        border-radius: 0;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}



/* Job Detail Page Styles */
.job-detail-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--navy-blue);
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-bottom: 4rem;
}

.job-detail-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-detail-card {
    background: var(--dark-navy);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--light-navy);
}

.job-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-navy) 0%, transparent 100%);
    border-bottom: 1px solid var(--light-navy);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.job-title-section {
    flex: 1;
}

.job-main-title {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.job-company {
    color: var(--light-gray);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.job-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.job-location,
.job-salary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.job-type {
    background: var(--gold);
    color: var(--navy-blue);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.job-action-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
}

.apply-now-btn {
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.apply-now-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

.save-job-btn {
    background: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.save-job-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.application-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.application-status.applied {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.job-content {
    padding: 2rem;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.section-title {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.job-text {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.job-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-navy);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.detail-label {
    color: var(--dark-gray);
    font-weight: 500;
}

.detail-value {
    color: var(--light-gray);
    font-weight: 600;
}

/* Sidebar Styles */
.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--dark-navy);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--light-navy);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-navy);
}

.company-details {
    margin-bottom: 1.5rem;
}

.company-name {
    color: var(--light-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company-location {
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.full-width {
    width: 100%;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stats-content {
    text-align: center;
}

.status-success,
.status-pending {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.status-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.status-pending {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.status-success i,
.status-pending i {
    font-size: 1.5rem;
}

.status-success div,
.status-pending div {
    text-align: left;
}

.status-success strong,
.status-pending strong {
    display: block;
    margin-bottom: 0.25rem;
}

.status-success span,
.status-pending span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Similar Jobs Section */
.similar-jobs-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-navy);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header .section-title {
    justify-content: center;
    font-size: 2rem;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.similar-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.similar-job-card {
    background: var(--dark-navy);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--light-navy);
    transition: all 0.3s ease;
}

.similar-job-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.similar-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.similar-job-title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.similar-job-type {
    background: var(--gold);
    color: var(--navy-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.similar-job-company,
.similar-job-location,
.similar-job-salary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.similar-job-actions {
    margin-top: 1rem;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Application Modal Styles */
.application-modal {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-body {
    padding: 2rem;
}

.form-section-title {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-navy);
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-weight: bold;
}

.input-with-icon .form-control {
    padding-left: 2.5rem;
}

.file-upload-area {
    border: 2px dashed var(--light-navy);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--gold);
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
}

.file-upload-info i {
    font-size: 2rem;
    color: var(--gold);
}

.file-upload-info strong {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.file-upload-info span {
    font-size: 0.9rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--light-navy);
    background: var(--light-navy);
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-detail-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-detail-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        text-align: center;
    }
    
    .job-action-section {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    .job-main-title {
        font-size: 1.8rem;
    }
    
    .job-meta-info {
        justify-content: center;
    }
    
    .similar-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .application-modal {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .job-header,
    .job-content {
        padding: 1.5rem;
    }
    
    .job-main-title {
        font-size: 1.5rem;
    }
    
    .job-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}


/* Dashboard Styles */
.dashboard-page {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    min-height: 100vh;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--dark-navy);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--light-navy);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.total { background: var(--gold); color: var(--navy-blue); }
.stat-icon.pending { background: #ffc107; color: #000; }
.stat-icon.reviewed { background: #17a2b8; color: white; }
.stat-icon.accepted { background: #28a745; color: white; }

.stat-info h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: var(--dark-gray);
    margin: 0;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-card {
    background: var(--dark-navy);
    border-radius: 15px;
    border: 1px solid var(--light-navy);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-navy);
}

.card-header h2 {
    color: var(--gold);
    margin: 0;
    font-size: 1.4rem;
}

.card-content {
    padding: 1.5rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--dark-gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.application-item {
    background: var(--light-navy);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.application-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.application-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-info h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.company {
    color: var(--light-gray);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.job-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.location, .type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.application-status {
    text-align: right;
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-reviewed { background: #cce7ff; color: #004085; }
.status-accepted { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }

.applied-date {
    color: var(--dark-gray);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.application-actions {
    text-align: right;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--dark-navy);
    border-radius: 12px;
    border: 1px solid var(--light-navy);
    overflow: hidden;
}

.profile-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-blue);
}

.profile-info h4 {
    color: var(--light-gray);
    margin-bottom: 0.25rem;
}

.profile-info p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--light-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-link:hover {
    background: var(--light-navy);
    color: var(--gold);
}

.action-link i {
    width: 20px;
    text-align: center;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tip-item i {
    color: var(--gold);
    margin-top: 0.2rem;
}

.tip-item p {
    color: var(--light-gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Page Styles */
.contact-page {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info, .contact-form-container {
    display: flex;
    flex-direction: column;
}

.info-card, .form-card {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--light-navy);
    height: fit-content;
}

.info-card h2, .form-card h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 1.2rem;
}

.method-info h3 {
    color: var(--light-gray);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.method-info p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-placeholder {
    background: var(--dark-navy);
    border-radius: 15px;
    border: 1px solid var(--light-navy);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.map-content h3 {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.map-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* About Page Styles */
.about-page {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-content h1 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--light-gray);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--dark-gray);
    margin: 0;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: var(--dark-navy);
    border-radius: 15px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.mission-section, .team-section, .features-section {
    margin-bottom: 4rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-text p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    background: var(--dark-navy);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--light-navy);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--light-navy);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: var(--light-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--light-gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--light-navy);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-blue);
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: var(--dark-navy);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--gold);
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Privacy Policy Styles */
.privacy-page {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    min-height: 100vh;
}

.privacy-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.privacy-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.privacy-nav h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--light-navy);
    color: var(--gold);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-navy);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.policy-section h3 {
    color: var(--light-gray);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-info {
    background: var(--light-navy);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-layout,
    .contact-layout,
    .privacy-content,
    .mission-content,
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-nav {
        position: static;
    }
}

@media (max-width: 768px) {
    .dashboard-header h1,
    .page-header h1,
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .application-main {
        flex-direction: column;
        gap: 1rem;
    }
    
    .application-status {
        text-align: left;
    }
    
    .card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 100%;
        height: 200px;
    }
    
    .team-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced About Page Styles */
.about-page {
    padding-top: 80px;
}

.about-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--light-gray);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
    text-align: center;
    max-width: 300px;
}

.visual-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.visual-card h3 {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.visual-card p {
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: var(--light-navy);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--dark-navy);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--light-navy);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--navy-blue);
}

.mv-card h3 {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mv-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--navy-blue);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-navy);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-blue);
}

.value-header h3 {
    color: var(--light-gray);
    margin: 0;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--light-navy);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--dark-navy);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--light-navy);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.member-image {
    height: 200px;
    background: var(--light-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.position {
    color: var(--light-gray);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.bio {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--light-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Enhanced Contact Page Styles */
.contact-page {
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    padding: 3rem 0;
}

.contact-hero .hero-content h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero .hero-content p {
    color: var(--light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-header h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.info-header p {
    color: var(--dark-gray);
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-navy);
    border-radius: 12px;
    border: 1px solid var(--light-navy);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-blue);
    flex-shrink: 0;
}

.method-content h3 {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.method-content p {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.method-link:hover {
    color: var(--light-gold);
}

.social-links {
    padding: 1.5rem;
    background: var(--dark-navy);
    border-radius: 12px;
    border: 1px solid var(--light-navy);
}

.social-links h3 {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--light-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.form-card {
    background: var(--dark-navy);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--light-navy);
    height: fit-content;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-header p {
    color: var(--dark-gray);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-navy);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-navy);
}

.faq-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Privacy Policy Styles */
.privacy-page {
    padding-top: 80px;
}

.privacy-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    padding: 3rem 0;
    text-align: center;
}

.privacy-hero h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.privacy-hero p {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.last-updated i {
    color: var(--gold);
}

.privacy-content {
    padding: 3rem 0;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.privacy-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.nav-card {
    background: var(--dark-navy);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--light-navy);
}

.nav-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--light-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-navy);
    color: var(--gold);
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.policy-section {
    scroll-margin-top: 2rem;
}

.policy-section h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-navy);
}

.policy-section h3 {
    color: var(--light-gray);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.policy-section p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-category {
    margin-bottom: 2rem;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-navy);
    border-radius: 8px;
    color: var(--light-gray);
}

.data-item i {
    color: var(--gold);
    width: 20px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.usage-card {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-navy);
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.usage-card h3 {
    color: var(--light-gray);
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.usage-card ul {
    margin: 0;
    padding-left: 1rem;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-navy);
    border-radius: 10px;
}

.security-item i {
    font-size: 2rem;
    color: var(--gold);
    width: 60px;
    text-align: center;
}

.security-item h4 {
    color: var(--light-gray);
    margin-bottom: 0.25rem;
}

.security-item p {
    color: var(--dark-gray);
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-navy);
    text-align: center;
    transition: all 0.3s ease;
}

.right-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.right-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.right-card h4 {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.right-card p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-navy);
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 40px;
}

.contact-item strong {
    color: var(--light-gray);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--dark-gray);
    margin: 0;
}

/* Utility Classes */
.center {
    text-align: center;
}

.section-header h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .contact-grid,
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-nav {
        position: static;
    }
    
    .nav-card {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mv-grid,
    .values-grid,
    .team-grid,
    .faq-grid,
    .usage-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        align-self: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .contact-method,
    .security-item,
    .contact-item {
        padding: 1rem;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
}

/* Fixed File Upload Styles */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.file-upload-area {
    border: 2px dashed var(--light-navy);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    position: relative;
    z-index: 1;
}

.file-upload-area:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2; /* Higher z-index to ensure it's clickable */
}

.file-upload-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    pointer-events: none; /* Prevent interfering with file input */
    position: relative;
    z-index: 1;
}

.file-upload-info i {
    font-size: 2rem;
    color: var(--gold);
}

.file-upload-info strong {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.file-upload-info span {
    font-size: 0.9rem;
}

/* When file is selected */
.file-upload-area.has-file {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.file-upload-area.has-file .file-upload-info i {
    color: #28a745;
}
/* Search Highlight Styles */
.search-highlight {
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: bold;
}

/* Enhanced Search Box Styles */
.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.search-box input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: var(--navy-blue);
}

.search-box input::placeholder {
    color: var(--dark-gray);
}

.search-box input:focus {
    color: var(--navy-blue);
}

.search-box button {
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    white-space: nowrap;
}

.search-box button:hover {
    background: var(--light-gold);
    transform: translateY(-1px);
}

.search-box button:active {
    transform: translateY(0);
}

/* No Results Message */
.no-jobs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--dark-gray);
    display: none;
}

.no-jobs i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.no-jobs h3 {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-jobs p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Search Results Header */
.search-results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-results-header h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.search-results-header p {
    color: var(--dark-gray);
}

/* Advanced Search Button (Optional) */
.advanced-search-btn {
    background: transparent;
    color: var(--light-gray);
    border: 1px solid var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.advanced-search-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Responsive Search */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        border-radius: 15px;
        max-width: 90%;
    }
    
    .search-box input,
    .search-box button {
        width: 100%;
        border-radius: 0;
        padding: 1rem 1.5rem;
    }
    
    .search-box input {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
}

@media (max-width: 480px) {
    .search-box {
        max-width: 100%;
    }
    
    .no-jobs {
        padding: 3rem 1rem;
    }
    
    .no-jobs i {
        font-size: 3rem;
    }
}
/* Search Notification Styles */
.search-notification {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 600px;
    border-radius: 12px;
    border: 1px solid;
    animation: slideDown 0.3s ease-out;
}

.search-notification.success {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    color: #155724;
}

.search-notification.error {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #721c24;
}

.search-notification.info {
    background: rgba(23, 162, 184, 0.1);
    border-color: rgba(23, 162, 184, 0.3);
    color: #0c5460;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.notification-content i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.notification-text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Suggestions */
.suggestions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--navy-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.suggestion-tag:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

/* Temporary Message */
.temporary-message {
    position: fixed;
    top: 100px;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.temporary-message.show {
    transform: translateX(0);
    opacity: 1;
}

.temporary-message.success {
    background: #28a745;
}

.temporary-message.error {
    background: #dc3545;
}

.temporary-message.info {
    background: #17a2b8;
}

.temporary-message.warning {
    background: #ffc107;
    color: #000;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Button Styles for Notifications */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .search-notification {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .notification-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .notification-actions {
        justify-content: flex-start;
    }
    
    .temporary-message {
        right: 1rem;
        left: 1rem;
        transform: translateY(-100px);
    }
    
    .temporary-message.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .search-notification {
        padding: 1rem;
    }
    
    .notification-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .notification-actions .btn {
        width: 100%;
        justify-content: center;
    }
}