/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background-color: #ffffff;
    font-size: 16px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: #1a1a2e;
    color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-menu a.active {
    background: #6366f1;
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-stats-mini {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini strong {
    font-size: 1.75rem;
    color: #6366f1;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-mini span {
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero-image {
    position: relative;
    height: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 30px;
    opacity: 0.2;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
}

.card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 2rem;
}

.card-text strong {
    display: block;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.card-text span {
    color: #64748b;
    font-size: 0.85rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: #f8fafc;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
    color: #6366f1;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e7ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(139, 92, 246, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
}

.feature-card h3 {
    padding: 1.5rem 2rem 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.feature-card p {
    padding: 0 2rem 2rem;
    color: #64748b;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

.cta-section .btn-primary {
    background: white;
    color: #6366f1;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-card h3 {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    color: #6366f1;
    font-weight: 800;
}

.stat-card p {
    color: #64748b;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

/* Sections */
.recent-jobs,
.upcoming-events {
    padding: 5rem 0;
    background: #ffffff;
}

.recent-jobs:nth-of-type(even),
.upcoming-events:nth-of-type(even) {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.recent-jobs h2,
.upcoming-events h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.5px;
}

/* Grid Layout */
.jobs-grid,
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Cards */
.job-card,
.event-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card::after,
.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.job-card:hover,
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.job-card:hover::after,
.event-card:hover::after {
    transform: scaleX(1);
}

.job-card h3,
.event-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.date-badge {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px dashed #cbd5e1;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state p {
    color: #64748b;
    font-size: 1.2rem;
}

.event-badge-top {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.event-card:hover .event-badge-top {
    opacity: 0.3;
    transform: scale(1.15) rotate(10deg);
}

.event-info {
    display: flex;
    gap: 2rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

.event-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.event-type-label {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

.company,
.location,
.type,
.date {
    color: #64748b;
    margin: 0.625rem 0;
    font-size: 1rem;
}

.event-content {
    padding-top: 0;
}

.event-type,
.event-date,
.event-location,
.event-participants,
.event-max {
    margin: 0.625rem 0;
    font-size: 0.95rem;
    color: #475569;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3.5rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    opacity: 0.8;
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Filters */
.filters {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group input,
.filter-group select {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

.filter-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.filter-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Jobs List */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2563eb 0%, #7c3aed 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.job-item:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.job-item:hover::before {
    transform: scaleY(1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.job-header h3 {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 700;
    flex: 1;
}

.job-type {
    background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
    color: #4c1d95;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid #ddd6fe;
}

.salary {
    color: #059669;
    font-weight: 600;
    font-size: 1.05rem;
}

.description {
    color: #475569;
    line-height: 1.6;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.job-footer .date {
    color: #94a3b8;
    font-size: 0.9rem;
}


/* Forms */
.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: #f8fafc;
}

.auth-box,
.form-container {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 550px;
    width: 100%;
    margin: 2rem auto;
    border: 1px solid #e2e8f0;
}

.auth-box h2,
.form-container h2 {
    color: #1a1a2e;
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Alerts */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert::before {
    content: '⚠';
    font-size: 1.25rem;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-error::before {
    content: '❌';
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-success::before {
    content: '✓';
}

/* Details Pages */
.job-details,
.event-details {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

.back-link {
    margin-bottom: 1.5rem;
}

.back-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.back-link a:hover {
    gap: 0.75rem;
    color: #1e40af;
}

.job-details-header,
.event-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    gap: 1rem;
}

.job-details-header h1,
.event-details-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.5px;
    flex: 1;
}

.job-type-badge,
.event-type-badge {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    white-space: nowrap;
}

.job-meta,
.event-meta {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.job-meta p,
.event-meta p {
    margin: 0.875rem 0;
    color: #475569;
    font-size: 1.05rem;
}

.job-meta strong,
.event-meta strong {
    color: #1e293b;
    font-weight: 700;
}

.job-section,
.event-section {
    margin-bottom: 2.5rem;
}

.job-section h2,
.event-section h2 {
    color: #1a202c;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.job-section p,
.event-section p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}


/* Profile */
.profile-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.profile-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.profile-section h2 {
    color: #1a202c;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2563eb;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    gap: 1rem;
}

.item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.item h4 {
    color: #1a202c;
    margin-bottom: 0.375rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.item p {
    color: #64748b;
    font-size: 0.95rem;
}

.status {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.status.active,
.status.upcoming {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.status.closed,
.status.completed {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.item a:hover {
    background: #eff6ff;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: #94a3b8;
    font-size: 0.95rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    font-size: 1.1rem;
}

.success-message {
    color: #059669;
    font-weight: 600;
    padding: 1rem;
    background: #d1fae5;
    border-radius: 10px;
    margin-top: 1rem;
    display: inline-block;
}

.error-message {
    color: #dc2626;
    font-weight: 600;
    padding: 1rem;
    background: #fee2e2;
    border-radius: 10px;
    margin-top: 1rem;
    display: inline-block;
}

.event-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.small {
    font-size: 0.875rem;
    color: #64748b;
}

/* Footer */
footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #6366f1;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #64748b;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.875rem 0;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats-mini {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }

    .floating-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats {
        margin-top: 0;
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .recent-jobs,
    .upcoming-events {
        padding: 3rem 0;
    }

    .jobs-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-header .container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .filter-group {
        flex-direction: column;
    }

    .filter-group input,
    .filter-group select {
        min-width: 100%;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .job-details,
    .event-details {
        padding: 2rem;
    }

    .job-details-header,
    .event-details-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-details-header h1,
    .event-details-header h1 {
        font-size: 1.75rem;
    }

    .auth-box,
    .form-container {
        padding: 2.5rem 2rem;
    }

    .profile-section {
        padding: 2rem;
    }

    .item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .stat-card h3 {
        font-size: 3rem;
    }

    .job-card,
    .event-card {
        padding: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card,
.event-card,
.stat-card,
.job-item {
    animation: fadeIn 0.5s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

