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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: white;
}

a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e5e7eb;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 0.875rem;
    min-width: 100px;
    border: none;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 0.875rem;
    min-width: 100px;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 0;
}

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

/* Logo */
.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.125rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: #1e40af;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        border-radius: 0.5rem;
        justify-content: flex-start;
    }



    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-logo h1 {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    background: none;
    color: white;
    padding: 0;
    width: 100%;
    height: 30vh;
    min-height: 250px;
    position: relative;
}

.hero-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-center-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    width: 90%;
}

.hero-center-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000000;
}

.hero-center-text p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    /* text-shadow: 2px 2px 4px rgba(24, 79, 206, 0.8); */
    color: #000000;
    opacity: 0.95;
}

.hero-subtitle {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    font-size: 2rem;
    font-weight: 600;
    z-index: 2;
    max-width: 600px;
    width: 90%;
}

.jobs-subtitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    font-size: 3rem;
    font-weight: 600;
    z-index: 2;
    max-width: 600px;
    width: 90%;
}

.hero-watermark {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 5px;
}

/* Responsive hero section */
@media (max-width: 768px) {
    .hero {
        height: 25vh;
        min-height: 200px;
    }
    
    .hero-center-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-center-text p {
        font-size: 1rem;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: white;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #374151;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Featured Jobs */
.featured-jobs {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.job-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.job-card-header {
    margin-bottom: 1.5rem;
}

.job-title {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.job-department {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.job-meta span {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.job-meta .job-location {
    background-color: #f3f4f6;
    color: #374151;
}

.job-meta .job-type {
    background-color: #dbeafe;
    color: #1e40af;
}

.job-meta .job-experience {
    background-color: #fef3c7;
    color: #92400e;
}

.job-meta .job-salary {
    background-color: #dcfce7;
    color: #166534;
}

.job-description {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-posted {
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: 0.5rem;
}

.section-footer {
    text-align: center;
}









/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e5e7eb;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #ffffff;
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #d1d5db;
}

/* Jobs Page Specific */
.jobs-header {
    background: none;
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    height: 30vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jobs-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}





.jobs-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.jobs-filter {
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.filter-container {
    display: flex;
    gap: 2rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: #374151;
}

.filter-select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    min-width: 150px;
}

.jobs-list {
    padding: 3rem 0;
}

.job-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.job-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

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

.job-title-section h3 {
    margin-bottom: 0.5rem;
}

.job-title-section h3 a {
    color: #1f2937;
    transition: color 0.3s ease;
}

.job-title-section h3 a:hover {
    color: #2563eb;
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag-tech {
    background-color: #dbeafe;
    color: #1e40af;
}

.tag-engineering {
    background-color: #fef3c7;
    color: #92400e;
}

.tag-operations {
    background-color: #dcfce7;
    color: #166534;
}

.tag-logistics {
    background-color: #fce7f3;
    color: #be185d;
}

.tag-analytics {
    background-color: #e0e7ff;
    color: #3730a3;
}

.tag-data {
    background-color: #fef3c7;
    color: #92400e;
}

.tag-innovation {
    background-color: #e0e7ff;
    color: #3730a3;
}

.tag-global {
    background-color: #fce7f3;
    color: #be185d;
}

.tag-insights {
    background-color: #dcfce7;
    color: #166534;
}

.tag-supply-chain {
    background-color: #fef3c7;
    color: #92400e;
}

.tag-management {
    background-color: #dbeafe;
    color: #1e40af;
}

.tag-optimization {
    background-color: #fce7f3;
    color: #be185d;
}

.no-jobs {
    text-align: center;
    padding: 4rem 0;
}

.no-jobs-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.job-search-cta {
    background-color: #f9fafb;
    padding: 4rem 0;
    text-align: center;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Job Detail Page */
.job-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 3rem 0;
}

.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.job-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-meta span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: white;
}

.job-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.job-actions .btn {
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    min-width: 120px;
    text-align: center;
}

.job-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.job-actions .btn-primary {
    background: #ffffff;
    color: #1e40af;
    border: 2px solid #ffffff;
}

.job-actions .btn-primary:hover {
    background: #f8fafc;
    border-color: #f8fafc;
}

.job-actions .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.job-actions .btn-outline:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

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

.job-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.job-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.job-description {
    line-height: 1.7;
    color: #4b5563;
    font-size: 1.1rem;
}

.responsibilities-list,
.requirements-list {
    list-style: none;
    padding: 0;
}

.responsibility-item,
.requirement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.bullet {
    color: #3b82f6;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.text {
    color: #4b5563;
    line-height: 1.6;
}

/* Sidebar */
.job-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.info-label {
    font-weight: 500;
    color: #6b7280;
}

.info-value {
    font-weight: 600;
    color: #1f2937;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.benefit-item .bullet {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.apply-cta {
    text-align: center;
}

.apply-cta p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.btn-full {
    width: 100%;
}

/* Application Form */
.application-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 3rem 0;
}

.application-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.application-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.job-subtitle {
    font-size: 1.125rem;
    color: #f3f4f6;
    font-weight: 500;
}

.application-form {
    padding: 3rem 0;
}

.form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Error Page */
.error-page {
    padding: 5rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 8rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.error-content h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .job-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .job-item-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .job-actions {
        justify-content: stretch;
    }
    
    .job-actions .btn {
        flex: 1;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 200px;
    }
    
    .cta-actions .btn {
        flex: 1;
        min-width: 200px;
    }

    .job-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .job-actions {
        justify-content: center;
    }
    
    .job-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .job-sidebar {
        position: static;
    }
    
    .application-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .jobs-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Custom File Upload Button Styles */
.file-upload-container {
    position: relative;
    margin-bottom: 20px;
}

.file-upload-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.file-upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.file-upload-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.file-upload-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.file-upload-button:hover::before {
    left: 100%;
}



.file-name-display {
    margin-top: 12px;
    padding: 12px 16px;
    background: #e3f2fd;
    border: 2px dashed #1976d2;
    border-radius: 8px;
    color: #1976d2;
    font-weight: 500;
    text-align: center;
    display: none;
}

.file-name-display.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.file-name-display .file-name {
    font-weight: 600;
}

.file-name-display .file-size {
    font-size: 14px;
    color: #666;
    margin-left: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Applications Management Styles */
.applications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.applications-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.applications-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.applications-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.applications-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #1976d2;
}

.stat-label {
    color: #666;
    margin-top: 5px;
}

.applications-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.application-item {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.application-item:hover {
    background-color: #f8f9fa;
}

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

.application-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.applicant-info h3 {
    color: #1976d2;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.applicant-info p {
    color: #666;
    margin: 2px 0;
}

.application-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-reviewing {
    background: #cce5ff;
    color: #004085;
}

.status-interview {
    background: #d4edda;
    color: #155724;
}

.status-hired {
    background: #d1ecf1;
    color: #0c5460;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.job-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.job-info h4 {
    color: #333;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.job-meta span {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.application-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.no-applications {
    text-align: center;
    padding: 40px;
    color: #666;
}

@media (max-width: 768px) {
    .applications-header h1 {
        font-size: 2em;
    }
    
    .application-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .application-actions {
        justify-content: center;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    color: #1976d2;
    margin: 0;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #000;
}

.application-detail {
    margin-bottom: 20px;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.detail-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #1976d2;
}

.status-update {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.status-update h3 {
    color: #1976d2;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
